-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.16 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
{
"name": "inference-forge",
"version": "0.5.0",
"private": true,
"description": "All-in-one local LLM inference management suite \u2014 monitoring, benchmarking, and Modelfile generation",
"workspaces": [
"packages/server",
"packages/dashboard"
],
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:dashboard\"",
"dev:server": "npm run dev -w packages/server",
"dev:dashboard": "npm run dev -w packages/dashboard",
"build": "npm run build -w packages/server && npm run build -w packages/dashboard",
"typecheck": "npm run typecheck -w packages/server && npm run typecheck -w packages/dashboard",
"test": "vitest run",
"test:watch": "vitest",
"start": "npm run start -w packages/server"
},
"devDependencies": {
"@types/supertest": "^7.2.1",
"concurrently": "^10.0.3",
"supertest": "^7.2.2",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
},
"overrides": {
"esbuild": "^0.28.1",
"qs": "^6.15.2",
"vite": "^6.4.3",
"ws": "^8.21.0"
},
"engines": {
"node": ">=18.0.0"
},
"author": "DjimIT B.V.",
"license": "MIT",
"dependencies": {
"recharts": "^3.9.1"
}
}