-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.53 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.53 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
47
48
{
"name": "mission-control",
"version": "0.1.0",
"description": "Unified orchestrator for AI agent routing and coordination",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc && cp src/db/schema.sql dist/db/schema.sql && cp src/tuning/seed-cases.json dist/tuning/seed-cases.json && bash scripts/build-docs.sh",
"docs": "bash scripts/build-docs.sh",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"tune:baseline": "tsx src/tuning/baseline.ts --seed",
"tune:baseline:dry": "tsx src/tuning/baseline.ts --seed --dry-run",
"tune:run": "tsx src/tuning/run.ts --seed",
"tune:run:dry": "tsx src/tuning/run.ts --seed --dry-run"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.101",
"@hono/node-server": "^1.13.0",
"@modelcontextprotocol/sdk": "^1.27.1",
"@opendataloader/pdf": "^2.0.0",
"@playwright/mcp": "^0.0.69",
"@whiskeysockets/baileys": "^7.0.0-rc.9",
"better-sqlite3": "^11.7.0",
"fingerprint-injector": "^2.1.82",
"grammy": "^1.41.1",
"hono": "^4.7.0",
"mammoth": "^1.12.0",
"node-cron": "^4.2.1",
"pino": "^10.3.1",
"prom-client": "^15.1.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"@types/node": "^22.0.0",
"@types/node-cron": "^3.0.11",
"pino-pretty": "^13.1.3",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"engines": {
"node": ">=22.0.0"
}
}