Checks now self-register through the static barrel (src/checks/all.ts) like the pi base: the ?mtime registry-split workaround is gone, check modules and tests are byte-identical to the base, and registration happens in one module graph instance under omp's extension loader.
34 lines
745 B
JSON
34 lines
745 B
JSON
{
|
|
"name": "@mikefreno/omp-pygienium",
|
|
"version": "0.1.0",
|
|
"description": "Code hygiene extension for omp (port of the pi extension) — isolated sub-agent checks that scan a target, apply fixes, and emit a findings+changes report.",
|
|
"keywords": [
|
|
"omp",
|
|
"omp-extension",
|
|
"code-hygiene",
|
|
"lint",
|
|
"subagents",
|
|
"pygienium"
|
|
],
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"engines": {
|
|
"bun": ">=1.3.14"
|
|
},
|
|
"omp": {
|
|
"extensions": [
|
|
"./src/index.ts"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@oh-my-pi/pi-coding-agent": "17.2.12",
|
|
"@oh-my-pi/pi-tui": "17.2.12",
|
|
"@types/node": "^20.0.0",
|
|
"typescript": "^5.3.0"
|
|
},
|
|
"scripts": {
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "bun test"
|
|
}
|
|
}
|