{
  "name": "@descope/mcp-express",
  "version": "1.6.0",
  "description": "Descope Express MCP SDK",
  "type": "module",
  "types": "./dist/esm/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/esm/index.d.ts",
      "require": "./dist/cjs/index.js",
      "default": "./dist/esm/index.js"
    }
  },
  "scripts": {
    "test": "NODE_OPTIONS=\"--experimental-vm-modules\" jest",
    "build": "pnpm run \"/build:.*/\"",
    "build:esm": "tsc -p tsconfig.esm.json && echo '{\"type\": \"module\"}' > dist/esm/package.json",
    "build:cjs": "tsc -p tsconfig.cjs.json && echo '{\"type\": \"commonjs\"}' > dist/cjs/package.json",
    "watch": "tsc --watch",
    "dev": "concurrently \"pnpm run watch\" \"nodemon --watch build dist/index.js\"",
    "dev:examples": "tsx examples/server.ts",
    "lint": "eslint src --ext .ts",
    "lint:fix": "pnpm run lint --fix",
    "leaks": "bash ./scripts/gitleaks/gitleaks.sh",
    "format-check": "prettier . --check",
    "format-fix": "prettier . --write"
  },
  "files": [
    "dist"
  ],
  "keywords": [
    "descope",
    "mcp",
    "modelcontextprotocol"
  ],
  "author": "Descope (https://descope.com)",
  "license": "MIT",
  "dependencies": {
    "@descope/node-sdk": "^2.5.0",
    "@modelcontextprotocol/sdk": "^1.25.2",
    "express": "4.22.2",
    "zod": "3.25.76"
  },
  "devDependencies": {
    "@eslint/js": "^9.39.4",
    "@eslint/json": "^1.2.0",
    "@eslint/plugin-kit": "^0.7.1",
    "@jest/globals": "^30.0.0",
    "@types/cors": "^2.8.17",
    "@types/express": "^5.0.1",
    "@types/express-serve-static-core": "^5.0.6",
    "@types/jest": "^30.0.0",
    "@types/node": "^22.13.13",
    "@types/superagent": "^8.1.9",
    "@types/supertest": "^7.0.0",
    "concurrently": "^9.2.1",
    "cors": "2.8.6",
    "dotenv": "17.4.2",
    "eslint": "^9.39.4",
    "express-rate-limit": "8.5.1",
    "globals": "^17.0.0",
    "jest": "^30.3.0",
    "nodemon": "^3.1.9",
    "prettier": "^3.2.5",
    "shx": "^0.4.0",
    "supertest": "^7.1.0",
    "ts-jest": "^29.4.9",
    "tsx": "^4.19.0",
    "typescript": "^5.8.2",
    "typescript-eslint": "^8.59.2"
  },
  "engines": {
    "node": ">=18"
  },
  "packageManager": "pnpm@10.33.4",
  "publishConfig": {
    "access": "public"
  },
  "pnpm": {
    "overrides": {
      "brace-expansion@<1.1.13": ">=1.1.13",
      "brace-expansion@>=5.0.0 <5.0.6": ">=5.0.6",
      "diff": ">=4.0.4",
      "flatted": ">=3.4.2",
      "form-data": ">=4.0.4",
      "glob@>=10.2.0 <10.5.0": ">=10.5.0",
      "handlebars": ">=4.7.9",
      "hono": ">=4.12.18",
      "js-yaml": ">=4.1.1",
      "minimatch@<3.1.4": ">=3.1.4",
      "picomatch@<2.3.2": ">=2.3.2",
      "picomatch@>=4 <4.0.4": ">=4.0.4",
      "qs": ">=6.15.2"
    }
  }
}
