-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
43 lines (43 loc) · 1.05 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
{
"name": "@gitbook/api",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"version": "0.77.0",
"sideEffects": false,
"files": [
"README.md",
"spec/**",
"dist/**"
],
"dependencies": {
"event-iterator": "^2.0.0",
"eventsource-parser": "^1.1.1"
},
"devDependencies": {
"swagger-typescript-api": "^13.0.3",
"swagger-cli": "^4.0.4",
"esbuild": "^0.14.42",
"typescript": "^5.6.2",
"@gitbook/tsconfig": "*"
},
"overrides": {
"swagger-typescript-api": {
"typescript": "5.6.2"
}
},
"scripts": {
"build": "./build.sh",
"typecheck": "tsc --noEmit"
},
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./spec/openapi.json": "./spec/openapi.json",
"./spec/openapi.yaml": "./spec/openapi.yaml"
}
}