-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.25 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.25 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": "cybermcp",
"version": "0.2.0",
"description": "Cybersecurity API Testing with Model Context Protocol",
"type": "module",
"main": "dist/index.js",
"bin": {
"cybermcp": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node --esm src/index.ts",
"test": "jest",
"test-server": "node scripts/test-server.js",
"test-tools": "node scripts/test-tools.js",
"test-interactive": "node scripts/interactive-test.js",
"quick-start": "node scripts/quick-start.js",
"inspector": "npx @modelcontextprotocol/inspector ./dist/index.js"
},
"keywords": [
"cybersecurity",
"api",
"testing",
"mcp",
"security",
"penetration-testing",
"vulnerability-assessment"
],
"author": "ricauts",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"axios": "^1.7.7",
"zod": "^3.23.8",
"jwt-decode": "^4.0.0",
"cheerio": "^1.0.0",
"crypto": "^1.0.1"
},
"devDependencies": {
"@types/node": "^20.12.7",
"typescript": "^5.4.5",
"ts-node": "^10.9.2",
"jest": "^29.7.0",
"ts-jest": "^29.2.4",
"@modelcontextprotocol/inspector": "^0.1.0"
},
"files": [
"dist",
"README.md"
]
}