forked from snipeship/ccflare
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.05 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.05 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
{
"private": true,
"name": "claudeops",
"author": "Frank Yang <[email protected]>",
"contributors": [
"snipeship <[email protected]>"
],
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"claudeops": "bun run build && bun run tui",
"tui": "bun run apps/tui/src/main.ts",
"dev": "bun run tui",
"start": "bun run apps/server/src/server.ts",
"server": "bun run apps/server/src/server.ts",
"dev:server": "bun run --hot apps/server/src/server.ts",
"typecheck": "bunx tsc --noEmit",
"build": "bun run build:dashboard && bun run build:tui",
"build:dashboard": "bun run --cwd packages/dashboard-web build",
"build:tui": "bun run --cwd apps/tui build",
"build:lander": "bun run --cwd apps/lander build",
"format": "bunx biome format --write .",
"lint": "bunx --bun biome check --write --unsafe ."
},
"engines": {
"bun": ">=1.2.8"
},
"devDependencies": {
"@biomejs/biome": "2.1.2",
"bun-types": "latest",
"@types/bun": "latest",
"typescript": "^5.0.0"
},
"overrides": {
"react": "^19.0.0",
"@types/react": "^19.0.0"
}
}