-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.65 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "@chntif/mcp-gitlab-workflow",
"version": "0.1.2",
"private": false,
"type": "module",
"description": "GitLab MCP: supports creating issues from requirements or modifying code and submitting merge requests from existing issues, while also providing a set of atomic GitLab API tools for issue-driven development.",
"main": "dist/src/server.js",
"bin": {
"mcp-gitlab-workflow": "dist/src/server.js"
},
"author": "chntif <tchen1690@gmail.com>",
"license": "MIT",
"files": [
"dist",
"README.md",
"README.zh-CN.md",
"LICENSE"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chntif/mcp-gitlab-workflow.git"
},
"bugs": {
"url": "https://github.com/chntif/mcp-gitlab-workflow/issues"
},
"homepage": "https://github.com/chntif/mcp-gitlab-workflow#readme",
"keywords": [
"mcp",
"model-context-protocol",
"gitlab",
"automation",
"issue-driven-development",
"developer-tools"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx src/server.ts",
"start": "node dist/src/server.js",
"lib": "rimraf dist && npm run build",
"pub": "npm run lib && npm publish --access public --registry https://registry.npmjs.org/",
"test": "node -e \"console.log('No automated tests configured')\""
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.11.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^24.11.0",
"rimraf": "^6.1.3",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}