-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.14 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.14 KB
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
{
"name": "madwallet",
"version": "0.2.0",
"description": "",
"homepage": "./",
"main": "./app-build/electron/index.js",
"scripts": {
"setup": "chmod +x ./helpers/* && ./helpers/setup.sh",
"build-linux": "./helpers/build-helper.sh && electron-builder build -c.extraMetadata.main=./app-build/electron/index.js --linux --publish never",
"build-windows": "./helpers/build-helper.sh && electron-builder build -c.extraMetadata.main=./app-build/electron/index.js --windows --publish never",
"build-mac": "./helpers/build-helper.sh && electron-builder build -c.extraMetadata.main=./app-build/electron/index.js --mac --publish never",
"build-all": "./helpers/build-helper.sh && electron-builder build -c.extraMetadata.main=./app-build/electron/index.js --mac --windows --linux --publish never",
"dev": "concurrently \"cd app/client && npm start\" \"electron ./app/electron\""
},
"author": "",
"license": "ISC",
"dependencies": {
"electron-is-dev": "^1.2.0",
"electron-settings": "^4.0.2",
"secure-electron-store": "^1.3.3"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.10.4",
"concurrently": "^5.3.0",
"electron": "^13.1.9",
"electron-builder": "^22.8.0",
"electron-notarize": "^1.0.1",
"electron-rebuild": "^3.1.1"
},
"build": {
"afterSign": "notarize.js",
"appId": "com.MadHive.MadWallet",
"files": [
"app-build/**/*",
"app-build/electron/icon.png",
"node_modules/**/*",
"static/**/*"
],
"productName": "MadWallet",
"directories": {
"buildResources": "app/electron"
},
"linux": {
"target": [
"zip"
]
},
"dmg": {
"sign": true,
"icon": "icon.png",
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"target": "NSIS"
},
"mac": {
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "entitlements.plist",
"entitlementsInherit": "entitlements.plist"
}
}
}