-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
41 lines (41 loc) · 1.01 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
{
"name": "@gitbook/cli",
"description": "CLI to build and publish integrations on GitBook.com",
"version": "0.19.0",
"dependencies": {
"@gitbook/api": "*",
"check-node-version": "^4.2.1",
"commander": "^9.2.0",
"conf": "^10.1.2",
"dedent-js": "^1.0.1",
"esbuild": "^0.17.11",
"get-port": "^6.1.2",
"js-yaml": "^4.1.0",
"ora": "^6.2.0",
"prompts": "^2.4.2",
"zod": "^3.23.8",
"chokidar": "^4.0.1",
"miniflare": "^3.20240925.0"
},
"devDependencies": {
"@gitbook/tsconfig": "*",
"@schemastore/package": "^0.0.10",
"@types/prompts": "^2.0.14",
"typescript": "^5.6.2"
},
"files": [
"dist/**",
"postinstall.js"
],
"scripts": {
"build": "./build.sh",
"postinstall": "node postinstall.js",
"typecheck": "tsc --noEmit"
},
"engines": {
"node": ">=18.0.0"
},
"bin": {
"gitbook": "./cli.js"
}
}