mcp-gitlab-ci/package.json
Lilith d4c9f50b3c feat: add GitLab npm publishing config
- Add publishConfig with GitLab registry
- Add publish script
- Add _ meta config

Generated with Claude Code
2025-12-29 21:36:33 -08:00

59 lines
1.2 KiB
JSON

{
"name": "@3viky/mcp-gitlab-ci",
"version": "1.0.0",
"description": "Model Context Protocol server for GitLab CI/CD pipeline monitoring",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"mcp-gitlab-ci": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"start": "node dist/index.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"gitlab",
"ci-cd",
"pipeline",
"monitoring",
"claude-code"
],
"author": "3viky",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/3viky/mcp-gitlab-ci.git"
},
"bugs": {
"url": "https://github.com/3viky/mcp-gitlab-ci/issues"
},
"homepage": "https://github.com/3viky/mcp-gitlab-ci#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.24.3",
"dotenv": "^16.6.1"
},
"devDependencies": {
"@types/node": "^20.19.26",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=18.0.0"
},
"_": {
"registry": "github",
"publish": false,
"build": true
}
}