wakz-chat-widget 2.0.0 → 2.2.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 +51 -24
- package/index.js +305 -413
- package/package.json +13 -6
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wakz-chat-widget",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"description": "Premium AI chat widget by WAKZ —
|
|
3
|
+
"version": "2.2.0",
|
|
4
|
+
"description": "Premium AI chat widget by WAKZ — Production-grade, Shadow DOM, zero dependencies, multi-language support, device detection, RTL support.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
7
|
-
"prepublishOnly": "echo 'Ready to publish wakz-chat-widget'"
|
|
7
|
+
"prepublishOnly": "echo 'Ready to publish wakz-chat-widget v2.2.0'"
|
|
8
8
|
},
|
|
9
9
|
"keywords": [
|
|
10
10
|
"chat",
|
|
@@ -16,9 +16,13 @@
|
|
|
16
16
|
"shadow-dom",
|
|
17
17
|
"customer-support",
|
|
18
18
|
"live-chat",
|
|
19
|
-
"saas"
|
|
19
|
+
"saas",
|
|
20
|
+
"rtl",
|
|
21
|
+
"arabic",
|
|
22
|
+
"device-detection",
|
|
23
|
+
"zero-dependencies"
|
|
20
24
|
],
|
|
21
|
-
"author": "
|
|
25
|
+
"author": "mohamed64 <mohamed01140251843sayed@gmail.com>",
|
|
22
26
|
"license": "MIT",
|
|
23
27
|
"repository": {
|
|
24
28
|
"type": "git",
|
|
@@ -27,5 +31,8 @@
|
|
|
27
31
|
"files": [
|
|
28
32
|
"index.js",
|
|
29
33
|
"README.md"
|
|
30
|
-
]
|
|
34
|
+
],
|
|
35
|
+
"engines": {
|
|
36
|
+
"node": ">=12.0.0"
|
|
37
|
+
}
|
|
31
38
|
}
|