-
Notifications
You must be signed in to change notification settings - Fork 4k
/
Copy pathpackage.json
40 lines (40 loc) · 1.1 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
{
"name": "@gitbook/react-openapi",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"development": "./src/index.ts",
"default": "./dist/index.js"
}
},
"version": "1.1.10",
"sideEffects": false,
"dependencies": {
"@gitbook/openapi-parser": "workspace:*",
"@scalar/api-client-react": "^1.2.5",
"@scalar/oas-utils": "^0.2.120",
"clsx": "^2.1.1",
"flatted": "^3.2.9",
"json-xml-parse": "^1.3.0",
"react-aria-components": "^1.6.0",
"react-aria": "^3.37.0",
"usehooks-ts": "^3.1.0",
"zustand": "^5.0.3"
},
"devDependencies": {
"bun-types": "^1.1.20",
"typescript": "^5.5.3"
},
"peerDependencies": {
"react": "*"
},
"scripts": {
"build": "rm -rf ./dist && tsc --project tsconfig.build.json",
"typecheck": "tsc --noEmit",
"unit": "bun test",
"dev": "bun run build -- --watch",
"clean": "rm -rf ./dist"
},
"files": ["dist", "src", "README.md", "CHANGELOG.md"]
}