Files
ai-agent-safety-guard/package.json
T
2026-06-14 13:18:49 +00:00

23 lines
591 B
JSON

{
"name": "ai-agent-safety-guard",
"version": "1.0.0",
"description": "CLI tool that wraps AI agent executions with configurable guardrails, permission controls, and audit trails",
"type": "module",
"main": "dist/index.js",
"bin": {
"ai-guard": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"test": "node --test dist/**/*.test.js",
"lint": "tsc --noEmit"
},
"keywords": ["ai", "agent", "safety", "sandbox", "guardrails"],
"author": "BunBun Labs",
"license": "MIT",
"devDependencies": {
"typescript": "^5.4.0",
"@types/node": "^20.0.0"
}
}