{
  "name": "@rekog/mcp-nest",
  "version": "1.9.9",
  "description": "NestJS module for creating Model Context Protocol (MCP) servers",
  "main": "dist/index.js",
  "license": "MIT",
  "types": "dist/index.d.ts",
  "files": [
    "dist",
    "src",
    "README.md",
    "LICENSE"
  ],
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/rekog-labs/MCP-Nest"
  },
  "scripts": {
    "build": "tsc -p tsconfig.build.json --sourceMap --inlineSources",
    "prepare": "npm run build",
    "start:playground": "ts-node-dev --respawn playground/servers/server-stateful.ts",
    "start:fastify": "ts-node-dev --respawn playground/servers/server-fastify.ts",
    "start:multi-server": "ts-node-dev --respawn playground/servers/multi-server-example/main.ts",
    "test": "bun test src tests",
    "test:watch": "bun test src tests --watch",
    "lint": "eslint \"{src,apps,libs,tests}/**/*.ts\" --fix",
    "format": "prettier --write \"src/**/*.ts\" \"playground/**/*.ts\" \"tests/**/*.ts\""
  },
  "peerDependencies": {
    "@modelcontextprotocol/sdk": ">=1.10.0",
    "@nestjs/common": ">=9.0.0",
    "@nestjs/core": ">=9.0.0",
    "@nestjs/jwt": "^11.0.0",
    "@nestjs/passport": "^11.0.5",
    "@nestjs/platform-fastify": "^11.1.5",
    "@nestjs/typeorm": ">=9.0.0",
    "express": ">=4.0.0",
    "reflect-metadata": "^0.2.2",
    "typeorm": ">=0.3.25",
    "zod": "^4.3.5"
  },
  "peerDependenciesMeta": {
    "@nestjs/platform-fastify": {
      "optional": true
    },
    "@nestjs/typeorm": {
      "optional": true
    },
    "typeorm": {
      "optional": true
    }
  },
  "devDependencies": {
    "@eslint/eslintrc": "^3.3.3",
    "@eslint/js": "^9.39.2",
    "@modelcontextprotocol/sdk": "^1.27.1",
    "@nestjs/common": "^11.1.14",
    "@nestjs/core": "^11.1.14",
    "@nestjs/platform-express": "^11.1.14",
    "@nestjs/platform-fastify": "^11.1.14",
    "@nestjs/testing": "^11.1.14",
    "@nestjs/typeorm": "^11.0.0",
    "@types/cookie-parser": "^1.4.10",
    "@types/express": "^5.0.6",
    "@types/jest": "^29.5.14",
    "@types/node": "^22.19.7",
    "@types/passport-github": "^1.1.13",
    "@types/passport-google-oauth20": "^2.0.17",
    "@types/supertest": "^6.0.3",
    "eslint": "^9.39.2",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-prettier": "^5.5.5",
    "express": "^5.2.1",
    "jest": "^29.7.0",
    "supertest": "^7.2.2",
    "ts-jest": "^29.4.6",
    "ts-node-dev": "^2.0.0",
    "typeorm": "^0.3.28",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.56.1"
  },
  "dependencies": {
    "@nestjs/config": "^4.0.3",
    "cookie-parser": "^1.4.7",
    "multer": "^2.0.2",
    "passport": "^0.7.0",
    "passport-azure-ad-oauth2": "^0.0.4",
    "passport-github": "^1.1.0",
    "passport-google-oauth20": "^2.0.0",
    "path-to-regexp": "^8.3.0",
    "rxjs": "^7.8.2"
  },
  "overrides": {
    "qs": "^6.14.1",
    "body-parser": "^2.2.1",
    "jws": "^3.2.3",
    "hono": "^4.11.4"
  }
}
