-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1 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
{
"name": "local-bench",
"version": "1.0.0",
"description": "A tool for benchmarking local LLM models via Ollama API",
"main": "dist/benchmark.js",
"scripts": {
"build": "tsc",
"benchmark": "npm run build && node dist/benchmark.js",
"server": "npm run build && node dist/server.js",
"start": "npm run build && node dist/server.js",
"strix-halo": "npm run build && node dist/strixHaloCli.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"keywords": [
"llm",
"benchmark",
"ollama",
"ai",
"performance"
],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.13.2",
"better-sqlite3": "^12.4.6",
"systeminformation": "^5.27.11"
},
"devDependencies": {
"@types/axios": "^0.9.36",
"@types/better-sqlite3": "^7.6.13",
"@types/jest": "^30.0.0",
"@types/node": "^24.10.1",
"jest": "^30.2.0",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}