forked from Nintondo/browser-hdkey
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 984 Bytes
/
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
{
"name": "@mdip/browser-hdkey",
"version": "0.1.8",
"description": "Bitcoin BIP32 hierarchical deterministic keys",
"main": "lib/hdkey.js",
"types": "lib/hdkey.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "git://github.com/KeychainMDIP/browser-hdkey"
},
"license": "MIT",
"keywords": [
"bitcoin",
"bip32",
"bip",
"key",
"hierarchical",
"deterministic",
"crypto"
],
"bugs": {
"url": "https://github.com/KeychainMDIP/browser-hdkey/issues"
},
"homepage": "https://github.com/KeychainMDIP/browser-hdkey",
"files": [
"./lib/hdkey.d.ts",
"./lib/hdkey.js"
],
"scripts": {
"build": "tsc"
},
"dependencies": {
"@noble/hashes": "^1.3.3",
"bells-secp256k1": "^0.1.0",
"bs58check": "^3.0.1",
"buffer": "^6.0.3"
},
"devDependencies": {
"@types/bs58check": "^2.1.2",
"@types/node": "^20.10.5",
"@types/secp256k1": "^4.0.6",
"typescript": "^5.4.5"
}
}