[READ-ONLY] Mirror of https://github.com/andrioid/pi-fence. Fence wrapper for Pi coding agent. Wraps bash calls and intercepts reads/writes according to fence config
0

Configure Feed

Select the types of activity you want to include in your feed.

pi-fence / package.json
532 B 28 lines
1{ 2 "name": "pi-fence", 3 "private": true, 4 "version": "0.1.0", 5 "type": "module", 6 "scripts": { 7 "clean": "echo 'nothing to clean'", 8 "build": "echo 'nothing to build'", 9 "check": "tsc --noEmit" 10 }, 11 "pi": { 12 "extensions": [ 13 "./index.ts" 14 ] 15 }, 16 "devDependencies": { 17 "@mariozechner/pi-coding-agent": "^0.72.0", 18 "@types/node": "^22.0.0", 19 "@types/picomatch": "^4.0.3", 20 "typescript": "^5.5.0" 21 }, 22 "dependencies": { 23 "ajv": "^8.20.0", 24 "ajv-formats": "^3.0.1", 25 "jsonc-parser": "^3.3.1", 26 "picomatch": "^4.0.4" 27 } 28}