termeet 0.1.6 → 0.1.8

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 +6 -0
  2. package/package.json +9 -7
package/README.md CHANGED
@@ -57,6 +57,12 @@ npm install -g termeet
57
57
  termeet
58
58
  ```
59
59
 
60
+ Got a room code? Skip the lobby:
61
+
62
+ ```bash
63
+ termeet --room <room-id>
64
+ ```
65
+
60
66
  By default the CLI talks to the shared signal behind **[termeet.app](https://termeet.app)** (`wss://termeet.app/ws`). Self-hosting? Point the client at your own server with `TERMEET_WS_URL`, or `TERMEET_HOST` / `TERMEET_PORT` for a plain `ws://` box on your network.
61
67
 
62
68
  The published npm package ships a **standalone binary** (Bun + bundled ffmpeg where we can). Optional **ffplay** is on you if your OS does not bundle it — full ffmpeg installs usually include it.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "termeet",
3
- "version": "0.1.6",
3
+ "version": "0.1.8",
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.6",
25
- "termeet-cli-darwin-x64": "0.1.6",
26
- "termeet-cli-linux-arm64": "0.1.6",
27
- "termeet-cli-linux-x64": "0.1.6",
28
- "termeet-cli-windows-arm64": "0.1.6",
29
- "termeet-cli-windows-x64": "0.1.6"
24
+ "termeet-cli-darwin-arm64": "0.1.8",
25
+ "termeet-cli-darwin-x64": "0.1.8",
26
+ "termeet-cli-linux-arm64": "0.1.8",
27
+ "termeet-cli-linux-x64": "0.1.8",
28
+ "termeet-cli-windows-arm64": "0.1.8",
29
+ "termeet-cli-windows-x64": "0.1.8"
30
30
  },
31
31
  "repository": {
32
32
  "type": "git",
@@ -41,6 +41,7 @@
41
41
  "build:cli:all": "bun run scripts/cli-build.ts",
42
42
  "publish:cli": "bun run scripts/cli-publish.ts",
43
43
  "build:web": "cd web && bun install && bun run build",
44
+ "test:audio": "bun run src/test-audio.ts",
44
45
  "typecheck": "tsc --noEmit"
45
46
  },
46
47
  "devDependencies": {
@@ -60,6 +61,7 @@
60
61
  "nanoid": "^5.1.7",
61
62
  "react": "^19.2.4",
62
63
  "uuid": "^13.0.0",
64
+ "werift": "^0.22.9",
63
65
  "ws": "^8.20.0"
64
66
  }
65
67
  }