{
  "name": "mcp-oauth-server",
  "version": "0.0.4",
  "description": "MCP first OAuth 2.1 Authorization Server",
  "main": "dist/index.cjs",
  "module": "dist/index.js",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "type": "module",
  "files": [
    "./dist"
  ],
  "author": "wille",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/wille/mcp-oauth-server.git"
  },
  "license": "MIT",
  "devDependencies": {
    "@rollup/plugin-typescript": "^12.3.0",
    "@types/debug": "^4.1.12",
    "@types/express": "^5.0.5",
    "@types/express-serve-static-core": "^5.1.0",
    "@types/node": "^22.19.1",
    "prettier": "^3.6.2",
    "rollup": "^4.53.3",
    "supertest": "^7.2.2",
    "tslib": "^2.8.1",
    "tsx": "^4.20.6",
    "typescript": "^5.9.3",
    "vitest": "^4.0.10"
  },
  "peerDependencies": {
    "@modelcontextprotocol/sdk": "^1.29.0",
    "express": ">=4",
    "express-rate-limit": ">=7.5"
  },
  "dependencies": {
    "debug": "^4.4.3",
    "pkce-challenge": "^5.0.1",
    "zod": "^4.1.13"
  },
  "keywords": [
    "mcp",
    "ai",
    "oauth2",
    "oauth",
    "server",
    "modelcontextprotocol"
  ],
  "scripts": {
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "typecheck": "tsc",
    "format": "prettier --check ./src ./example",
    "build": "rollup -c rollup.config.js",
    "example:server": "DEBUG=oauth:* tsx --watch example/index.ts",
    "example:client": "tsx --watch node_modules/@modelcontextprotocol/sdk/dist/esm/examples/client/simpleOAuthClient.js"
  }
}