/ package.json
package.json
1 { 2 "name": "openclaw-pixel-agents-dashboard", 3 "version": "1.0.1", 4 "description": "Real-time pixel art ops dashboard for OpenClaw agent deployments", 5 "type": "module", 6 "license": "MIT", 7 "keywords": [ 8 "openclaw", 9 "agents", 10 "dashboard", 11 "pixel-art", 12 "monitoring", 13 "ai-agents" 14 ], 15 "scripts": { 16 "dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"", 17 "dev:client": "vite", 18 "dev:server": "tsx watch server/index.ts", 19 "build": "tsc -b && vite build", 20 "start": "npx tsx server/index.ts", 21 "preview": "vite preview" 22 }, 23 "bin": { 24 "pixel-agents": "./bin/pixel-agents.cjs" 25 }, 26 "files": [ 27 "bin/", 28 "server/", 29 "src/", 30 "public/", 31 "dist/", 32 "index.html", 33 "tsconfig*.json", 34 "vite.config.ts", 35 "dashboard.config.example.json", 36 "LICENSE", 37 "README.md" 38 ], 39 "dependencies": { 40 "@types/pngjs": "^6.0.5", 41 "chokidar": "^4.0.0", 42 "express": "^5.1.0", 43 "pngjs": "^7.0.0", 44 "react": "^19.2.0", 45 "react-dom": "^19.2.0", 46 "tsx": "^4.19.0", 47 "ws": "^8.18.0" 48 }, 49 "devDependencies": { 50 "@types/express": "^5.0.0", 51 "@types/react": "^19.2.5", 52 "@types/react-dom": "^19.2.3", 53 "@types/ws": "^8.18.0", 54 "@vitejs/plugin-react": "^5.1.1", 55 "concurrently": "^9.1.0", 56 "typescript": "~5.9.3", 57 "vite": "^7.2.4" 58 }, 59 "engines": { 60 "node": ">=20" 61 }, 62 "repository": { 63 "type": "git", 64 "url": "https://github.com/jaffer1979/openclaw-pixel-agents-dashboard.git" 65 } 66 }