sync-agents-settings 0.1.1 → 0.1.3

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.
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env node
2
+ "use strict";
3
+ import("../dist/cli.js").catch((err) => {
4
+ console.error(err);
5
+ process.exit(1);
6
+ });
package/dist/cli.js CHANGED
@@ -13,7 +13,7 @@ const program = new Command();
13
13
  program
14
14
  .name("sync-agents")
15
15
  .description("Sync Claude Code MCP settings to Gemini CLI / Codex CLI / OpenCode / Kiro CLI")
16
- .version("0.1.1");
16
+ .version("0.1.3");
17
17
  program
18
18
  .command("sync")
19
19
  .description("Sync MCP settings from Claude Code to other CLIs")
package/package.json CHANGED
@@ -1,14 +1,16 @@
1
1
  {
2
2
  "name": "sync-agents-settings",
3
3
  "packageManager": "pnpm@10.32.1",
4
- "version": "0.1.1",
4
+ "version": "0.1.3",
5
5
  "description": "Sync MCP server configurations from Claude Code to Gemini CLI and Codex CLI",
6
6
  "main": "dist/cli.js",
7
7
  "bin": {
8
- "sync-agents": "dist/cli.js"
8
+ "sync-agents-settings": "bin/sync-agents.cjs",
9
+ "sync-agents": "bin/sync-agents.cjs"
9
10
  },
10
11
  "files": [
11
12
  "dist",
13
+ "bin",
12
14
  "!dist/__tests__"
13
15
  ],
14
16
  "scripts": {