- Add pnpm-workspace.yaml for monorepo - Add @mariozechner/pi-coding-agent as root devDependency (TS types) - Create .pi/settings.json with local package reference - Extension auto-loads and hot-reloads via /reload
18 lines
386 B
JSON
18 lines
386 B
JSON
{
|
|
"name": "pi-turn-limit",
|
|
"version": "0.1.0",
|
|
"description": "Pi coding agent extension to limit number of turns taken by a model",
|
|
"type": "module",
|
|
"exports": {
|
|
".": "./src/turn-limit.ts"
|
|
},
|
|
"keywords": ["pi-package"],
|
|
"pi": {
|
|
"extensions": ["src/turn-limit.ts"]
|
|
},
|
|
"peerDependencies": {
|
|
"@mariozechner/pi-coding-agent": "*"
|
|
},
|
|
"license": "MIT"
|
|
}
|