-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
108 lines (108 loc) · 2.36 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "gnosis-safe-multisig-desktop",
"version": "1.0.0",
"description": "A Desktop version of Gnosis Safe Multisig app",
"main": "main.js",
"scripts": {
"start": "electron .",
"postinstall": "electron-builder install-app-deps",
"build": "electron-builder --mac --windows --linux",
"release": "electron-builder --mac --windows --linux --publish always"
},
"repository": {
"type": "git",
"url": "https://github.com/matextrem/safe-electron-multisig.git"
},
"keywords": [
"Electron",
"gnosis",
"safe",
"multisig"
],
"postinstall": "electron-builder install-app-deps",
"author": {
"name": "Protofire",
"email": "matias.dastugue@altoros.com"
},
"license": "CC0-1.0",
"build": {
"appId": "io.gnosis.safe.macos",
"afterSign": "scripts/notarize.js",
"productName": "Safe Electron",
"asar": true,
"publish": [
{
"provider": "github",
"owner": "matextrem",
"repo": "safe-electron-multisig"
}
],
"dmg": {
"sign": false,
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"files": [
"!apps${/*}",
"!build${/*}",
"!out${/*}",
"!.editorconfig",
"!.gitignore",
"!README.md",
"!yarn-error.log",
"!yarn.lock"
],
"mac": {
"hardenedRuntime": true,
"entitlements": "build/entitlements.mac.plist",
"gatekeeperAssess": false,
"entitlementsInherit": "build/entitlements.mac.plist",
"target": [
"tar.gz",
"dmg",
"pkg",
"zip"
]
},
"linux": {
"target": [
"AppImage",
"deb",
"zip"
]
},
"win": {
"publish": [
"github"
],
"target": [
"squirrel"
],
"icon": "build/icon.ico"
}
},
"dependencies": {
"dotenv": "^8.2.0",
"electron-squirrel-startup": "^1.0.0",
"electron-updater": "^4.2.0",
"node-fetch": "^2.6.0",
"node-snackbar": "0.1.16"
},
"devDependencies": {
"electron": "^7.2.4",
"electron-builder": "^22.3.2",
"electron-builder-squirrel-windows": "^22.3.3",
"electron-installer-squirrel-windows": "^1.3.0",
"electron-notarize": "^0.2.1"
}
}