-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
90 lines (90 loc) · 3 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
{
"name": "qrl-wallet",
"version": "1.8.1",
"description": "QRL Wallet",
"author": "The QRL Contributors",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.17.8",
"@grpc/grpc-js": "^1.6.0",
"@grpc/proto-loader": "^0.6.9",
"@ledgerhq/hw-transport-node-hid": "^6.24.1",
"@ledgerhq/hw-transport-webusb": "^6.24.1",
"@theqrl/explorer-helpers": "^2.7.0",
"@theqrl/hw-app-qrl": "^5.34.0",
"@theqrl/nft-providers": "^1.0.1",
"@theqrl/node-helpers": "^0.6.1",
"@theqrl/qrl-proto-sha256": "^3.5.0",
"@theqrl/validate-qrl-address": "^3.0.0",
"@theqrl/wallet-helpers": "^2.1.0",
"aes256": "^1.1.0",
"async": "^3.2.3",
"babel-polyfill": "^6.26.0",
"bech32": "^2.0.0",
"bignumber.js": "^9.0.2",
"browserify-aes": "^1.2.0",
"core-js": "^3.21.1",
"crypto-browserify": "^3.12.0",
"crypto-js": "^4.1.1",
"json-formatter-js": "^2.3.4",
"json-stable-stringify": "^1.0.1",
"mathjs": "^10.4.2",
"meteor-better-storage": "^2.0.2",
"meteor-node-stubs": "^1.2.1",
"qrllib": "^1.2.4",
"run-script-os": "^1.1.6",
"sha256": "^0.2.0",
"snyk": "^1.893.0",
"stream-browserify": "^3.0.0",
"tmp": "0.2.1",
"usb": "^2.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theQRL/qrl-wallet.git"
},
"keywords": [
"QRL",
"blockchain"
],
"bugs": {
"url": "https://github.com/theQRL/qrl-wallet/issues"
},
"homepage": "https://github.com/theQRL/qrl-wallet#readme",
"devDependencies": {
"@theqrl/electrify-qrl": "^1.1.3",
"electron-wix-msi-qrl": "^2.1.2",
"eslint": "^8.12.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-meteor": "^0.4.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-meteor": "^7.3.0"
},
"scripts": {
"dev": "meteor",
"test": "echo null",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect",
"cleanDist": "run-script-os",
"cleanDist:darwin": "rm -rf ./.electrify/.dist && mkdir -p ./.electrify/.dist",
"cleanDist:linux": "rm -rf ./.electrify/.dist && mkdir -p ./.electrify/.dist",
"win:remove_dist": "if exist .electrify\\dist rmdir /s /q .electrify\\dist",
"win:create_dist": "if not exist .electrify\\dist mkdir .electrify\\dist",
"electron": "electrify",
"releaseready": "meteor lint",
"acquire:node": "cp \"$(which node)\" .electrify/bin/node",
"build": "run-script-os",
"build:darwin": "electrify package -o .electrify/.dist/ -- --tmpdir=/tmp/.pkg",
"build:linux": "electrify package -o .electrify/.dist/ && mv /tmp/.build_tmp/package/QRLWallet-linux-x64/ .electrify/.dist/",
"build:win32": "electrify package -o .electrify\\dist\\",
"installer": "run-script-os",
"installer:darwin": "cd .electrify/.dist/QRLWallet-darwin-x64 && create-dmg QRLWallet.app",
"installer:linux": "node build-deb.js",
"installer:win32": "node build-msi.js",
"desktop": "meteor-desktop"
},
"workspaces": [
".electrify"
],
"snyk": true
}