package.json•2.04 kB
{
"name": "@alosies/gitlab-mcp-server",
"version": "1.3.1",
"description": "MCP server for GitLab API integration with comprehensive project, issue, merge request, pipeline, and job management capabilities",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./types": {
"types": "./dist/types.d.ts",
"import": "./dist/types.js"
}
},
"bin": {
"gitlab-mcp-server": "./dist/index.js"
},
"files": [
"dist/**/*",
"README.md"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run clean && npm run build && npm run test"
},
"keywords": [
"mcp",
"gitlab",
"api",
"server",
"model-context-protocol",
"claude",
"ai",
"integration",
"devops",
"ci-cd",
"pipelines",
"issues",
"merge-requests",
"typescript",
"types"
],
"author": "Alos <alosies@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/alosies/gitlab-mcp-server.git"
},
"bugs": {
"url": "https://github.com/alosies/gitlab-mcp-server/issues"
},
"homepage": "https://github.com/alosies/gitlab-mcp-server#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"axios": "^1.7.7"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vitest/coverage-v8": "^1.6.0",
"@vitest/ui": "^1.6.0",
"eslint": "^8.57.0",
"typescript": "^5.5.4",
"vitest": "^1.6.0"
}
}