39 lines
853 B
JSON
39 lines
853 B
JSON
{
|
|
"name": "proxmox-spice-client",
|
|
"version": "1.0.0",
|
|
"description": "VDI SPICE Client für Proxmox",
|
|
"main": "src/main.js",
|
|
"scripts": {
|
|
"start": "electron .",
|
|
"build:linux": "electron-builder --linux",
|
|
"build:win": "electron-builder --win"
|
|
},
|
|
"dependencies": {
|
|
"electron-store": "^7.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"electron": "^28.0.0",
|
|
"electron-builder": "^24.0.0"
|
|
},
|
|
"build": {
|
|
"appId": "de.hackersoft.proxmox-spice-client",
|
|
"productName": "Proxmox SPICE Client",
|
|
"directories": {
|
|
"output": "dist"
|
|
},
|
|
"linux": {
|
|
"target": ["AppImage", "deb"],
|
|
"category": "Network",
|
|
"icon": "assets/icon.png"
|
|
},
|
|
"win": {
|
|
"target": ["nsis"],
|
|
"icon": "assets/icon.ico"
|
|
},
|
|
"mac": {
|
|
"target": ["dmg"],
|
|
"icon": "assets/icon.icns"
|
|
}
|
|
}
|
|
}
|