Files
pygienium/package.json
Michael Freno dedcf994df
All checks were successful
port-to-omp / port (push) Successful in 4s
add npm publish workflow (v* tags): publishes pi + omp packages via NPM_TOKEN
2026-08-12 19:27:11 -04:00

62 lines
1.2 KiB
JSON

{
"name": "@mikefreno/pygienium",
"version": "0.1.0",
"description": "Code hygiene extension for pi — isolated sub-agent checks that scan a target, apply fixes, and emit a findings+changes report.",
"keywords": [
"pi-package",
"pi-extension",
"code-hygiene",
"lint",
"subagents",
"pygienium"
],
"license": "MIT",
"type": "module",
"engines": {
"bun": ">=1.1.0"
},
"pi": {
"extensions": [
"./src/index.ts"
]
},
"peerDependencies": {
"@earendil-works/pi-ai": "*",
"@earendil-works/pi-agent-core": "*",
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*",
"typebox": "*"
},
"peerDependenciesMeta": {
"@earendil-works/pi-ai": {
"optional": true
},
"@earendil-works/pi-agent-core": {
"optional": true
},
"@earendil-works/pi-coding-agent": {
"optional": true
},
"@earendil-works/pi-tui": {
"optional": true
},
"typebox": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.3.0"
},
"scripts": {
"typecheck": "tsc --noEmit",
"test": "bun test"
},
"files": [
"src/",
"agents/",
"README.md",
"LICENSE"
]
}