Ein neues Status-Icon im Titelbalken zeigt den Zustand der lokalen Transkripte und der Serverabfrage; ein Klick oeffnet ein eigenes Fenster mit persistiertem, zeitgestempeltem Ereignis-/Fehlerprotokoll (loeschbar). Ausserdem erkennt die App beim Start Erstinstallation vs. Update (plattformunabhaengig fuer Windows und Linux) und meldet Updates per nativer Benachrichtigung. Dazu: Versionierungs-Policy dokumentiert (package.json vor jedem Release erhoehen, sonst greift weder die Update-Erkennung noch bleiben alte Release-Dateien in release/ erhalten), sowie zwei neue Dokumente fuer Endanwender (BENUTZERHANDBUCH.md) und eine Download-Webseite (PRODUKTSEITE.md). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
102 lines
2.7 KiB
JSON
102 lines
2.7 KiB
JSON
{
|
|
"name": "claude-live-dashboard",
|
|
"productName": "Claude Live Dashboard",
|
|
"version": "1.1.0",
|
|
"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",
|
|
"!**/*.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}"
|
|
}
|
|
}
|
|
}
|