UNPKG

ledger-bitcoin

Version:

Ledger Hardware Wallet Bitcoin Application Client

76 lines 2.15 kB
{ "name": "ledger-bitcoin", "version": "0.3.0", "description": "Ledger Hardware Wallet Bitcoin Application Client", "main": "build/main/index.js", "typings": "build/main/index.d.ts", "repository": "https://github.com/LedgerHQ/app-bitcoin-new", "license": "Apache-2.0", "keywords": [ "Ledger", "LedgerWallet", "btc", "Bitcoin", "NanoS", "NanoX", "Hardware Wallet" ], "scripts": { "build": "tsc -p tsconfig.json", "fix": "run-s fix:*", "fix:prettier": "prettier \"src/**/*.ts\" --write", "fix:lint": "eslint src --ext .ts --fix", "test": "jest --detectOpenHandles --verbose", "doc": "run-s doc:html && open-cli build/docs/index.html", "doc:html": "typedoc src/ --exclude **/*.test.ts --out build/docs", "doc:json": "typedoc src/ --exclude **/*.test.ts --json build/docs/typedoc.json" }, "engines": { "node": ">=14" }, "dependencies": { "@bitcoinerlab/descriptors": "^1.1.1", "@bitcoinerlab/secp256k1": "^1.2.0", "@ledgerhq/hw-transport": "^6.31.13", "bip32-path": "^0.4.2", "bitcoinjs-lib": "^6.1.7" }, "devDependencies": { "@babel/preset-env": "^7.26.0", "@ledgerhq/hw-transport-node-speculos-http": "^6.31.0", "@ledgerhq/logs": "^6.13.0", "@types/jest": "^27.5.2", "@types/node": "^20.17.10", "@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/parser": "^5.62.0", "babel-jest": "^27.5.1", "cspell": "^4.2.8", "eslint": "^7.32.0", "eslint-config-prettier": "^8.10.0", "eslint-plugin-eslint-comments": "^3.2.0", "eslint-plugin-functional": "^3.7.2", "eslint-plugin-import": "^2.31.0", "eslint-plugin-jest": "^26.9.0", "jest": "^27.5.1", "npm-run-all": "^4.1.5", "open-cli": "^7.2.0", "prettier": "^2.8.8", "standard-version": "^9.5.0", "ts-jest": "^27.1.5", "ts-node": "^10.9.2", "typedoc": "^0.24.8", "typescript": "^4.9.5" }, "files": [ "build/main", "!**/*.spec.*", "!**/*.test.*", "!**/*.json", "!**/__tests__/*", "CHANGELOG.md", "README.md" ], "prettier": { "singleQuote": true } }