This repository has been archived by the owner on Jan 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
93 lines (93 loc) · 3.11 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
89
90
91
92
93
{
"name": "plenteumwallet",
"productName": "PlenteumWallet",
"description": "Plenteum GUI Wallet",
"version": "v0.4.8",
"homepage": "https://github.com/plenteum/plenteum-wallet-electron",
"repository": "https://github.com/plenteum/plenteum-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/wallet-service.exe",
"dist-lin": "./node_modules/.bin/electron-builder --x64 --linux -c.extraResources=./bin/lin/wallet-service",
"dist-mac": "./node_modules/.bin/electron-builder --x64 --mac -c.extraResources=./bin/osx/wallet-service"
},
"keywords": [],
"author": "Rixombea, Macroshock, TurtleCoin Developers, Plenteum Developers",
"license": "ISC",
"devDependencies": {
"devtron": "^1.4.0",
"electron": "^5.0.7",
"electron-builder": "^21.1.1",
"jshint": "^2.10.2"
},
"dependencies": {
"@trodi/electron-splashscreen": "^0.3.4",
"ag-grid-community": "^19.1.4",
"async": "^3.1.0",
"csv-writer": "^1.5.0",
"electron-debug": "^3.0.1",
"electron-log": "^3.0.6",
"electron-store": "^4.0.0",
"fnv-plus": "^1.2.12",
"node-crypto-gcm": "^1.0.3",
"qr-image": "^3.2.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.7"
},
"build": {
"appId": "com.plenteum.walletelectron",
"copyright": "Copyright (c) 2018 Rixombea, Macroshock, TurtleCoin Developers, Plenteum 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": "Plenteum",
"synopsis": "Plenteum GUI Wallet"
},
"win": {
"target": "nsis",
"publisherName": "Plenteum"
},
"nsis": {
"artifactName": "${productName}-v${version}-${os}-${arch}-setup.${ext}",
"oneClick": true,
"perMachine": false
},
"mac": {
"artifactName": "${productName}-v${version}-${os}-${arch}.${ext}",
"category": "public.app-category.business",
"target": "zip"
}
},
"postinstall": "./node_modules/.bin/electron-builder install-app-deps"
}