-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.85 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.85 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "openeval",
"version": "0.1.5",
"private": true,
"description": "Local-first evaluation dashboard for agent CLIs with deterministic graders, live trace telemetry, and accuracy audits.",
"license": "MIT",
"engines": {
"node": ">=20 <23",
"npm": ">=10 <11"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RasputinKaiser/OpenEval.git"
},
"bugs": {
"url": "https://github.com/RasputinKaiser/OpenEval/issues"
},
"homepage": "https://github.com/RasputinKaiser/OpenEval#readme",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --max-warnings=0",
"typecheck": "tsc --noEmit",
"test": "OPENEVAL_DATA_ROOT=.test-data node --import tsx --test --test-reporter=dot tests/*.test.ts",
"test:live": "OPENEVAL_DATA_ROOT=.test-data node --import tsx --test tests/live.test.ts",
"test:telemetry": "OPENEVAL_DATA_ROOT=.test-data node --import tsx --test tests/telemetry.test.ts",
"doctor": "tsx scripts/doctor.ts",
"verify:ci": "npm run doctor && npm run typecheck && npm run lint && npm test && npm run selftest && npm run audit:accuracy:strict && bash scripts/public-upload-audit.sh --all",
"verify:release": "npm run verify:ci && npm run build",
"pricing:check": "tsx scripts/check-pricing-catalog.ts",
"bench:live": "tsx scripts/bench-live.ts",
"bench:scan": "OPENEVAL_DATA_ROOT=.test-data/scanbench-data tsx scripts/perf/scan-bench.ts",
"run:eval": "tsx lib/cli/run.ts",
"run:case": "tsx lib/cli/run.ts --case",
"run:headless": "tsx lib/cli/run.ts --runner headless",
"selftest": "tsx lib/cli/selftest.ts",
"judge:windows": "tsx scripts/judge-windows.ts",
"audit:accuracy": "tsx lib/cli/accuracy.ts",
"audit:accuracy:strict": "tsx lib/cli/accuracy.ts --strict --strict-known-bad",
"render:evidence": "tsx scripts/render-evidence.ts",
"live": "echo \"Live evals run on demand at http://localhost:3000/live\"",
"report": "tsx lib/cli/report.ts",
"test:redaction": "OPENEVAL_DATA_ROOT=.test-data node --import tsx --test tests/redaction.test.ts"
},
"dependencies": {
"better-sqlite3": "^11.3.0",
"clsx": "^2.1.1",
"lucide-react": "^0.441.0",
"next": "^15.5.23",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.11",
"@types/node": "^22.5.0",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-config-next": "^15.5.23",
"postcss": "^8.4.41",
"tailwindcss": "^3.4.10",
"tsx": "^4.19.0",
"typescript": "^5.5.4"
},
"optionalDependencies": {
"@huggingface/transformers": "^4.2.0"
},
"overrides": {
"next": {
"postcss": ">=8.5.10"
},
"sharp": "^0.35.3",
"adm-zip": "^0.6.0"
}
}