opencode-kiro 0.1.0 → 0.1.1

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/server.d.ts CHANGED
@@ -1,8 +1,9 @@
1
- import { PluginInput, Hooks } from '@opencode-ai/plugin';
1
+ import { Plugin, PluginInput, Hooks } from '@opencode-ai/plugin';
2
2
 
3
+ declare const KiroAuthPlugin: Plugin;
3
4
  declare const _default: {
4
5
  id: string;
5
6
  server: (input: PluginInput) => Promise<Hooks>;
6
7
  };
7
8
 
8
- export { _default as default };
9
+ export { KiroAuthPlugin, _default as default };
package/dist/server.js CHANGED
@@ -85,7 +85,9 @@ async function readToken(tokenPath) {
85
85
  expires: Date.now() + 36e5
86
86
  };
87
87
  }
88
+ var KiroAuthPlugin = server;
88
89
  var server_default = { id: "kiro", server };
89
90
  export {
91
+ KiroAuthPlugin,
90
92
  server_default as default
91
93
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-kiro",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "The ACP-compliant Kiro plugin for opencode: auth via the official kiro-cli login, 12 Kiro models through the Agent Client Protocol, and TUI credits display",
5
5
  "license": "MIT",
6
6
  "author": "Nacho F. Lizaur (https://github.com/NachoFLizaur)",