Files
2026-07-13 12:18:19 +08:00

46 lines
980 B
JSON

{
"name": "@earendil-works/pi-orchestrator",
"version": "0.80.6",
"description": "experimental orchestrator package for pi",
"type": "module",
"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/earendil-works/pi.git",
"directory": "packages/orchestrator"
},
"engines": {
"node": ">=22.19.0"
},
"dependencies": {
"@earendil-works/pi-coding-agent": "^0.80.6"
},
"devDependencies": {
"shx": "0.4.0"
}
}