-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.92 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.92 KB
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": "@ledgerhq/ledger-bitcoin",
"version": "0.3.0",
"description": "Ledger Hardware Wallet Bitcoin Application Client",
"main": "build/main/index.js",
"types": "build/main/index.d.ts",
"typings": "build/main/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/LedgerHQ/app-bitcoin-new.git"
},
"license": "Apache-2.0",
"keywords": [
"Ledger",
"LedgerWallet",
"btc",
"Bitcoin",
"NanoS",
"NanoX",
"Hardware Wallet"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rm -rf build .tsbuildinfo",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:lint": "eslint src --ext .ts --fix",
"test": "jest --detectOpenHandles --verbose",
"doc": "run-s doc:html && open-cli build/docs/index.html",
"doc:html": "typedoc src/ --exclude **/*.test.ts --out build/docs",
"doc:json": "typedoc src/ --exclude **/*.test.ts --json build/docs/typedoc.json"
},
"engines": {
"node": ">=14"
},
"dependencies": {
"@bitcoinerlab/descriptors": "^1.1.1",
"@bitcoinerlab/secp256k1": "^1.2.0",
"@ledgerhq/hw-transport": "^6.31.13",
"bip32-path": "^0.4.2",
"bitcoinjs-lib": "^6.1.7"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@ledgerhq/hw-transport-node-speculos-http": "^6.31.0",
"@ledgerhq/logs": "^6.13.0",
"@types/jest": "^27.5.2",
"@types/node": "^20.17.10",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"babel-jest": "^27.5.1",
"cspell": "^4.2.8",
"jest": "^27.5.1",
"npm-run-all": "^4.1.5",
"open-cli": "^7.2.0",
"prettier": "^2.8.8",
"standard-version": "^9.5.0",
"ts-jest": "^27.1.5",
"ts-node": "^10.9.2",
"typedoc": "^0.24.8",
"typescript": "^4.9.5"
},
"files": [
"build/",
"README.md",
"package.json"
],
"prettier": {
"singleQuote": true
}
}