forked from MCERQUA/OpenVoiceUI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "openvoiceui",
"version": "2026.6.9",
"description": "Voice-powered AI assistant platform \u2014 connect any LLM, any TTS, with a live web canvas, music generation, and agent orchestration",
"bin": {
"openvoiceui": "cli/index.js"
},
"scripts": {
"setup": "node cli/index.js setup",
"start": "node cli/index.js start",
"stop": "node cli/index.js stop",
"status": "node cli/index.js status",
"logs": "node cli/index.js logs"
},
"keywords": [
"voice-ai",
"openvoiceui",
"openclaw",
"tts",
"stt",
"ai-assistant",
"voice-agent",
"ai-canvas",
"llm",
"speech-to-text",
"text-to-speech",
"voice-interface",
"ai-music",
"docker"
],
"author": "MCERQUA",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/MCERQUA/OpenVoiceUI.git"
},
"homepage": "https://github.com/MCERQUA/OpenVoiceUI",
"bugs": {
"url": "https://github.com/MCERQUA/OpenVoiceUI/issues"
},
"engines": {
"node": ">=18"
},
"os": [
"linux",
"darwin",
"win32"
],
"files": [
"cli/",
"deploy/",
"docker-compose.yml",
"docker-compose.local.yml",
"Dockerfile",
"requirements.txt",
".env.example",
"setup-config.js",
"inject-device-identity.js",
"auto-approve-devices.js",
"app.py",
"server.py",
"index.html",
"greetings.json",
"src/",
"static/",
"routes/",
"services/",
"providers/",
"tts_providers/",
"config/",
"data/",
"default-pages/",
"profiles/",
"prompts/",
"sounds/",
"README.md",
"LICENSE",
"SETUP.md",
"!**/__pycache__",
"!**/*.pyc"
]
}