package.json 722 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "auto-record",
  3. "private": true,
  4. "version": "0.1.0",
  5. "type": "module",
  6. "scripts": {
  7. "dev": "vite",
  8. "build": "tsc && vite build",
  9. "preview": "vite preview",
  10. "tauri": "tauri"
  11. },
  12. "dependencies": {
  13. "@ant-design/icons": "6.x",
  14. "@tauri-apps/api": "^2",
  15. "@tauri-apps/plugin-opener": "^2",
  16. "@tauri-apps/plugin-sql": "^2",
  17. "antd": "^6.4.0",
  18. "react": "^19.1.0",
  19. "react-dom": "^19.1.0"
  20. },
  21. "devDependencies": {
  22. "@tailwindcss/vite": "^4.0.0",
  23. "@tauri-apps/cli": "^2",
  24. "@types/react": "^19.1.8",
  25. "@types/react-dom": "^19.1.6",
  26. "@vitejs/plugin-react": "^4.6.0",
  27. "tailwindcss": "^4.0.0",
  28. "typescript": "~5.8.3",
  29. "vite": "^7.0.4"
  30. }
  31. }