@alfatech/livechat 2025.12.1-7.1 → 2026.2.2-3.2
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/dist/main.css +1 -1
- package/dist/main.js +31 -31
- package/package.json +12 -4
package/package.json
CHANGED
|
@@ -1,23 +1,31 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alfatech/livechat",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "v2026.02.23.2",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"apiURL": "https://api
|
|
7
|
-
"wsURL": "wss://api
|
|
6
|
+
"apiURL": "https://api.chatier.app",
|
|
7
|
+
"wsURL": "wss://api.chatier.app",
|
|
8
8
|
"files": [
|
|
9
9
|
"dist",
|
|
10
10
|
"README.md",
|
|
11
11
|
"component/chatier.js"
|
|
12
12
|
],
|
|
13
13
|
"main": "dist/widget.js",
|
|
14
|
+
"author": {
|
|
15
|
+
"name": "Uygar Öztürk Ceylan",
|
|
16
|
+
"email": "uygaroztcyln@gmail.com"
|
|
17
|
+
},
|
|
14
18
|
"scripts": {
|
|
15
19
|
"dev": "vite",
|
|
16
20
|
"dev2": "vite --config vite.config.2.ts",
|
|
17
21
|
"build": "tsc -b && vite build",
|
|
18
22
|
"lint": "biome lint --write",
|
|
19
23
|
"prepare": "husky",
|
|
20
|
-
"format": "biome format --write && yarn lint"
|
|
24
|
+
"format": "biome format --write && yarn lint",
|
|
25
|
+
"preview": "vite preview",
|
|
26
|
+
"build:mobile": "tsc -b && vite build --config vite.config.app.ts && mv dist-app/index-app.html dist-app/index.html",
|
|
27
|
+
"preview:mobile": "vite preview --config vite.config.app.ts --outDir dist-app",
|
|
28
|
+
"dev:mobile": "vite --config vite.config.app.ts"
|
|
21
29
|
},
|
|
22
30
|
"dependencies": {
|
|
23
31
|
"@headlessui/react": "^2.2.2",
|