{ "name": "podcast-upptokur", "private": true, "version": "1.0.0", "type": "module", "main": "electron/main.cjs", "scripts": { "dev": "vite", "build": "tsc && vite build", "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0", "preview": "vite preview", "electron:dev": "concurrently \"vite\" \"wait-on tcp:5173 && electron .\"", "electron:build": "vite build && electron-builder" }, "build": { "appId": "com.podcast.upptokur", "productName": "Podcast Upptökur", "directories": { "output": "dist_electron" }, "files": [ "dist/**/*", "electron/**/*" ], "extraResources": [ "ffmpeg/**/*" ], "win": { "target": [ { "target": "nsis", "arch": [ "x64" ] }, { "target": "portable", "arch": [ "x64" ] } ], "icon": "public/images/icon.png" }, "mac": { "target": "dmg", "icon": "public/images/icon.png" }, "linux": { "target": "AppImage", "icon": "public/images/icon.png", "category": "AudioVideo;Audio;Recorder;" }, "nsis": { "oneClick": false, "allowToChangeInstallationDirectory": true, "createDesktopShortcut": true, "createStartMenuShortcut": true }, "portable": { "artifactName": "PodcastUpptokur-Portable.exe" } }, "dependencies": { "@headlessui/react": "^2.2.2", "@heroicons/react": "^2.1.1", "@tailwindcss/forms": "^0.5.7", "audiobuffer-to-wav": "^1.0.0", "date-fns": "^3.3.1", "electron-store": "^8.1.0", "form-data": "^4.0.2", "react": "^18.2.0", "react-dom": "^18.2.0", "react-h5-audio-player": "^3.10.0-rc.1", "react-icons": "^5.5.0", "socket.io-client": "^4.8.1", "wavesurfer.js": "^7.9.5", "webmidi": "^3.1.8" }, "devDependencies": { "@types/react": "^18.2.55", "@types/react-dom": "^18.2.19", "@typescript-eslint/eslint-plugin": "^6.21.0", "@typescript-eslint/parser": "^6.21.0", "@vitejs/plugin-react": "^4.2.1", "autoprefixer": "^10.4.17", "concurrently": "^9.1.2", "electron": "^28.1.0", "electron-builder": "^24.9.1", "eslint": "^8.56.0", "eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-react-refresh": "^0.4.5", "postcss": "^8.4.35", "tailwindcss": "^3.4.1", "typescript": "^5.3.3", "vite": "^5.1.1", "wait-on": "^8.0.3" } }