-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathelectron_package.json
More file actions
47 lines (47 loc) · 1.03 KB
/
electron_package.json
File metadata and controls
47 lines (47 loc) · 1.03 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
{
"name": "ToastWallet",
"version": "3.0.0",
"description": "Toast Wallet is a Ripple wallet for Android and iOS.",
"main": "electron-start.js",
"scripts": {
"start": "electron ."
},
"repository": "https://github.com/ToastWallet/core",
"keywords": [
"XRP",
"Ripple",
"Toast",
"Wallet"
],
"author": "StarStone Software",
"license": "GPL 2.0",
"devDependencies": {
"electron": "1.6.2",
"electron-builder": "^19.19.1"
},
"build": {
"appId": "com.toastwallet.core",
"compression": "maximum",
"win": {
"target": "appx",
"icon": "www/res/electron/toastwallet.ico"
},
"appx": {
"backgroundColor": "#1565b1"
},
"linux": {
"target": "AppImage"
},
"mac": {
"icon": "www/res/icon/icon.icns"
}
},
"forceCodeSigning": "true",
"publisherName": "StarStone Limited",
"verifyUpdateCodeSignature": "true",
"dependencies": {
"cordova-android-support-gradle-release": "^1.4.3",
"electron-debug": "^2.0.0",
"menu": "^0.2.5"
}
}