73 lines
1.7 KiB
JSON
73 lines
1.7 KiB
JSON
{
|
|
"name": "@scure/bip32",
|
|
"version": "1.3.1",
|
|
"description": "Secure, audited & minimal implementation of BIP32 hierarchical deterministic (HD) wallets over secp256k1",
|
|
"files": [
|
|
"index.ts",
|
|
"lib/index.js",
|
|
"lib/index.d.ts",
|
|
"lib/index.js.map",
|
|
"lib/esm/package.json",
|
|
"lib/esm/index.js",
|
|
"lib/esm/index.js.map"
|
|
],
|
|
"main": "lib/index.js",
|
|
"module": "lib/esm/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./lib/index.d.ts",
|
|
"import": "./lib/esm/index.js",
|
|
"default": "./lib/index.js"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@noble/curves": "~1.1.0",
|
|
"@noble/hashes": "~1.3.1",
|
|
"@scure/base": "~1.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"micro-should": "0.4.0",
|
|
"prettier": "2.8.4",
|
|
"typescript": "5.0.2"
|
|
},
|
|
"author": "Paul Miller (https://paulmillr.com)",
|
|
"homepage": "https://paulmillr.com/",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/paulmillr/scure-bip32.git"
|
|
},
|
|
"contributors": [
|
|
{
|
|
"name": "Patricio Palladino",
|
|
"email": "patricio@nomiclabs.io"
|
|
},
|
|
{
|
|
"name": "Paul Miller",
|
|
"url": "https://paulmillr.com"
|
|
}
|
|
],
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "tsc -d && tsc -p tsconfig.esm.json",
|
|
"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/"
|
|
}
|