-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.13 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
{
"name": "virtual-hosts",
"version": "0.7.0",
"description": "Virtual Hosts",
"main": "main.js",
"repository": "https://github.com/manngo/virtual-hosts",
"keywords": [],
"author": "Mark Simon",
"license": "CC0-1.0",
"devDependencies": {
"electron": "^18.3.5",
"electron-builder": "^23.0.3"
},
"dependencies": {
"electron-reload": "^1.4.0",
"sudo-prompt": "^9.0.0",
"temp": "^0.9.0"
},
"productName": "Virtual Hosts",
"build": {
"appId": "com.webcraft101.virtual-hosts",
"mac": {
"category": "public.app-category.developer-tools",
"target": [
"zip",
"dmg",
"dir"
],
"icon": "images/virtual-hosts.icns"
},
"win": {
"target": [
"zip",
"nsis",
"portable"
],
"icon": "images/virtual-hosts.ico"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowElevation": true,
"allowToChangeInstallationDirectory": true
},
"directories": {
"output": "../electron-builder/${name}/${os}"
}
},
"scripts": {
"start": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"pack-win": "build --dir --win",
"dist-win": "build --win"
}
}