shuzhiren-comfyui/package.json

35 lines
926 B
JSON

{
"name": "comfyui-cluster-bridge",
"version": "1.0.0",
"description": "ComfyUI实例集群通信中间层",
"main": "backend/src/index.js",
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "nodemon backend/src/index.js",
"dev:frontend": "cd frontend && vite",
"build:frontend": "cd frontend && vite build",
"start": "node backend/src/index.js",
"test": "vitest"
},
"dependencies": {
"express": "^4.18.2",
"ws": "^8.14.2",
"axios": "^1.6.2",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.2",
"cors": "^2.8.5",
"morgan": "^1.10.0",
"winston": "^3.11.0",
"form-data": "^4.0.0",
"multer": "^1.4.5-lts.1"
},
"devDependencies": {
"nodemon": "^3.0.2",
"concurrently": "^8.2.2",
"vitest": "^1.1.0"
},
"keywords": ["comfyui", "cluster", "websocket"],
"author": "",
"license": "MIT"
}