-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.59 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.59 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": "kuuzuki-monorepo",
"version": "0.2.0",
"catalog": {
"@types/node": "22.13.9",
"@tsconfig/node22": "22.0.2",
"ai": "5.0.0-beta.34",
"hono": "4.7.10",
"typescript": "5.8.2",
"zod": "3.25.49",
"remeda": "2.26.0"
},
"description": "Kuuzuki monorepo with fork parity tracking",
"engines": {
"node": ">=18.0.0"
},
"private": true,
"scripts": {
"parity:generate": "fork-parity-dashboard generate",
"parity:analyze": "fork-parity-dashboard analyze",
"parity:dashboard": "fork-parity-dashboard serve",
"parity:cleanup": "fork-parity-dashboard cleanup",
"parity:sync": "fork-parity sync && npm run parity:generate",
"parity:status": "fork-parity dashboard --format=markdown",
"parity:critical": "fork-parity dashboard --priority=critical --format=markdown",
"parity:web": "npm run parity:generate && npm run parity:dashboard",
"upstream:start": "bun scripts/upstream-sync-daemon.ts start",
"upstream:stop": "bun scripts/upstream-sync-daemon.ts stop",
"upstream:status": "bun scripts/upstream-sync-daemon.ts status",
"upstream:cleanup": "bun scripts/upstream-sync-daemon.ts cleanup",
"upstream:reset": "bun scripts/upstream-sync-daemon.ts reset",
"build": "./run.sh build all",
"build:tui": "./run.sh build tui",
"build:server": "./run.sh build server",
"dev": "./dev.sh watch",
"dev:tui": "./run.sh dev tui",
"dev:server": "./run.sh dev server",
"test": "bun test",
"clean": "./run.sh clean",
"check": "./run.sh check"
},
"workspaces": [
"packages/*",
"packages/sdk/js"
]
}