forked from GitbookIO/integrations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.26 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
{
"name": "@gitbook/cli",
"description": "CLI to build and publish integrations on GitBook.com",
"version": "0.17.0",
"dependencies": {
"@gitbook/api": "*",
"@openapi-contrib/openapi-schema-to-json-schema": "^3.1.2",
"@stoplight/json-ref-resolver": "^3.1.3",
"ajv": "^8.11.0",
"ajv-formats": "^2.1.1",
"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"
},
"devDependencies": {
"@gitbook/eslint-config": "*",
"@schemastore/package": "^0.0.10",
"@types/node": "^17.0.33",
"@types/prompts": "^2.0.14",
"chokidar": "^3.5.3",
"eslint": "^8.16.0",
"miniflare": "^2.12.1",
"typescript": "^4.6.3"
},
"files": [
"dist/**",
"postinstall.js"
],
"scripts": {
"build": "./build.sh",
"lint": "eslint ./src/**/*.ts",
"postinstall": "node postinstall.js",
"typecheck": "tsc --noEmit"
},
"engines": {
"node": ">=18.0.0"
},
"bin": {
"gitbook": "./dist/cli.js"
}
}