package.json•2.94 kB
{
"name": "@rekog/mcp-nest",
"version": "1.8.3",
"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",
"test": "npx --node-options=--experimental-vm-modules jest",
"test:watch": "npx --node-options=--experimental-vm-modules jest --watch",
"test:fastify": "ts-node playground/clients/http-fastify-client.ts",
"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.1.14",
"typeorm": ">=0.3.25",
"zod": "^3.0.0",
"zod-to-json-schema": ">=3.23.0"
},
"peerDependenciesMeta": {
"@nestjs/platform-fastify": {
"optional": true
},
"@nestjs/typeorm": {
"optional": true
},
"typeorm": {
"optional": true
}
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@modelcontextprotocol/sdk": "^1.17.4",
"@nestjs/common": "^11.1.1",
"@nestjs/core": "^11.1.1",
"@nestjs/platform-express": "^11.1.1",
"@nestjs/platform-fastify": "^11.1.6",
"@nestjs/testing": "^11.1.1",
"@nestjs/typeorm": "^11.0.0",
"@types/cookie-parser": "^1.4.9",
"@types/express": "^5.0.2",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.10",
"@types/passport-github": "^1.1.12",
"@types/passport-google-oauth20": "^2.0.16",
"@types/supertest": "^6.0.3",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"express": "^4.21.2",
"jest": "^29.7.0",
"supertest": "^7.1.3",
"ts-jest": "^29.4.0",
"ts-node-dev": "^2.0.0",
"typeorm": "^0.3.25",
"typescript": "^5.8.3",
"typescript-eslint": "^8.20.0"
},
"dependencies": {
"@nestjs/config": "^4.0.2",
"cookie-parser": "^1.4.7",
"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.2.0",
"rxjs": "^7.8.2"
}
}