Files
worker-dashboard/package.json
T
xiaoju f444dce133
CI / check (pull_request) Failing after 1m2s
feat: rebrand from UWF Dashboard to Uncaged Dashboard
- 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>
2026-05-28 16:00:01 +00:00

25 lines
807 B
JSON

{
"name": "worker-dashboard",
"private": true,
"description": "Uncaged Dashboard - a real-time distributed command execution monitoring system",
"workspaces": ["packages/*"],
"scripts": {
"dev:server": "node packages/server/src/index.mjs",
"dev:frontend": "npm -w @uncaged/dashboard-frontend run dev",
"build": "npm -w @uncaged/dashboard-frontend run build",
"typecheck": "bunx tsc --build",
"check": "biome check .",
"format": "biome format --write .",
"test": "bun run --filter './packages/*' test",
"test:ci": "bun run --filter './packages/*' test:ci"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.27.12",
"@types/node": "^22.10.5",
"bun-types": "^1.2.4",
"typescript": "^5.7.3",
"vitest": "^2.1.8"
}
}