@runtypelabs/persona 4.4.1 → 4.4.2
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/codegen.cjs +4 -4
- package/dist/codegen.js +2 -2
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.global.js +1 -1
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/theme-editor-preview.cjs +12 -12
- package/dist/theme-editor-preview.js +12 -12
- package/dist/widget.css +1 -4041
- package/package.json +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@runtypelabs/persona",
|
|
3
|
-
"version": "4.4.
|
|
3
|
+
"version": "4.4.2",
|
|
4
4
|
"description": "Themeable, pluggable streaming agent widget for websites, in plain JS with support for voice input and reasoning / tool output.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -83,6 +83,7 @@
|
|
|
83
83
|
"@typescript-eslint/eslint-plugin": "^7.0.0",
|
|
84
84
|
"@typescript-eslint/parser": "^7.0.0",
|
|
85
85
|
"@vitest/ui": "^4.0.9",
|
|
86
|
+
"esbuild": "^0.21.5",
|
|
86
87
|
"eslint": "^8.57.0",
|
|
87
88
|
"eslint-config-prettier": "^9.1.0",
|
|
88
89
|
"fake-indexeddb": "^6.2.5",
|
|
@@ -130,7 +131,7 @@
|
|
|
130
131
|
"build:animations": "tsup src/animations/glyph-cycle.ts src/animations/wipe.ts --format esm,cjs --minify --dts --out-dir dist/animations --no-splitting",
|
|
131
132
|
"build:theme-ref": "tsup src/theme-reference.ts --format esm,cjs --minify --dts",
|
|
132
133
|
"build:codegen": "tsup src/codegen.ts --format esm,cjs --minify --dts",
|
|
133
|
-
"build:styles": "node -
|
|
134
|
+
"build:styles": "node scripts/build-styles.mjs",
|
|
134
135
|
"build:client": "tsup src/index.ts --format esm,cjs --minify --sourcemap --splitting false --dts --loader \".css=text\" && tsup --config tsup.global.config.ts && node -e \"const fs=require('fs');for(const ext of ['.global.js','.global.js.map']){const from='dist/index-global'+ext;if(fs.existsSync(from))fs.renameSync(from,'dist/index'+ext);}\"",
|
|
135
136
|
"build:webmcp-polyfill": "tsup --config tsup.webmcp-polyfill.config.ts",
|
|
136
137
|
"build:runtype-tts": "tsup --config tsup.runtype-tts.config.ts",
|