@zabbu/chat-widget 0.9.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/package.json ADDED
@@ -0,0 +1,28 @@
1
+ {
2
+ "name": "@zabbu/chat-widget",
3
+ "version": "0.9.0",
4
+ "description": "Embeddable chat widget (loader.js + chat UI) for the chat portal backend (zabbu-chat-portal). Served standalone — see server.mjs and Dockerfile.",
5
+ "private": false,
6
+ "publishConfig": {
7
+ "access": "public"
8
+ },
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "main": "dist/loader.js",
13
+ "license": "MIT",
14
+ "scripts": {
15
+ "build": "node esbuild.config.mjs",
16
+ "dev": "node esbuild.config.mjs --watch",
17
+ "serve": "node server.mjs",
18
+ "start": "node server.mjs",
19
+ "prepublishOnly": "npm run build"
20
+ },
21
+ "dependencies": {
22
+ "socket.io-client": "^4.8.1"
23
+ },
24
+ "devDependencies": {
25
+ "esbuild": "^0.24.2",
26
+ "typescript": "^5.7.3"
27
+ }
28
+ }