-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.46 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.46 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
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@agentdefenders/mcp-scan",
"version": "0.14.0-alpha",
"description": "MCP supply chain scanner - detect tool poisoning, prompt injection, and shadowing attacks",
"license": "MIT",
"author": "AgentDefenders <security@agentdefenders.ai> (https://agentdefenders.ai)",
"homepage": "https://agentdefenders.ai/mcp-scan",
"repository": {
"type": "git",
"url": "https://github.com/AgentDefenders/mcp-scan.git"
},
"bugs": {
"url": "https://github.com/AgentDefenders/mcp-scan/issues"
},
"keywords": [
"mcp",
"security",
"scanner",
"ai-agent",
"supply-chain",
"tool-poisoning",
"prompt-injection",
"llm",
"model-context-protocol",
"owasp"
],
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"engines": {
"node": ">=18"
},
"bin": {
"mcp-scan": "./dist/cli.js"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"test": "vitest run",
"typecheck": "echo 'typecheck runs via mcp-scanner-test job'",
"lint": "echo 'typecheck runs via build'"
},
"dependencies": {
"commander": "^12.0.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.0.0",
"typescript": "^5.0.0",
"tsx": "^4.0.0",
"vitest": "^1.0.0"
}
}