{
  "name": "beignet",
  "version": "0.5.1",
  "description": "A self-custodial, JS Bitcoin wallet + Lightning Network management library.",
  "main": "dist/index.js",
  "bin": {
    "beignet": "./dist/cli/cli.js"
  },
  "scripts": {
    "test": "yarn build && env mocha --exit -r ts-node/register 'tests/**/*.test.ts'",
    "test:boost": "yarn build && env mocha --exit -r ts-node/register 'tests/boost.test.ts'",
    "test:wallet": "yarn build && env mocha --exit -r ts-node/register 'tests/wallet.test.ts'",
    "test:receive": "yarn build && env mocha --exit -r ts-node/register 'tests/receive.test.ts'",
    "test:storage": "yarn build && env mocha --exit -r ts-node/register 'tests/storage.test.ts'",
    "test:electrum": "yarn build && env mocha --exit -r ts-node/register 'tests/electrum.test.ts'",
    "test:derivation": "yarn build && env mocha --exit -r ts-node/register 'tests/derivation.test.ts'",
    "test:transaction": "yarn build && env mocha --exit -r ts-node/register 'tests/transaction.test.ts'",
    "test:lightning": "npx mocha --exit -r ts-node/register --ignore 'tests/lightning/interop/**' 'tests/lightning/**/*.test.ts'",
    "test:conformance": "npx mocha --exit -r ts-node/register 'tests/lightning/conformance/**/*.test.ts'",
    "test:interop": "npx mocha --exit --timeout 120000 -r ts-node/register 'tests/lightning/interop/**/*.test.ts'",
    "example": "ts-node example",
    "beignet": "ts-node src/cli/cli.ts",
    "test:cli": "npx mocha --exit -r ts-node/register --ignore 'tests/cli/daemon-security.test.ts' --ignore 'tests/cli/daemon-integration.test.ts' 'tests/cli/**/*.test.ts'",
    "test:integration": "npx mocha --exit --timeout 60000 -r ts-node/register 'tests/cli/daemon-security.test.ts' 'tests/cli/daemon-integration.test.ts'",
    "test:all": "npx mocha --exit --timeout 120000 -r ts-node/register 'tests/lightning/**/*.test.ts' 'tests/cli/**/*.test.ts'",
    "example:lightning": "ts-node example/lightning.ts",
    "lint": "eslint . --ext .js,.jsx,.ts,.tsx",
    "lint:check": "eslint . --ext .js,.jsx,.ts,.tsx",
    "lint:fix": "eslint . --fix --ext .js,.jsx,.ts,.tsx",
    "tsc:check": "tsc -p tsconfig.json --noEmit",
    "build": "tsc",
    "docs:markdown": "npx typedoc --plugin typedoc-plugin-markdown --out docs/markdown src/index.ts",
    "docs:html": "npx typedoc --out docs/html",
    "docs": "npm run build && npm run docs:markdown && npm run docs:html"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/coreyphillips/beignet.git",
    "baseUrl": "https://github.com/coreyphillips/beignet"
  },
  "keywords": [
    "Bitcoin",
    "wallet",
    "lightning",
    "lightning-network",
    "bolt",
    "ai-agent"
  ],
  "types": "dist/types/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/types/index.d.ts",
      "default": "./dist/index.js"
    },
    "./lightning": {
      "types": "./dist/types/lightning/index.d.ts",
      "default": "./dist/lightning/index.js"
    },
    "./cli": {
      "types": "./dist/types/cli/index.d.ts",
      "default": "./dist/cli/index.js"
    }
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "files": [
    "dist/",
    "docs/",
    "README.md",
    "LICENSE"
  ],
  "author": "coreyphillips",
  "license": "MIT",
  "overrides": {
    "axios": "0.33.0",
    "js-yaml": "4.2.0",
    "serialize-javascript": "7.0.7"
  },
  "bugs": {
    "url": "https://github.com/coreyphillips/beignet/issues"
  },
  "homepage": "https://github.com/coreyphillips/beignet#readme",
  "dependencies": {
    "@bitcoinerlab/secp256k1": "1.0.5",
    "@brandonblack/musig": "^0.0.1-alpha.1",
    "@types/better-sqlite3": "^7.6.13",
    "bech32": "2.0.0",
    "better-sqlite3": "^12.6.2",
    "bip21": "2.0.3",
    "bip32": "4.0.0",
    "bip39": "3.1.0",
    "bitcoin-address-validation": "2.2.3",
    "bitcoin-units": "0.3.0",
    "bitcoinjs-lib": "6.1.4",
    "ecpair": "2.1.0",
    "lodash.clonedeep": "4.5.0",
    "net": "1.0.2",
    "rn-electrum-client": "0.0.22",
    "socks": "^2.8.7"
  },
  "devDependencies": {
    "@types/chai": "4.3.0",
    "@types/mocha": "9.0.0",
    "@types/node": "20.4.10",
    "@typescript-eslint/eslint-plugin": "5.6.0",
    "@typescript-eslint/parser": "5.6.0",
    "bitcoin-json-rpc": "1.3.3",
    "bw-electrum-client": "BlueWallet/rn-electrum-client#47acb51149e97fab249c3f8a314f708dbee4fb6e",
    "chai": "4.3.4",
    "eslint": "8.4.1",
    "eslint-config-prettier": "9.0.0",
    "eslint-plugin-prettier": "5.0.0",
    "mocha": "10.8.2",
    "prettier": "3.0.2",
    "sinon": "18.0.0",
    "ts-node": "10.9.0",
    "typedoc": "0.24.8",
    "typedoc-plugin-markdown": "3.15.4",
    "typescript": "4.9"
  }
}
