initial import: @mikefreno/omp-ralpi (omp port)

This commit is contained in:
2026-08-10 09:46:09 -04:00
commit a9757c6fce
36 changed files with 14616 additions and 0 deletions

56
package.json Normal file
View File

@@ -0,0 +1,56 @@
{
"name": "@mikefreno/omp-ralpi",
"version": "0.5.0",
"description": "Execute tasks from task files/PRD's using DAG-based dependency resolution with persistent progress tracking",
"keywords": [
"omp",
"omp-extension",
"task-runner",
"dag",
"task-manager",
"ralph-loop",
"prd"
],
"author": "Michael Freno",
"license": "MIT",
"homepage": "https://github.com/mikefreno/ralpi",
"repository": {
"type": "git",
"url": "git+https://github.com/mikefreno/ralpi.git"
},
"bugs": {
"url": "https://github.com/mikefreno/ralpi/issues"
},
"files": [
"index.ts",
"src/",
"prompts/",
"README.md",
"LICENSE"
],
"scripts": {
"typecheck": "tsc --noEmit",
"test": "bun test"
},
"engines": {
"bun": ">=1.3.14"
},
"omp": {
"extensions": [
"./index.ts"
]
},
"dependencies": {
"yaml": "^2.4.0"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@oh-my-pi/pi-coding-agent": "17.2.12",
"@oh-my-pi/pi-tui": "17.2.12",
"@types/node": "^20.0.0",
"bun-types": "^1.3.14",
"typescript": "^5.3.0"
}
}