termeet 0.1.3 → 0.1.5

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.
Files changed (2) hide show
  1. package/README.md +5 -2
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -101,7 +101,7 @@ bun run start
101
101
 
102
102
  ### npm (same pattern as multiplayer-debugger)
103
103
 
104
- The published **`termeet` command is client-only** — it connects to your signaling server via `TERMEET_HOST` / `TERMEET_PORT`. Host the WebSocket server separately (`bun run server` from this repo on a VPS, etc.).
104
+ The published **`termeet` command is client-only** — by default it uses **`wss://termeet.app/ws`** (same as the web UI). Override with `TERMEET_WS_URL`, or `TERMEET_HOST` / `TERMEET_PORT` for a local or raw `ws://` server. Host the signaling server separately (`bun run server` from this repo on a VPS, etc.).
105
105
 
106
106
  A small **Node wrapper** (`bin/termeet.js`) plus **optional** packages `termeet-cli-<platform>-<arch>` that ship the compiled Bun binary and bundled ffmpeg.
107
107
 
@@ -142,8 +142,11 @@ TERMEET_PORT=8080 bun run server
142
142
  # Connect to local server
143
143
  bun run dev
144
144
 
145
- # Connect to remote server
145
+ # Remote server (raw ws:// — e.g. LAN or open port 3483)
146
146
  TERMEET_HOST=192.168.1.100 TERMEET_PORT=3483 bun run dev
147
+
148
+ # Custom WebSocket URL
149
+ TERMEET_WS_URL=wss://example.com/ws bun run dev
147
150
  ```
148
151
 
149
152
  ### Controls
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "termeet",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "description": "Termeet - Video conferencing with ASCII art",
5
5
  "module": "src/index.tsx",
6
6
  "type": "module",
@@ -21,12 +21,12 @@
21
21
  "bin"
22
22
  ],
23
23
  "optionalDependencies": {
24
- "termeet-cli-darwin-arm64": "0.1.3",
25
- "termeet-cli-darwin-x64": "0.1.3",
26
- "termeet-cli-linux-arm64": "0.1.3",
27
- "termeet-cli-linux-x64": "0.1.3",
28
- "termeet-cli-windows-arm64": "0.1.3",
29
- "termeet-cli-windows-x64": "0.1.3"
24
+ "termeet-cli-darwin-arm64": "0.1.5",
25
+ "termeet-cli-darwin-x64": "0.1.5",
26
+ "termeet-cli-linux-arm64": "0.1.5",
27
+ "termeet-cli-linux-x64": "0.1.5",
28
+ "termeet-cli-windows-arm64": "0.1.5",
29
+ "termeet-cli-windows-x64": "0.1.5"
30
30
  },
31
31
  "repository": {
32
32
  "type": "git",