71 lines
1.5 KiB
JSON
71 lines
1.5 KiB
JSON
{
|
|
"name": "proxmox-spice-client",
|
|
"version": "1.0.3",
|
|
"description": "VDI SPICE Client f\u00fcr 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"
|
|
},
|
|
"deb": {
|
|
"depends": [
|
|
"libgtk-3-0",
|
|
"libnotify4",
|
|
"libnss3",
|
|
"libxss1",
|
|
"libxtst6",
|
|
"xdg-utils",
|
|
"libatspi2.0-0",
|
|
"libuuid1",
|
|
"virt-viewer"
|
|
]
|
|
},
|
|
"win": {
|
|
"target": [
|
|
"nsis"
|
|
],
|
|
"icon": "assets/icon.ico"
|
|
},
|
|
"nsis": {
|
|
"oneClick": false,
|
|
"allowToChangeInstallationDirectory": true,
|
|
"installerHeaderIcon": "assets/icon.ico",
|
|
"include": "build/installer.nsh",
|
|
"warningsAsErrors": false
|
|
},
|
|
"mac": {
|
|
"target": [
|
|
"dmg"
|
|
],
|
|
"icon": "assets/icon.icns"
|
|
}
|
|
},
|
|
"author": {
|
|
"name": "HackerSoft Oldenburg",
|
|
"email": "stefanhacker@gmx.de"
|
|
},
|
|
"homepage": "https://git.hacker-net.de/Aria-Software/proxmox-spice-client"
|
|
}
|