altio-chat 0.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 +58 -0
- package/dist/widget.js +367 -0
- package/package.json +55 -0
package/package.json
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "altio-chat",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Altio embeddable chat widget — single-file, Shadow-DOM isolated, loaded via <script> from a CDN.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist/widget.js"
|
|
8
|
+
],
|
|
9
|
+
"main": "dist/widget.js",
|
|
10
|
+
"unpkg": "dist/widget.js",
|
|
11
|
+
"jsdelivr": "dist/widget.js",
|
|
12
|
+
"exports": {
|
|
13
|
+
".": "./dist/widget.js"
|
|
14
|
+
},
|
|
15
|
+
"publishConfig": {
|
|
16
|
+
"access": "public"
|
|
17
|
+
},
|
|
18
|
+
"scripts": {
|
|
19
|
+
"dev": "vite",
|
|
20
|
+
"build": "tsc --noEmit && vite build",
|
|
21
|
+
"build:only": "vite build",
|
|
22
|
+
"typecheck": "tsc --noEmit",
|
|
23
|
+
"preview": "vite preview",
|
|
24
|
+
"prepublishOnly": "pnpm build"
|
|
25
|
+
},
|
|
26
|
+
"dependencies": {
|
|
27
|
+
"@phosphor-icons/react": "^2.1.10",
|
|
28
|
+
"@tanstack/react-query": "^5.90.2",
|
|
29
|
+
"axios": "^1.12.2",
|
|
30
|
+
"clsx": "^2.1.1",
|
|
31
|
+
"katex": "^0.16.25",
|
|
32
|
+
"react": "19.1.2",
|
|
33
|
+
"react-cookie": "^8.0.1",
|
|
34
|
+
"react-dom": "19.1.2",
|
|
35
|
+
"react-markdown": "^10.1.0",
|
|
36
|
+
"react-syntax-highlighter": "^16.1.0",
|
|
37
|
+
"rehype-katex": "^7.0.1",
|
|
38
|
+
"rehype-raw": "^7.0.0",
|
|
39
|
+
"remark-gfm": "^4.0.1",
|
|
40
|
+
"remark-math": "^6.0.0",
|
|
41
|
+
"tailwind-merge": "^3.3.1",
|
|
42
|
+
"zustand": "^5.0.8"
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@tailwindcss/postcss": "^4",
|
|
46
|
+
"@types/react": "^19",
|
|
47
|
+
"@types/react-dom": "^19",
|
|
48
|
+
"@types/react-syntax-highlighter": "^15.5.13",
|
|
49
|
+
"@vitejs/plugin-react": "^4.3.4",
|
|
50
|
+
"postcss": "^8.5.6",
|
|
51
|
+
"tailwindcss": "^4",
|
|
52
|
+
"typescript": "^5",
|
|
53
|
+
"vite": "^6.0.0"
|
|
54
|
+
}
|
|
55
|
+
}
|