{
  "name": "@agentcash/router",
  "version": "1.20.0",
  "description": "Unified route builder for Next.js App Router APIs with x402, MPP, SIWX, and API key auth",
  "type": "module",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    },
    "./next": {
      "import": {
        "types": "./dist/next.d.ts",
        "default": "./dist/next.js"
      },
      "require": {
        "types": "./dist/next.d.cts",
        "default": "./dist/next.cjs"
      }
    }
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist",
    "AGENTS.md",
    "README.md"
  ],
  "dependencies": {
    "@coinbase/x402": "^2.1.0",
    "@x402/core": "^2.17.0",
    "@x402/evm": "^2.17.0",
    "@x402/extensions": "^2.17.0",
    "@x402/svm": "^2.17.0",
    "did-auth-challenge": "^0.0.1",
    "hono": "4.12.28",
    "mppx": "^0.8.11",
    "viem": "^2.54.6",
    "zod-openapi": "^5.0.0"
  },
  "devDependencies": {
    "@changesets/cli": "^2.29.8",
    "@eslint/js": "^10.0.1",
    "@modelcontextprotocol/sdk": "^1.26.0",
    "@solana/kit": "^5.1.0",
    "@types/node": "^22.0.0",
    "eslint": "^10.0.0",
    "knip": "^6.13.1",
    "prettier": "^3.8.1",
    "tsup": "^8.0.0",
    "typescript": "^5.8.0",
    "typescript-eslint": "^8.63.0",
    "vitest": "^3.0.0",
    "zod": "^4.0.0"
  },
  "peerDependencies": {
    "zod": "^4.0.0"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Merit-Systems/agentcash-router.git"
  },
  "scripts": {
    "build": "tsup",
    "typecheck": "tsc --noEmit",
    "lint": "eslint src/ tests/ --max-warnings 0",
    "lint:fix": "eslint src/ tests/ --fix",
    "format": "prettier --write 'src/**/*.ts' 'tests/**/*.ts' 'examples/fortune/**/*.ts' 'examples/fortune/**/*.md' 'examples/vercel-deploy/**/*.{ts,tsx,md}' '*.json' '*.mjs'",
    "format:check": "prettier --check 'src/**/*.ts' 'tests/**/*.ts' 'examples/fortune/**/*.ts' 'examples/fortune/**/*.md' 'examples/vercel-deploy/**/*.{ts,tsx,md}' '*.json' '*.mjs'",
    "test": "vitest run",
    "test:watch": "vitest",
    "knip": "knip",
    "check": "pnpm format:check && pnpm lint && pnpm typecheck && pnpm knip && pnpm build && pnpm test"
  }
}