bridgeapp-ai-chat-widget 0.0.2 → 0.0.4
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/bridge-ai-chat-widget.es.js +41863 -28952
- package/dist/bridge-ai-chat-widget.umd.js +353 -288
- package/package.json +14 -3
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bridgeapp-ai-chat-widget",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.4",
|
|
5
5
|
"description": "Embeddable chat widget for communication with Bridge AI agent",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "dist/bridge-ai-chat-widget.umd.js",
|
|
@@ -26,14 +26,25 @@
|
|
|
26
26
|
},
|
|
27
27
|
"scripts": {
|
|
28
28
|
"dev": "vite",
|
|
29
|
-
"build": "vite build && tsc -p tsconfig.build.json",
|
|
29
|
+
"build-dev": "vite build && tsc -p tsconfig.build.json",
|
|
30
|
+
"build-lib": "vite build --config vite.config.lib.ts && tsc -p tsconfig.build.json",
|
|
30
31
|
"lint": "eslint .",
|
|
31
32
|
"preview": "vite preview",
|
|
32
|
-
"prepublishOnly": "npm run build"
|
|
33
|
+
"prepublishOnly": "npm run build-lib",
|
|
34
|
+
"clean-dev-bucket": "aws s3 rm s3://bridgeapp-ai-chat-widget-dev --recursive",
|
|
35
|
+
"upload-dev-bucket": "aws s3 cp dist s3://bridgeapp-ai-chat-widget-dev --recursive",
|
|
36
|
+
"deploy-dev": "npm run build-dev && npm run clean-dev-bucket && npm run upload-dev-bucket",
|
|
37
|
+
"clean-stage-bucket": "aws s3 rm s3://bridge-ai-assistant --recursive",
|
|
38
|
+
"upload-stage-bucket": "aws s3 cp dist s3://bridge-ai-assistant --recursive",
|
|
39
|
+
"deploy-stage": "npm run build-dev && npm run clean-stage-bucket && npm run upload-stage-bucket",
|
|
40
|
+
"clean-assets-bucket": "aws s3 rm s3://bridge-ai-chat-widget-assets --recursive",
|
|
41
|
+
"upload-assets-bucket": "aws s3 cp /Users/Yurii/work/bridge-ai-assistant/src/assets s3://bridge-ai-chat-widget-assets --recursive",
|
|
42
|
+
"deploy-assets": "npm run clean-assets-bucket && npm run upload-assets-bucket"
|
|
33
43
|
},
|
|
34
44
|
"dependencies": {
|
|
35
45
|
"@anycable/web": "^1.1.0",
|
|
36
46
|
"@headlessui/react": "^2.2.9",
|
|
47
|
+
"@tiptap/starter-kit": "^3.19.0",
|
|
37
48
|
"class-variance-authority": "^0.7.1",
|
|
38
49
|
"clsx": "^2.1.1",
|
|
39
50
|
"gsap": "^3.14.2",
|