{
  "name": "@aotter/mantle-cloudflare",
  "version": "0.1.3",
  "description": "Cloudflare Workers adapter for Mantle runtime, Admin, MCP, and public Web mounts.",
  "license": "Apache-2.0",
  "homepage": "https://mantle.tools/",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/aotter/mantle.git",
    "directory": "packages/adapters/cloudflare"
  },
  "type": "module",
  "sideEffects": false,
  "publishConfig": {
    "access": "public",
    "tag": "alpha",
    "registry": "https://registry.npmjs.org"
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./testing": {
      "types": "./dist/testing.d.ts",
      "import": "./dist/testing.js"
    }
  },
  "files": [
    "dist",
    "README.md"
  ],
  "dependencies": {
    "@aotter/mantle-auth": "0.1.3",
    "@aotter/mantle-admin": "0.1.3",
    "@aotter/mantle-runtime": "0.1.3",
    "@aotter/mantle-spec": "0.1.3",
    "@aotter/mantle-web": "0.1.3"
  },
  "peerDependencies": {
    "aws4fetch": "^1.0.20",
    "better-auth": "1.7.2",
    "hono": "^4.12.0",
    "zod": "^4.5.0"
  },
  "devDependencies": {
    "@better-auth/core": "1.7.2",
    "@better-auth/utils": "0.4.2",
    "@cloudflare/workers-types": "^5.20260904.1",
    "@modelcontextprotocol/client": "2.0.0",
    "@types/node": "^26",
    "aws4fetch": "^1.0.20",
    "better-auth": "1.7.2",
    "hono": "^4.13.3",
    "typescript": "^6.0.3",
    "vitest": "^4.1.11",
    "wrangler": "^4.129.0",
    "zod": "^4.5.4"
  },
  "scripts": {
    "prebuild": "rm -rf dist .tsbuildinfo",
    "build": "tsc -b tsconfig.lib.json",
    "typecheck": "tsc --noEmit -p tsconfig.lib.json",
    "test": "pnpm test:facade-types && vitest run",
    "test:facade-types": "tsc --ignoreConfig --noEmit --strict --target ES2022 --module NodeNext --moduleResolution NodeNext --skipLibCheck --types @cloudflare/workers-types,node test/createMantleWorker.typecheck.ts",
    "bench:http-dispatch": "vitest bench --run test/http-dispatch.bench.ts",
    "bench:wrangler": "pnpm --filter '@aotter/mantle-cloudflare^...' build && node ../../../scripts/run-wrangler-performance.mjs && node test/performance/generate-parity-plan.mjs && BENCH_QUICK=1 BENCH_ROUNDS=10 node ../../../scripts/run-wrangler-parity.mjs",
    "bench:parity": "pnpm --filter '@aotter/mantle-cloudflare^...' build && node test/performance/generate-parity-plan.mjs && node ../../../scripts/run-wrangler-parity.mjs"
  }
}