-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.2 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.2 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": "secure-coding-mcp",
"version": "1.0.0",
"description": "MCP server providing secure coding guidelines for AI-generated code",
"type": "module",
"main": "src/index.js",
"bin": {
"secure-coding-mcp": "./src/index.js"
},
"engines": {
"node": ">=12.17.0"
},
"scripts": {
"start": "node src/index.js",
"test": "echo \"No tests specified\" && exit 0",
"postinstall": "chmod +x ./src/index.js",
"verify": "node -e \"console.log('Secure Coding MCP package is properly installed')\""
},
"keywords": [
"mcp",
"secure-coding",
"security",
"guidelines",
"model-context-protocol",
"cursor",
"ai",
"code-generation"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.7.0"
},
"files": [
"src/index.js",
"README.md",
"config/mcp.json",
"examples/auth-with-MCP.js",
"examples/auth-without-mcp.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/yourusername/secure-coding-mcp.git"
},
"bugs": {
"url": "https://github.com/yourusername/secure-coding-mcp/issues"
},
"homepage": "https://github.com/yourusername/secure-coding-mcp#readme"
}