mirror of
https://github.com/jhbruhn/respira.git
synced 2026-01-27 10:23:41 +00:00
- Install Tailwind CSS and configure Vite plugin - Replace all custom CSS classes with Tailwind utility classes - Migrate all components to use Tailwind styling: - App.tsx: Responsive layout with modern styling - MachineConnection: Status badges and action buttons - FileUpload: File input and progress bars with shimmer effect - ProgressMonitor: Color blocks, state indicators, and actions - ConfirmDialog: Modal overlay with backdrop blur - PatternCanvas: Canvas viewer with floating controls - Add custom shimmer animation for progress bars - Fix canvas resizing issue during zoom operations: - Add ResizeObserver for stable container dimensions - Use clientWidth/clientHeight instead of offset dimensions - Cache container size to prevent layout thrashing - Improve zoom button behavior to zoom towards viewport center - Maintain consistent design with shadows, borders, and transitions 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
36 lines
907 B
JSON
36 lines
907 B
JSON
{
|
|
"name": "web",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite --host 0.0.0.0",
|
|
"build": "tsc -b && vite build",
|
|
"lint": "eslint .",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"@tailwindcss/vite": "^4.1.17",
|
|
"konva": "^10.0.12",
|
|
"pyodide": "^0.27.4",
|
|
"react": "^19.2.0",
|
|
"react-dom": "^19.2.0",
|
|
"react-konva": "^19.2.1",
|
|
"tailwindcss": "^4.1.17"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.39.1",
|
|
"@types/node": "^24.10.1",
|
|
"@types/react": "^19.2.5",
|
|
"@types/react-dom": "^19.2.3",
|
|
"@vitejs/plugin-react": "^5.1.1",
|
|
"eslint": "^9.39.1",
|
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
"eslint-plugin-react-refresh": "^0.4.24",
|
|
"globals": "^16.5.0",
|
|
"typescript": "~5.9.3",
|
|
"typescript-eslint": "^8.46.4",
|
|
"vite": "^7.2.4",
|
|
"vite-plugin-static-copy": "^3.1.4"
|
|
}
|
|
}
|