Files

24 lines
645 B
JSON

{
"name": "ai-agent-security-firewall",
"version": "1.0.0",
"description": "CLI tool that monitors, sandboxes, and restricts AI coding agents' file system and network access",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"aasf": "dist/cli.js",
"ai-agent-firewall": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"test": "node --test dist/**/*.test.js",
"start": "node dist/cli.js"
},
"keywords": ["security", "ai-agent", "sandbox", "monitor", "firewall"],
"author": "BunBun Labs",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.3.0"
}
}