-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.45 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
{
"name": "quickbench",
"version": "0.1.0",
"description": "🏃 Sovereign Agent Evaluation Framework - Zero cloud dependencies. Local-only, cryptographically signed benchmarks for AI agents. npm run demo = instant evals.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"quickbench": "./bin/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"demo": "ts-node demo/eval-example.ts",
"docker": "docker build -t quickbench . && docker run quickbench npm run demo",
"prepublishOnly": "npm run build"
},
"dependencies": {
"csv-parse": "^5.5.6",
"js-yaml": "^4.1.0",
"open": "^11.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^22.7.4",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"keywords": [
"agent-evaluation",
"benchmark",
"sovereign-ai",
"local-ai",
"mlops",
"ai-agent",
"llm-eval"
],
"author": "Capkit Team <team@capkit.ai>",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/**/*",
"README.md",
"datasets/**/*",
"bin/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/capkit-ai/quickbench.git"
},
"homepage": "https://github.com/capkit-ai/quickbench#readme",
"bugs": "https://github.com/capkit-ai/quickbench/issues"
}