Klicks auf Links im gerenderten Markdown (z. B. BENUTZERHANDBUCH.md, LICENSE.txt) navigierten das Fenster selbst dorthin und liessen einen leeren, unschliessbaren Dialog zurueck. Main-Prozess faengt jetzt jede Navigation im Info-Fenster ab: externe http(s)-Links oeffnen im Standardbrowser, interne Verweise auf Benutzerhandbuch/Disclaimer/ Lizenz wechseln stattdessen den Inhalt desselben Dialogs. Neuer dritter Menüpunkt "Lizenz" (LICENSE.txt) im Info-Dropdown. Der README.md-Link in DISCLAIMER.md zeigt jetzt auf die Repo-Seite auf Gitea statt auf einen kaputten relativen Pfad. Claude-Session: https://claude.ai/code/session_01VeqoaAZDVSCU4QBtiYDC5C
108 lines
2.8 KiB
JSON
108 lines
2.8 KiB
JSON
{
|
|
"name": "claude-live-dashboard",
|
|
"productName": "Claude Live Dashboard",
|
|
"version": "1.2.1",
|
|
"private": true,
|
|
"description": "Always-on-Top Mini-Dashboard für Claude-Plan-Auslastung unter Windows und Linux",
|
|
"main": "src/main/index.js",
|
|
"scripts": {
|
|
"start": "electron .",
|
|
"dump": "node src/main/dump.js",
|
|
"calibrate": "node src/main/calibrate.js",
|
|
"icons": "node tools/make-icon.js",
|
|
"dist": "electron-builder --win",
|
|
"pack": "electron-builder --win --dir",
|
|
"dist:linux": "electron-builder --linux",
|
|
"pack:linux": "electron-builder --linux --dir"
|
|
},
|
|
"author": "",
|
|
"license": "MIT",
|
|
"_homepage": "Platzhalter — nur nötig, weil das .deb-Paket ein Homepage-Feld verlangt.",
|
|
"homepage": "https://github.com/exilkieler/claude-live-dashboard",
|
|
"devDependencies": {
|
|
"electron": "^43.2.0",
|
|
"electron-builder": "^25.1.8"
|
|
},
|
|
"build": {
|
|
"appId": "de.local.claude-live-dashboard",
|
|
"productName": "Claude Live Dashboard",
|
|
"copyright": "Copyright © 2026",
|
|
"directories": {
|
|
"output": "release",
|
|
"buildResources": "assets"
|
|
},
|
|
"files": [
|
|
"src/**/*",
|
|
"assets/**/*",
|
|
"config.json",
|
|
"BENUTZERHANDBUCH.md",
|
|
"DISCLAIMER.md",
|
|
"LICENSE.txt",
|
|
"!**/*.map"
|
|
],
|
|
"win": {
|
|
"target": [
|
|
{
|
|
"target": "nsis",
|
|
"arch": [
|
|
"x64"
|
|
]
|
|
},
|
|
{
|
|
"target": "portable",
|
|
"arch": [
|
|
"x64"
|
|
]
|
|
}
|
|
],
|
|
"icon": "assets/icon.png",
|
|
"artifactName": "${productName}-${version}-${arch}.${ext}"
|
|
},
|
|
"nsis": {
|
|
"oneClick": false,
|
|
"perMachine": false,
|
|
"allowToChangeInstallationDirectory": true,
|
|
"createDesktopShortcut": true,
|
|
"createStartMenuShortcut": true,
|
|
"shortcutName": "Claude Live Dashboard",
|
|
"installerLanguages": [
|
|
"de_DE"
|
|
],
|
|
"language": "1031",
|
|
"deleteAppDataOnUninstall": false
|
|
},
|
|
"portable": {
|
|
"artifactName": "${productName}-${version}-portable.${ext}"
|
|
},
|
|
"linux": {
|
|
"target": [
|
|
{
|
|
"target": "AppImage",
|
|
"arch": [
|
|
"x64"
|
|
]
|
|
},
|
|
{
|
|
"target": "deb",
|
|
"arch": [
|
|
"x64"
|
|
]
|
|
}
|
|
],
|
|
"icon": "assets/icon.png",
|
|
"executableName": "claude-live-dashboard",
|
|
"category": "Utility",
|
|
"maintainer": "Stefan <exilkieler@gmail.com>",
|
|
"synopsis": "Auslastung des Claude-Abos im Blick",
|
|
"description": "Rahmenloses Always-on-Top-Widget, das die Auslastung des Claude-Abos aus den lokalen Claude-Code-Transkripten liest.",
|
|
"desktop": {
|
|
"StartupWMClass": "claude-live-dashboard"
|
|
},
|
|
"artifactName": "${productName}-${version}-${arch}.${ext}"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"marked": "^18.0.11"
|
|
}
|
|
}
|