feat: add configurable pi statusbar extension

This commit is contained in:
2026-05-03 11:31:46 -04:00
commit c96da624fe
21 changed files with 6150 additions and 0 deletions

21
package.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "pi-statusbar",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"typecheck": "tsc --noEmit",
"lint": "oxlint . --ignore-pattern=.direnv/** --ignore-pattern=node_modules/**"
},
"pi": {
"extensions": [
"./index.ts"
]
},
"devDependencies": {
"@mariozechner/pi-coding-agent": "^0.72.1",
"@types/node": "^25.6.0",
"oxlint": "^1.62.0",
"typescript": "^6.0.3"
}
}