bitcoincore-node
Version:
A comprehensive Node.js package for interacting with Bitcoin Core via RPC. Create, sign, and broadcast Bitcoin transactions, manage wallets, and access blockchain data through an easy-to-use API interface. Perfect for developers building cryptocurrency ap
67 lines (66 loc) • 2.2 kB
JSON
{
"name": "bitcoincore-node",
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"dev": "tsc --watch",
"build": "tsc",
"prepare": "npm run build",
"lint": "eslint '**/*.{js,ts}'",
"lint:fix": "eslint '**/*.{js,ts}' --fix",
"format": "prettier --write .",
"test": "jest --coverage",
"check": "npm run lint && npm run format && npm test"
},
"keywords": [
"bitcoin",
"bitcoin-core",
"cryptocurrency",
"blockchain",
"wallet",
"bitcoind",
"RPC",
"node",
"bitcoin-wallet",
"bitcoin-api",
"bitcoin-node",
"blockchain-development",
"cryptocurrency-wallet",
"bitcoin-blockchain",
"bitcoin-node-communication",
"bitcoin-rpc",
"cryptocurrency-node",
"bitcoin-core-client",
"bitcoin-core-api",
"digital-currency",
"decentralized"
],
"author": "Md Shafkat Hossain Tanvir <tanvir0604@gmail.com>",
"license": "MIT",
"type": "commonjs",
"description": "A comprehensive Node.js package for interacting with Bitcoin Core via RPC. Create, sign, and broadcast Bitcoin transactions, manage wallets, and access blockchain data through an easy-to-use API interface. Perfect for developers building cryptocurrency applications, wallets, or integrating Bitcoin functionality into their services.",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
},
"dependencies": {
"axios": "^1.7.9"
},
"repository": {
"type": "git",
"url": "https://github.com/tanvir0604/bitcoincore-node"
},
"bugs": {
"url": "https://github.com/tanvir0604/bitcoincore-node/issues"
}
}