-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
85 lines (85 loc) · 2.22 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
{
"name": "cryptoapis-wallet-recovery-tool",
"author": "Crypto APIs <[email protected]>",
"description": "Tool for recovering private key from wallet recovery data",
"version": "0.4.0",
"main": "./src/main.js",
"license": "MIT",
"homepage": "https://bitbucket.org/menadev/cryptoapis-recovery-tool-lib#readme",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"build": "electron-builder",
"dist:linux": "electron-builder --linux",
"dist:windows": "electron-builder --windows",
"dist:mac": "electron-builder --macos"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/menadev/cryptoapis-wallet-recovery-tool.git"
},
"dependencies": {
"bn.js": "^4.12.0",
"elliptic": "^6.5.4",
"generate-password": "^1.7.0",
"hdkey": "^2.0.1",
"password-validator": "^5.2.1",
"sjcl": "^1.0.8",
"validate.js": "^0.13.1"
},
"devDependencies": {
"electron": "^21.2.3",
"electron-builder": "^23.6.0"
},
"build": {
"productName": "Crypto APIs Wallet Recovery Tool",
"appId": "io.cryptoapis.app",
"artifactName": "cryptoapis-wallet-recovery-tool-v${version}.${ext}",
"extraMetadata": {
"name": "Crypto APIs Wallet Recovery Tool"
},
"directories": {
"output": "dist"
},
"files": [
"src/**/*"
],
"mac": {
"category": "public.app-category.utilities",
"target": "dmg",
"icon": "./src/resources/icons/128x128.icns",
"identity": null
},
"dmg": {
"background": "./src/resources/images/background-mac-dmg.png",
"icon": "./src/resources/icons/256x256.icns",
"iconSize": 256,
"window": {
"width": 540,
"height": 380
},
"contents": [
{
"x": 141,
"y": 257
},
{
"x": 372,
"y": 257,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"publisherName": "Crypto APIs",
"target": "nsis",
"icon": "./src/resources/icons/128x128.ico"
},
"linux": {
"target": "AppImage",
"category": "Utility",
"icon": "./src/resources/icons/256x256.icns"
}
}
}