-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.81 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
75
76
77
78
{
"name": "@axiorank/openclaw",
"version": "0.1.0",
"description": "Inline security gateway for OpenClaw agents. Blocks secret exfiltration, destructive operations, and prompt injection on every tool call, locally and offline, with no API key required.",
"license": "MIT",
"author": "AxioRank",
"homepage": "https://axiorank.com",
"repository": {
"type": "git",
"url": "git+https://github.com/AxioRank/openclaw-plugin.git"
},
"bugs": "https://github.com/AxioRank/openclaw-plugin/issues",
"type": "module",
"files": [
"dist",
"openclaw.plugin.json",
"README.md",
"LICENSE"
],
"keywords": [
"openclaw",
"openclaw-plugin",
"clawhub",
"agent-security",
"llm-security",
"ai-safety",
"prompt-injection",
"secrets-detection",
"guardrails",
"tool-call",
"axiorank"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"test": "vitest run"
},
"engines": {
"node": ">=22.19"
},
"openclaw": {
"extensions": [
"./index.ts"
],
"runtimeExtensions": [
"./dist/index.js"
],
"compat": {
"pluginApi": ">=2026.3.24-beta.2",
"minGatewayVersion": ">=2026.3.24-beta.2"
},
"build": {
"openclawVersion": "2026.7.1-beta.6",
"pluginSdkVersion": "2026.7.1-beta.6"
}
},
"dependencies": {
"typebox": "1.3.3"
},
"peerDependencies": {
"openclaw": ">=2026.3.24-beta.2"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@axiorank/audit-verify": "^0.6.0",
"@axiorank/detectors": "^0.2.1",
"@axiorank/mcpaudit": "^0.3.1",
"@axiorank/redteam-corpus": "^0.1.0",
"@types/node": "^22.10.2",
"openclaw": "2026.7.1-beta.6",
"tsup": "^8.3.5",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
}
}