-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.52 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.52 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
{
"name": "prismic",
"version": "1.6.1",
"description": "Prismic's official command line tool",
"keywords": [
"prismic",
"typescript"
],
"license": "Apache-2.0",
"author": "Prismic <contact@prismic.io> (https://prismic.io)",
"repository": {
"type": "git",
"url": "ssh://git@github.com/prismicio/cli.git"
},
"bin": {
"prismic": "./dist/index.mjs"
},
"files": [
"./dist"
],
"type": "module",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"format": "oxfmt",
"prepare": "npm run build",
"lint": "oxlint --deny-warnings",
"types": "tsc --noEmit",
"unit": "cross-env MODE=test tsdown --logLevel=warn && vitest run",
"unit:watch": "concurrently --raw --kill-others \"cross-env MODE=test tsdown --watch --logLevel=warn\" \"vitest watch\"",
"test": "npm run lint && npm run types && npm run unit"
},
"devDependencies": {
"@prismicio/types-internal": "3.16.1",
"@sentry/node-core": "10.42.0",
"@types/node": "25.0.9",
"change-case": "5.4.4",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"dedent": "^1.7.2",
"detect-indent": "^7.0.2",
"github-slugger": "2.0.0",
"magicast": "0.5.1",
"oxfmt": "^0.24.0",
"oxlint": "1.39.0",
"prismic-ts-codegen": "^0.1.28",
"tinyexec": "^1.0.2",
"tinyglobby": "^0.2.15",
"tsdown": "0.19.0",
"typescript": "5.9.3",
"vitest": "4.0.17",
"zod": "^4.3.6"
},
"devEngines": {
"runtime": {
"name": "node",
"version": ">=24",
"onFail": "warn"
}
},
"engines": {
"node": ">=20"
}
}