Files
proxmox-spice-client/package.json
T
aria.hacker ebb405ab9b Support multiple standalone Proxmox hosts with shared credentials
Comma-separated host list logs into every host, merges VM lists tagged
by origin host, and routes SPICE connections to the right one. Also
adds a username format hint (user@realm) on the login form.
2026-07-06 10:29:44 +02:00

71 lines
1.5 KiB
JSON

{
"name": "proxmox-spice-client",
"version": "1.0.2",
"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"
}