mirror of
https://github.com/different-ai/openwork
synced 2026-04-25 17:15:34 +02:00
Keep OpenCode version selection predictable by reading a single repo-wide constant and packaging that pin into orchestrator builds. Remove env and latest-release fallbacks so desktop, workers, snapshots, and CI stay aligned. Co-authored-by: Omar McAdam <omar@OpenWork-Studio.localdomain>
66 lines
2.3 KiB
JSON
66 lines
2.3 KiB
JSON
{
|
|
"name": "openwork-orchestrator",
|
|
"version": "0.11.175",
|
|
"description": "OpenWork host orchestrator for opencode + OpenWork server + opencode-router",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "OPENWORK_DEV_MODE=1 bun src/cli.ts",
|
|
"build": "tsc -p tsconfig.json",
|
|
"build:bin": "node scripts/clean-dist.mjs && bun ./script/build.ts --outdir dist/bin --filename openwork",
|
|
"build:bin:all": "node scripts/clean-dist.mjs && bun ./script/build.ts --outdir dist/bin --filename openwork --target bun-darwin-arm64 --target bun-darwin-x64 --target bun-linux-x64 --target bun-linux-arm64 --target bun-windows-x64",
|
|
"build:bin:bundled": "node scripts/clean-dist.mjs && node ../desktop/scripts/prepare-sidecar.mjs --outdir dist && bun ./script/build.ts --outdir dist --filename openwork && bun scripts/build-bin.ts",
|
|
"build:sidecars": "node scripts/build-sidecars.mjs",
|
|
"typecheck": "tsc -p tsconfig.typecheck.json",
|
|
"test:router": "pnpm build && node scripts/router.mjs",
|
|
"test:files": "pnpm build && node scripts/files-session.mjs",
|
|
"prepublishOnly": "node -e \"console.error('openwork-orchestrator is published via apps/orchestrator/scripts/publish-npm.mjs (meta + platform packages)'); process.exit(1);\""
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"bin",
|
|
"script",
|
|
"scripts",
|
|
"README.md"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/different-ai/openwork.git",
|
|
"directory": "apps/orchestrator"
|
|
},
|
|
"homepage": "https://github.com/different-ai/openwork/tree/dev/apps/orchestrator",
|
|
"bugs": {
|
|
"url": "https://github.com/different-ai/openwork/issues"
|
|
},
|
|
"keywords": [
|
|
"openwork",
|
|
"opencode",
|
|
"orchestrator",
|
|
"cli",
|
|
"agent"
|
|
],
|
|
"license": "MIT",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"dependencies": {
|
|
"@opencode-ai/sdk": "^1.1.31",
|
|
"@opentui/core": "0.1.77",
|
|
"@opentui/solid": "0.1.77",
|
|
"opencode-router": "0.11.175",
|
|
"openwork-server": "0.11.175",
|
|
"solid-js": "1.9.9"
|
|
},
|
|
"devDependencies": {
|
|
"@opentui/core-darwin-arm64": "0.1.77",
|
|
"@opentui/core-darwin-x64": "0.1.77",
|
|
"@opentui/core-linux-arm64": "0.1.77",
|
|
"@opentui/core-linux-x64": "0.1.77",
|
|
"@opentui/core-win32-x64": "0.1.77",
|
|
"@types/node": "^22.10.2",
|
|
"bun-types": "^1.3.6",
|
|
"typescript": "^5.6.3"
|
|
},
|
|
"packageManager": "pnpm@10.27.0"
|
|
}
|