Files
pi_harness/packages/orchestrator/package.json
T
Cristina Poncela Cubeiro 7e6e59b6e4 fix: stale version
2026-06-25 09:59:53 +02:00

49 lines
1.0 KiB
JSON

{
"name": "@earendil-works/pi-orchestrator",
"version": "0.80.2",
"description": "experimental orchestrator package for pi",
"type": "module",
"bin": {
"orchestrator": "dist/cli.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"clean": "shx rm -rf dist",
"dev": "tsgo -p tsconfig.build.json --watch --preserveWatchOutput",
"build": "tsgo -p tsconfig.build.json && shx chmod +x dist/cli.js",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"pi",
"orchestrator"
],
"author": "Earendil Works",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/badlogic/pi-mono.git",
"directory": "packages/orchestrator"
},
"engines": {
"node": ">=22.19.0"
},
"dependencies": {
"@earendil-works/pi-coding-agent": "0.80.2"
},
"devDependencies": {
"shx": "0.4.0"
}
}