Always-on-Top Electron-Widget für die Claude-Plan-Auslastung unter Windows. Liest Transkripte lokal, fragt optional den /usage-Endpunkt ab, bietet einen Einstellungsdialog und lässt sich als NSIS-Installer oder portable Fassung bauen.
72 lines
1.7 KiB
JSON
72 lines
1.7 KiB
JSON
{
|
|
"name": "claude-live-dashboard",
|
|
"productName": "Claude Live Dashboard",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "Always-on-Top Mini-Dashboard für Claude-Plan-Auslastung unter Windows",
|
|
"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"
|
|
},
|
|
"author": "",
|
|
"license": "MIT",
|
|
"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}"
|
|
}
|
|
}
|
|
}
|