-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.19 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
{
"name": "agent-content-shield",
"version": "0.3.0",
"description": "Defense framework against AI agent content injection, memory poisoning, and RAG attacks. Platform-agnostic with adapters for Claude Code, MCP middleware, and CLI.",
"main": "index.js",
"bin": {
"shield": "cli/shield.js"
},
"scripts": {
"test": "node test/run.js",
"test:semantic": "node test/run.js --semantic",
"test:all": "node test/run.js --all",
"test:detectors": "node --test test/detectors.test.js",
"scan": "node cli/shield.js scan-dir",
"lint": "echo 'no lint configured'"
},
"keywords": [
"ai-security",
"agent-security",
"content-injection",
"prompt-injection",
"memory-poisoning",
"rag-poisoning",
"mcp",
"claude-code",
"llm-security"
],
"author": "anthonyonazure",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/anthonyonazure/agent-content-shield"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"index.js",
"core/",
"adapters/",
"cli/",
"config/"
],
"dependencies": {
"js-yaml": "^4.1.1"
},
"optionalDependencies": {
"@anthropic-ai/sdk": "^0.82.0"
}
}