-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.27 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
53
54
{
"name": "ha-menu",
"description": "Customizable way to interact with Home Assistant through the menu bar on macOS.",
"version": "2.2.1",
"author": {
"name": "Addison Ireland"
},
"repository": {
"type": "git",
"url": "https://github.com/addyire/ha-menu"
},
"main": "index.js",
"license": "MIT",
"build": {
"appId": "com.addyire.hamenu",
"productName": "HA Menu",
"fileAssociations": [
{
"ext": "bar",
"name": "ha-menu config",
"isPackage": true,
"role": "Editor"
}
],
"files": [
"!**/img",
"!**/example"
]
},
"scripts": {
"start": "electron .",
"lint": "eslint . --fix",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"publish": "electron-builder --mac --x64 --arm64 --win -p always"
},
"devDependencies": {
"electron": "^15.3.0",
"electron-builder": "^23.6.0",
"eslint": "^7.12.1",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1"
},
"dependencies": {
"archiver": "^5.3.0",
"axios": "^0.24.0",
"electron-log": "^4.4.1",
"homeassistant": "^0.2.0",
"ncp": "^2.0.0",
"unzipper": "^0.10.11"
}
}