{ "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 ", "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}" } } }