{
  "name": "@bsv/overlay-express",
  "version": "2.4.2",
  "type": "module",
  "description": "BSV Blockchain Overlay Express",
  "main": "dist/cjs/mod.js",
  "module": "dist/esm/mod.js",
  "types": "dist/types/mod.d.ts",
  "files": [
    "dist",
    "src",
    "docs",
    "mod.ts",
    "LICENSE.txt"
  ],
  "exports": {
    ".": {
      "types": "./dist/types/mod.d.ts",
      "import": "./dist/esm/mod.js",
      "require": "./dist/cjs/mod.js"
    },
    "./*.ts": {
      "types": "./dist/types/src/*.d.ts",
      "import": "./dist/esm/src/*.js",
      "require": "./dist/cjs/src/*.js"
    }
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/bsv-blockchain/ts-stack.git",
    "directory": "packages/overlays/overlay-express"
  },
  "keywords": [
    "BSV",
    "Blockchain",
    "Overlay",
    "Bitcoin",
    "SV"
  ],
  "author": "BSV Association",
  "license": "SEE LICENSE IN LICENSE.txt",
  "bugs": {
    "url": "https://github.com/bsv-blockchain/ts-stack/issues"
  },
  "homepage": "https://github.com/bsv-blockchain/ts-stack/tree/main/packages/overlays/overlay-express#readme",
  "devDependencies": {
    "@jest/globals": "^30.4.1",
    "@types/body-parser": "^1.19.6",
    "@types/express": "^5.0.6",
    "@types/jest": "^30.0.0",
    "@types/node": "^26.1.1",
    "jest": "^30.4.2",
    "ts-jest": "^29.4.12",
    "ts2md": "^0.2.8",
    "tsconfig-to-dual-package": "^1.2.0",
    "typescript": "^6.0.3",
    "oxlint": "^1.75.0",
    "@bsv/sdk": "^2.2.0"
  },
  "dependencies": {
    "body-parser": "^2.3.0",
    "chalk": "^5.6.2",
    "express": "^5.2.1",
    "knex": "^3.3.0",
    "mongodb": "^7.5.0",
    "uuid": "^14.0.1",
    "@bsv/auth-express-middleware": "^2.1.2",
    "@bsv/overlay": "^2.2.1",
    "@bsv/overlay-discovery-services": "^2.1.1",
    "@bsv/wallet-toolbox-client": "^2.4.4"
  },
  "peerDependencies": {
    "@bsv/sdk": "^2.1.6"
  },
  "peerDependenciesMeta": {
    "@bsv/sdk": {
      "optional": false
    }
  },
  "scripts": {
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "lint": "oxlint src",
    "lint:ci": "oxlint src",
    "build": "tsc -b && tsconfig-to-dual-package tsconfig.cjs.json",
    "dev": "tsc -b -w",
    "prepublish": "npm run build",
    "doc": "ts2md --inputFilename=mod.ts --outputFilename=API.md --filenameSubstring=API --firstHeadingLevel=1",
    "demo": "rm -r dist && npm run build && npx tsx demo-ui.ts"
  }
}