forked from Sma1lboy/rove
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.63 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "kobe-monorepo",
"version": "0.0.0",
"description": "Monorepo for kobe (TUI orchestrator for Claude Code) + branding (Remotion render pipeline).",
"private": true,
"type": "module",
"packageManager": "bun@1.3.13",
"workspaces": ["packages/*"],
"scripts": {
"dev": "cd packages/kobe && bun run dev",
"dev:sandbox": "cd packages/kobe && bun run dev:sandbox",
"dev:sandbox:reset": "cd packages/kobe && bun run dev:sandbox:reset",
"daemon": "cd packages/kobe && bun run src/cli/index.ts daemon start",
"daemon:stop": "cd packages/kobe && bun run src/cli/index.ts daemon stop",
"daemon:restart": "cd packages/kobe && bun run src/cli/index.ts daemon restart",
"daemon:status": "cd packages/kobe && bun run src/cli/index.ts daemon status",
"build": "bun --filter @sma1lboy/kobe build",
"typecheck": "bun --filter @sma1lboy/kobe-daemon typecheck && bun --filter @sma1lboy/kobe typecheck",
"test": "bun --filter @sma1lboy/kobe test",
"test:behavior": "bun --filter @sma1lboy/kobe test:behavior",
"lint": "biome check biome.json package.json docs packages/kobe packages/kobe-daemon --config-path ./biome.json",
"lint:fix": "biome check biome.json package.json docs packages/kobe packages/kobe-daemon --config-path ./biome.json --write",
"changeset": "changeset",
"changeset:status": "changeset status",
"release": "scripts/release.sh",
"issues:archive": "node scripts/issues-archive.mjs"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@changesets/cli": "^2.31.0"
},
"trustedDependencies": ["electron"]
}