@developer.notchatbot/webchat 1.0.8 → 1.1.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/README.md +294 -734
- package/dist/components/embedchat/EmbedChat.d.ts +4 -0
- package/dist/components/embedchat/EmbedChatFooter.d.ts +4 -0
- package/dist/components/embedchat/EmbedChatHeader.d.ts +4 -0
- package/dist/components/embedchat/EmbedChatWindow.d.ts +4 -0
- package/dist/config/company-config.d.ts +1 -1
- package/dist/index.d.ts +3 -2
- package/dist/types.d.ts +69 -1
- package/dist/utils/messaging.d.ts +2 -2
- package/dist/utils/user.d.ts +3 -3
- package/dist/webchat-bundle.min.js +9001 -7125
- package/dist/webchat-bundle.min.umd.cjs +77 -22
- package/package.json +53 -54
package/package.json
CHANGED
|
@@ -1,54 +1,53 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@developer.notchatbot/webchat",
|
|
3
|
-
"version": "1.0
|
|
4
|
-
"description": "A beautiful React chatbot widget with single-file bundle",
|
|
5
|
-
"main": "dist/webchat-bundle.min.umd.cjs",
|
|
6
|
-
"module": "dist/webchat-bundle.min.js",
|
|
7
|
-
"types": "dist/index.d.ts",
|
|
8
|
-
"type": "module",
|
|
9
|
-
"files": [
|
|
10
|
-
"dist"
|
|
11
|
-
],
|
|
12
|
-
"exports": {
|
|
13
|
-
".": {
|
|
14
|
-
"import": "./dist/webchat-bundle.min.js",
|
|
15
|
-
"require": "./dist/webchat-bundle.min.umd.cjs",
|
|
16
|
-
"types": "./dist/index.d.ts"
|
|
17
|
-
}
|
|
18
|
-
},
|
|
19
|
-
"scripts": {
|
|
20
|
-
"dev": "vite",
|
|
21
|
-
"build": "tsc && vite build",
|
|
22
|
-
"
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
"
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
"@
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
"
|
|
51
|
-
"react": "^18.2.0"
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@developer.notchatbot/webchat",
|
|
3
|
+
"version": "1.1.0",
|
|
4
|
+
"description": "A beautiful React chatbot widget with single-file bundle",
|
|
5
|
+
"main": "dist/webchat-bundle.min.umd.cjs",
|
|
6
|
+
"module": "dist/webchat-bundle.min.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"type": "module",
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"import": "./dist/webchat-bundle.min.js",
|
|
15
|
+
"require": "./dist/webchat-bundle.min.umd.cjs",
|
|
16
|
+
"types": "./dist/index.d.ts"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"scripts": {
|
|
20
|
+
"dev": "vite",
|
|
21
|
+
"build": "tsc && vite build",
|
|
22
|
+
"preview": "vite preview"
|
|
23
|
+
},
|
|
24
|
+
"keywords": [
|
|
25
|
+
"chatbot",
|
|
26
|
+
"widget",
|
|
27
|
+
"react",
|
|
28
|
+
"typescript",
|
|
29
|
+
"tailwind",
|
|
30
|
+
"embed",
|
|
31
|
+
"webchat",
|
|
32
|
+
"chat-widget"
|
|
33
|
+
],
|
|
34
|
+
"author": "NotChatBot",
|
|
35
|
+
"license": "MIT",
|
|
36
|
+
"devDependencies": {
|
|
37
|
+
"@types/react": "^18.2.45",
|
|
38
|
+
"@types/react-dom": "^18.2.18",
|
|
39
|
+
"@vitejs/plugin-react": "^4.2.1",
|
|
40
|
+
"autoprefixer": "^10.4.16",
|
|
41
|
+
"postcss": "^8.4.32",
|
|
42
|
+
"tailwindcss": "^3.4.0",
|
|
43
|
+
"typescript": "^5.3.3",
|
|
44
|
+
"vite": "^5.0.0",
|
|
45
|
+
"vite-plugin-dts": "^4.5.4"
|
|
46
|
+
},
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"ably": "^1.2.50",
|
|
49
|
+
"marked": "^15.0.12",
|
|
50
|
+
"react": "^18.2.0",
|
|
51
|
+
"react-dom": "^18.2.0"
|
|
52
|
+
}
|
|
53
|
+
}
|