-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.16 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.16 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@zephyr-mcp/gitlab",
"version": "0.5.2",
"description": "基于 Model Context Protocol (MCP) 框架构建的 GitLab 集成服务器,提供与 GitLab 实例的强大集成能力",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./tools": {
"types": "./dist/gitlab-tools-sdk.d.ts",
"import": "./dist/gitlab-tools-sdk.js",
"require": "./dist/gitlab-tools-sdk.js"
},
"./tools.js": {
"types": "./dist/gitlab-tools-sdk.d.ts",
"import": "./dist/gitlab-tools-sdk.js",
"require": "./dist/gitlab-tools-sdk.js"
}
},
"bin": {
"gitlab-mcp": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist",
"build": "tsup && chmod +x dist/index.js",
"build:tsc": "npm run clean && tsc && chmod +x dist/index.js",
"start": "npm run build && node dist/index.js",
"dev": "tsup --watch",
"preinspect": "npm run build",
"inspect": "npx @modelcontextprotocol/inspector node dist/index.js",
"deploy": "smithery deploy",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"axios": "^1.8.4",
"dotenv": "^16.4.7",
"fastmcp": "^3.27.0"
},
"devDependencies": {
"@modelcontextprotocol/inspector": "^0.16.6",
"@smithery/cli": "latest",
"@types/jest": "^29.5.14",
"@types/node": "^20.11.24",
"concurrently": "^9.1.2",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"rimraf": "^6.0.1",
"ts-jest": "^29.3.1",
"tsup": "^8.5.1",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.19.0"
},
"smithery": {
"configFile": "./smithery.json"
},
"keywords": [
"gitlab",
"mcp",
"model-context-protocol",
"restful",
"api",
"claude",
"anthropic",
"smithery"
],
"author": "Zephyr Deng <zephyrTang@aliyun.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ZephyrDeng/mcp-server-gitlab"
},
"publishConfig": {
"access": "public"
}
}