37 lines
790 B
JSON
37 lines
790 B
JSON
{
|
|
"name": "@enne2/pi-policy-gate",
|
|
"version": "0.5.0",
|
|
"description": "Policy gate extension for pi that classifies risky tool calls into allow, confirm, deny, or require-refinement.",
|
|
"type": "module",
|
|
"keywords": [
|
|
"pi-package",
|
|
"pi-extension",
|
|
"security",
|
|
"policy",
|
|
"guardrails"
|
|
],
|
|
"files": [
|
|
"index.ts",
|
|
"README.md",
|
|
"policy-gate.example.json",
|
|
"assets/*.wav"
|
|
],
|
|
"pi": {
|
|
"extensions": [
|
|
"./index.ts"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"check": "npm pack --dry-run >/dev/null",
|
|
"pack:check": "npm pack --dry-run",
|
|
"generate:sounds": "python3 scripts/generate_sounds.py"
|
|
},
|
|
"dependencies": {
|
|
"minimatch": "^10.1.1"
|
|
},
|
|
"peerDependencies": {
|
|
"@earendil-works/pi-coding-agent": "*"
|
|
},
|
|
"license": "MIT"
|
|
}
|