@jexity/chat-widget 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/LICENSE +21 -0
- package/README.md +57 -0
- package/dist/index.mjs +954 -0
- package/dist/index.mjs.map +1 -0
- package/dist/types/app.d.ts +5 -0
- package/dist/types/app.d.ts.map +1 -0
- package/dist/types/index.d.ts +18 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/widget-state.d.ts +2 -0
- package/dist/types/widget-state.d.ts.map +1 -0
- package/dist/widget.js +3 -0
- package/dist/widget.js.map +1 -0
- package/package.json +78 -0
package/package.json
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@jexity/chat-widget",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Embeddable AI chat widget by Jexity — add customer support chat to any website with a single script tag or npm install",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/widget.js",
|
|
7
|
+
"module": "./dist/index.mjs",
|
|
8
|
+
"types": "./dist/types/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": {
|
|
12
|
+
"types": "./dist/types/index.d.ts",
|
|
13
|
+
"default": "./dist/index.mjs"
|
|
14
|
+
},
|
|
15
|
+
"require": "./dist/widget.js"
|
|
16
|
+
},
|
|
17
|
+
"./widget.js": "./dist/widget.js"
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"dist/",
|
|
21
|
+
"README.md",
|
|
22
|
+
"LICENSE"
|
|
23
|
+
],
|
|
24
|
+
"publishConfig": {
|
|
25
|
+
"access": "public",
|
|
26
|
+
"registry": "https://registry.npmjs.org/"
|
|
27
|
+
},
|
|
28
|
+
"sideEffects": [
|
|
29
|
+
"./dist/widget.js"
|
|
30
|
+
],
|
|
31
|
+
"keywords": [
|
|
32
|
+
"chat",
|
|
33
|
+
"widget",
|
|
34
|
+
"chatbot",
|
|
35
|
+
"ai",
|
|
36
|
+
"customer-support",
|
|
37
|
+
"embeddable",
|
|
38
|
+
"preact",
|
|
39
|
+
"jexity"
|
|
40
|
+
],
|
|
41
|
+
"license": "MIT",
|
|
42
|
+
"repository": {
|
|
43
|
+
"type": "git",
|
|
44
|
+
"url": "https://github.com/jexity-team/jexity-chat-convex",
|
|
45
|
+
"directory": "apps/widget"
|
|
46
|
+
},
|
|
47
|
+
"homepage": "https://github.com/jexity-team/jexity-chat-convex/tree/main/apps/widget#readme",
|
|
48
|
+
"bugs": {
|
|
49
|
+
"url": "https://github.com/jexity-team/jexity-chat-convex/issues"
|
|
50
|
+
},
|
|
51
|
+
"scripts": {
|
|
52
|
+
"dev": "vite",
|
|
53
|
+
"build": "pnpm run build:iife && pnpm run build:esm && pnpm run build:types",
|
|
54
|
+
"build:iife": "cross-env BUILD_FORMAT=iife vite build",
|
|
55
|
+
"build:esm": "cross-env BUILD_FORMAT=esm vite build",
|
|
56
|
+
"build:types": "tsc --project tsconfig.build.json",
|
|
57
|
+
"serve": "vite preview",
|
|
58
|
+
"check-types": "tsc --noEmit",
|
|
59
|
+
"lint": "eslint .",
|
|
60
|
+
"prepublishOnly": "pnpm run build"
|
|
61
|
+
},
|
|
62
|
+
"dependencies": {
|
|
63
|
+
"@preact/signals": "^2.7.1",
|
|
64
|
+
"lucide-preact": "^0.563.0",
|
|
65
|
+
"preact": "^10.27.2"
|
|
66
|
+
},
|
|
67
|
+
"devDependencies": {
|
|
68
|
+
"@preact/preset-vite": "^2.10.2",
|
|
69
|
+
"@repo/eslint-config": "workspace:*",
|
|
70
|
+
"@repo/typescript-config": "workspace:*",
|
|
71
|
+
"@types/node": "^24.10.1",
|
|
72
|
+
"cross-env": "^10.1.0",
|
|
73
|
+
"eslint": "9.39.2",
|
|
74
|
+
"typescript": "~5.9.3",
|
|
75
|
+
"vite": "^7.3.1",
|
|
76
|
+
"vite-plugin-css-injected-by-js": "^3.5.2"
|
|
77
|
+
}
|
|
78
|
+
}
|