mirror of
https://github.com/Purple-Horizons/openclaw-voice.git
synced 2026-08-14 00:58:01 +00:00
New features: - VAD integration in WebSocket flow (sends speech_detected status) - Streaming response module (sentence-by-sentence TTS) - Dockerfile with NVIDIA GPU support (CUDA 12.1) - docker-compose.yml (GPU + CPU profiles) - React component package (@openclaw/voice-widget-react) Roadmap progress: ✅ VAD ✅ Streaming responses ✅ Docker GPU support ✅ React component ✅ API key auth ✅ Continuous mode Remaining: - WebRTC - Vue component - Kubernetes Helm - RunPod template Tests: 25 passing
42 lines
959 B
JSON
42 lines
959 B
JSON
{
|
|
"name": "@openclaw/voice-widget-react",
|
|
"version": "0.1.0",
|
|
"description": "React component for OpenClaw Voice - self-hosted voice AI interface",
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.mjs",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup src/index.tsx --format cjs,esm --dts",
|
|
"dev": "tsup src/index.tsx --format cjs,esm --dts --watch"
|
|
},
|
|
"peerDependencies": {
|
|
"react": ">=17.0.0",
|
|
"react-dom": ">=17.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18.2.0",
|
|
"react": "^18.2.0",
|
|
"tsup": "^8.0.0",
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"keywords": [
|
|
"voice",
|
|
"ai",
|
|
"react",
|
|
"speech",
|
|
"whisper",
|
|
"tts",
|
|
"openclaw"
|
|
],
|
|
"author": "Purple Horizons <hello@purplehorizons.io>",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Purple-Horizons/openclaw-voice.git",
|
|
"directory": "packages/react"
|
|
}
|
|
}
|