-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1008 Bytes
/
package.json
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
{
"name": "ollama-bench",
"version": "1.0.4",
"description": "A CLI tool to benchmark Ollama models performance",
"main": "dist/index.js",
"type": "module",
"bin": {
"ollama-bench": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc && node dist/index.js"
},
"keywords": ["ollama", "benchmark", "ai", "models", "cli"],
"author": "dalist1",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dalist1/ollama-bench.git"
},
"bugs": {
"url": "https://github.com/dalist1/ollama-bench/issues"
},
"homepage": "https://github.com/dalist1/ollama-bench#readme",
"dependencies": {
"ollama": "latest"
},
"devDependencies": {
"@types/node": "^20.17.5",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=14.0.0"
},
"publishConfig": {
"access": "public"
}
}