forked from derogold/GoldWallet
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.93 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
{
"name": "GoldWalletShell",
"productName": "GoldWallet",
"description": "DeroGold GUI Wallet",
"version": "v0.3.7",
"homepage": "https://github.com/ExtraHash/dego-wallet-electron",
"repository": "https://github.com/ExtraHash/dego-wallet-electron",
"main": "main.js",
"scripts": {
"start": "electron .",
"debug": "electron . debug",
"dev": "electron . dev",
"dist-win": "./node_modules/.bin/electron-builder --x64 --win -c.extraResources=./bin/win/DeroGold-service.exe",
"dist-lin": "./node_modules/.bin/electron-builder --x64 --linux -c.extraResources=./bin/lin/DeroGold-service",
"dist-mac": "./node_modules/.bin/electron-builder --x64 --mac -c.extraResources=./bin/osx/DeroGold-service"
},
"keywords": [],
"author": "Rixombea, Macroshock, TurtleCoin Developers",
"license": "ISC",
"devDependencies": {
"devtron": "^1.4.0",
"electron": "^3.0.13",
"electron-builder": "^20.38.3",
"jshint": "^2.9.7"
},
"dependencies": {
"@trodi/electron-splashscreen": "^0.3.4",
"csv-writer": "^1.2.0",
"electron-log": "^2.2.17",
"electron-store": "^2.0.0",
"qr-image": "^3.2.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.5"
},
"build": {
"appId": "lol.turtlecoin.walletshell",
"copyright": "Copyright (c) 2018 Rixombea, Macroshock, TurtleCoin Developers",
"directories": {
"output": "dist",
"buildResources": "build"
},
"files": [
"**/*",
"!**/docs/*",
"!**/bin/*",
"!**/service.log",
"!**/src/js/*.src.js",
"!**/src/js/extras/*.src.js",
"!**/js/*.src.js",
"!**/node_modules/*/{CHANGELOG.md,README.md,README,readme.md,readme}",
"!**/node_modules/*/{test,__tests__,tests,powered-test,example,examples}",
"!**/node_modules/*.d.ts",
"!**/node_modules/.bin",
"!**/*.{iml,o,hprof,orig,pyc,pyo,rbc,swp,csproj,sln,xproj}",
"!.editorconfig",
"!**/._*",
"!**/{.DS_Store,.git,.hg,.svn,CVS,RCS,SCCS,.gitignore,.gitattributes}",
"!**/{__pycache__,thumbs.db,.flowconfig,.idea,.vs,.nyc_output}",
"!**/{appveyor.yml,.travis.yml,circle.yml}",
"!**/{npm-debug.log,yarn.lock,.yarn-integrity,.yarn-metadata.json}"
],
"linux": {
"artifactName": "${productName}-v${version}-${os}.${ext}",
"target": [
"AppImage"
],
"maintainer": "rixombea (@labaylabay)",
"category": "Office",
"vendor": "TurtleCoin",
"synopsis": "TurtleCoin GUI Wallet"
},
"win": {
"target": "nsis",
"publisherName": "TurtleCoin"
},
"nsis": {
"artifactName": "${productName}-v${version}-${os}-${arch}-setup.${ext}",
"oneClick": false,
"perMachine": false
},
"mac": {
"artifactName": "${productName}-v${version}-${os}-${arch}.${ext}",
"category": "public.app-category.business",
"target": "tar.gz"
}
},
"postinstall": "./node_modules/.bin/electron-builder install-app-deps"
}