-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.84 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
{
"devDependencies": {
"electron": "13.2.1",
"electron-builder": "^22.11.7",
"electron-packager": "^15.4.0"
},
"scripts": {
"react": "cd react-app && yarn start",
"www": "cd react-app && yarn build && mv build ../www",
"start": "electron --trace-warnings index.js",
"postinistall": "electron-builder install-app-deps",
"dist": "cd react-app && yarn build && cp -R build ../build && cd .. && electron-builder",
"build": "cd react-app && yarn build && cp -R build ../build && cd .. && yarn electron-packager . --overwrite -out=releases"
},
"homepage": "./",
"name": "com.domain.sub",
"version": "1.0.0",
"author": "Idea Design Media",
"license": "MIT",
"description": "Default Electron React-App",
"dependencies": {
"ws": "^8.2.0"
},
"build": {
"files": [
"node_modules",
"index.js"
],
"extraResources": [
{
"from": "app",
"to": "app",
"filter": ["**/*"]
},
{
"from": "build",
"to": "build",
"filter": ["**/*"]
}
],
"extends": null,
"appId": "com.deliveryminds.cloud",
"productName": "Delivery Minds Cloud",
"directories": {
"output": "compiled"
},
"mac": {
"category": "public.app-category.business",
"target": "dmg"
},
"dmg": {
"background": null,
"backgroundColor": "#ffffff",
"window": {
"width": "400",
"height": "300"
},
"contents": [
{
"x": 100,
"y": 100
},
{
"x": 300,
"y": 100,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"target": "nsis",
"publisherName": "Idea Design Media"
},
"nsis": {
"allowToChangeInstallationDirectory": true,
"oneClick": true
}
}
}