-
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.06 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.06 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": "mcpscan",
"version": "0.1.0",
"description": "Offensive MCP server security auditor — enumerate tools, detect poisoning, credential leakage, RCE vectors, and supply chain vulnerabilities",
"type": "module",
"bin": {
"mcpscan": "./dist/cli.js"
},
"main": "./dist/cli.js",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"postbuild": "chmod +x dist/cli.js",
"dev": "tsx src/cli.ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"boxen": "^8.0.1",
"chalk": "^5.4.1",
"commander": "^14.0.0",
"ora": "^8.2.0",
"semver": "^7.7.1",
"zod": "^3.25.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/semver": "^7.5.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"mcp",
"security",
"pentest",
"audit",
"model-context-protocol",
"offensive-security"
],
"license": "MIT"
}