-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.56 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.56 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
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@elliotllliu/agent-shield",
"version": "0.19.0",
"description": "Multi-engine AI agent security scanner — one scan, four engines, one report",
"type": "module",
"bin": {
"agent-shield": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"test": "find tests -name '*.test.ts' | sort | xargs node --import tsx --test",
"prepublishOnly": "npm run build"
},
"keywords": [
"security",
"scanner",
"ai-agent",
"mcp",
"plugin",
"vulnerability",
"static-analysis",
"ast",
"taint-tracking",
"cross-file-analysis",
"kill-chain",
"prompt-injection",
"tool-poisoning",
"data-exfiltration",
"backdoor",
"credential-leak",
"supply-chain",
"dify",
"difypkg",
"python-security",
"github-action",
"cli",
"ai-safety",
"model-context-protocol",
"openclaw",
"codex",
"claude"
],
"author": "Elliot Liu",
"license": "MIT",
"dependencies": {
"chalk": "^5.4.1",
"commander": "^13.1.0",
"glob": "^11.0.1",
"gray-matter": "^4.0.3"
},
"devDependencies": {
"@types/node": "^22.10.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=18"
},
"files": [
"dist",
"src/analyzers",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/elliotllliu/agent-shield.git"
},
"bugs": {
"url": "https://github.com/elliotllliu/agent-shield/issues"
},
"homepage": "https://github.com/elliotllliu/agent-shield#readme"
}