package.json•1.23 kB
{
"name": "reviewer-mcp",
"version": "1.0.0",
"description": "MCP service for AI-powered development workflows with OpenAI O3",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit",
"lint": "eslint src",
"test": "CI=true vitest run --bail=1",
"test:unit": "CI=true vitest run --bail=1 --exclude=**/*.integration.test.ts",
"test:integration": "./scripts/test-e2e.sh",
"test:coverage": "CI=true vitest run --coverage --exclude=**/*.integration.test.ts",
"test:coverage:all": "CI=true vitest run --coverage"
},
"keywords": [
"mcp",
"ai",
"openai",
"code-review",
"development"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"dotenv": "^16.4.7",
"openai": "^4.73.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/node": "^22.10.2",
"@vitest/coverage-v8": "^2.1.9",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0",
"vitest": "^2.1.8"
}
}