{
  "name": "@openbotauth/proxy",
  "version": "0.1.6",
  "description": "Web Bot Auth / OpenBotAuth reverse proxy for verifying RFC 9421 HTTP signatures",
  "type": "module",
  "main": "./dist/server.js",
  "types": "./dist/server.d.ts",
  "exports": {
    ".": {
      "types": "./dist/server.d.ts",
      "import": "./dist/server.js"
    },
    "./verifier": {
      "types": "./dist/verifier.d.ts",
      "import": "./dist/verifier.js"
    },
    "./headers": {
      "types": "./dist/headers.d.ts",
      "import": "./dist/headers.js"
    },
    "./types": {
      "types": "./dist/types.d.ts",
      "import": "./dist/types.js"
    }
  },
  "bin": {
    "proxy": "./dist/server.js",
    "oba-proxy": "./dist/server.js",
    "openbotauth-proxy": "./dist/server.js"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsc",
    "dev": "tsx watch --env-file=../../.env src/server.ts",
    "start": "node dist/server.js",
    "clean": "rm -rf dist",
    "test": "vitest"
  },
  "keywords": [
    "openbotauth",
    "webbotauth",
    "web-bot-auth",
    "proxy",
    "reverse-proxy",
    "rfc9421",
    "http-signatures",
    "bot-auth",
    "agent-auth",
    "ai-agent",
    "sidecar"
  ],
  "author": "OpenBotAuth",
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "https://github.com/OpenBotAuth/openbotauth.git",
    "directory": "packages/proxy"
  },
  "homepage": "https://openbotauth.org",
  "bugs": {
    "url": "https://github.com/OpenBotAuth/openbotauth/issues"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@types/node": "^20.14.0",
    "tsx": "^4.15.0",
    "typescript": "^5.4.5",
    "vitest": "^1.6.0"
  },
  "dependencies": {}
}
