@scottwalker/claude-connector 0.5.0 → 0.5.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/cli/index.js CHANGED
@@ -4,7 +4,7 @@ import { setup } from './commands/setup.js';
4
4
  const program = new Command()
5
5
  .name('claude-connector')
6
6
  .description('CLI for Claude Connector — quick setup & management')
7
- .version('0.5.0');
7
+ .version('0.5.1');
8
8
  program
9
9
  .command('setup')
10
10
  .description('Install Claude Code and authenticate')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scottwalker/claude-connector",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "Programmatic Node.js interface for Claude Code CLI",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -12,7 +12,7 @@
12
12
  }
13
13
  },
14
14
  "bin": {
15
- "claude-connector": "./dist/cli/index.js"
15
+ "claude-connector": "dist/cli/index.js"
16
16
  },
17
17
  "files": [
18
18
  "dist",