-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.38 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.38 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
60
61
{
"name": "agent-eval",
"version": "0.1.0",
"private": true,
"license": "MIT",
"description": "Deterministic, static, transcript-first agent usage evaluation with public-safe artifacts.",
"type": "module",
"packageManager": "pnpm@11.1.3",
"repository": {
"type": "git",
"url": "https://github.com/fitchmultz/agent-eval.git"
},
"homepage": "https://github.com/fitchmultz/agent-eval",
"bugs": {
"url": "https://github.com/fitchmultz/agent-eval/issues"
},
"keywords": [
"ai-evals",
"claude-code",
"codex",
"developer-tools",
"pi",
"transcripts"
],
"engines": {
"node": ">=22.16.0"
},
"bin": {
"agent-eval": "./dist/cli.js"
},
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json && node scripts/copy-runtime-assets.mjs",
"benchmark": "tsx src/cli.ts benchmark --output-dir artifacts/benchmark",
"check": "pnpm lint && pnpm typecheck && pnpm test && pnpm benchmark && pnpm scan:artifacts artifacts/benchmark && pnpm scan:repo && pnpm build && pnpm smoke:dist",
"check:release": "node scripts/check-clean-worktree.mjs --require-main --require-upstream-clean && pnpm exec tsx scripts/verify-release-manifests.ts artifacts/final-qa-codex artifacts/final-qa-claude artifacts/final-qa-pi artifacts/final-qa-opencode && pnpm lint && pnpm typecheck && pnpm test && pnpm benchmark && pnpm scan:artifacts artifacts/benchmark artifacts/final-qa-codex artifacts/final-qa-claude artifacts/final-qa-pi artifacts/final-qa-opencode && pnpm scan:repo && pnpm build && pnpm smoke:dist && node scripts/check-clean-worktree.mjs --require-main --require-upstream-clean",
"dev": "tsx src/cli.ts",
"format": "biome check --write .",
"inspect": "tsx src/cli.ts inspect",
"lint": "biome check .",
"parse": "tsx src/cli.ts parse",
"eval": "tsx src/cli.ts eval",
"report": "tsx src/cli.ts report",
"scan:artifacts": "node scripts/public-surface-scan.mjs",
"scan:repo": "node scripts/public-surface-scan.mjs --mode=repo",
"smoke:dist": "node scripts/dist-smoke.mjs",
"test": "vitest run",
"typecheck": "tsc --noEmit -p tsconfig.json"
},
"dependencies": {
"commander": "14.0.3",
"zod": "4.4.3"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@types/node": "25.9.1",
"@vitest/coverage-v8": "^4.1.7",
"tsx": "4.22.3",
"typescript": "6.0.3",
"vitest": "4.1.7"
}
}