Files
worker-dashboard/packages/frontend/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

31 lines
814 B
JSON

{
"name": "@uncaged/dashboard-frontend",
"private": true,
"version": "1.0.0",
"type": "module",
"description": "Uncaged Dashboard frontend - a real-time web interface for monitoring command execution",
"repository": {
"type": "git",
"url": "https://git.shazhou.work/uncaged/worker-dashboard.git",
"directory": "packages/frontend"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"test": "vitest run --passWithNoTests",
"test:ci": "vitest run --passWithNoTests"
},
"dependencies": {
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-router-dom": "^7.6.1"
},
"devDependencies": {
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"@vitejs/plugin-react": "^4.4.1",
"typescript": "^5.7.0",
"vite": "^6.3.0"
}
}