/ concept-collection / commonroom-recorder
Sign in
concept-collection / commonroom-recorder
commonroom-recorder / package.json
31 lines · 742 BCodeBlameHistory
2 "name": "commonroom-recorder",
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 },
aaf4452Distribute via npx from a GitHub Pages tarballJeremy Magland 9 "files": [
10 "dist",
11 "README.md"
12 ],
14 "build": "tsc -b",
aaf4452Distribute via npx from a GitHub Pages tarballJeremy Magland 15 "prepare": "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 }
moveopenescclose