-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 1.08 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "homeassistant-desktop",
"repository": {
"type": "git",
"url": "https://github.com/kaehnd/homeassistant-desktop"
},
"version": "1.4.10",
"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",
"productName": "Home Assistant"
}
}