@voxket-ai/voxket-live 1.0.62 → 1.0.64
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/error-boundary.d.ts +18 -0
- package/dist/components/livekit/agent-control-bar/agent-control-bar.d.ts +1 -1
- package/dist/components/livekit/agent-control-bar/hooks/use-agent-control-bar.d.ts +2 -2
- package/dist/components/livekit/agent-tile.d.ts +1 -1
- package/dist/components/livekit/avatar-tile.d.ts +1 -1
- package/dist/components/livekit/chat/chat-entry.d.ts +1 -1
- package/dist/components/livekit/chat/hooks/utils.d.ts +1 -1
- package/dist/components/livekit/device-select.d.ts +1 -1
- package/dist/components/livekit/media-tiles.d.ts +2 -2
- package/dist/components/livekit/track-toggle.d.ts +1 -1
- package/dist/components/livekit/video-tile.d.ts +1 -1
- package/dist/core/client.d.ts +4 -4
- package/dist/core/rpc-manager.d.ts +1 -1
- package/dist/hooks/useChatAndTranscription.d.ts +2 -2
- package/dist/hooks/useDebug.d.ts +1 -1
- package/dist/hooks/useSessionLogging.d.ts +1 -1
- package/dist/hooks/useVoxketClient.d.ts +3 -3
- package/dist/index.cjs +49 -49
- package/dist/index.css +1 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +152 -95
- package/dist/lib/react-utils.d.ts +9 -0
- package/dist/lib/types.d.ts +1 -1
- package/dist/lib/utils.d.ts +2 -2
- package/dist/types/core.d.ts +1 -1
- package/package.json +13 -6
package/package.json
CHANGED
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@voxket-ai/voxket-live",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.64",
|
|
4
4
|
"description": "A React widget for embedding Voxket-powered audio/video/chat experiences.",
|
|
5
5
|
"type": "module",
|
|
6
|
+
"sideEffects": [
|
|
7
|
+
"*.css",
|
|
8
|
+
"src/index.css",
|
|
9
|
+
"src/styles/**/*"
|
|
10
|
+
],
|
|
6
11
|
"main": "./dist/index.cjs",
|
|
7
12
|
"module": "./dist/index.js",
|
|
8
13
|
"types": "./dist/index.d.ts",
|
|
@@ -15,9 +20,9 @@
|
|
|
15
20
|
},
|
|
16
21
|
"exports": {
|
|
17
22
|
".": {
|
|
23
|
+
"types": "./dist/index.d.ts",
|
|
18
24
|
"import": "./dist/index.js",
|
|
19
|
-
"require": "./dist/index.cjs"
|
|
20
|
-
"types": "./dist/index.d.ts"
|
|
25
|
+
"require": "./dist/index.cjs"
|
|
21
26
|
}
|
|
22
27
|
},
|
|
23
28
|
"publishConfig": {
|
|
@@ -44,7 +49,9 @@
|
|
|
44
49
|
"license": "MIT",
|
|
45
50
|
"peerDependencies": {
|
|
46
51
|
"react": ">=18.0.0",
|
|
47
|
-
"react-dom": ">=18.0.0"
|
|
52
|
+
"react-dom": ">=18.0.0",
|
|
53
|
+
"livekit-client": ">=2.13.0",
|
|
54
|
+
"@livekit/components-react": ">=2.9.0"
|
|
48
55
|
},
|
|
49
56
|
"peerDependenciesMeta": {
|
|
50
57
|
"react": {
|
|
@@ -64,7 +71,6 @@
|
|
|
64
71
|
"dependencies": {
|
|
65
72
|
"@emotion/react": "~11.14.0",
|
|
66
73
|
"@emotion/styled": "~11.14.0",
|
|
67
|
-
"@livekit/components-react": "~2.9.10",
|
|
68
74
|
"@mui/icons-material": "~7.1.2",
|
|
69
75
|
"@mui/material": "~7.1.2",
|
|
70
76
|
"@phosphor-icons/react": "~2.1.10",
|
|
@@ -75,7 +81,6 @@
|
|
|
75
81
|
"ajv-draft-04": "~1.0.0",
|
|
76
82
|
"class-variance-authority": "~0.7.1",
|
|
77
83
|
"clsx": "~2.1.1",
|
|
78
|
-
"livekit-client": "~2.13.8",
|
|
79
84
|
"lucide-react": "~0.522.0",
|
|
80
85
|
"motion": "~12.18.1",
|
|
81
86
|
"path": "~0.12.7",
|
|
@@ -85,6 +90,7 @@
|
|
|
85
90
|
},
|
|
86
91
|
"devDependencies": {
|
|
87
92
|
"@eslint/js": "^9.25.0",
|
|
93
|
+
"@livekit/components-react": "~2.9.10",
|
|
88
94
|
"@tailwindcss/postcss": "~4.1.11",
|
|
89
95
|
"@types/node": "~24.0.3",
|
|
90
96
|
"@types/react": "^18.3.12",
|
|
@@ -95,6 +101,7 @@
|
|
|
95
101
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
96
102
|
"eslint-plugin-react-refresh": "^0.4.19",
|
|
97
103
|
"globals": "^16.0.0",
|
|
104
|
+
"livekit-client": "~2.13.8",
|
|
98
105
|
"postcss": "~8.5.6",
|
|
99
106
|
"react": "18.3.1",
|
|
100
107
|
"react-dom": "18.3.1",
|