-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.17 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.17 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
{
"name": "mcp-shield",
"version": "1.0.0",
"description": "One-command security for MCP servers — wraps your MCP servers with agentgateway for authentication, rate limiting, and audit logging",
"main": "dist/index.js",
"bin": {
"mcp-shield": "dist/index.js"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"start": "node dist/index.js",
"test": "tsc && node dist/test/config-parser.test.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"mcp",
"security",
"agentgateway",
"ai-agents",
"model-context-protocol",
"rate-limiting",
"jwt",
"authentication"
],
"author": "bcornish1797",
"license": "MIT",
"homepage": "https://github.com/bcornish1797/mcp-shield",
"repository": {
"type": "git",
"url": "https://github.com/bcornish1797/mcp-shield.git"
},
"bugs": {
"url": "https://github.com/bcornish1797/mcp-shield/issues"
},
"engines": {
"node": ">=18.0.0"
},
"type": "commonjs",
"dependencies": {
"commander": "^14.0.3",
"yaml": "^2.8.3"
},
"devDependencies": {
"@types/node": "^25.5.0",
"typescript": "^6.0.2"
}
}