f444dce133
CI / check (pull_request) Failing after 1m2s
- Update all user-facing text and branding across frontend, CLI, and server - Migrate directory structure from ~/.uwf-dashboard to ~/.uncaged/dashboard - Implement backward-compatible auto-migration for existing users - Add comprehensive test coverage for branding and migration logic - Update package metadata descriptions across all packages Fixes #5 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
37 lines
878 B
JSON
37 lines
878 B
JSON
{
|
|
"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"
|
|
}
|
|
}
|