Files
ralpi/package.json
2026-05-31 12:42:50 -04:00

65 lines
1.2 KiB
JSON

{
"name": "@mikefreno/ralpi",
"version": "0.1.5",
"description": "Execute tasks from task files/PRD's using DAG-based dependency resolution with persistent progress tracking",
"keywords": [
"pi-package",
"pi-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/",
"skills/",
"prompts/",
"README.md",
"LICENSE"
],
"scripts": {
"typecheck": "tsc --noEmit",
"prepublishOnly": "tsc --noEmit"
},
"engines": {
"bun": ">=1.1.0"
},
"pi": {
"extensions": [
"./index.ts"
],
"skills": [
"./skills"
],
"prompts": [
"./prompts"
]
},
"dependencies": {
"yaml": "^2.4.0"
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.3.0"
}
}