-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·90 lines (90 loc) · 1.77 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "maceelight",
"version": "1.0.1",
"description": "Control Yeelight on mac",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"pkg": "electron-builder"
},
"keywords": [
"electron",
"electronjs",
"yeelight",
"xiaomi",
"mi",
"mac"
],
"build": {
"productName": "Maceelight",
"appId": "org.mohammad1ta.maceelight",
"files": [
"./assets",
"./index.html",
"./app.js",
"./IconTemplate.png",
"./IconTemplate@2x.png",
"package.json"
],
"dmg": {
"icon": "./assets/images/icon.png",
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"target": [
"nsis",
"msi"
]
},
"linux": {
"target": [
"deb",
"rpm",
"snap",
"AppImage"
],
"category": "Development"
},
"directories": {
"buildResources": "resources",
"output": "release"
},
"publish": {
"provider": "github",
"owner": "electron-github",
"repo": "electron-github",
"private": false
}
},
"author": {
"name": "Mohammadreza Yektamaram",
"email": "mohammad.1ta@gmail.com",
"url": "https://www.linkedin.com/in/mohammad1ta"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mohammad1ta/maceelight/issues"
},
"devDependencies": {
"electron": "^4.1.5",
"electron-builder": "^20.39.0",
"electron-installer-dmg": "^2.0.0"
},
"dependencies": {
"@jaames/iro": "^4.3.3",
"menubar": "^5.2.3",
"miio": "^0.15.6"
}
}