Files
pi_harness/packages/orchestrator/package.json
T
Cristina Poncela Cubeiro 7ece19b0e8 chore: package structure
2026-06-18 12:16:55 +02:00

47 lines
963 B
JSON

{
"name": "@earendil-works/pi-orchestrator",
"version": "0.79.6",
"description": "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": {},
"devDependencies": {
"shx": "0.4.0"
}
}