-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.17 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
{
"name": "fairtask",
"version": "0.1.1",
"private": true,
"type": "module",
"description": "Agentic screening of SWE-bench-style tasks for under-specification and unfair tests, scored against OpenAI's human annotations.",
"engines": {
"node": ">=22.18"
},
"scripts": {
"typecheck": "tsc --noEmit",
"data:eval-set": "node src/data/build-eval-set.ts",
"data:calibration": "node src/data/build-calibration.ts",
"data:workspaces": "node src/data/prepare-workspaces.ts",
"run": "node src/run.ts",
"score": "node src/score.ts",
"trajectory": "node src/trajectory-view.ts",
"test": "node --test src/*.test.ts",
"audit": "node src/evidence-audit.ts",
"code-check": "node src/code-check.ts",
"screen": "node src/screen.ts",
"validate:manifests": "node scripts/validate-manifests.mjs",
"data:annotations": "node src/data/fetch-annotations.ts",
"show": "node src/show.ts"
},
"license": "MIT",
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.3.250",
"csv-parse": "^7.0.2",
"hyparquet": "^1.29.2",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^26.4.0",
"typescript": "^7.0.2"
}
}