-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 904 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 904 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
{
"name": "@phatblat/evalkit",
"version": "0.1.0",
"description": "Framework for evaluating a CLI coding agent across a matrix of models, thinking levels, fixtures, and repetitions. Grades git state, not transcripts.",
"type": "module",
"license": "MIT",
"author": "Ben Chatelain",
"repository": { "type": "git", "url": "git+https://github.com/phatblat/evalkit.git" },
"homepage": "https://github.com/phatblat/evalkit#readme",
"bugs": { "url": "https://github.com/phatblat/evalkit/issues" },
"keywords": ["evals", "evaluation", "coding-agent", "bun", "git", "harness"],
"main": "./src/index.ts",
"exports": { ".": "./src/index.ts" },
"files": ["src", "README.md", "LICENSE.md"],
"publishConfig": { "access": "public" },
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.9.0"
},
"scripts": {
"check": "tsc --noEmit",
"test": "bun test"
}
}