67 lines
1.6 KiB
JSON
67 lines
1.6 KiB
JSON
{
|
|
"name": "metatron.drive",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "Metatron.Drive Windows desktop client",
|
|
"main": "electron/main.cjs",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "concurrently -k \"vite\" \"wait-on tcp:5173 && node electron/launch.cjs\"",
|
|
"build": "vite build",
|
|
"start": "node electron/launch.cjs",
|
|
"dist": "npm run build && electron-builder --win nsis",
|
|
"lint": "eslint ."
|
|
},
|
|
"dependencies": {
|
|
"@tailwindcss/vite": "^4.1.17",
|
|
"axios": "^1.13.2",
|
|
"lucide-react": "^0.554.0",
|
|
"react": "^19.2.0",
|
|
"react-dom": "^19.2.0",
|
|
"tailwindcss": "^4.1.17"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.39.1",
|
|
"@vitejs/plugin-react": "^5.1.1",
|
|
"concurrently": "^9.2.1",
|
|
"electron": "^39.2.3",
|
|
"electron-builder": "^26.0.12",
|
|
"eslint": "^9.39.1",
|
|
"eslint-plugin-react": "^7.37.5",
|
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
"eslint-plugin-react-refresh": "^0.4.24",
|
|
"globals": "^16.5.0",
|
|
"vite": "^7.2.4",
|
|
"wait-on": "^9.0.3"
|
|
},
|
|
"build": {
|
|
"appId": "metatron.drive",
|
|
"productName": "Metatron.Drive",
|
|
"asar": true,
|
|
"directories": {
|
|
"output": "release"
|
|
},
|
|
"files": [
|
|
"dist/**/*",
|
|
"electron/**/*",
|
|
"package.json"
|
|
],
|
|
"win": {
|
|
"target": [
|
|
{
|
|
"target": "nsis",
|
|
"arch": [
|
|
"x64"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"nsis": {
|
|
"oneClick": false,
|
|
"allowToChangeInstallationDirectory": true,
|
|
"createDesktopShortcut": true,
|
|
"createStartMenuShortcut": true
|
|
}
|
|
}
|
|
}
|