forked from Ether1Project/Ether1DesktopWallet
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·72 lines (72 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·72 lines (72 loc) · 1.62 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
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
{
"name": "ATHDesktopWallet",
"version": "1.0.0",
"description": "Desktop wallet for ATH currency",
"main": "main.js",
"scripts": {
"start": "electron .",
"pack": "build --dir",
"dist": "build"
},
"build": {
"appId": "ATHDesktopWallet",
"files": [
"modules/*",
"assets/**/*",
"renderer/*",
"package.json",
"main.js",
"index.html"
],
"win": {
"target": "7z",
"icon": "build/icon.png",
"artifactName": "Windows-${productName}-${version}.${ext}",
"extraResources": [
"bin/win/*"
]
},
"linux": {
"target": "tar.gz",
"icon": "build/icon.icns",
"artifactName": "Linux-${productName}-${version}.${ext}",
"extraResources": [
"bin/linux/*"
]
},
"mac": {
"target": "pkg",
"icon": "build/icon.icns",
"artifactName": "MacOS-${productName}-${version}.${ext}",
"extraResources": [
"bin/macos/*"
]
}
},
"repository": "https://github.com/athofficial/ATHDesktopWallet",
"keywords": [
"ATH",
"Desktop",
"Wallet"
],
"author": "ATH",
"license": "CC0-1.0",
"dependencies": {
"@unibeautify/beautifier-js-beautify": "^0.4.0",
"adm-zip": "^0.4.13",
"app-root-path": "^2.1.0",
"electron-storage": "^1.0.7",
"fs-extra": "^7.0.1",
"handlebars": "^4.1.2",
"moment": "^2.23.0",
"nedb": "^1.8.0",
"single-instance": "0.0.1"
},
"devDependencies": {
"electron": "^3.0.12",
"electron-builder": "^20.38.3",
"js-beautify": "^1.9.0",
"unibeautify": "^0.17.0",
"unibeautify-cli": "^0.2.1"
}
}