{
  "name": "@hicho-lge/gerrit-mcp",
  "version": "0.0.1",
  "description": "Gerrit Code Review system을 위한 Model Context Protocol (MCP) 서버 - 23개 도구로 변경사항, 프로젝트, 계정 관리 기능 제공",
  "main": "dist/index.js",
  "type": "module",
  "bin": {
    "gerrit-mcp": "./dist/index.js"
  },
  "scripts": {
    "build": "tsc",
    "start": "node dist/index.js",
    "dev": "ts-node src/index.ts",
    "watch": "tsc --watch",
    "prepare": "npm run build",
    "prepublishOnly": "npm run build && chmod +x dist/index.js",
    "test": "echo \"gerrit-mcp 패키지가 정상적으로 빌드되었습니다\" && npm run build"
  },
  "keywords": [
    "gerrit",
    "mcp",
    "model-context-protocol",
    "code-review",
    "api",
    "typescript",
    "nodejs",
    "git",
    "code-management",
    "review-system",
    "claude",
    "ai-tools",
    "automation"
  ],
  "author": {
    "name": "Hyeonil Cho",
    "email": "hyeonil.cho@lge.com"
  },
  "license": "MIT",
  "engines": {
    "node": ">=16.0.0",
    "npm": ">=7.0.0"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^0.5.0",
    "axios": "^1.6.0",
    "commander": "^11.0.0"
  },
  "devDependencies": {
    "@types/node": "^20.0.0",
    "ts-node": "^10.9.0",
    "typescript": "^5.0.0"
  },
  "files": [
    "dist/**/*",
    "README.md",
    "LICENSE",
    "package.json"
  ],
  "publishConfig": {
    "access": "public"
  }
}