UNPKG

@samouraiwallet/bip47

Version:

A set of utilities for working with BIP47 and bitcoinjs-lib

68 lines 1.81 kB
{ "name": "@samouraiwallet/bip47", "version": "1.1.0", "engines": { "node": ">=18.14.0" }, "description": "A set of utilities for working with BIP47 and bitcoinjs-lib", "keywords": [ "bitcoin", "bitcoinjs", "bitcoinjs-lib", "bip47", "bip-47", "paynym" ], "type": "module", "exports": { ".": { "import": "./dist/index.js", "types": "./dist/index.d.ts" }, "./utils": { "import": "./dist/utils.js", "types": "./dist/utils.d.ts" } }, "sideEffects": false, "repository": { "type": "git", "url": "https://github.com/Dojo-Open-Source-Project/bip47.git" }, "bugs": { "url": "https://github.com/Dojo-Open-Source-Project/bip47/issues" }, "author": "Katana Cryptographic Ltd.", "license": "LGPL-3.0", "homepage": "https://github.com/Dojo-Open-Source-Project/bip47", "dependencies": { "@noble/hashes": "1.8.0", "@scure/base": "^1.2.6", "bip32": "5.0.0-rc.0" }, "devDependencies": { "@types/node": "^18.19.110", "@typescript-eslint/eslint-plugin": "^7.6.0", "@typescript-eslint/parser": "^7.6.0", "@vitest/coverage-v8": "^3.1.4", "eslint": "^8.57.0", "eslint-import-resolver-typescript": "^3.6.1", "eslint-plugin-import": "^2.29.1", "eslint-plugin-unicorn": "^52.0.0", "tiny-secp256k1": "^2.2.3", "typedoc": "^0.28.5", "typescript": "^5.4.5", "vitest": "^3.1.4" }, "scripts": { "test": "vitest run", "test:watch": "vitest watch", "test:coverage": "vitest run --coverage", "typescript": "tsc --noEmit", "lint": "eslint --ext .ts src/ test/", "docs": "typedoc src/*.ts", "build:clean": "rm -rf dist", "build:esm": "tsc -p tsconfig.build.json", "build": "pnpm run build:clean && pnpm run build:esm" } }