-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.2 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
{
"name": "coderouter",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "A coding-agent router that picks the best model for each task by cognitive shape, runs in git-worktree sandboxes, and orchestrates handoffs across agents. Includes Masterplan mode for research-grade evidence-backed planning.",
"license": "MIT",
"packageManager": "pnpm@9.15.0",
"workspaces": [
"packages/*",
"eval"
],
"scripts": {
"build": "pnpm -r --parallel build",
"dev": "pnpm -r --parallel --stream dev",
"test": "pnpm -r --parallel test",
"test:unit": "pnpm -r --parallel test:unit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"typecheck": "pnpm -r --parallel typecheck",
"clean": "pnpm -r exec rm -rf dist node_modules",
"cli": "pnpm --filter @coderouter/cli start",
"mcp": "pnpm --filter @coderouter/mcp start",
"eval": "pnpm --filter @coderouter/eval run start"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.10.5",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=20"
}
}