-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.18 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.18 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
{
"name": "github-security-mcp",
"version": "0.1.0",
"description": "GitHub security posture audit tools for AI agents — organization, repository, Actions, secrets, supply chain analysis via MCP",
"type": "module",
"main": "dist/index.js",
"bin": {
"github-security-mcp": "dist/index.js"
},
"files": [
"dist/"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"start": "node dist/index.js",
"dev": "bun --watch run src/index.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"mcp-server",
"github",
"security",
"audit",
"github-actions",
"devsecops",
"supply-chain",
"secret-scanning",
"ai-agent"
],
"author": "Orhan Yildirim (https://github.com/badchars)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/badchars/github-security-mcp.git"
},
"homepage": "https://github.com/badchars/github-security-mcp",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"@octokit/rest": "^21.1.1",
"@octokit/graphql": "^8.2.1",
"zod": "^3.24.4"
},
"devDependencies": {
"@types/node": "^22.13.10",
"typescript": "^5.8.2"
}
}