This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

character / package.json
779 B 22 lines
1{ 2 "name": "character", 3 "version": "0.0.1", 4 "private": true, 5 "type": "module", 6 "dependencies": { 7 "@google/genai": "^1.18.0", 8 "obs-websocket-js": "^5.0.6" 9 }, 10 "scripts": { 11 "dev": "bun run src/index.ts", 12 "live": "bun run src/index.ts --live", 13 "check:live-stack": "bun run scripts/check-live-stack.ts", 14 "configure:obs-websocket": "bun run scripts/configure-obs-websocket.ts", 15 "configure:obs-scene": "bun run scripts/configure-obs-scene.ts", 16 "configure:obs-stream": "bun run scripts/configure-obs-stream.ts", 17 "run:live-stack": "bash ./scripts/run-live-stack.sh", 18 "verify:live-response": "bun run scripts/verify-live-response.ts", 19 "simulate": "bun run scripts/simulate-chat.ts", 20 "check": "bun run src/index.ts --help" 21 } 22}