@w0nna_dev/lina-widget 1.2.5 → 1.2.7
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/lina-widget.es.js +466 -455
- package/dist/lina-widget.umd.js +1 -2
- package/dist/src/lina/components/LinaWidget.d.ts +2 -0
- package/package.json +43 -42
|
@@ -58,6 +58,8 @@ export declare class LinaWidget extends LitElement {
|
|
|
58
58
|
private _agentAudioContext;
|
|
59
59
|
private _agentAudioAnalyser;
|
|
60
60
|
private _agentAudioMonitorId;
|
|
61
|
+
private _lastStateChangeTime;
|
|
62
|
+
private _stateChangeDebounceMs;
|
|
61
63
|
/**
|
|
62
64
|
* Monitor agent audio to detect when agent is actually speaking
|
|
63
65
|
*/
|
package/package.json
CHANGED
|
@@ -1,42 +1,43 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@w0nna_dev/lina-widget",
|
|
3
|
-
"version": "1.2.
|
|
4
|
-
"private": false,
|
|
5
|
-
"publishConfig": {
|
|
6
|
-
"access": "public"
|
|
7
|
-
},
|
|
8
|
-
"type": "module",
|
|
9
|
-
"main": "dist/lina-widget.umd.js",
|
|
10
|
-
"module": "dist/lina-widget.es.js",
|
|
11
|
-
"types": "dist/index.d.ts",
|
|
12
|
-
"files": [
|
|
13
|
-
"dist",
|
|
14
|
-
"README.md"
|
|
15
|
-
],
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
"
|
|
29
|
-
"eslint
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
}
|
|
42
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@w0nna_dev/lina-widget",
|
|
3
|
+
"version": "1.2.7",
|
|
4
|
+
"private": false,
|
|
5
|
+
"publishConfig": {
|
|
6
|
+
"access": "public"
|
|
7
|
+
},
|
|
8
|
+
"type": "module",
|
|
9
|
+
"main": "dist/lina-widget.umd.js",
|
|
10
|
+
"module": "dist/lina-widget.es.js",
|
|
11
|
+
"types": "dist/index.d.ts",
|
|
12
|
+
"files": [
|
|
13
|
+
"dist",
|
|
14
|
+
"README.md"
|
|
15
|
+
],
|
|
16
|
+
"scripts": {
|
|
17
|
+
"dev": "vite",
|
|
18
|
+
"build": "tsc && vite build",
|
|
19
|
+
"preview": "vite preview",
|
|
20
|
+
"release": "pnpm build && changeset publish --access public"
|
|
21
|
+
},
|
|
22
|
+
"dependencies": {
|
|
23
|
+
"lit": "^3.2.1",
|
|
24
|
+
"livekit-client": "^2.15.6",
|
|
25
|
+
"three": "^0.182.0"
|
|
26
|
+
},
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@changesets/cli": "^2.29.5",
|
|
29
|
+
"@eslint/js": "^9.24.0",
|
|
30
|
+
"@types/node": "^22.14.0",
|
|
31
|
+
"@types/three": "^0.182.0",
|
|
32
|
+
"eslint": "^9.24.0",
|
|
33
|
+
"eslint-config-prettier": "^10.1.1",
|
|
34
|
+
"eslint-plugin-import": "^2.31.0",
|
|
35
|
+
"eslint-plugin-lit": "^2.0.0",
|
|
36
|
+
"ts-lit-plugin": "^2.0.2",
|
|
37
|
+
"typescript": "~5.7.2",
|
|
38
|
+
"typescript-eslint": "^8.29.1",
|
|
39
|
+
"vite": "^6.2.0",
|
|
40
|
+
"vite-plugin-dts": "^4.5.4"
|
|
41
|
+
},
|
|
42
|
+
"packageManager": "pnpm@10.8.1+sha256.d8b2ebbc65cf02c349eca6b45c9640b910f16b6adebdb7b926e9db440e47cac7"
|
|
43
|
+
}
|