Files
homeassistant-desktop/package.json
2022-09-03 19:52:44 +03:00

46 lines
1.3 KiB
JSON

{
"name": "homeassistant-desktop",
"repository": {
"type": "git",
"url": "https://github.com/iprodanovbg/homeassistant-desktop"
},
"version": "1.4.11",
"description": "Desktop App (Windows / macOS / Linux) for Home Assistant built with Electron",
"main": "app.js",
"scripts": {
"start": "electron app.js",
"build-local": "electron-builder build --mac --arm64 --publish never",
"build-local-linux": "electron-builder build --linux appimage --arm64 --publish never",
"build-local-win": "electron-builder build --win --arm64 --publish never",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Marvin Kelm (https://github.com/mrvnklm)",
"license": "Apache-2.0",
"dependencies": {
"auto-launch": "^5.0.5",
"bonjour": "^3.5.0",
"electron-store": "^8.0.1",
"electron-traywindow-positioner": "^1.1.0",
"electron-updater": "^4.3.9"
},
"devDependencies": {
"electron": "^16.0.1",
"electron-builder": "^22.14.5"
},
"build": {
"appId": "com.electron.homeassistant-desktop",
"artifactName": "${productName}-v${version}-${os}-${arch}.${ext}",
"productName": "Home Assistant Desktop",
"mac": {
"category": "public.app-category.productivity",
"target": [
"zip",
"dmg"
],
"extendInfo": {
"LSUIElement": true
}
}
}
}