-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.2 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
{
"name": "cache-hunter",
"version": "1.0.0",
"description": "Transparent proxy for vLLM with SQLite logging for cache debugging",
"type": "module",
"scripts": {
"start": "concurrently -n backend,frontend -c blue,green \"npm run start:backend\" \"npm run start:frontend\"",
"start:backend": "tsx src/index.ts",
"start:frontend": "cd frontend && npm run dev",
"dev": "concurrently -n backend,frontend -c blue,green \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "tsx watch src/index.ts",
"dev:frontend": "cd frontend && npm run dev",
"build": "cd frontend && npm run build",
"test": "vitest",
"test:run": "vitest run",
"analyze": "tsx src/analyze-patterns.ts",
"tree": "tsx src/hash-tree.ts",
"demo": "tsx src/demo-tree.ts"
},
"dependencies": {
"concurrently": "^10.0.3",
"express": "^4.18.2",
"sql.js": "^1.10.3",
"uuid": "^9.0.0",
"ws": "^8.21.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.11.0",
"@types/sql.js": "^1.4.9",
"@types/uuid": "^9.0.7",
"@types/ws": "^8.18.1",
"serve": "^14.2.6",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^4.1.2"
}
}