{
  "name": "txforge",
  "version": "2.1.0",
  "description": "Modern Bitcoin transaction builder, capable of supporting any non-standard and custom script type.",
  "keywords": [
    "bitcoin",
    "bsv",
    "transaction",
    "builder",
    "nimble"
  ],
  "author": "libitx",
  "license": "Apache-2.0",
  "repository": "https://github.com/libitx/txforge",
  "type": "module",
  "exports": {
    ".": {
      "require": "./dist/cjs/index.cjs",
      "import": "./src/index.js"
    },
    "./*": {
      "require": "./dist/cjs/*.cjs",
      "import": "./src/*.js"
    }
  },
  "main": "./dist/cjs/index.cjs",
  "browser": "./dist/txforge.min.js",
  "unpkg": "./dist/txforge.min.js",
  "files": [
    "dist",
    "src"
  ],
  "packageManager": "yarn@3.2.0",
  "scripts": {
    "build": "yarn clean && node build.js",
    "clean": "rm -rf dist",
    "test": "ava test/**/*.test.js"
  },
  "dependencies": {
    "@runonbitcoin/nimble": "^1.0.13"
  },
  "devDependencies": {
    "ava": "^4.2.0",
    "esbuild": "^0.14.38",
    "esbuild-plugin-globals": "^0.1.1"
  },
  "ava": {
    "concurrency": 4
  }
}