Add author/homepage metadata required for deb build

This commit is contained in:
2026-07-06 09:37:54 +02:00
parent 6b73280acc
commit 60484012ca
+28 -6
View File
@@ -1,7 +1,7 @@
{ {
"name": "proxmox-spice-client", "name": "proxmox-spice-client",
"version": "1.0.0", "version": "1.0.0",
"description": "VDI SPICE Client für Proxmox", "description": "VDI SPICE Client f\u00fcr Proxmox",
"main": "src/main.js", "main": "src/main.js",
"scripts": { "scripts": {
"start": "electron .", "start": "electron .",
@@ -22,15 +22,30 @@
"output": "dist" "output": "dist"
}, },
"linux": { "linux": {
"target": ["AppImage", "deb"], "target": [
"AppImage",
"deb"
],
"category": "Network", "category": "Network",
"icon": "assets/icon.png" "icon": "assets/icon.png"
}, },
"deb": { "deb": {
"depends": ["libgtk-3-0", "libnotify4", "libnss3", "libxss1", "libxtst6", "xdg-utils", "libatspi2.0-0", "libuuid1", "virt-viewer"] "depends": [
"libgtk-3-0",
"libnotify4",
"libnss3",
"libxss1",
"libxtst6",
"xdg-utils",
"libatspi2.0-0",
"libuuid1",
"virt-viewer"
]
}, },
"win": { "win": {
"target": ["nsis"], "target": [
"nsis"
],
"icon": "assets/icon.ico" "icon": "assets/icon.ico"
}, },
"nsis": { "nsis": {
@@ -41,8 +56,15 @@
"warningsAsErrors": false "warningsAsErrors": false
}, },
"mac": { "mac": {
"target": ["dmg"], "target": [
"dmg"
],
"icon": "assets/icon.icns" "icon": "assets/icon.icns"
} }
} },
"author": {
"name": "HackerSoft Oldenburg",
"email": "stefanhacker@gmx.de"
},
"homepage": "https://git.hacker-net.de/Aria-Software/proxmox-spice-client"
} }