-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.39 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
{
"name": "@ultralytics/openapi",
"version": "0.1.0",
"private": true,
"description": "Generate documentation and typed SDKs from OpenAPI",
"license": "AGPL-3.0-only",
"exports": {
"./openapi": "./lib/openapi.ts"
},
"scripts": {
"dev": "bun run sync && next dev",
"build": "bun run sync && next build && bun run scripts/headers.ts out",
"sync": "bun run scripts/sync.ts",
"generate": "bun run sync && bun run scripts/generate.ts && uvx ruff@0.16.2 format --no-cache --line-length 120 generated/python && bun run scripts/headers.ts generated/python",
"typecheck": "next typegen && tsgo --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"knip": "knip --exclude binaries",
"test": "bun test"
},
"dependencies": {
"@base-ui/react": "^1.7.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^1.31.0",
"next": "^16.3.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-markdown": "^10.1.0",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.3"
},
"devDependencies": {
"@biomejs/biome": "^2.5.7",
"@tailwindcss/postcss": "^4.3.3",
"@types/bun": "^1.3.10",
"@types/node": "^26.2.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@typescript/native-preview": "^7.0.0-dev.20260707.2",
"knip": "^6.32.1",
"typescript": "^7.0.2"
}
}