-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.59 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
{
"name": "insforge-agent-benchmark",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"benchmark": "tsx src/benchmark.ts",
"benchmark:api": "tsx src/benchmark.ts --workflow api",
"benchmark:cli": "tsx src/benchmark.ts --workflow cli",
"benchmark:cli-skills": "tsx src/benchmark.ts --workflow cli-skills",
"benchmark:mcp": "tsx src/benchmark.ts --workflow mcp",
"benchmark:mcp-skills": "tsx src/benchmark.ts --workflow mcp-skills",
"benchmark:all": "tsx src/benchmark.ts --workflow all",
"benchmark:supabase:cli": "tsx src/benchmark.ts --provider supabase --workflow cli",
"benchmark:supabase:cli-skills": "tsx src/benchmark.ts --provider supabase --workflow cli-skills",
"benchmark:supabase:mcp": "tsx src/benchmark.ts --provider supabase --workflow mcp",
"benchmark:supabase:mcp-skills": "tsx src/benchmark.ts --provider supabase --workflow mcp-skills",
"benchmark:supabase:all": "tsx src/benchmark.ts --provider supabase --workflow all",
"benchmark:matrix": "tsx src/benchmark.ts --workflow matrix",
"benchmark:k": "tsx src/benchmark-k.ts",
"run": "tsx src/cli.ts run",
"smoke": "tsx src/cli.ts run --suite smoke --agent mock --task harness_file_contract",
"report": "tsx src/reporting/result-summary.ts",
"report:generate": "tsx src/reporting/generate-report.ts",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@types/node": "^22.13.14",
"@types/pg": "^8.20.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
},
"dependencies": {
"pg": "^8.21.0"
}
}