mirror of
https://github.com/sascha-hemi/homeassistant-desktop.git
synced 2026-03-21 08:06:30 +01:00
46 lines
1.3 KiB
JSON
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
|
|
}
|
|
}
|
|
}
|
|
}
|