forked from paulmillr/scure-bip32
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.64 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
{
"name": "@scure/bip32",
"version": "1.6.0",
"description": "Secure, audited & minimal implementation of BIP32 hierarchical deterministic (HD) wallets over secp256k1",
"files": [
"index.ts",
"./lib"
],
"main": "./lib/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"import": "./lib/esm/index.js",
"require": "./lib/index.js"
}
},
"dependencies": {
"@noble/curves": "~1.7.0",
"@noble/hashes": "~1.6.0",
"@scure/base": "~1.2.1"
},
"devDependencies": {
"@paulmillr/jsbt": "0.2.1",
"micro-should": "0.4.0",
"prettier": "3.3.2",
"typescript": "5.5.2"
},
"sideEffects": false,
"author": "Paul Miller (https://paulmillr.com)",
"homepage": "https://paulmillr.com/noble/#scure",
"repository": {
"type": "git",
"url": "git+https://github.com/paulmillr/scure-bip32.git"
},
"contributors": [
{
"name": "Patricio Palladino",
"email": "[email protected]"
},
{
"name": "Paul Miller",
"url": "https://paulmillr.com"
}
],
"license": "MIT",
"scripts": {
"build": "tsc && tsc -p tsconfig.esm.json",
"build:release": "cd build && npm ci && npm run build:release",
"lint": "prettier --check 'index.ts' 'test/*.test.ts'",
"format": "prettier --write 'index.ts' 'test/*.test.ts'",
"test": "cd test && tsc && node hdkey.test.js"
},
"keywords": [
"bip32",
"hierarchical",
"deterministic",
"hd key",
"bip0032",
"bip-32",
"bip39",
"micro",
"scure",
"mnemonic",
"phrase",
"code"
],
"funding": "https://paulmillr.com/funding/"
}