@elevenlabs/convai-widget-core 0.2.0 → 0.3.0
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/LICENSE +1 -1
- package/dist/index.js +629 -614
- package/dist/version.d.ts +1 -1
- package/package.json +8 -5
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const PACKAGE_VERSION = "0.
|
|
1
|
+
export declare const PACKAGE_VERSION = "0.3.0";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elevenlabs/convai-widget-core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "The common library for the Conversational AI Widget.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -31,7 +31,10 @@
|
|
|
31
31
|
"clsx": "^2.1.1",
|
|
32
32
|
"preact": "^10.26.5",
|
|
33
33
|
"preact-custom-element": "^4.3.0",
|
|
34
|
-
"@elevenlabs/client": "0.
|
|
34
|
+
"@elevenlabs/client": "0.6.2"
|
|
35
|
+
},
|
|
36
|
+
"publishConfig": {
|
|
37
|
+
"access": "public"
|
|
35
38
|
},
|
|
36
39
|
"repository": {
|
|
37
40
|
"type": "git",
|
|
@@ -43,9 +46,9 @@
|
|
|
43
46
|
"prebuild": "npm run generate-version",
|
|
44
47
|
"build": "vite build && tsc --declaration --emitDeclarationOnly",
|
|
45
48
|
"dev": "npm run generate-version && vite",
|
|
46
|
-
"lint": "npm run
|
|
47
|
-
"
|
|
48
|
-
"lint:es": "
|
|
49
|
+
"lint": "npm run check-types && npm run lint:es && npm run lint:prettier",
|
|
50
|
+
"check-types": "tsc --noEmit --skipLibCheck",
|
|
51
|
+
"lint:es": "pnpm exec eslint .",
|
|
49
52
|
"lint:prettier": "prettier 'src/**/*.ts' --check",
|
|
50
53
|
"test": "vitest"
|
|
51
54
|
}
|