Files
kanban/package.json
xiaomai 485d75820b feat(ui): overhaul interface with Nuxt UI
Integrate the Nuxt UI component library and completely revamp the application's user interface to improve usability, aesthetics, and maintainability.

- Replace all custom components and native browser dialogs (`alert`, `prompt`, `confirm`) with Nuxt UI components like `UCard`, `UButton`, `UModal`, and `UNotifications`.
- Refactor the main page by extracting the sidebar into dedicated panel components: `CategoryPanel`, `BoardSummaryPanel`, and `HistoryPanel`.
- Redesign all major components (Toolbar, Board, Stage, Task) for a cleaner layout and improved information hierarchy.
- Implement user-friendly modals for all creation, editing, and deletion flows, providing a more consistent user experience.
- Add toast notifications to provide immediate feedback for user actions.
2025-10-22 17:52:17 +08:00

30 lines
654 B
JSON

{
"name": "open-kanban-nuxt",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "nuxt dev",
"build": "nuxt build",
"preview": "nuxt preview",
"lint": "echo 'no lint configured'"
},
"dependencies": {
"nuxt": "^4.0.0",
"pinia": "^2.1.7",
"@pinia/nuxt": "^0.5.1",
"zod": "^3.23.8",
"@vueuse/core": "^11.0.0"
},
"devDependencies": {
"typescript": "^5.6.3",
"@nuxtjs/tailwindcss": "^6.11.4",
"tailwindcss": "^3.4.13",
"postcss": "^8.4.47",
"autoprefixer": "^10.4.19",
"@types/node": "^20.11.30",
"@nuxt/ui": "^2.15.1",
"@nuxt/icon": "^1.5.0"
}
}