UNPKG

@bitcoinerlab/discovery

Version:

A TypeScript library for retrieving Bitcoin funds from ranged descriptors, leveraging @bitcoinerlab/explorer for standardized access to multiple blockchain explorers.

63 lines (62 loc) 2.4 kB
{ "name": "@bitcoinerlab/discovery", "description": "A TypeScript library for retrieving Bitcoin funds from ranged descriptors, leveraging @bitcoinerlab/explorer for standardized access to multiple blockchain explorers.", "homepage": "https://github.com/bitcoinerlab/discovery", "version": "1.5.1", "author": "Jose-Luis Landabaso", "license": "MIT", "prettier": "@bitcoinerlab/configs/prettierConfig.json", "eslintConfig": { "extends": "./node_modules/@bitcoinerlab/configs/eslintConfig" }, "jest": { "preset": "@bitcoinerlab/configs" }, "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "webdocs": "typedoc --options ./node_modules/@bitcoinerlab/configs/webtypedoc.json", "docs": "typedoc --options ./node_modules/@bitcoinerlab/configs/typedoc.json", "build:src": "tsc --project ./node_modules/@bitcoinerlab/configs/tsconfig.src.json", "build:test": "tsc --project ./node_modules/@bitcoinerlab/configs/tsconfig.test.json", "build": "npm run build:src && npm run build:test", "lint": "eslint --ignore-path .gitignore --ext .ts src/ test/", "updatelocalexplorer": "cd ../explorer && npm install && npm run build && npm pack && mv *.tgz ../discovery && cd ../discovery && npm uninstall @bitcoinerlab/explorer && npm install ./bitcoinerlab-explorer-*.tgz && rm ./bitcoinerlab-explorer-*.tgz", "tester": "./node_modules/@bitcoinerlab/configs/scripts/tester.sh", "test": "npm run lint && npm run build && npm run tester && NODE_OPTIONS=\"--experimental-fetch\" jest", "prepublishOnly": "npm test" }, "repository": { "type": "git", "url": "git+https://github.com/bitcoinerlab/discovery.git" }, "keywords": [ "bitcoin", "discovery", "esplora", "electrum" ], "bugs": { "url": "https://github.com/bitcoinerlab/discovery/issues" }, "files": [ "dist" ], "dependencies": { "@bitcoinerlab/descriptors": "^2.3.0", "@bitcoinerlab/explorer": "^0.4.0", "@bitcoinerlab/secp256k1": "^1.2.0", "@types/memoizee": "^0.4.8", "bitcoinjs-lib": "^6.1.5", "immer": "^9.0.21", "lodash.clonedeep": "^4.5.0", "memoizee": "^0.4.15", "shallow-equal": "^3.1.0" }, "devDependencies": { "@bitcoinerlab/configs": "github:bitcoinerlab/configs", "@types/lodash.clonedeep": "^4.5.9", "bip39": "^3.1.0", "regtest-client": "^0.2.0" } }