-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.27 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.27 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
{
"name": "@pipe-cd/docs-mcp-server",
"version": "0.0.4",
"description": "Local MCP server for searching PipeCD docs",
"main": "dist/main.js",
"bin": {
"docs-mcp-server": "dist/main.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/main.js",
"dev": "ts-node src/main.ts",
"test": "jest",
"format": "biome format --write ./src",
"lint": "biome lint ./src",
"check": "biome check --write ./src",
"prepare-release": "npm version $VERSION --no-git-tag-version"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"@octokit/rest": "^22.0.0",
"@types/glob": "^8.1.0",
"dotenv": "^16.3.1",
"express": "^5.1.0",
"glob": "^11.0.2",
"js-yaml": "^4.1.0",
"octokit": "^5.0.3",
"simple-git": "^3.28.0",
"zod": "^3.25.56"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/express": "^5.0.3",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.15.30",
"jest": "^29.7.0",
"ts-jest": "^29.3.4",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pipe-cd/docs-mcp-server.git"
},
"publishConfig": {
"@pipe-cd:registry": "https://npm.pkg.github.com"
}
}