@gnai/message-content-renderer 0.1.5 → 0.1.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/default-avatar.svg +10 -0
- package/dist/index.d.ts +11 -1
- package/dist/message-content-renderer.css +1 -1
- package/dist/message-content-renderer.es.js +4747 -4683
- package/dist/message-content-renderer.umd.js +14 -12
- package/dist/pwa-192x192.png +0 -0
- package/dist/pwa-512x512.png +0 -0
- package/package.json +4 -2
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gnai/message-content-renderer",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/message-content-renderer.umd.js",
|
|
@@ -27,7 +27,8 @@
|
|
|
27
27
|
"dev": "vite",
|
|
28
28
|
"prod": "vite --mode production",
|
|
29
29
|
"build": "vue-tsc --build && vite build",
|
|
30
|
-
"build-
|
|
30
|
+
"build-test": "pnpm run build --mode development && coscli cp ./dist/ cos://agent-chat-web/ -r",
|
|
31
|
+
"build-prod": "pnpm run build --mode production && coscli cp ./dist/ cos://agent-web/ -r",
|
|
31
32
|
"preview": "vite preview",
|
|
32
33
|
"build:lib": "vite build --config vite.config.lib.ts",
|
|
33
34
|
"type-check": "vue-tsc --build",
|
|
@@ -64,6 +65,7 @@
|
|
|
64
65
|
"vite": "^7.1.7",
|
|
65
66
|
"vite-plugin-compression": "^0.5.1",
|
|
66
67
|
"vite-plugin-dts": "^4.5.4",
|
|
68
|
+
"vite-plugin-pwa": "^1.2.0",
|
|
67
69
|
"vite-plugin-vue-devtools": "^8.0.2",
|
|
68
70
|
"vue-tsc": "^3.1.0"
|
|
69
71
|
}
|