-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
110 lines (110 loc) · 3.27 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "unchained-wallets",
"version": "1.0.4",
"description": "Unchained Capital's HD Wallets Library",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/unchained-capital/unchained-wallets.git"
},
"author": "Unchained Capital",
"license": "MIT",
"bugs": {
"url": "https://github.com/unchained-capital/unchained-wallets/issues"
},
"homepage": "https://github.com/unchained-capital/unchained-wallets",
"engines": {
"node": ">=16"
},
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.7.1",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.4.3",
"@commitlint/config-conventional": "^17.4.3",
"@types/jest": "^29.4.0",
"@types/node": "^18.13.0",
"@types/w3c-web-usb": "^1.0.6",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"eslint": "^8.34.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^23.0.3",
"husky": "^8.0.3",
"jest": "^29.4.2",
"jest-environment-jsdom": "^29.4.1",
"jest-junit": "^9.0.0",
"jsdoc": "^4.0.0",
"lint-staged": "^13.1.2",
"mocha": "^10.2.0",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"scripts": {
"compile-images": "node images/compile.js",
"build-types": "tsc -p tsconfig.json",
"build-types:watch": "tsc --watch",
"check-types": "tsc -p tsconfig.json --noEmit --emitDeclarationOnly false",
"compile": "babel --extensions .ts,.js -d lib/ src/ && npm run compile-images",
"compile:trezor-dev": "TREZOR_DEV=true babel --extensions .ts,.js --watch -d lib/ src/ && npm run compile-images",
"compile:watch": "babel --watch --extensions .ts,.js -d lib/ src/ && compile-images",
"prepublish": "npm run compile",
"prepare": "npm run compile && husky install",
"test": "npm run check-types && jest src",
"testdebug": "node --inspect-brk node_modules/.bin/jest --runInBand lib",
"docs": "./bin/build-docs.sh",
"lint": "eslint src --ignore-pattern src/vendor"
},
"bin": {},
"dependencies": {
"@babel/polyfill": "^7.7.0",
"@ledgerhq/hw-app-btc": "^5.34.1",
"@ledgerhq/hw-transport-u2f": "^5.34.0",
"@ledgerhq/hw-transport-webusb": "6.27.12",
"@trezor/connect-web": "9.0.11",
"bignumber.js": "^8.1.1",
"bitcoinjs-lib": "^5.1.10",
"bowser": "^2.6.1",
"core-js": "^2.6.10",
"ledger-bitcoin": "^0.2.0",
"punycode": "^2.1.1",
"sha": "^3.0.0",
"unchained-bitcoin": "^1.0.0"
},
"overrides": {
"@ledgerhq/hw-transport-webusb": {
"@ledgerhq/hw-transport": "6.28.1",
"@ledgerhq/devices": "8.0.0"
}
},
"directories": {
"lib": "lib"
},
"jest": {
"modulePathIgnorePatterns": [
"src/vendor",
"lib/vendor"
]
},
"babel": {
"passPerPreset": true,
"plugins": [
"@babel/proposal-class-properties",
"transform-inline-environment-variables"
],
"presets": [
"@babel/typescript",
[
"@babel/env",
{
"useBuiltIns": "usage",
"corejs": 2
}
]
]
}
}