-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 776 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 776 Bytes
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
{
"name": "claude-code-kit",
"private": true,
"packageManager": "pnpm@10.32.1",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "biome format --write .",
"format:check": "biome format .",
"test": "vitest run tests/*.test.ts",
"typecheck": "turbo run typecheck",
"smoke": "pnpm --filter smoke-imports smoke",
"release:check": "pnpm build && pnpm typecheck && pnpm test && pnpm lint && pnpm smoke && pnpm -r exec npm pack --dry-run"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"tsup": "^8.0.0",
"turbo": "^2.0.0",
"typescript": "^5.0.0",
"vitest": "^4.1.2",
"zod": ">=3.20.0"
}
}