forked from GitbookIO/integrations
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.15 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
{
"name": "@gitbook/api",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"version": "0.61.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": "^4.6.3",
"eslint": "^8.16.0",
"@gitbook/eslint-config": "*",
"@gitbook/tsconfig": "*"
},
"overrides": {
"swagger-typescript-api": {
"typescript": "4.7.4"
}
},
"scripts": {
"build": "./build.sh",
"lint": "eslint ./src/**/*.ts",
"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"
}
}