This repository has been archived by the owner on Feb 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
81 lines (81 loc) · 2.28 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
{
"name": "@ledgerhq/wallet-btc",
"version": "1.1.6",
"repository": {
"type": "git",
"url": "https://github.com/LedgerHQ/wallet-btc.git"
},
"scripts": {
"test": "yarn jest --detectOpenHandles",
"typecheck": "yarn tsc --project ./tsconfig-typecheck.json",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"format": "prettier --write 'src/**/*.{ts,tsx}'",
"build": "./scripts/build.sh",
"prepublish": "npm run build"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"license": "MIT",
"files": [
".yalc",
"dist/"
],
"react-native": {
"https": false
},
"devDependencies": {
"@ledgerhq/hw-transport": "^6.0.2",
"@types/bs58": "^4.0.1",
"@types/jest": "^25.2.3",
"@types/lodash": "^4.14.170",
"@types/node": "^15.12.4",
"@types/object-hash": "^2.1.0",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^7.0.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-typescript": "^3.0.0",
"eslint-formatter-pretty": "^3.0.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-typescript": "^0.14.0",
"fs": "^0.0.1-security",
"jest": "^26.0.1",
"jest-file-snapshot": "^0.5.0",
"object-hash": "^2.2.0",
"prettier": "^2.0.5",
"ts-jest": "^26.0.0",
"ts-node": "^8.10.1",
"typescript": "^3.9.3",
"typescript-eslint-parser": "^22.0.0"
},
"dependencies": {
"@ledgerhq/errors": "6.2.0",
"@ledgerhq/hw-app-btc": "6.7.0",
"@ledgerhq/json-bignumber": "^1.0.2",
"@ledgerhq/logs": "6.2.0",
"@types/bchaddrjs": "^0.4.0",
"@types/bitcore-lib-cash": "^8.23.3",
"@types/bs58check": "^2.1.0",
"axios": "^0.21.1",
"axios-retry": "^3.1.9",
"bchaddrjs": "^0.5.2",
"bech32": "^2.0.0",
"bignumber.js": "^9.0.1",
"bip32": "^2.0.6",
"bip39": "^3.0.4",
"bitcoinjs-lib": "^5.2.0",
"bitcore-lib": "^8.25.10",
"bitcore-lib-cash": "^8.25.10",
"bitcore-lib-zcash": "^0.13.20",
"bs58": "^4.0.1",
"bs58check": "^2.1.2",
"buffer": "^6.0.3",
"coininfo": "^5.1.0",
"generic-pool": "^3.8.2",
"lodash": "^4.17.21"
}
}