@ccpocket/bridge 1.4.0 → 1.4.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/README.md CHANGED
@@ -7,7 +7,7 @@ This is the server component of [ccpocket](https://github.com/K9i-0/ccpocket)
7
7
  ## Quick Start
8
8
 
9
9
  ```bash
10
- npx @ccpocket/bridge
10
+ npx @ccpocket/bridge@latest
11
11
  ```
12
12
 
13
13
  A QR code will appear in your terminal. Scan it with the ccpocket mobile app to connect.
@@ -16,7 +16,7 @@ A QR code will appear in your terminal. Scan it with the ccpocket mobile app to
16
16
 
17
17
  ```bash
18
18
  # Run directly (no install needed)
19
- npx @ccpocket/bridge
19
+ npx @ccpocket/bridge@latest
20
20
 
21
21
  # Or install globally
22
22
  npm install -g @ccpocket/bridge
@@ -34,7 +34,7 @@ ccpocket-bridge
34
34
 
35
35
  ```bash
36
36
  # Example: custom port with API key
37
- BRIDGE_PORT=9000 BRIDGE_API_KEY=my-secret npx @ccpocket/bridge
37
+ BRIDGE_PORT=9000 BRIDGE_API_KEY=my-secret npx @ccpocket/bridge@latest
38
38
  ```
39
39
 
40
40
  ## Requirements
@@ -65,7 +65,7 @@ export function setupLaunchd(opts) {
65
65
  <string>/bin/zsh</string>
66
66
  <string>-li</string>
67
67
  <string>-c</string>
68
- <string>exec npx @ccpocket/bridge</string>
68
+ <string>exec npx @ccpocket/bridge@latest</string>
69
69
  </array>
70
70
 
71
71
  <key>EnvironmentVariables</key>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ccpocket/bridge",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "Bridge server that connects Claude Code and Codex CLI to mobile devices via WebSocket",
5
5
  "private": false,
6
6
  "type": "module",