-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.52 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.52 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
{
"name": "@goplus/agentguard",
"version": "1.0.10",
"description": "GoPlus AgentGuard — Security guard for AI agents. Blocks dangerous commands, prevents data leaks, protects secrets. 20 detection rules, runtime action evaluation, trust registry.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"openclaw": {
"extensions": [
"./dist/index.js"
]
},
"bin": {
"agentguard": "./dist/mcp-server.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/mcp-server.js",
"dev": "tsc -w",
"test": "node --test dist/tests/*.test.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"claude-code-skill",
"agent-skills",
"mcp",
"security",
"ai-agent",
"web3",
"goplus",
"claude-code",
"codex",
"scanner",
"trust-registry",
"hooks"
],
"author": "GoPlusSecurity",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/GoPlusSecurity/agentguard.git"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"axios": "^1.6.7",
"commander": "^12.0.0",
"glob": "^10.3.10",
"zod": "^3.25.32"
},
"devDependencies": {
"@types/node": "^20.11.24",
"typescript": "^5.3.3"
},
"homepage": "https://github.com/GoPlusSecurity/agentguard#readme",
"bugs": {
"url": "https://github.com/GoPlusSecurity/agentguard/issues"
},
"files": [
"dist",
"README.md",
"LICENSE",
"openclaw.plugin.json",
"skills"
]
}