@ledgerhq/hw-app-btc
Version:
Ledger Hardware Wallet Bitcoin Application API
106 lines • 2.98 kB
JSON
{
"name": "@ledgerhq/hw-app-btc",
"version": "11.0.0",
"description": "Ledger Hardware Wallet Bitcoin Application API",
"keywords": [
"Ledger",
"LedgerWallet",
"btc",
"Bitcoin",
"NanoS",
"Blue",
"Hardware Wallet"
],
"repository": {
"type": "git",
"url": "https://github.com/LedgerHQ/ledger-live.git"
},
"bugs": {
"url": "https://github.com/LedgerHQ/ledger-live/issues"
},
"homepage": "https://github.com/LedgerHQ/ledger-live/tree/develop/libs/ledgerjs/packages/hw-app-btc",
"publishConfig": {
"access": "public"
},
"main": "lib/Btc.js",
"module": "lib-es/Btc.js",
"types": "lib/Btc.d.ts",
"typesVersions": {
"*": {
"lib/*": [
"lib/*"
],
"lib-es/*": [
"lib-es/*"
],
"*": [
"lib/*",
"lib/Btc.d.ts"
]
}
},
"exports": {
"./lib/*": "./lib/*.js",
"./lib/*.js": "./lib/*.js",
"./lib-es/*": "./lib-es/*.js",
"./lib-es/*.js": "./lib-es/*.js",
"./*": {
"@ledgerhq/source": "./src/*.ts",
"require": "./lib/*.js",
"default": "./lib-es/*.js"
},
"./*.js": {
"@ledgerhq/source": "./src/*.ts",
"require": "./lib/*.js",
"default": "./lib-es/*.js"
},
".": {
"@ledgerhq/source": "./src/Btc.ts",
"require": "./lib/Btc.js",
"default": "./lib-es/Btc.js"
},
"./package.json": "./package.json"
},
"license": "Apache-2.0",
"dependencies": {
"@noble/curves": "1.9.7",
"@noble/hashes": "1.8.0",
"bip32-path": "^0.4.2",
"bitcoinjs-lib": "^6.1.7",
"bs58": "^4.0.1",
"bs58check": "^2.1.2",
"invariant": "^2.2.4",
"semver": "7.7.3",
"@ledgerhq/hw-transport": "6.35.2",
"@ledgerhq/logs": "^6.17.0",
"@ledgerhq/psbtv2": "^0.5.0"
},
"devDependencies": {
"@types/jest": "30.0.0",
"@types/node": "24.12.0",
"axios": "1.13.2",
"documentation": "14.0.2",
"jest": "30.2.0",
"rimraf": "^4.4.1",
"source-map-support": "^0.5.21",
"@swc/jest": "0.2.39",
"@swc/core": "1.15.11",
"ts-node": "^10.4.0",
"@ledgerhq/hw-transport-mocker": "^6.34.2",
"@ledgerhq/hw-transport-node-speculos": "^6.34.2"
},
"gitHead": "dd0dea64b58e5a9125c8a422dcffd29e5ef6abec",
"scripts": {
"clean": "rimraf lib lib-es",
"coverage": "jest --coverage --testPathIgnorePatterns='/.test.ts.disabled|node_modules|lib-es|lib/' --passWithNoTests",
"build": "tsc --project tsconfig.build.json && tsc --project tsconfig.build.json -m esnext --moduleResolution bundler --outDir lib-es",
"prewatch": "pnpm build",
"watch": "tsc --watch --project tsconfig.build.json",
"watch:es": "tsc --watch --project tsconfig.build.json -m esnext --moduleResolution bundler --outDir lib-es",
"doc": "documentation readme src/** --section=API --pe ts --re ts --re d.ts",
"lint": "oxlint ./src",
"lint:fix": "pnpm lint --fix",
"test": "jest",
"unimported": "unimported"
}
}