{ "name": "@uncaged/dashboard-server", "version": "1.0.0", "private": true, "type": "module", "description": "Uncaged Dashboard server - WebSocket and REST API for aggregating command records", "exports": { ".": { "bun": "./src/index.ts", "types": "./dist/index.d.ts", "import": "./dist/index.js" }, "./protocol": { "types": "./dist/protocol.d.ts", "import": "./dist/protocol.js" } }, "repository": { "type": "git", "url": "https://git.shazhou.work/uncaged/worker-dashboard.git", "directory": "packages/server" }, "scripts": { "build": "tsc", "test": "vitest run --passWithNoTests", "test:ci": "vitest run --passWithNoTests" }, "dependencies": { "express": "^5.1.0", "ws": "^8.18.0" }, "devDependencies": { "@types/express": "^5.0.0", "@types/ws": "^8.5.13" } }