{
  "name": "@caravan/clients",
  "version": "0.4.0",
  "description": "A package for querying different bitcoin blockchain backends",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "module": "./dist/index.mjs",
  "private": false,
  "files": [
    "./dist/index.js",
    "./dist/index.mjs",
    "./dist/index.d.ts"
  ],
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "scripts": {
    "build": "tsup src/index.ts --format cjs,esm --dts",
    "dev": "npm run build -- --watch",
    "lint": "eslint src",
    "ci": "npm run lint && npm run test",
    "test": "jest src",
    "test:watch": "jest --watch src"
  },
  "keywords": [
    "bitcoin",
    "client",
    "mempool",
    "blockstream",
    "blockchain"
  ],
  "author": "Buck Perley",
  "license": "MIT",
  "engines": {
    "node": ">=16"
  },
  "devDependencies": {
    "@babel/core": "^7.23.7",
    "@babel/preset-env": "^7.23.8",
    "@caravan/eslint-config": "*",
    "@caravan/typescript-config": "*",
    "babel-jest": "^29.7.0",
    "eslint": "^8.56.0",
    "jest": "^29.7.0",
    "ts-jest": "^29.1.1",
    "tsconfig": "*",
    "tsup": "^8.0.1",
    "typescript": "^5.3.3"
  },
  "dependencies": {
    "@caravan/bitcoin": "*",
    "axios": "^1.7.4",
    "bignumber.js": "^9.1.2"
  }
}
