opencode-orchestrator 0.4.17 → 0.4.18

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.
Files changed (1) hide show
  1. package/package.json +3 -3
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "opencode-orchestrator",
3
3
  "displayName": "OpenCode Orchestrator",
4
4
  "description": "Distributed Cognitive Architecture for OpenCode. Turns simple prompts into specialized multi-agent workflows (Planner, Coder, Reviewer).",
5
- "version": "0.4.17",
5
+ "version": "0.4.18",
6
6
  "author": "agnusdei1207",
7
7
  "license": "MIT",
8
8
  "repository": {
@@ -38,11 +38,11 @@
38
38
  "LICENSE"
39
39
  ],
40
40
  "scripts": {
41
- "build": "npx esbuild src/index.ts --bundle --outfile=dist/index.js --platform=node --format=esm && tsc --emitDeclarationOnly && shx mkdir -p dist/scripts && npx esbuild scripts/postinstall.ts --bundle --outfile=dist/scripts/postinstall.js --platform=node --format=esm && npx esbuild scripts/preuninstall.ts --bundle --outfile=dist/scripts/preuninstall.js --platform=node --format=esm",
41
+ "build": "npx esbuild src/index.ts --bundle --outfile=dist/index.js --platform=node --format=esm --external:os --external:path --external:fs --external:child_process --external:util --external:events --external:stream --external:crypto --external:http --external:https --external:url --external:net --external:tls --external:zlib --external:buffer --external:querystring --external:string_decoder && tsc --emitDeclarationOnly && shx mkdir -p dist/scripts && npx esbuild scripts/postinstall.ts --bundle --outfile=dist/scripts/postinstall.js --platform=node --format=esm --packages=external && npx esbuild scripts/preuninstall.ts --bundle --outfile=dist/scripts/preuninstall.js --platform=node --format=esm --packages=external",
42
42
  "postinstall": "node dist/scripts/postinstall.js",
43
43
  "preuninstall": "node dist/scripts/preuninstall.js",
44
44
  "prepublishOnly": "npm run build",
45
- "release:ship": "npm publish --access public && git add -A && git commit -m \"chore(release): v$(node -p \\\"require('./package.json').version\\\")\" && git tag -a \"v$(node -p \\\"require('./package.json').version\\\")\" -m \"v$(node -p \\\"require('./package.json').version\\\")\" && git push --follow-tags && gh release create \"v$(node -p \\\"require('./package.json').version\\\")\" --title \"v$(node -p \\\"require('./package.json').version\\\")\" --notes \"Release v$(node -p \\\"require('./package.json').version\\\")\" --latest",
45
+ "release:ship": "npx tsx scripts/release.ts",
46
46
  "release:patch": "npm run build && npm version patch && npm run release:ship",
47
47
  "release:minor": "npm run build && npm version minor && npm run release:ship",
48
48
  "release:major": "npm run build && npm version major && npm run release:ship",