| 123456789101112131415161718192021222324252627282930 |
- {
- "name": "auto-android-controller",
- "version": "1.0.0",
- "description": "",
- "main": "main.js",
- "type": "module",
- "scripts": {
- "dev": "vite",
- "build": "vite build",
- "preview": "vite preview",
- "electron": "electron .",
- "electron:dev": "concurrently -k --success first \"npm run dev\" \"wait-on http://localhost:5173 && electron .\"",
- "electron:build": "npm run build && electron ."
- },
- "keywords": [],
- "author": "",
- "license": "ISC",
- "dependencies": {
- "react": "^18.2.0",
- "react-dom": "^18.2.0"
- },
- "devDependencies": {
- "@vitejs/plugin-react": "^4.2.1",
- "concurrently": "^8.2.2",
- "electron": "^28.0.0",
- "electron-devtools-installer": "^4.0.0",
- "vite": "^5.0.8",
- "wait-on": "^7.2.0"
- }
- }
|