bitcoin-tx-lib
Version:
A Typescript library for building and signing Bitcoin transactions
56 lines (55 loc) • 1.44 kB
JSON
{
"name": "bitcoin-tx-lib",
"version": "0.3.0",
"description": "A Typescript library for building and signing Bitcoin transactions",
"scripts": {
"test": "jest",
"build": "tsc"
},
"keywords": [
"bitcoin",
"typescript",
"expo",
"bitcoin utxo",
"build utxos",
"bitcoin transactions",
"react native",
"react",
"p2pkh",
"p2wpkh"
],
"author": "https://github.com/emptioapp",
"license": "MIT",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.2",
"@types/ws": "^8.5.10",
"jest": "^29.7.0",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"exports": {
".": {
"import": "./lib/index.js",
"require": "./lib/index.js",
"types": "./lib/index.d.ts"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/emptioapp/bitcoin-tx-lib.git"
},
"bugs": {
"url": "https://github.com/emptioapp/bitcoin-tx-lib/issues"
},
"homepage": "https://github.com/emptioapp/bitcoin-tx-lib#readme",
"dependencies": {
"@noble/curves": "^1.8.1",
"@noble/hashes": "^1.7.1",
"bech32": "^2.0.0",
"elliptic": "^6.6.1"
}
}