64 lines
1.4 KiB
JSON
64 lines
1.4 KiB
JSON
{
|
|
"name": "@lilith/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": "tsup",
|
|
"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://forge.nasty.sh/lilith/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.25.2",
|
|
"dotenv": "^16.6.1"
|
|
},
|
|
"devDependencies": {
|
|
"@lilith/configs": "workspace:*",
|
|
"@types/node": "^20.19.28",
|
|
"typescript": "^5.9.3",
|
|
"tsup": "^8.5.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"_": {
|
|
"registry": "forgejo",
|
|
"publish": true,
|
|
"build": true
|
|
},
|
|
"publishConfig": {
|
|
"registry": "http://forge.nasty.sh/api/packages/lilith/npm/"
|
|
}
|
|
}
|