CoolFace
Apppublic

apssouza22/webgpu-cluster

sourceHugging Faceupdated 4mo agoView on Hugging Face
0likes
package.json33 linesDownload Raw Back to root
1{2  "name": "gpu-video-cluster",3  "private": true,4  "version": "1.0.0",5  "type": "module",6  "description": "Browser GPU cluster for RF-DETR object detection via HTTP",7  "scripts": {8    "predev": "lsof -ti :8787 | xargs kill -9 2>/dev/null || true",9    "dev": "concurrently -k -n web,api -c blue,green \"vite\" \"PORT=8787 tsx watch server/index.ts\"",10    "dev:web": "vite",11    "dev:api": "PORT=8787 tsx watch server/index.ts",12    "build": "tsc && tsc -p tsconfig.server.json && vite build",13    "build:space": "tsc && tsc -p tsconfig.server.json && vite build --mode space",14    "preview": "vite preview",15    "start": "SERVE_STATIC=1 tsx server/index.ts",16    "start:api": "PORT=8787 tsx server/index.ts"17  },18  "dependencies": {19    "@huggingface/transformers": "^4.2.0",20    "cors": "^2.8.5",21    "express": "^5.1.0",22    "tsx": "^4.20.3"23  },24  "devDependencies": {25    "@types/cors": "^2.8.17",26    "@types/express": "^5.0.3",27    "@webgpu/types": "^0.1.66",28    "concurrently": "^9.2.0",29    "typescript": "~5.9.3",30    "vite": "^7.3.2"31  }32}33