2 "name": "commonroom-recorder",
cbaa294Add transcribe subcommand: merged speaker-attributed transcriptJeremy Magland 3 "version": "0.2.0",
200df8aRecord commonroom audio and chat from the command lineJeremy Magland 4 "description": "CLI bot that joins a commonroom room and records every participant's audio (and the chat) to disk for transcription",
5 "type": "module",
6 "bin": {
7 "commonroom-recorder": "dist/cli.js"
8 },
10 "dist",
11 "README.md"
12 ],
14 "build": "tsc -b",
200df8aRecord commonroom audio and chat from the command lineJeremy Magland 16 "record": "node dist/cli.js",
cbaa294Add transcribe subcommand: merged speaker-attributed transcriptJeremy Magland 17 "test:loopback": "node dist/test/loopback.js",
18 "test:transcribe": "node dist/test/transcribe-test.js"
20 "engines": {
21 "node": ">=22"
22 },
23 "dependencies": {
24 "@noble/secp256k1": "^3.1.0",
25 "@roamhq/wrtc": "^0.10.0"
26 },
27 "devDependencies": {
28 "@types/node": "^26.1.1",
29 "typescript": "^7.0.2"
30 }
31}