-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.45 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
49
50
51
52
53
54
55
{
"name": "trafficcontrol",
"version": "1.0.0",
"description": "Autonomous agent orchestration system for Claude Code",
"main": "dist/src/index.js",
"type": "module",
"bin": {
"trafficcontrol": "./dist/bin/trafficcontrol.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/src/index.js",
"dev": "tsx watch src/index.ts",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:integration": "vitest run --dir src/__tests__/integration",
"cli": "tsx bin/trafficcontrol.ts",
"cleanup:test-data": "tsx bin/cleanup-test-data.ts",
"relay": "tsx src/relay/index.ts",
"relay:dev": "tsx watch src/relay/index.ts",
"benchmark": "vitest run --dir src/__tests__/benchmarks"
},
"keywords": [
"claude",
"agent",
"orchestration"
],
"author": "",
"license": "ISC",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.52",
"@slack/bolt": "^4.6.0",
"@supabase/supabase-js": "^2.91.1",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"js-yaml": "^4.1.1",
"playwright": "^1.58.0",
"uuid": "^13.0.0"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.0.10",
"@types/supertest": "^6.0.3",
"@types/uuid": "^10.0.0",
"@vitest/coverage-v8": "^4.0.18",
"supertest": "^7.2.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}