mirror of
https://github.com/different-ai/openwork
synced 2026-04-25 17:15:34 +02:00
* chore(orchestrator): rename openwrk to openwork-orchestrator Rename the host package and internal references from openwrk to openwork-orchestrator, and expose the CLI as 'openwork'. Update desktop/UI runtime wiring, release workflows, and docs; bundle the Tauri sidecar as 'openwork-orchestrator' to avoid Cargo package name collisions. * chore: keep orchestrator publish script executable * chore: update pnpm lockfile * chore: sync lockfile with orchestrator deps * docs: update orchestrator usage + release notes Document that openwork-orchestrator installs the 'openwork' CLI, update release command wording, and remove obsolete workflow branch trigger.
49 lines
2.3 KiB
JSON
49 lines
2.3 KiB
JSON
{
|
|
"name": "@different-ai/openwork-workspace",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"scripts": {
|
|
"dev": "pnpm --filter @different-ai/openwork dev",
|
|
"dev:ui": "pnpm --filter @different-ai/openwork-ui dev",
|
|
"dev:web": "pnpm --filter @different-ai/openwork-ui dev",
|
|
"dev:headless-web": "bun scripts/dev-headless-web.ts",
|
|
"build": "pnpm --filter @different-ai/openwork build",
|
|
"build:ui": "pnpm --filter @different-ai/openwork-ui build",
|
|
"build:web": "pnpm --filter @different-ai/openwork-ui build",
|
|
"preview": "pnpm --filter @different-ai/openwork-ui preview",
|
|
"typecheck": "pnpm --filter @different-ai/openwork-ui typecheck",
|
|
"test:health": "pnpm --filter @different-ai/openwork-ui test:health",
|
|
"test:sessions": "pnpm --filter @different-ai/openwork-ui test:sessions",
|
|
"test:refactor": "pnpm --filter @different-ai/openwork-ui test:refactor",
|
|
"test:events": "pnpm --filter @different-ai/openwork-ui test:events",
|
|
"test:todos": "pnpm --filter @different-ai/openwork-ui test:todos",
|
|
"test:permissions": "pnpm --filter @different-ai/openwork-ui test:permissions",
|
|
"test:session-switch": "pnpm --filter @different-ai/openwork-ui test:session-switch",
|
|
"test:fs-engine": "pnpm --filter @different-ai/openwork-ui test:fs-engine",
|
|
"test:e2e": "pnpm --filter @different-ai/openwork-ui test:e2e",
|
|
"test:orchestrator": "pnpm --filter openwork-orchestrator test:router",
|
|
"bump:patch": "pnpm --filter @different-ai/openwork-ui bump:patch",
|
|
"bump:minor": "pnpm --filter @different-ai/openwork-ui bump:minor",
|
|
"bump:major": "pnpm --filter @different-ai/openwork-ui bump:major",
|
|
"bump:set": "pnpm --filter @different-ai/openwork-ui bump:set",
|
|
"release:review": "node scripts/release/review.mjs",
|
|
"release:prepare": "node scripts/release/prepare.mjs",
|
|
"release:prepare:dry": "node scripts/release/prepare.mjs --dry-run",
|
|
"release:ship": "node scripts/release/ship.mjs",
|
|
"release:ship:watch": "node scripts/release/ship.mjs --watch",
|
|
"tauri": "pnpm --filter @different-ai/openwork exec tauri"
|
|
},
|
|
"pnpm": {
|
|
"onlyBuiltDependencies": [
|
|
"@whiskeysockets/baileys",
|
|
"better-sqlite3",
|
|
"esbuild",
|
|
"protobufjs"
|
|
],
|
|
"patchedDependencies": {
|
|
"@solidjs/router@0.15.4": "patches/@solidjs__router@0.15.4.patch"
|
|
}
|
|
},
|
|
"packageManager": "pnpm@10.27.0"
|
|
}
|