livedesk 0.1.241 → 0.1.243

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
@@ -5,8 +5,8 @@ Local screen wall Hub and remote client launcher.
5
5
  ## Hub
6
6
 
7
7
  ```powershell
8
- npx -y livedesk
9
- npx -y livedesk hub
8
+ npx -y --prefer-online livedesk@latest
9
+ npx -y --prefer-online livedesk@latest hub
10
10
  ```
11
11
 
12
12
  This starts the LiveDesk Hub, opens the local screen wall, and accepts clients.
@@ -16,8 +16,8 @@ continues to listen on the LAN.
16
16
  ## Client
17
17
 
18
18
  ```powershell
19
- npx -y livedesk client
20
- npx -y livedesk client 3
19
+ npx -y --prefer-online livedesk@latest client
20
+ npx -y --prefer-online livedesk@latest client 3
21
21
  ```
22
22
 
23
23
  The client signs in with Google, discovers the active Hub, and connects to the wall.
package/bin/livedesk.js CHANGED
@@ -22,10 +22,10 @@ function printHelp() {
22
22
  LiveDesk
23
23
 
24
24
  Usage:
25
- npx -y livedesk
26
- npx -y livedesk hub
27
- npx -y livedesk client
28
- npx -y livedesk client 3
25
+ npx -y --prefer-online livedesk@latest
26
+ npx -y --prefer-online livedesk@latest hub
27
+ npx -y --prefer-online livedesk@latest client
28
+ npx -y --prefer-online livedesk@latest client 3
29
29
 
30
30
  Commands:
31
31
  hub Start the local LiveDesk Hub. Default.
@@ -51,8 +51,8 @@ function printClientHelp() {
51
51
  LiveDesk Client
52
52
 
53
53
  Usage:
54
- npx -y livedesk client
55
- npx -y livedesk client 3
54
+ npx -y --prefer-online livedesk@latest client
55
+ npx -y --prefer-online livedesk@latest client 3
56
56
 
57
57
  Default flow:
58
58
  Opens a LiveDesk connection page with Google sign-in or a 6-digit PIN.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "livedesk",
3
- "version": "0.1.241",
3
+ "version": "0.1.243",
4
4
  "description": "LiveDesk Hub and client launcher",
5
5
  "type": "module",
6
6
  "bin": {
@@ -31,7 +31,7 @@
31
31
  },
32
32
  "dependencies": {
33
33
  "@ffmpeg-installer/ffmpeg": "^1.1.0",
34
- "@livedesk/client": "0.1.132",
34
+ "@livedesk/client": "0.1.133",
35
35
  "@openai/codex-sdk": "0.144.5",
36
36
  "cors": "^2.8.5",
37
37
  "express": "^4.21.2",