The published package.json declares supermemory and @opencode-ai/plugin as dependencies, but ./dist/index.js already bundles them via bun run build. This causes 31 unnecessary packages to be installed on every consumer's machine. Actionable options would be to remove the dependencies field from the published package.json (since the bundle is self-contained via index.js) or Alternatively, ship un-bundled source with external imports via and keep the dependencies declared via package.json, let opencode's per-plugin wrapper install them into node_modules at the consumer's side.
The published package.json declares supermemory and @opencode-ai/plugin as dependencies, but
./dist/index.jsalready bundles them viabun run build. This causes 31 unnecessary packages to be installed on every consumer's machine. Actionable options would be to remove the dependencies field from the published package.json (since the bundle is self-contained via index.js) or Alternatively, ship un-bundled source with external imports via and keep the dependencies declared via package.json, let opencode's per-plugin wrapper install them into node_modules at the consumer's side.