package.json 766 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "auto-android-controller",
  3. "version": "1.0.0",
  4. "description": "",
  5. "main": "main.js",
  6. "type": "module",
  7. "scripts": {
  8. "dev": "vite",
  9. "build": "vite build",
  10. "preview": "vite preview",
  11. "electron": "electron .",
  12. "electron:dev": "concurrently -k --success first \"npm run dev\" \"wait-on http://localhost:5173 && electron .\"",
  13. "electron:build": "npm run build && electron ."
  14. },
  15. "keywords": [],
  16. "author": "",
  17. "license": "ISC",
  18. "dependencies": {
  19. "concurrently": "^9.2.1",
  20. "react": "^18.2.0",
  21. "react-dom": "^18.2.0"
  22. },
  23. "devDependencies": {
  24. "@vitejs/plugin-react": "^4.2.1",
  25. "electron": "^28.0.0",
  26. "electron-devtools-installer": "^4.0.0",
  27. "vite": "^5.0.8",
  28. "wait-on": "^7.2.0"
  29. }
  30. }