-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.87 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.87 KB
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
{
"name": "prismic-ts-codegen",
"version": "0.1.30",
"description": "An experimental Prismic model-to-TypeScript-type generator",
"keywords": [
"prismic",
"typescript"
],
"license": "Apache-2.0",
"author": "Prismic <contact@prismic.io> (https://prismic.io)",
"repository": {
"type": "git",
"url": "ssh://git@github.com/prismicio/prismic-ts-codegen.git"
},
"bin": {
"prismic-ts-codegen": "./bin/prismic-ts-codegen.js"
},
"files": [
"dist",
"src",
"bin"
],
"type": "module",
"exports": {
".": "./dist/index.mjs",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"format": "oxfmt",
"prepare": "npm run build",
"lint": "oxlint --deny-warnings",
"types": "tsc --noEmit",
"unit": "vitest run --coverage",
"unit:watch": "vitest watch",
"test": "npm run lint && npm run types && npm run unit && npm run build",
"bench": "vitest bench --watch=false",
"bench:watch": "vitest bench"
},
"dependencies": {
"@prismicio/custom-types-client": "^1.3.1",
"common-tags": "^1.8.2",
"fast-glob": "^3.3.3",
"jiti": "^1.21.7",
"meow": "~12.0.1",
"node-fetch": "^3.3.2",
"pascal-case": "^3.1.2",
"quick-lru": "^6.1.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@prismicio/client": "7.18.0",
"@prismicio/mock": "0.7.1",
"@types/common-tags": "^1.8.1",
"@types/node": "^25.5.2",
"@vitest/coverage-v8": "^4.1.2",
"oxfmt": "^0.43.0",
"oxlint": "^1.58.0",
"prismic-ts-codegen-v0-1-11": "npm:prismic-ts-codegen@0.1.11",
"tsdown": "^0.21.7",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
},
"peerDependencies": {
"@prismicio/client": "^6.6 || ^7",
"@prismicio/types": "^0.2.8"
},
"peerDependenciesMeta": {
"@prismicio/client": {
"optional": true
},
"@prismicio/types": {
"optional": true
}
},
"engines": {
"node": ">=20"
}
}