Files
gitlab-mcp/package.json
simple 95d8118ea5 [main] feat: README.md 도구 섹션 자동 업데이트 기능 추가
🚀 Breaking Changes:
- README.md의 도구 섹션이 자동으로 업데이트됩니다.

📝 Details:
- index.ts에서 도구 정보를 추출하여 README.md의 특정 섹션을 업데이트하는 스크립트 추가
- package.json에 도구 생성 스크립트 명령어 추가
2025-04-25 00:11:34 +09:00

41 lines
1012 B
JSON

{
"name": "@zereight/mcp-gitlab",
"version": "1.0.32",
"description": "MCP server for using the GitLab API",
"license": "MIT",
"author": "zereight",
"type": "module",
"bin": "./build/index.js",
"files": [
"build"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=14"
},
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"prepare": "npm run build",
"watch": "tsc --watch",
"deploy": "npm publish --access public",
"generate-tools": "npx ts-node scripts/generate-tools-readme.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.8.0",
"form-data": "^4.0.0",
"@types/node-fetch": "^2.6.12",
"http-proxy-agent": "^7.0.2",
"https-proxy-agent": "^7.0.6",
"node-fetch": "^3.3.2",
"socks-proxy-agent": "^8.0.5",
"zod-to-json-schema": "^3.23.5"
},
"devDependencies": {
"@types/node": "^22.13.10",
"typescript": "^5.8.2",
"zod": "^3.24.2"
}
}