oh-my-opencode-slim 0.9.6 → 0.9.8

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.
@@ -2,6 +2,8 @@ import type { InterviewAnswer, InterviewState } from './types';
2
2
  export declare function createInterviewServer(deps: {
3
3
  getState: (interviewId: string) => Promise<InterviewState>;
4
4
  submitAnswers: (interviewId: string, answers: InterviewAnswer[]) => Promise<void>;
5
+ port: number;
5
6
  }): {
6
7
  ensureStarted: () => Promise<string>;
8
+ close: () => void;
7
9
  };
@@ -430,6 +430,12 @@
430
430
  "autoOpenBrowser": {
431
431
  "default": true,
432
432
  "type": "boolean"
433
+ },
434
+ "port": {
435
+ "default": 0,
436
+ "type": "integer",
437
+ "minimum": 0,
438
+ "maximum": 65535
433
439
  }
434
440
  }
435
441
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oh-my-opencode-slim",
3
- "version": "0.9.6",
3
+ "version": "0.9.8",
4
4
  "description": "Lightweight agent orchestration plugin for OpenCode - a slimmed-down fork of oh-my-opencode",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -37,7 +37,7 @@
37
37
  ],
38
38
  "scripts": {
39
39
  "build": "bun build src/index.ts --outdir dist --target bun --format esm --packages external && bun build src/cli/index.ts --outdir dist/cli --target bun --format esm --packages external && tsc --emitDeclarationOnly && bun run generate-schema",
40
- "prepare": "bun build src/index.ts --outdir dist --target bun --format esm --external @ast-grep/napi --external @opencode-ai/plugin --external @opencode-ai/sdk",
40
+ "prepare": "bun build src/index.ts --outdir dist --target bun --format esm --packages external --external @ast-grep/napi --external @opencode-ai/plugin --external @opencode-ai/sdk",
41
41
  "contributors:add": "all-contributors add",
42
42
  "contributors:check": "all-contributors check",
43
43
  "contributors:generate": "all-contributors generate",