-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.43 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
{
"name": "@mukundakatta/agentguard",
"version": "0.1.2",
"description": "Network egress firewall for AI agents \u2014 declarative allowlist of domains an agent's tools can fetch, throws or 403s on violation. Zero dependencies.",
"type": "module",
"main": "src/index.js",
"types": "./src/index.d.ts",
"bin": {
"agentguard": "src/cli.js"
},
"exports": {
".": {
"types": "./src/index.d.ts",
"default": "./src/index.js"
}
},
"files": [
"src",
"README.md",
"LICENSE"
],
"scripts": {
"test": "node --test test/*.test.js",
"test:examples": "node --test examples/*.test.js",
"test:all": "node --test test/*.test.js examples/*.test.js",
"test:coverage": "c8 --reporter=text --reporter=lcov --branches=75 --lines=85 --functions=85 --statements=85 node --test test/*.test.js"
},
"devDependencies": {
"c8": "^11.0.0"
},
"keywords": [
"ai",
"agent",
"llm",
"firewall",
"security",
"policy",
"allowlist",
"egress",
"network",
"tool-use",
"anthropic",
"openai",
"mcp",
"prompt-injection"
],
"author": "MukundaKatta",
"license": "MIT",
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "https://github.com/MukundaKatta/agentguard.git"
},
"bugs": {
"url": "https://github.com/MukundaKatta/agentguard/issues"
},
"homepage": "https://github.com/MukundaKatta/agentguard#readme"
}