forked from crappyrules/turtle-wallet-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.25 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
{
"name": "monkeyshell",
"productName": "MonkeyShell",
"description": "monkeytipsGUI Wallet",
"version": "v0.3.4",
"homepage": "https://github.com/monkeytips/monkeytips-wallet-electron",
"repository": "https://github.com/monkeytips/monkeytips-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/monkey-service.exe",
"dist-lin": "./node_modules/.bin/electron-builder --x64 --linux -c.extraResources=./bin/lin/monkey-service",
"dist-mac": "./node_modules/.bin/electron-builder --x64 --mac -c.extraResources=./bin/osx/monkey-service"
},
"keywords": [],
"author": "Rixombea, Macroshock, crappyrules TurtleCoin Developers",
"license": "ISC",
"devDependencies": {
"devtron": "^1.4.0",
"electron": "^3.0.3",
"electron-builder": "^20.28.4",
"jshint": "^2.9.6"
},
"dependencies": {
"@trodi/electron-splashscreen": "^0.3.1",
"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": "monkeytips.monkeyshell",
"productName": "MonkeyShell",
"copyright": "Copyright (c) 2018 Rixombea, Macroshock, TurtleCoin Developers",
"directories": {
"app": ".",
"output": "dist",
"buildResources": "build"
},
"linux": {
"artifactName": "${productName}-v${version}-${os}-${arch}.${ext}",
"target": [
"AppImage",
"tar.bz2"
],
"maintainer": "crappyrules (@crappyrules)",
"category": "Office",
"vendor": "monkeytips",
"synopsis": "monkeytipsGUI Wallet"
},
"win": {
"target": "nsis",
"publisherName": "monkeytips"
},
"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"
}