-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.53 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.53 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
{
"name": "shellward",
"version": "0.5.7",
"description": "AI Agent Security Middleware — 8-layer defense against prompt injection, data exfiltration & dangerous commands. DLP model: use data freely, block external leaks. Zero dependencies. SDK + OpenClaw plugin. Supports LangChain, AutoGPT, Claude Code, Cursor, OpenAI Agents.",
"keywords": [
"shellward",
"ai-security",
"ai-agent",
"security-middleware",
"prompt-injection",
"llm-security",
"data-protection",
"data-exfiltration",
"dlp",
"guardrails",
"langchain",
"autogpt",
"openai",
"cursor",
"openclaw",
"sdk",
"PII",
"agent-security"
],
"author": "jnMetaCode",
"license": "Apache-2.0",
"homepage": "https://github.com/jnMetaCode/shellward#readme",
"repository": {
"type": "git",
"url": "https://github.com/jnMetaCode/shellward"
},
"type": "module",
"main": "src/index.ts",
"exports": {
".": {
"import": "./src/index.ts",
"default": "./src/index.ts"
}
},
"scripts": {
"test": "npx tsx test-integration.ts && npx tsx test-edge-cases.ts && npx tsx test-sdk.ts",
"test:integration": "npx tsx test-integration.ts",
"test:edge": "npx tsx test-edge-cases.ts",
"test:sdk": "npx tsx test-sdk.ts"
},
"openclaw": {
"extensions": [
"./src/index.ts"
]
},
"files": [
"src/",
"skills/",
"openclaw.plugin.json",
"vuln-db.json",
"install.sh",
"install.ps1",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=18"
}
}