opencode-orchestrator 0.1.35 → 0.1.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1368 -1356
- package/package.json +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-orchestrator",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.36",
|
|
4
4
|
"description": "6-Agent collaborative architecture for OpenCode - Make any model reliable",
|
|
5
5
|
"author": "agnusdei1207",
|
|
6
6
|
"license": "MIT",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"scripts": {
|
|
41
41
|
"build:rust": "docker compose run --rm dev",
|
|
42
42
|
"build:rust:copy": "docker compose run --rm dev sh -c 'cp /app/target/release/orchestrator /app/bin/' && chmod +x bin/orchestrator",
|
|
43
|
-
"build:ts": "bun build src/index.ts --outdir dist --target
|
|
43
|
+
"build:ts": "bun build src/index.ts --outdir dist --target bun --format esm --sourcemap=none && tsc --emitDeclarationOnly",
|
|
44
44
|
"build:scripts": "mkdir -p dist/scripts && bun build scripts/postinstall.ts --outdir dist/scripts --target node",
|
|
45
45
|
"build": "bun run build:ts && bun run build:scripts",
|
|
46
46
|
"build:full": "bun run build:rust && bun run build:rust:copy && bun run build",
|