-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 860 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 860 Bytes
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
{
"name": "browser-hdkey",
"version": "0.1.9",
"description": "Bitcoin BIP32 hierarchical deterministic keys",
"main": "lib/hdkey.js",
"types": "lib/hdkey.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "git://github.com/cryptocoinjs/hdkey"
},
"license": "MIT",
"keywords": [
"bitcoin",
"bip32",
"bip",
"key",
"hierarchical",
"deterministic",
"crypto"
],
"bugs": {
"url": "https://github.com/cryptocoinjs/hdkey/issues"
},
"homepage": "https://github.com/cryptocoinjs/hdkey",
"files": [
"./lib/hdkey.d.ts",
"./lib/hdkey.js"
],
"dependencies": {
"@noble/hashes": "1.3.3",
"bells-secp256k1": "0.1.1",
"bs58check": "3.0.1"
},
"devDependencies": {
"@types/node": "^20.10.5",
"@types/bs58check": "^2.1.2",
"@types/secp256k1": "^4.0.6"
}
}