-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 2.19 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@prismicio/custom-types-client",
"version": "2.1.0",
"description": "JavaScript client to interact with the Prismic Custom Types API",
"keywords": [
"typescript",
"prismic"
],
"repository": {
"type": "git",
"url": "ssh://git@github.com/prismicio/prismic-custom-types-client.git"
},
"license": "Apache-2.0",
"author": "Prismic <contact@prismic.io> (https://prismic.io)",
"type": "module",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"format": "prettier --write .",
"lint": "eslint --ext .js,.ts .",
"prepare": "npm run build",
"release": "npm run test && standard-version && git push --follow-tags && npm run build && npm publish",
"release:alpha": "npm run test && standard-version --prerelease alpha && git push --follow-tags && npm run build && npm publish --tag alpha",
"release:alpha:dry": "standard-version --prerelease alpha --dry-run",
"release:dry": "standard-version --dry-run",
"size": "size-limit",
"test": "npm run lint && npm run types && npm run unit && npm run build && npm run size",
"types": "tsc --noEmit",
"unit": "vitest run --coverage",
"unit:watch": "vitest watch"
},
"devDependencies": {
"@prismicio/mock": "^0.3.7",
"@size-limit/preset-small-lib": "^11.0.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20.11.7",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@vitest/coverage-v8": "^1.2.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-tsdoc": "^0.2.17",
"msw": "^2.1.5",
"prettier": "^3.2.4",
"prettier-plugin-jsdoc": "^1.3.0",
"size-limit": "^11.0.2",
"standard-version": "^9.5.0",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vite-plugin-sdk": "^0.1.2",
"vitest": "^1.2.2"
},
"peerDependencies": {
"@prismicio/client": ">=7"
},
"engines": {
"node": ">=14.15.0"
},
"publishConfig": {
"access": "public"
}
}