-
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) · 968 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 968 Bytes
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": "arena",
"version": "0.1.0",
"description": "Head-to-head benchmark harness for agentic coding CLIs (Claude Code, Gemini CLI, Oxagen, Stella, and yours) with held-out verification, matched configs, paired statistics, and full receipts.",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/macanderson/arena.git"
},
"keywords": [
"benchmark",
"ai-agents",
"coding-agents",
"claude-code",
"gemini-cli",
"evaluation",
"llm"
],
"engines": {
"node": ">=22"
},
"scripts": {
"arena": "tsx src/cli.ts",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"lint": "biome ci src test",
"format": "biome check --write src test",
"verify:tasks": "tsx src/cli.ts verify"
},
"devDependencies": {
"@biomejs/biome": "2.5.12",
"@types/node": "^26.4.1",
"tsx": "^4.23.13",
"typescript": "^7.0.2",
"vitest": "^5.0.0"
}
}