-
Notifications
You must be signed in to change notification settings - Fork 5
/
package_prod.json
41 lines (41 loc) · 975 Bytes
/
package_prod.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
{
"name": "Bike3S",
"version": "0.7.0",
"main": "frontend/main.js",
"author": "URJC <[email protected]>",
"description": "This software can create and analyse Bike Sharing System Simulations",
"homepage": "https://github.com/stimonm/Bike3S",
"scripts": {
"start:electron": "electron ./build",
"distribute": "node fuse build:dist && cd build && npm install && electron-builder -mwl",
"debug:frontend": "node fuse build:dev"
},
"build": {
"appId": "es.urjc.bike3s",
"win": {
"target": [
{
"target": "nsis"
},
{
"target": "portable"
}
],
"icon": "icon.ico"
},
"linux": {
"target": [
"deb",
"AppImage"
],
"icon": "icon.icns"
},
"mac": {
"icon": "icon.icns"
},
"asar": false,
"files": [
"!/node_modules/*"
]
}
}