@realtimexsco/live-chat 1.4.16 → 1.4.17
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/PERMISSIONS.md +236 -0
- package/README.md +26 -18
- package/dist/index.cjs +64 -19
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +42 -1
- package/dist/index.d.ts +42 -1
- package/dist/index.mjs +63 -20
- package/dist/index.mjs.map +1 -1
- package/package.json +15 -10
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@realtimexsco/live-chat",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.17",
|
|
4
4
|
"types": "./dist/index.d.ts",
|
|
5
5
|
"main": "./dist/index.cjs",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
7
7
|
"files": [
|
|
8
8
|
"dist",
|
|
9
9
|
"LICENSE",
|
|
10
|
-
"README.md"
|
|
10
|
+
"README.md",
|
|
11
|
+
"PERMISSIONS.md"
|
|
11
12
|
],
|
|
12
13
|
"exports": {
|
|
13
14
|
".": {
|
|
@@ -97,22 +98,26 @@
|
|
|
97
98
|
},
|
|
98
99
|
"packageManager": "pnpm@10.33.2",
|
|
99
100
|
"keywords": [
|
|
100
|
-
"
|
|
101
|
-
"react-component",
|
|
102
|
-
"nextjs",
|
|
103
|
-
"chat",
|
|
101
|
+
"realtimex",
|
|
104
102
|
"live-chat",
|
|
103
|
+
"chat",
|
|
104
|
+
"messaging",
|
|
105
105
|
"realtime",
|
|
106
106
|
"real-time",
|
|
107
|
-
"
|
|
107
|
+
"react",
|
|
108
|
+
"react-component",
|
|
109
|
+
"nextjs",
|
|
110
|
+
"typescript",
|
|
108
111
|
"socket.io",
|
|
109
112
|
"websocket",
|
|
113
|
+
"dm",
|
|
114
|
+
"group-chat",
|
|
115
|
+
"push-notifications",
|
|
110
116
|
"zustand",
|
|
111
117
|
"tailwindcss",
|
|
112
|
-
"ui"
|
|
113
|
-
"realtimex"
|
|
118
|
+
"chat-ui"
|
|
114
119
|
],
|
|
115
120
|
"author": "RealtimeX",
|
|
116
121
|
"license": "MIT",
|
|
117
|
-
"description": "Drop-in real-time chat UI for React and Next.js — DMs, groups, reactions, replies, forwarding, attachments, and
|
|
122
|
+
"description": "Drop-in real-time chat UI for React and Next.js — DMs, groups, reactions, replies, forwarding, attachments, push notifications, and admin permissions."
|
|
118
123
|
}
|