forked from trezor/trezor-suite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.57 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
{
"name": "connect-example-electron-renderer-popup",
"version": "1.0.0",
"description": "Example of electron app with @trezor/connect",
"main": "src/electron.js",
"author": "Satoshilabs s.r.o <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "electron .",
"build:mac": "electron-builder --mac",
"build:linux": "electron-builder --linux",
"build:win": "electron-builder --win"
},
"build": {
"appId": "${name}",
"productName": "TrezorConnectExample",
"copyright": "Copyright © year ${author}",
"asar": false,
"electronVersion": "20.3.5",
"directories": {
"output": "build"
},
"files": [
"src/*.js",
"src/index.html",
"package.json"
],
"dmg": {
"contents": [
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 150,
"type": "file"
}
]
},
"mac": {
"target": "zip"
},
"linux": {
"executableName": "TrezorConnectExample",
"artifactName": "TrezorConnectExample.${ext}",
"target": "AppImage"
},
"win": {
"target": "portable"
}
},
"devDependencies": {
"electron": "20.3.5",
"electron-builder": "^23.6.0"
}
}