-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.04 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.04 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "twining-bench",
"version": "0.1.0",
"description": "Benchmark harness for evaluating multi-agent coordination strategies with Twining",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/daveangulo/twining-benchmark.git"
},
"homepage": "https://github.com/daveangulo/twining-benchmark",
"bugs": {
"url": "https://github.com/daveangulo/twining-benchmark/issues"
},
"author": "Dave Angulo",
"keywords": [
"benchmark",
"multi-agent",
"coordination",
"claude",
"llm",
"twining",
"ai-agents"
],
"bin": {
"twining-bench": "./dist/cli/index.js"
},
"scripts": {
"build": "tsc && rm -rf dist/targets/synthetic-repo/fixtures && cp -R src/targets/synthetic-repo/fixtures dist/targets/synthetic-repo/fixtures && rm -rf dist/targets/synthetic-repo/fixtures/node_modules && npm run build:dashboard",
"build:dashboard": "vite build --config src/dashboard/vite.config.ts",
"dev": "tsx src/cli/index.ts",
"dev:dashboard": "vite --config src/dashboard/vite.config.ts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit",
"phase0:run": "tsx src/phase0/phase0-runner.ts",
"phase0:analyze": "tsx src/phase0/phase0-analyze.ts"
},
"engines": {
"node": ">=20.0.0"
},
"license": "MIT",
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.50",
"@anthropic-ai/sdk": "^0.78.0",
"chokidar": "^5.0.0",
"commander": "^14.0.3",
"execa": "^9.6.1",
"express": "^5.2.1",
"html2canvas": "^1.4.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"recharts": "^3.7.0",
"simple-git": "^3.32.0",
"simple-statistics": "^7.8.8",
"ts-morph": "^27.0.2",
"uuid": "^13.0.0",
"vite": "^7.3.1"
},
"devDependencies": {
"@types/express": "^5.0.6",
"@types/node": "^25.3.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^5.1.4",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}