Files
ralpi/package.json

45 lines
858 B
JSON

{
"name": "ralpi",
"version": "0.1.0",
"description": "Execute tasks from task files/PRD's using DAG-based dependency resolution with persistent progress tracking",
"main": "dist/index.js",
"keywords": [
"pi-package",
"pi-extension",
"task-runner",
"dag",
"task-manager",
"ralpi-loop",
"prd"
],
"author": "",
"license": "MIT",
"files": [
"dist/",
"skills/",
"prompts/",
"index.ts"
],
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"prepublishOnly": "npm run build"
},
"pi": {
"extensions": [
"./dist/index.js"
]
},
"dependencies": {
"yaml": "^2.4.0"
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.3.0"
}
}