@botuyo/chat-widget-standalone 1.0.75 → 1.0.76
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 +21 -21
- package/dist/Avatar3D-LfNJe183.js.map +1 -1
- package/dist/botuyo-chat.es.js +12 -11
- package/dist/botuyo-chat.es.js.map +1 -1
- package/dist/botuyo-chat.umd.js +1 -1
- package/dist/botuyo-chat.umd.js.map +1 -1
- package/dist/chunk-audio-BtKqgeW7.js.map +1 -1
- package/dist/chunk-chat-ui-BE_4AcMc.js.map +1 -1
- package/dist/chunk-gallery-D20qs-fr.js.map +1 -1
- package/dist/src/chat-widget/ChatWidget.d.ts +1 -0
- package/dist/src/chat-widget/ChatWidget.d.ts.map +1 -1
- package/dist/src/chat-widget/ChatWidgetProvider.d.ts.map +1 -1
- package/dist/src/chat-widget/components/Gallery.stories.d.ts.map +1 -1
- package/dist/src/chat-widget/components/ShadowDOMHost.d.ts +10 -0
- package/dist/src/chat-widget/components/ShadowDOMHost.d.ts.map +1 -0
- package/dist/src/chat-widget/hooks/useChatState.d.ts +1 -1
- package/dist/src/chat-widget/hooks/useChatState.d.ts.map +1 -1
- package/dist/src/chat-widget/utils/storage.d.ts +3 -3
- package/dist/src/chat-widget/utils/storage.d.ts.map +1 -1
- package/dist/standalone.d.ts +1 -2
- package/dist/standalone.d.ts.map +1 -1
- package/dist/stats-umd.html +1 -1
- package/dist/stats.html +1 -1
- package/package.json +155 -155
package/package.json
CHANGED
|
@@ -1,155 +1,155 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@botuyo/chat-widget-standalone",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"type": "module",
|
|
5
|
-
"description": "BotUyo Chat Widget - Standalone CDN version with React/TypeScript support",
|
|
6
|
-
"main": "dist/botuyo-chat.umd.js",
|
|
7
|
-
"module": "dist/botuyo-chat.es.js",
|
|
8
|
-
"types": "dist/standalone.d.ts",
|
|
9
|
-
"exports": {
|
|
10
|
-
".": {
|
|
11
|
-
"types": "./dist/standalone.d.ts",
|
|
12
|
-
"import": "./dist/botuyo-chat.es.js",
|
|
13
|
-
"require": "./dist/botuyo-chat.umd.js"
|
|
14
|
-
},
|
|
15
|
-
"./dist/style.css": "./dist/botuyo-chat.css",
|
|
16
|
-
"./style.css": "./dist/botuyo-chat.css"
|
|
17
|
-
},
|
|
18
|
-
"scripts": {
|
|
19
|
-
"dev": "vite",
|
|
20
|
-
"build": "npm run clean && npm run build:es && npm run build:umd && npm run build:types",
|
|
21
|
-
"build:es": "vite build",
|
|
22
|
-
"build:umd": "vite build -c vite.config.umd.mjs",
|
|
23
|
-
"build:types": "tsc --project tsconfig.build.json",
|
|
24
|
-
"preview": "vite preview",
|
|
25
|
-
"clean": "npx rimraf dist",
|
|
26
|
-
"lint": "eslint .",
|
|
27
|
-
"lint:fix": "eslint . --fix",
|
|
28
|
-
"typecheck": "tsc --noEmit",
|
|
29
|
-
"test": "vitest",
|
|
30
|
-
"test:ui": "vitest --ui",
|
|
31
|
-
"test:run": "vitest run",
|
|
32
|
-
"test:coverage": "vitest run --coverage",
|
|
33
|
-
"test:e2e": "playwright test",
|
|
34
|
-
"test:e2e:ui": "playwright test --ui",
|
|
35
|
-
"test:e2e:debug": "playwright test --debug",
|
|
36
|
-
"test:e2e:report": "playwright show-report",
|
|
37
|
-
"storybook": "storybook dev -p 6006",
|
|
38
|
-
"build-storybook": "storybook build",
|
|
39
|
-
"format": "prettier --write \"src/**/*.{ts,tsx,css}\"",
|
|
40
|
-
"format:check": "prettier --check \"src/**/*.{ts,tsx,css}\""
|
|
41
|
-
},
|
|
42
|
-
"lint-staged": {
|
|
43
|
-
"*.{ts,tsx}": [
|
|
44
|
-
"eslint --fix",
|
|
45
|
-
"prettier --write"
|
|
46
|
-
],
|
|
47
|
-
"*.{css,md,json}": [
|
|
48
|
-
"prettier --write"
|
|
49
|
-
]
|
|
50
|
-
},
|
|
51
|
-
"keywords": [
|
|
52
|
-
"chat",
|
|
53
|
-
"widget",
|
|
54
|
-
"chatbot",
|
|
55
|
-
"customer-support",
|
|
56
|
-
"botuyo",
|
|
57
|
-
"standalone",
|
|
58
|
-
"cdn",
|
|
59
|
-
"react",
|
|
60
|
-
"typescript",
|
|
61
|
-
"nextjs",
|
|
62
|
-
"socket.io"
|
|
63
|
-
],
|
|
64
|
-
"author": "BotUyo",
|
|
65
|
-
"license": "MIT",
|
|
66
|
-
"repository": {
|
|
67
|
-
"type": "git",
|
|
68
|
-
"url": "https://github.com/botuyo/chat-widget.git"
|
|
69
|
-
},
|
|
70
|
-
"bugs": {
|
|
71
|
-
"url": "https://github.com/botuyo/chat-widget/issues"
|
|
72
|
-
},
|
|
73
|
-
"homepage": "https://github.com/botuyo/chat-widget#readme",
|
|
74
|
-
"devDependencies": {
|
|
75
|
-
"@axe-core/playwright": "^4.11.0",
|
|
76
|
-
"@chromatic-com/storybook": "^5.0.0",
|
|
77
|
-
"@eslint/js": "^9.39.2",
|
|
78
|
-
"@playwright/test": "^1.58.0",
|
|
79
|
-
"@storybook/addon-a11y": "^10.2.0",
|
|
80
|
-
"@storybook/addon-docs": "^10.2.0",
|
|
81
|
-
"@storybook/addon-onboarding": "^10.2.0",
|
|
82
|
-
"@storybook/addon-vitest": "^10.2.0",
|
|
83
|
-
"@storybook/react-vite": "^10.2.0",
|
|
84
|
-
"@tailwindcss/postcss": "^4.1.18",
|
|
85
|
-
"@tanstack/react-virtual": "^3.13.18",
|
|
86
|
-
"@testing-library/dom": "^10.4.1",
|
|
87
|
-
"@testing-library/jest-dom": "^6.9.1",
|
|
88
|
-
"@testing-library/react": "^16.3.2",
|
|
89
|
-
"@testing-library/user-event": "^14.6.1",
|
|
90
|
-
"@types/node": "^25.0.10",
|
|
91
|
-
"@types/react": "^19.2.9",
|
|
92
|
-
"@types/react-dom": "^19.2.3",
|
|
93
|
-
"@typescript-eslint/eslint-plugin": "^8.53.1",
|
|
94
|
-
"@typescript-eslint/parser": "^8.53.1",
|
|
95
|
-
"@vitejs/plugin-react": "^5.1.2",
|
|
96
|
-
"@vitest/browser-playwright": "^4.0.18",
|
|
97
|
-
"@vitest/coverage-v8": "^4.0.18",
|
|
98
|
-
"@vitest/ui": "^4.0.18",
|
|
99
|
-
"autoprefixer": "^10.4.23",
|
|
100
|
-
"axe-core": "^4.11.1",
|
|
101
|
-
"cors": "^2.8.6",
|
|
102
|
-
"cssnano": "^7.1.2",
|
|
103
|
-
"cssnano-preset-advanced": "^7.0.10",
|
|
104
|
-
"eslint": "^9.39.2",
|
|
105
|
-
"eslint-plugin-react-hooks": "^7.0.1",
|
|
106
|
-
"eslint-plugin-react-refresh": "^0.4.5",
|
|
107
|
-
"eslint-plugin-storybook": "^10.2.0",
|
|
108
|
-
"globals": "^17.1.0",
|
|
109
|
-
"happy-dom": "^20.3.7",
|
|
110
|
-
"husky": "^9.1.7",
|
|
111
|
-
"lint-staged": "^16.2.7",
|
|
112
|
-
"playwright": "^1.58.0",
|
|
113
|
-
"postcss": "^8.5.6",
|
|
114
|
-
"prettier": "^3.8.1",
|
|
115
|
-
"react": "^18.3.1",
|
|
116
|
-
"react-dom": "^18.3.1",
|
|
117
|
-
"rehype-sanitize": "^6.0.0",
|
|
118
|
-
"rollup-plugin-visualizer": "^6.0.5",
|
|
119
|
-
"socket.io": "^4.8.3",
|
|
120
|
-
"storybook": "^10.2.0",
|
|
121
|
-
"tailwindcss": "^4.1.18",
|
|
122
|
-
"terser": "^5.46.0",
|
|
123
|
-
"typescript": "^5.3.3",
|
|
124
|
-
"typescript-eslint": "^8.53.1",
|
|
125
|
-
"vite": "^7.3.1",
|
|
126
|
-
"vitest": "^4.0.18",
|
|
127
|
-
"zod": "^4.3.6"
|
|
128
|
-
},
|
|
129
|
-
"peerDependencies": {
|
|
130
|
-
"react": "^18.0.0 || ^19.0.0",
|
|
131
|
-
"react-dom": "^18.0.0 || ^19.0.0"
|
|
132
|
-
},
|
|
133
|
-
"dependencies": {
|
|
134
|
-
"@pixiv/three-vrm": "^3.4.5",
|
|
135
|
-
"@react-three/drei": "^9.122.0",
|
|
136
|
-
"@react-three/fiber": "^8.18.0",
|
|
137
|
-
"@types/three": "^0.182.0",
|
|
138
|
-
"browser-image-compression": "^2.0.2",
|
|
139
|
-
"clsx": "^2.1.1",
|
|
140
|
-
"idb": "^8.0.3",
|
|
141
|
-
"lucide-react": "^0.400.0",
|
|
142
|
-
"react-markdown": "^10.1.0",
|
|
143
|
-
"remark-gfm": "^4.0.1",
|
|
144
|
-
"socket.io-client": "^4.7.4",
|
|
145
|
-
"tailwind-merge": "^3.4.0",
|
|
146
|
-
"three": "^0.182.0"
|
|
147
|
-
},
|
|
148
|
-
"files": [
|
|
149
|
-
"dist",
|
|
150
|
-
"README.md",
|
|
151
|
-
"INSTALLATION_GUIDE.md",
|
|
152
|
-
"LICENSE",
|
|
153
|
-
"examples"
|
|
154
|
-
]
|
|
155
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@botuyo/chat-widget-standalone",
|
|
3
|
+
"version": "1.0.76",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "BotUyo Chat Widget - Standalone CDN version with React/TypeScript support",
|
|
6
|
+
"main": "dist/botuyo-chat.umd.js",
|
|
7
|
+
"module": "dist/botuyo-chat.es.js",
|
|
8
|
+
"types": "dist/standalone.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/standalone.d.ts",
|
|
12
|
+
"import": "./dist/botuyo-chat.es.js",
|
|
13
|
+
"require": "./dist/botuyo-chat.umd.js"
|
|
14
|
+
},
|
|
15
|
+
"./dist/style.css": "./dist/botuyo-chat.css",
|
|
16
|
+
"./style.css": "./dist/botuyo-chat.css"
|
|
17
|
+
},
|
|
18
|
+
"scripts": {
|
|
19
|
+
"dev": "vite",
|
|
20
|
+
"build": "npm run clean && npm run build:es && npm run build:umd && npm run build:types",
|
|
21
|
+
"build:es": "vite build",
|
|
22
|
+
"build:umd": "vite build -c vite.config.umd.mjs",
|
|
23
|
+
"build:types": "tsc --project tsconfig.build.json",
|
|
24
|
+
"preview": "vite preview",
|
|
25
|
+
"clean": "npx rimraf dist",
|
|
26
|
+
"lint": "eslint .",
|
|
27
|
+
"lint:fix": "eslint . --fix",
|
|
28
|
+
"typecheck": "tsc --noEmit",
|
|
29
|
+
"test": "vitest",
|
|
30
|
+
"test:ui": "vitest --ui",
|
|
31
|
+
"test:run": "vitest run",
|
|
32
|
+
"test:coverage": "vitest run --coverage",
|
|
33
|
+
"test:e2e": "playwright test",
|
|
34
|
+
"test:e2e:ui": "playwright test --ui",
|
|
35
|
+
"test:e2e:debug": "playwright test --debug",
|
|
36
|
+
"test:e2e:report": "playwright show-report",
|
|
37
|
+
"storybook": "storybook dev -p 6006",
|
|
38
|
+
"build-storybook": "storybook build",
|
|
39
|
+
"format": "prettier --write \"src/**/*.{ts,tsx,css}\"",
|
|
40
|
+
"format:check": "prettier --check \"src/**/*.{ts,tsx,css}\""
|
|
41
|
+
},
|
|
42
|
+
"lint-staged": {
|
|
43
|
+
"*.{ts,tsx}": [
|
|
44
|
+
"eslint --fix",
|
|
45
|
+
"prettier --write"
|
|
46
|
+
],
|
|
47
|
+
"*.{css,md,json}": [
|
|
48
|
+
"prettier --write"
|
|
49
|
+
]
|
|
50
|
+
},
|
|
51
|
+
"keywords": [
|
|
52
|
+
"chat",
|
|
53
|
+
"widget",
|
|
54
|
+
"chatbot",
|
|
55
|
+
"customer-support",
|
|
56
|
+
"botuyo",
|
|
57
|
+
"standalone",
|
|
58
|
+
"cdn",
|
|
59
|
+
"react",
|
|
60
|
+
"typescript",
|
|
61
|
+
"nextjs",
|
|
62
|
+
"socket.io"
|
|
63
|
+
],
|
|
64
|
+
"author": "BotUyo",
|
|
65
|
+
"license": "MIT",
|
|
66
|
+
"repository": {
|
|
67
|
+
"type": "git",
|
|
68
|
+
"url": "https://github.com/botuyo/chat-widget.git"
|
|
69
|
+
},
|
|
70
|
+
"bugs": {
|
|
71
|
+
"url": "https://github.com/botuyo/chat-widget/issues"
|
|
72
|
+
},
|
|
73
|
+
"homepage": "https://github.com/botuyo/chat-widget#readme",
|
|
74
|
+
"devDependencies": {
|
|
75
|
+
"@axe-core/playwright": "^4.11.0",
|
|
76
|
+
"@chromatic-com/storybook": "^5.0.0",
|
|
77
|
+
"@eslint/js": "^9.39.2",
|
|
78
|
+
"@playwright/test": "^1.58.0",
|
|
79
|
+
"@storybook/addon-a11y": "^10.2.0",
|
|
80
|
+
"@storybook/addon-docs": "^10.2.0",
|
|
81
|
+
"@storybook/addon-onboarding": "^10.2.0",
|
|
82
|
+
"@storybook/addon-vitest": "^10.2.0",
|
|
83
|
+
"@storybook/react-vite": "^10.2.0",
|
|
84
|
+
"@tailwindcss/postcss": "^4.1.18",
|
|
85
|
+
"@tanstack/react-virtual": "^3.13.18",
|
|
86
|
+
"@testing-library/dom": "^10.4.1",
|
|
87
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
88
|
+
"@testing-library/react": "^16.3.2",
|
|
89
|
+
"@testing-library/user-event": "^14.6.1",
|
|
90
|
+
"@types/node": "^25.0.10",
|
|
91
|
+
"@types/react": "^19.2.9",
|
|
92
|
+
"@types/react-dom": "^19.2.3",
|
|
93
|
+
"@typescript-eslint/eslint-plugin": "^8.53.1",
|
|
94
|
+
"@typescript-eslint/parser": "^8.53.1",
|
|
95
|
+
"@vitejs/plugin-react": "^5.1.2",
|
|
96
|
+
"@vitest/browser-playwright": "^4.0.18",
|
|
97
|
+
"@vitest/coverage-v8": "^4.0.18",
|
|
98
|
+
"@vitest/ui": "^4.0.18",
|
|
99
|
+
"autoprefixer": "^10.4.23",
|
|
100
|
+
"axe-core": "^4.11.1",
|
|
101
|
+
"cors": "^2.8.6",
|
|
102
|
+
"cssnano": "^7.1.2",
|
|
103
|
+
"cssnano-preset-advanced": "^7.0.10",
|
|
104
|
+
"eslint": "^9.39.2",
|
|
105
|
+
"eslint-plugin-react-hooks": "^7.0.1",
|
|
106
|
+
"eslint-plugin-react-refresh": "^0.4.5",
|
|
107
|
+
"eslint-plugin-storybook": "^10.2.0",
|
|
108
|
+
"globals": "^17.1.0",
|
|
109
|
+
"happy-dom": "^20.3.7",
|
|
110
|
+
"husky": "^9.1.7",
|
|
111
|
+
"lint-staged": "^16.2.7",
|
|
112
|
+
"playwright": "^1.58.0",
|
|
113
|
+
"postcss": "^8.5.6",
|
|
114
|
+
"prettier": "^3.8.1",
|
|
115
|
+
"react": "^18.3.1",
|
|
116
|
+
"react-dom": "^18.3.1",
|
|
117
|
+
"rehype-sanitize": "^6.0.0",
|
|
118
|
+
"rollup-plugin-visualizer": "^6.0.5",
|
|
119
|
+
"socket.io": "^4.8.3",
|
|
120
|
+
"storybook": "^10.2.0",
|
|
121
|
+
"tailwindcss": "^4.1.18",
|
|
122
|
+
"terser": "^5.46.0",
|
|
123
|
+
"typescript": "^5.3.3",
|
|
124
|
+
"typescript-eslint": "^8.53.1",
|
|
125
|
+
"vite": "^7.3.1",
|
|
126
|
+
"vitest": "^4.0.18",
|
|
127
|
+
"zod": "^4.3.6"
|
|
128
|
+
},
|
|
129
|
+
"peerDependencies": {
|
|
130
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
131
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
132
|
+
},
|
|
133
|
+
"dependencies": {
|
|
134
|
+
"@pixiv/three-vrm": "^3.4.5",
|
|
135
|
+
"@react-three/drei": "^9.122.0",
|
|
136
|
+
"@react-three/fiber": "^8.18.0",
|
|
137
|
+
"@types/three": "^0.182.0",
|
|
138
|
+
"browser-image-compression": "^2.0.2",
|
|
139
|
+
"clsx": "^2.1.1",
|
|
140
|
+
"idb": "^8.0.3",
|
|
141
|
+
"lucide-react": "^0.400.0",
|
|
142
|
+
"react-markdown": "^10.1.0",
|
|
143
|
+
"remark-gfm": "^4.0.1",
|
|
144
|
+
"socket.io-client": "^4.7.4",
|
|
145
|
+
"tailwind-merge": "^3.4.0",
|
|
146
|
+
"three": "^0.182.0"
|
|
147
|
+
},
|
|
148
|
+
"files": [
|
|
149
|
+
"dist",
|
|
150
|
+
"README.md",
|
|
151
|
+
"INSTALLATION_GUIDE.md",
|
|
152
|
+
"LICENSE",
|
|
153
|
+
"examples"
|
|
154
|
+
]
|
|
155
|
+
}
|