bridgeapp-ai-chat-widget 0.2.14 → 0.2.16
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/README.md +1 -2
- package/dist/App.d.ts +2 -1
- package/dist/Avatar-XISRbl7X.js +29627 -0
- package/dist/OrbitControls-XelJ40xM.js +458 -0
- package/dist/api/messages.api.types.d.ts +10 -1
- package/dist/api/voice.api.d.ts +2 -1
- package/dist/api/voice.api.types.d.ts +21 -0
- package/dist/avatar/Avatar.d.ts +1 -0
- package/dist/bridge-ai-chat-widget.es.js +8729 -81770
- package/dist/dev/constants.d.ts +17 -0
- package/dist/domain/voice/voice.store.d.ts +2 -0
- package/dist/hooks/useDeviceManager.d.ts +1 -2
- package/dist/index.types.d.ts +2 -1
- package/dist/lib//321/201ontentRenderer.d.ts +3 -3
- package/dist/lil-gui.esm-BicvE3D7.js +1263 -0
- package/package.json +11 -15
- package/dist/bridge-ai-chat-widget.umd.js +0 -4847
- package/dist/index.d.ts +0 -34
- package/dist/react/mount.d.ts +0 -3
package/package.json
CHANGED
|
@@ -1,17 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bridgeapp-ai-chat-widget",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.16",
|
|
5
5
|
"description": "Embeddable chat widget for communication with Bridge AI agent",
|
|
6
6
|
"type": "module",
|
|
7
|
-
"main": "dist/bridge-ai-chat-widget.
|
|
7
|
+
"main": "dist/bridge-ai-chat-widget.es.js",
|
|
8
8
|
"module": "dist/bridge-ai-chat-widget.es.js",
|
|
9
9
|
"types": "dist/index.types.d.ts",
|
|
10
10
|
"exports": {
|
|
11
11
|
".": {
|
|
12
12
|
"types": "./dist/index.types.d.ts",
|
|
13
|
-
"import": "./dist/bridge-ai-chat-widget.es.js"
|
|
14
|
-
"require": "./dist/bridge-ai-chat-widget.umd.js"
|
|
13
|
+
"import": "./dist/bridge-ai-chat-widget.es.js"
|
|
15
14
|
}
|
|
16
15
|
},
|
|
17
16
|
"files": [
|
|
@@ -49,26 +48,17 @@
|
|
|
49
48
|
"dependencies": {
|
|
50
49
|
"@anycable/web": "^1.1.0",
|
|
51
50
|
"@headlessui/react": "^2.2.9",
|
|
52
|
-
"@tiptap/
|
|
53
|
-
"@types/lodash-es": "^4.17.12",
|
|
54
|
-
"class-variance-authority": "^0.7.1",
|
|
51
|
+
"@tiptap/static-renderer": "^3.19.0",
|
|
55
52
|
"clsx": "^2.1.1",
|
|
56
53
|
"gsap": "^3.14.2",
|
|
57
54
|
"howler": "^2.2.4",
|
|
58
55
|
"lil-gui": "^0.21.0",
|
|
59
56
|
"lodash-es": "^4.17.23",
|
|
60
|
-
"lucide-react": "^0.562.0",
|
|
61
|
-
"react": ">=19",
|
|
62
|
-
"react-dom": ">=19",
|
|
63
57
|
"react-error-boundary": "^6.1.1",
|
|
64
58
|
"react-router-dom": "^7.13.1",
|
|
65
59
|
"react-use": "^17.6.0",
|
|
66
60
|
"tailwind-merge": "^3.4.0",
|
|
67
61
|
"three": "^0.182.0",
|
|
68
|
-
"vite-plugin-lib-inject-css": "^2.2.2",
|
|
69
|
-
"vite-plugin-mkcert": "^2.0.0",
|
|
70
|
-
"vite-plugin-svgr": "^4.5.0",
|
|
71
|
-
"zukeeper": "^1.0.2",
|
|
72
62
|
"zustand": "^5.0.10"
|
|
73
63
|
},
|
|
74
64
|
"devDependencies": {
|
|
@@ -76,6 +66,7 @@
|
|
|
76
66
|
"@tailwindcss/postcss": "^4.1.18",
|
|
77
67
|
"@tailwindcss/vite": "^4.1.18",
|
|
78
68
|
"@types/howler": "^2.2.12",
|
|
69
|
+
"@types/lodash-es": "^4.17.12",
|
|
79
70
|
"@types/node": "^24.10.4",
|
|
80
71
|
"@types/react": "^19.2.5",
|
|
81
72
|
"@types/react-dom": "^19.2.3",
|
|
@@ -89,11 +80,16 @@
|
|
|
89
80
|
"postcss-prefix-selector": "^2.1.1",
|
|
90
81
|
"prettier": "^3.7.4",
|
|
91
82
|
"prettier-plugin-tailwindcss": "^0.7.2",
|
|
83
|
+
"react": "^19.2.5",
|
|
84
|
+
"react-dom": "^19.2.5",
|
|
85
|
+
"rollup-plugin-visualizer": "^7.0.1",
|
|
92
86
|
"tailwindcss": "^4.1.18",
|
|
93
87
|
"tw-animate-css": "^1.4.0",
|
|
94
88
|
"typescript": "~5.9.3",
|
|
95
89
|
"typescript-eslint": "^8.46.4",
|
|
96
90
|
"vite": "^7.2.4",
|
|
97
|
-
"vite-plugin-
|
|
91
|
+
"vite-plugin-mkcert": "^2.1.0",
|
|
92
|
+
"vite-plugin-svgr": "^5.2.0",
|
|
93
|
+
"zukeeper": "^1.0.2"
|
|
98
94
|
}
|
|
99
95
|
}
|