40 lines
821 B
JSON
40 lines
821 B
JSON
{
|
|
"name": "@mikefreno/omp-pygienium",
|
|
"version": "0.1.2",
|
|
"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"
|
|
},
|
|
"files": [
|
|
"src/",
|
|
"agents/",
|
|
"README.md",
|
|
"LICENSE"
|
|
]
|
|
}
|