-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
52 lines (52 loc) · 1.64 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "homeassistant-desktop",
"repository": {
"type": "git",
"url": "https://github.com/iprodanovbg/homeassistant-desktop"
},
"version": "1.5.3",
"description": "Desktop App (Windows / macOS / Linux) for Home Assistant built with Electron",
"author": "Ivan Prodanov",
"license": "Apache-2.0",
"main": "app.js",
"scripts": {
"start": "electron app.js",
"build-local-mac": "electron-builder build --mac --x64 --publish never",
"build-local-mac-arm": "electron-builder build --mac --arm64 --publish never",
"build-local-linux": "electron-builder build --linux appimage --x64 --publish never",
"build-local-linux-arm": "electron-builder build --linux rpm --arm64 --publish never",
"build-local-win": "electron-builder build --win --x64 --publish never",
"build-local-win-arm": "electron-builder build --win --arm64 --publish never",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"auto-launch": "^5.0.5",
"bonjour-service": "^1.0.14",
"electron-log": "^4.4.8",
"electron-store": "^8.1.0",
"electron-traywindow-positioner": "^1.1.1",
"electron-updater": "^4.6.5"
},
"devDependencies": {
"electron": "21.2.0",
"electron-builder": "^23.0.0"
},
"engines": {
"node": ">= 16"
},
"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
}
}
}
}