-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.24 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
{
"name": "repobench",
"version": "0.1.0",
"description": "Benchmark AI coding agents on your own repo. Locally. Reproducibly. In CI.",
"type": "module",
"homepage": "https://github.com/Atomics-hub/RepoBench#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Atomics-hub/RepoBench.git"
},
"bugs": {
"url": "https://github.com/Atomics-hub/RepoBench/issues"
},
"bin": {
"repobench": "dist/cli.js"
},
"files": [
"dist",
"docs",
"examples",
"scripts",
"tests/fixtures",
"README.md",
"LICENSE",
"action.yml"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"check": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"dev": "tsx src/cli.ts",
"demo": "npm run build && node scripts/create-demo-report.mjs",
"prepack": "npm run build"
},
"keywords": [
"ai",
"coding-agent",
"benchmark",
"ci",
"codex",
"claude",
"cursor",
"copilot"
],
"author": "Atomics Hub",
"license": "Apache-2.0",
"dependencies": {
"yaml": "^2.7.0"
},
"devDependencies": {
"@types/node": "^22.10.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^4.1.5"
},
"engines": {
"node": ">=20"
}
}