forked from prismicio/prismic-ts-codegen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.85 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "prismic-ts-codegen",
"version": "0.1.18",
"description": "An experimental Prismic model-to-TypeScript-type generator",
"keywords": [
"typescript",
"prismic"
],
"repository": {
"type": "git",
"url": "ssh://[email protected]/prismicio/prismic-ts-codegen.git"
},
"license": "Apache-2.0",
"author": "Prismic <[email protected]> (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",
"bin": {
"prismic-ts-codegen": "./bin/prismic-ts-codegen.js"
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"format": "prettier --write .",
"prepare": "npm run build",
"release": "npm run test && standard-version && git push --follow-tags && npm run build && npm publish",
"release:dry": "standard-version --dry-run",
"release:alpha": "npm run test && standard-version --release-as major --prerelease alpha && git push --follow-tags && npm run build && npm publish --tag alpha",
"release:alpha:dry": "standard-version --release-as major --prerelease alpha --dry-run",
"lint": "eslint --ext .js,.ts .",
"types": "tsc --noEmit",
"unit": "vitest run --coverage",
"unit:watch": "vitest watch",
"size": "size-limit",
"test": "npm run lint && npm run types && npm run unit && npm run build && npm run size",
"bench": "vitest bench --watch=false",
"bench:watch": "vitest bench"
},
"dependencies": {
"@prismicio/custom-types-client": "^1.1.0",
"common-tags": "^1.8.2",
"fast-glob": "^3.2.12",
"jiti": "^1.18.2",
"joi": "^17.9.2",
"meow": "^12.0.1",
"node-fetch": "^3.3.1",
"pascal-case": "^3.1.2",
"quick-lru": "^6.1.1"
},
"devDependencies": {
"@prismicio/client": "^7.1.0",
"@prismicio/mock": "^0.3.1",
"@size-limit/preset-small-lib": "^8.2.6",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/common-tags": "^1.8.1",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"@vitest/coverage-c8": "^0.33.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tsdoc": "^0.2.17",
"prettier": "^2.8.8",
"prettier-plugin-jsdoc": "^0.4.2",
"prismic-ts-codegen-v0-1-11": "npm:[email protected]",
"size-limit": "^8.2.6",
"standard-version": "^9.5.0",
"typescript": "^5.1.3",
"vite": "^4.3.9",
"vite-plugin-sdk": "^0.1.1",
"vitest": "^0.33.0"
},
"peerDependencies": {
"@prismicio/client": "^6.6 || ^7",
"@prismicio/types": "^0.2.8"
},
"peerDependenciesMeta": {
"@prismicio/client": {
"optional": true
},
"@prismicio/types": {
"optional": true
}
},
"engines": {
"node": ">=12.7.0"
},
"publishConfig": {
"access": "public"
}
}