package.json•1.4 kB
{
"name": "@vibesnipe/code-review-mcp",
"version": "1.0.0",
"description": "MCP server for performing code reviews using external LLMs via Vercel AI SDK.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"code-review-mcp": "dist/index.js"
},
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.json && chmod +x dist/index.js",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "vitest run",
"test:watch": "vitest watch",
"inspector": "npx @modelcontextprotocol/inspector dist/index.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"claude code",
"cursor",
"windsurf",
"ai code review",
"code-review",
"model-context-protocol",
"review code"
],
"author": "Praney Behl <@praneybehl>",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.11.2",
"ai": "^4.3.15",
"@ai-sdk/openai": "^1.3.22",
"@ai-sdk/anthropic": "^1.2.11",
"@ai-sdk/google": "^1.2.18",
"dotenv": "^16.5.0",
"zod": "^3.24.4",
"execa": "^9.5.3"
},
"devDependencies": {
"@types/node": "^20.12.7",
"rimraf": "^6.0.1",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vitest": "^1.2.1"
},
"files": [
"dist",
"README.md",
"LICENSE",
"examples"
],
"publishConfig": {
"access": "public"
}
}