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>
34 lines
819 B
JSON
34 lines
819 B
JSON
{
|
|
"name": "@uncaged/cli-dashboard",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"description": "Uncaged Dashboard CLI - command recording and sync tools (urec and uconn)",
|
|
"bin": {
|
|
"urec": "./dist/urec.js",
|
|
"uconn": "./dist/uconn.js"
|
|
},
|
|
"files": ["src", "dist", "package.json"],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://git.shazhou.work/uncaged/worker-dashboard.git",
|
|
"directory": "packages/cli"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "vitest run --passWithNoTests",
|
|
"test:ci": "vitest run --passWithNoTests"
|
|
},
|
|
"dependencies": {
|
|
"ws": "^8.18.0",
|
|
"chokidar": "^4.0.0",
|
|
"commander": "^13.1.0",
|
|
"@uncaged/dashboard-server": "workspace:^"
|
|
},
|
|
"devDependencies": {
|
|
"@types/ws": "^8.18.1"
|
|
}
|
|
}
|