-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 781 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 781 Bytes
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
{
"name": "selfhost-llm",
"version": "1.0.0",
"description": "GPU Memory Calculator for Self-Hosted LLM Inference",
"main": "index.html",
"scripts": {
"test": "node tests/gpu-catalog.test.js && node tests/model-catalog.test.js",
"dev": "wrangler dev --port 8080 --local",
"deploy": "wrangler deploy",
"deploy:staging": "wrangler deploy --env staging",
"deploy:production": "wrangler deploy --env production",
"preview": "wrangler dev --port 3000",
"tail": "wrangler tail"
},
"keywords": [
"llm",
"gpu",
"calculator",
"self-hosted",
"vram",
"memory"
],
"author": "",
"license": "MIT",
"dependencies": {
"@cloudflare/kv-asset-handler": "^0.3.0"
},
"devDependencies": {
"wrangler": "^4.28.0"
}
}