-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.05 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
{
"name": "chainx",
"productName": "ChainX",
"version": "1.0.11",
"description": "My Electron application description",
"main": "./main.js",
"scripts": {
"build": "cd app && yarn build",
"start": "NODE_ENV=development electron . --debug",
"startWin": "cross-env NODE_ENV=development electron . --debug",
"start:watch": "nodemon --watch ./src/**/* --exec electron . --debug",
"pack": "electron-builder --dir",
"dist": "yarn build && rimraf dist && electron-builder"
},
"license": "MIT",
"devDependencies": {
"electron": "^6.0.7",
"electron-builder": "^21.2.0",
"electron-debug": "^3.0.0",
"rimraf": "^3.0.0"
},
"build": {
"productName": "ChainX Wallet",
"appId": "org.chainx.wallet",
"files": [
"preload.js",
"main.js",
"app/build",
"package.json",
"resources",
"utils.js",
"MultiSign"
],
"publish": {
"provider": "github",
"repo": "chainx-wallet",
"owner": "chainx-org"
},
"dmg": {
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"target": [
{
"target": "zip",
"arch": [
"x64",
"ia32"
]
}
]
},
"linux": {
"target": [
"AppImage"
]
},
"directories": {
"app": "./",
"buildResources": "./resources"
}
},
"dependencies": {
"add": "^2.0.6",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-polyfill": "^6.26.0",
"bitcoinjs-lib": "git+https://github.com/chainpool/bitcoinjs-lib.git#electron",
"bitcoinjs-lib-zcash": "git+https://github.com/wliyongfeng/bitcoinjs-lib-zcash.git#electron",
"bitcore-lib": "^8.3.4",
"bs58check": "^2.1.2",
"buffer-reverse": "^1.0.1",
"cross-env": "^5.2.0",
"electron-store": "^3.2.0",
"electron-updater": "^4.0.6",
"semver": "^6.1.1",
"ws": "^7.0.0"
}
}