20 lines
699 B
JSON
20 lines
699 B
JSON
{
|
|
"name": "agent-police-department",
|
|
"version": "1.0.0",
|
|
"description": "A police dashboard for your team's AI coding agents — real-time governance, audit trails, and policy violation alerts.",
|
|
"scripts": {
|
|
"test": "node test-runner.js",
|
|
"lint": "node -e \"console.log('lint: no linter installed, skipping')\"",
|
|
"build": "npm test",
|
|
"package": "zip -r agent-police-department.zip manifest.json background.js content_script.js popup.html popup.js popup.css options.html lib/ default_policy.yaml icons/"
|
|
},
|
|
"devDependencies": {
|
|
"jest": "^29.7.0",
|
|
"eslint": "^8.57.0"
|
|
},
|
|
"jest": {
|
|
"testEnvironment": "node",
|
|
"moduleFileExtensions": ["js", "mjs"]
|
|
}
|
|
}
|