{
  "name": "bsv-minimal",
  "version": "3.0.1",
  "description": "Parse raw bitcoin block and transaction buffers with minimal overhead",
  "main": "./lib/index.js",
  "types": "./lib/index.d.ts",
  "files": [
    "lib",
    "src"
  ],
  "scripts": {
    "test": "ts-node ./tests/index.ts",
    "build": "tsc",
    "docs": "typedoc",
    "prepare": "npm run build && npm test && npm run docs"
  },
  "author": "Kevin Johnson <kevinejohn@gmail.com>",
  "contributors": [
    "Andrew Johnson <andrewj@hey.com>"
  ],
  "license": "MIT",
  "engines": {
    "node": ">=12.0.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/kevinejohn/bsv-minimal.git"
  },
  "keywords": [
    "bitcoin",
    "BSV",
    "BTC",
    "BCH",
    "XEC",
    "segwit",
    "blocks",
    "block",
    "blockchain",
    "transaction",
    "parse"
  ],
  "devDependencies": {
    "@types/node": "^25.6.0",
    "pako": "^2.1.0",
    "ts-node": "^10.9.2",
    "typedoc": "^0.28.19",
    "typedoc-plugin-markdown": "^4.11.0",
    "typescript": "^6.0.3"
  }
}
