chatnest 3.4.5 → 3.4.7
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 +2 -2
- package/package.json +68 -385
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@ A lightweight, customizable AI chat widget. Drop it into any website in minutes.
|
|
|
12
12
|
|
|
13
13
|
**CDN**
|
|
14
14
|
```html
|
|
15
|
-
<script src="https://cdn.jsdelivr.net/npm/chatnest@3.4.
|
|
15
|
+
<script src="https://cdn.jsdelivr.net/npm/chatnest@3.4.7/dist/chatnest.min.js"></script>
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
**npm**
|
|
@@ -28,7 +28,7 @@ import Chatnest from 'chatnest';
|
|
|
28
28
|
## Quick Start
|
|
29
29
|
|
|
30
30
|
```html
|
|
31
|
-
<script src="https://cdn.jsdelivr.net/npm/chatnest@3.4.
|
|
31
|
+
<script src="https://cdn.jsdelivr.net/npm/chatnest@3.4.7/dist/chatnest.min.js"></script>
|
|
32
32
|
<script>
|
|
33
33
|
document.addEventListener('DOMContentLoaded', () => {
|
|
34
34
|
new Chatnest({
|
package/package.json
CHANGED
|
@@ -1,385 +1,68 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "chatnest",
|
|
3
|
-
"version": "3.4.
|
|
4
|
-
"description": "A lightweight, customizable, and responsive chat widget for modern web applications.",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"chat",
|
|
7
|
-
"widget",
|
|
8
|
-
"chatbot",
|
|
9
|
-
"ai",
|
|
10
|
-
"assistant"
|
|
11
|
-
],
|
|
12
|
-
"homepage": "https://github.com/Pro-Sifat-Hasan/chatnest#readme",
|
|
13
|
-
"bugs": {
|
|
14
|
-
"url": "https://github.com/Pro-Sifat-Hasan/chatnest/issues"
|
|
15
|
-
},
|
|
16
|
-
"repository": {
|
|
17
|
-
"type": "git",
|
|
18
|
-
"url": "git+https://github.com/Pro-Sifat-Hasan/chatnest.git"
|
|
19
|
-
},
|
|
20
|
-
"license": "MIT",
|
|
21
|
-
"author": "Sifat Hasan",
|
|
22
|
-
"type": "commonjs",
|
|
23
|
-
"main": "dist/chatnest.min.js",
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
"
|
|
31
|
-
|
|
32
|
-
"scripts": {
|
|
33
|
-
"build": "webpack --mode production",
|
|
34
|
-
"dev": "webpack --mode development --watch",
|
|
35
|
-
"prepare": "npm run build",
|
|
36
|
-
"lint": "eslint .",
|
|
37
|
-
"lint:fix": "eslint . --fix",
|
|
38
|
-
"test": "jest",
|
|
39
|
-
"test:coverage": "jest --coverage",
|
|
40
|
-
"check": "npm run lint && npm run test && npm run build"
|
|
41
|
-
},
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
"caniuse-lite": "^1.0.30001675",
|
|
70
|
-
"chalk": "^4.1.2",
|
|
71
|
-
"char-regex": "^1.0.2",
|
|
72
|
-
"chrome-trace-event": "^1.0.4",
|
|
73
|
-
"ci-info": "^4.4.0",
|
|
74
|
-
"cjs-module-lexer": "^2.2.0",
|
|
75
|
-
"cliui": "^8.0.1",
|
|
76
|
-
"clone-deep": "^4.0.1",
|
|
77
|
-
"co": "^4.6.0",
|
|
78
|
-
"collect-v8-coverage": "^1.0.3",
|
|
79
|
-
"color-convert": "^2.0.1",
|
|
80
|
-
"color-name": "^1.1.4",
|
|
81
|
-
"colorette": "^2.0.20",
|
|
82
|
-
"commander": "^2.20.3",
|
|
83
|
-
"common-path-prefix": "^3.0.0",
|
|
84
|
-
"concat-map": "^0.0.1",
|
|
85
|
-
"convert-source-map": "^2.0.0",
|
|
86
|
-
"core-js-compat": "^3.39.0",
|
|
87
|
-
"cross-spawn": "^7.0.6",
|
|
88
|
-
"cssesc": "^3.0.0",
|
|
89
|
-
"cssstyle": "^4.6.0",
|
|
90
|
-
"data-urls": "^5.0.0",
|
|
91
|
-
"debug": "^4.4.3",
|
|
92
|
-
"decimal.js": "^10.6.0",
|
|
93
|
-
"dedent": "^1.7.2",
|
|
94
|
-
"deep-is": "^0.1.4",
|
|
95
|
-
"deepmerge": "^4.3.1",
|
|
96
|
-
"detect-newline": "^3.1.0",
|
|
97
|
-
"eastasianwidth": "^0.2.0",
|
|
98
|
-
"electron-to-chromium": "^1.5.49",
|
|
99
|
-
"emittery": "^0.13.1",
|
|
100
|
-
"emoji-regex": "^9.2.2",
|
|
101
|
-
"enhanced-resolve": "^5.17.1",
|
|
102
|
-
"entities": "^6.0.1",
|
|
103
|
-
"envinfo": "^7.14.0",
|
|
104
|
-
"error-ex": "^1.3.4",
|
|
105
|
-
"es-module-lexer": "^1.5.4",
|
|
106
|
-
"escalade": "^3.2.0",
|
|
107
|
-
"escape-string-regexp": "^2.0.0",
|
|
108
|
-
"eslint-scope": "^5.1.1",
|
|
109
|
-
"eslint-visitor-keys": "^4.2.1",
|
|
110
|
-
"espree": "^10.4.0",
|
|
111
|
-
"esprima": "^4.0.1",
|
|
112
|
-
"esquery": "^1.7.0",
|
|
113
|
-
"esrecurse": "^4.3.0",
|
|
114
|
-
"estraverse": "^4.3.0",
|
|
115
|
-
"esutils": "^2.0.3",
|
|
116
|
-
"events": "^3.3.0",
|
|
117
|
-
"execa": "^5.1.1",
|
|
118
|
-
"exit-x": "^0.2.2",
|
|
119
|
-
"expect": "^30.3.0",
|
|
120
|
-
"fast-deep-equal": "^3.1.3",
|
|
121
|
-
"fast-json-stable-stringify": "^2.1.0",
|
|
122
|
-
"fast-levenshtein": "^2.0.6",
|
|
123
|
-
"fast-uri": "^3.0.3",
|
|
124
|
-
"fastest-levenshtein": "^1.0.16",
|
|
125
|
-
"fb-watchman": "^2.0.2",
|
|
126
|
-
"fdir": "^6.5.0",
|
|
127
|
-
"file-entry-cache": "^8.0.0",
|
|
128
|
-
"find-cache-dir": "^4.0.0",
|
|
129
|
-
"find-up": "^6.3.0",
|
|
130
|
-
"flat": "^5.0.2",
|
|
131
|
-
"flat-cache": "^4.0.1",
|
|
132
|
-
"flatted": "^3.4.2",
|
|
133
|
-
"foreground-child": "^3.3.1",
|
|
134
|
-
"fs.realpath": "^1.0.0",
|
|
135
|
-
"function-bind": "^1.1.2",
|
|
136
|
-
"gensync": "^1.0.0-beta.2",
|
|
137
|
-
"get-caller-file": "^2.0.5",
|
|
138
|
-
"get-package-type": "^0.1.0",
|
|
139
|
-
"get-stream": "^6.0.1",
|
|
140
|
-
"glob": "^10.5.0",
|
|
141
|
-
"glob-parent": "^6.0.2",
|
|
142
|
-
"glob-to-regexp": "^0.4.1",
|
|
143
|
-
"graceful-fs": "^4.2.11",
|
|
144
|
-
"has-flag": "^4.0.0",
|
|
145
|
-
"hasown": "^2.0.2",
|
|
146
|
-
"html-encoding-sniffer": "^4.0.0",
|
|
147
|
-
"html-escaper": "^2.0.2",
|
|
148
|
-
"http-proxy-agent": "^7.0.2",
|
|
149
|
-
"https-proxy-agent": "^7.0.6",
|
|
150
|
-
"human-signals": "^2.1.0",
|
|
151
|
-
"iconv-lite": "^0.6.3",
|
|
152
|
-
"icss-utils": "^5.1.0",
|
|
153
|
-
"ignore": "^5.3.2",
|
|
154
|
-
"import-fresh": "^3.3.1",
|
|
155
|
-
"import-local": "^3.2.0",
|
|
156
|
-
"imurmurhash": "^0.1.4",
|
|
157
|
-
"inflight": "^1.0.6",
|
|
158
|
-
"inherits": "^2.0.4",
|
|
159
|
-
"interpret": "^3.1.1",
|
|
160
|
-
"is-arrayish": "^0.2.1",
|
|
161
|
-
"is-core-module": "^2.15.1",
|
|
162
|
-
"is-extglob": "^2.1.1",
|
|
163
|
-
"is-fullwidth-code-point": "^3.0.0",
|
|
164
|
-
"is-generator-fn": "^2.1.0",
|
|
165
|
-
"is-glob": "^4.0.3",
|
|
166
|
-
"is-plain-object": "^2.0.4",
|
|
167
|
-
"is-potential-custom-element-name": "^1.0.1",
|
|
168
|
-
"is-stream": "^2.0.1",
|
|
169
|
-
"isexe": "^2.0.0",
|
|
170
|
-
"isobject": "^3.0.1",
|
|
171
|
-
"istanbul-lib-coverage": "^3.2.2",
|
|
172
|
-
"istanbul-lib-instrument": "^6.0.3",
|
|
173
|
-
"istanbul-lib-report": "^3.0.1",
|
|
174
|
-
"istanbul-lib-source-maps": "^5.0.6",
|
|
175
|
-
"istanbul-reports": "^3.2.0",
|
|
176
|
-
"jackspeak": "^3.4.3",
|
|
177
|
-
"jest-changed-files": "^30.3.0",
|
|
178
|
-
"jest-circus": "^30.3.0",
|
|
179
|
-
"jest-cli": "^30.3.0",
|
|
180
|
-
"jest-config": "^30.3.0",
|
|
181
|
-
"jest-diff": "^30.3.0",
|
|
182
|
-
"jest-docblock": "^30.2.0",
|
|
183
|
-
"jest-each": "^30.3.0",
|
|
184
|
-
"jest-environment-node": "^30.3.0",
|
|
185
|
-
"jest-haste-map": "^30.3.0",
|
|
186
|
-
"jest-leak-detector": "^30.3.0",
|
|
187
|
-
"jest-matcher-utils": "^30.3.0",
|
|
188
|
-
"jest-message-util": "^30.3.0",
|
|
189
|
-
"jest-mock": "^30.3.0",
|
|
190
|
-
"jest-pnp-resolver": "^1.2.3",
|
|
191
|
-
"jest-regex-util": "^30.0.1",
|
|
192
|
-
"jest-resolve": "^30.3.0",
|
|
193
|
-
"jest-resolve-dependencies": "^30.3.0",
|
|
194
|
-
"jest-runner": "^30.3.0",
|
|
195
|
-
"jest-runtime": "^30.3.0",
|
|
196
|
-
"jest-snapshot": "^30.3.0",
|
|
197
|
-
"jest-util": "^30.3.0",
|
|
198
|
-
"jest-validate": "^30.3.0",
|
|
199
|
-
"jest-watcher": "^30.3.0",
|
|
200
|
-
"jest-worker": "^27.5.1",
|
|
201
|
-
"js-tokens": "^4.0.0",
|
|
202
|
-
"js-yaml": "^3.14.2",
|
|
203
|
-
"jsdom": "^26.1.0",
|
|
204
|
-
"jsesc": "^3.0.2",
|
|
205
|
-
"json-buffer": "^3.0.1",
|
|
206
|
-
"json-parse-even-better-errors": "^2.3.1",
|
|
207
|
-
"json-schema-traverse": "^1.0.0",
|
|
208
|
-
"json-stable-stringify-without-jsonify": "^1.0.1",
|
|
209
|
-
"json5": "^2.2.3",
|
|
210
|
-
"keyv": "^4.5.4",
|
|
211
|
-
"kind-of": "^6.0.3",
|
|
212
|
-
"leven": "^3.1.0",
|
|
213
|
-
"levn": "^0.4.1",
|
|
214
|
-
"lines-and-columns": "^1.2.4",
|
|
215
|
-
"loader-runner": "^4.3.0",
|
|
216
|
-
"locate-path": "^7.2.0",
|
|
217
|
-
"lodash.debounce": "^4.0.8",
|
|
218
|
-
"lodash.merge": "^4.6.2",
|
|
219
|
-
"lru-cache": "^5.1.1",
|
|
220
|
-
"make-dir": "^4.0.0",
|
|
221
|
-
"makeerror": "^1.0.12",
|
|
222
|
-
"merge-stream": "^2.0.0",
|
|
223
|
-
"mime-db": "^1.52.0",
|
|
224
|
-
"mime-types": "^2.1.35",
|
|
225
|
-
"mimic-fn": "^2.1.0",
|
|
226
|
-
"minimatch": "^9.0.9",
|
|
227
|
-
"minipass": "^7.1.3",
|
|
228
|
-
"ms": "^2.1.3",
|
|
229
|
-
"nanoid": "^3.3.11",
|
|
230
|
-
"napi-postinstall": "^0.3.4",
|
|
231
|
-
"natural-compare": "^1.4.0",
|
|
232
|
-
"neo-async": "^2.6.2",
|
|
233
|
-
"node-int64": "^0.4.0",
|
|
234
|
-
"node-releases": "^2.0.18",
|
|
235
|
-
"normalize-path": "^3.0.0",
|
|
236
|
-
"npm-run-path": "^4.0.1",
|
|
237
|
-
"nwsapi": "^2.2.23",
|
|
238
|
-
"once": "^1.4.0",
|
|
239
|
-
"onetime": "^5.1.2",
|
|
240
|
-
"optionator": "^0.9.4",
|
|
241
|
-
"p-limit": "^4.0.0",
|
|
242
|
-
"p-locate": "^6.0.0",
|
|
243
|
-
"p-try": "^2.2.0",
|
|
244
|
-
"package-json-from-dist": "^1.0.1",
|
|
245
|
-
"parent-module": "^1.0.1",
|
|
246
|
-
"parse-json": "^5.2.0",
|
|
247
|
-
"parse5": "^7.3.0",
|
|
248
|
-
"path-exists": "^5.0.0",
|
|
249
|
-
"path-is-absolute": "^1.0.1",
|
|
250
|
-
"path-key": "^3.1.1",
|
|
251
|
-
"path-parse": "^1.0.7",
|
|
252
|
-
"path-scurry": "^1.11.1",
|
|
253
|
-
"picocolors": "^1.1.1",
|
|
254
|
-
"picomatch": "^4.0.4",
|
|
255
|
-
"pirates": "^4.0.7",
|
|
256
|
-
"pkg-dir": "^7.0.0",
|
|
257
|
-
"postcss": "^8.4.47",
|
|
258
|
-
"postcss-modules-extract-imports": "^3.1.0",
|
|
259
|
-
"postcss-modules-local-by-default": "^4.0.5",
|
|
260
|
-
"postcss-modules-scope": "^3.2.0",
|
|
261
|
-
"postcss-modules-values": "^4.0.0",
|
|
262
|
-
"postcss-selector-parser": "^6.1.2",
|
|
263
|
-
"postcss-value-parser": "^4.2.0",
|
|
264
|
-
"prelude-ls": "^1.2.1",
|
|
265
|
-
"pretty-format": "^30.3.0",
|
|
266
|
-
"punycode": "^2.3.1",
|
|
267
|
-
"pure-rand": "^7.0.1",
|
|
268
|
-
"randombytes": "^2.1.0",
|
|
269
|
-
"react-is": "^18.3.1",
|
|
270
|
-
"rechoir": "^0.8.0",
|
|
271
|
-
"regenerate": "^1.4.2",
|
|
272
|
-
"regenerate-unicode-properties": "^10.2.0",
|
|
273
|
-
"regenerator-transform": "^0.15.2",
|
|
274
|
-
"regexpu-core": "^6.1.1",
|
|
275
|
-
"regjsgen": "^0.8.0",
|
|
276
|
-
"regjsparser": "^0.11.2",
|
|
277
|
-
"require-directory": "^2.1.1",
|
|
278
|
-
"require-from-string": "^2.0.2",
|
|
279
|
-
"resolve": "^1.22.8",
|
|
280
|
-
"resolve-cwd": "^3.0.0",
|
|
281
|
-
"resolve-from": "^5.0.0",
|
|
282
|
-
"rrweb-cssom": "^0.8.0",
|
|
283
|
-
"safe-buffer": "^5.2.1",
|
|
284
|
-
"safer-buffer": "^2.1.2",
|
|
285
|
-
"saxes": "^6.0.0",
|
|
286
|
-
"schema-utils": "^4.2.0",
|
|
287
|
-
"semver": "^6.3.1",
|
|
288
|
-
"serialize-javascript": "^6.0.2",
|
|
289
|
-
"shallow-clone": "^3.0.1",
|
|
290
|
-
"shebang-command": "^2.0.0",
|
|
291
|
-
"shebang-regex": "^3.0.0",
|
|
292
|
-
"signal-exit": "^4.1.0",
|
|
293
|
-
"slash": "^3.0.0",
|
|
294
|
-
"source-map": "^0.6.1",
|
|
295
|
-
"source-map-js": "^1.2.1",
|
|
296
|
-
"source-map-support": "^0.5.21",
|
|
297
|
-
"sprintf-js": "^1.0.3",
|
|
298
|
-
"stack-utils": "^2.0.6",
|
|
299
|
-
"string-length": "^4.0.2",
|
|
300
|
-
"string-width": "^5.1.2",
|
|
301
|
-
"string-width-cjs": "^4.2.3",
|
|
302
|
-
"strip-ansi": "^7.2.0",
|
|
303
|
-
"strip-ansi-cjs": "^6.0.1",
|
|
304
|
-
"strip-bom": "^4.0.0",
|
|
305
|
-
"strip-final-newline": "^2.0.0",
|
|
306
|
-
"strip-json-comments": "^3.1.1",
|
|
307
|
-
"supports-color": "^8.1.1",
|
|
308
|
-
"supports-preserve-symlinks-flag": "^1.0.0",
|
|
309
|
-
"symbol-tree": "^3.2.4",
|
|
310
|
-
"synckit": "^0.11.12",
|
|
311
|
-
"tapable": "^2.2.1",
|
|
312
|
-
"terser": "^5.36.0",
|
|
313
|
-
"test-exclude": "^6.0.0",
|
|
314
|
-
"tinyglobby": "^0.2.15",
|
|
315
|
-
"tldts": "^6.1.86",
|
|
316
|
-
"tldts-core": "^6.1.86",
|
|
317
|
-
"tmpl": "^1.0.5",
|
|
318
|
-
"tough-cookie": "^5.1.2",
|
|
319
|
-
"tr46": "^5.1.1",
|
|
320
|
-
"ts-api-utils": "^2.5.0",
|
|
321
|
-
"type-check": "^0.4.0",
|
|
322
|
-
"type-detect": "^4.0.8",
|
|
323
|
-
"type-fest": "^0.21.3",
|
|
324
|
-
"undici-types": "^6.19.8",
|
|
325
|
-
"unicode-canonical-property-names-ecmascript": "^2.0.1",
|
|
326
|
-
"unicode-match-property-ecmascript": "^2.0.0",
|
|
327
|
-
"unicode-match-property-value-ecmascript": "^2.2.0",
|
|
328
|
-
"unicode-property-aliases-ecmascript": "^2.1.0",
|
|
329
|
-
"unrs-resolver": "^1.11.1",
|
|
330
|
-
"update-browserslist-db": "^1.1.1",
|
|
331
|
-
"uri-js": "^4.4.1",
|
|
332
|
-
"util-deprecate": "^1.0.2",
|
|
333
|
-
"v8-to-istanbul": "^9.3.0",
|
|
334
|
-
"w3c-xmlserializer": "^5.0.0",
|
|
335
|
-
"walker": "^1.0.8",
|
|
336
|
-
"watchpack": "^2.4.2",
|
|
337
|
-
"webidl-conversions": "^7.0.0",
|
|
338
|
-
"webpack-merge": "^5.10.0",
|
|
339
|
-
"webpack-sources": "^3.2.3",
|
|
340
|
-
"whatwg-encoding": "^3.1.1",
|
|
341
|
-
"whatwg-mimetype": "^4.0.0",
|
|
342
|
-
"whatwg-url": "^14.2.0",
|
|
343
|
-
"which": "^2.0.2",
|
|
344
|
-
"wildcard": "^2.0.1",
|
|
345
|
-
"word-wrap": "^1.2.5",
|
|
346
|
-
"wrap-ansi": "^8.1.0",
|
|
347
|
-
"wrap-ansi-cjs": "^7.0.0",
|
|
348
|
-
"wrappy": "^1.0.2",
|
|
349
|
-
"write-file-atomic": "^5.0.1",
|
|
350
|
-
"ws": "^8.20.0",
|
|
351
|
-
"xml-name-validator": "^5.0.0",
|
|
352
|
-
"xmlchars": "^2.2.0",
|
|
353
|
-
"y18n": "^5.0.8",
|
|
354
|
-
"yallist": "^3.1.1",
|
|
355
|
-
"yargs": "^17.7.2",
|
|
356
|
-
"yargs-parser": "^21.1.1",
|
|
357
|
-
"yocto-queue": "^1.1.1"
|
|
358
|
-
},
|
|
359
|
-
"devDependencies": {
|
|
360
|
-
"@babel/core": "^7.23.0",
|
|
361
|
-
"@babel/preset-env": "^7.22.20",
|
|
362
|
-
"@babel/preset-typescript": "^7.28.5",
|
|
363
|
-
"@eslint/js": "^9.0.0",
|
|
364
|
-
"@jest/globals": "^30.3.0",
|
|
365
|
-
"@types/jest": "^30.0.0",
|
|
366
|
-
"@typescript-eslint/eslint-plugin": "^8.58.0",
|
|
367
|
-
"@typescript-eslint/parser": "^8.58.0",
|
|
368
|
-
"babel-loader": "^9.1.3",
|
|
369
|
-
"css-loader": "^6.8.1",
|
|
370
|
-
"eslint": "^9.0.0",
|
|
371
|
-
"eslint-config-prettier": "^9.0.0",
|
|
372
|
-
"globals": "^15.0.0",
|
|
373
|
-
"jest": "^30.3.0",
|
|
374
|
-
"jest-environment-jsdom": "^30.3.0",
|
|
375
|
-
"marked": "^9.1.6",
|
|
376
|
-
"prettier": "^3.0.0",
|
|
377
|
-
"style-loader": "^3.3.3",
|
|
378
|
-
"terser-webpack-plugin": "^5.3.9",
|
|
379
|
-
"typescript": "^6.0.2",
|
|
380
|
-
"webpack": "^5.88.2",
|
|
381
|
-
"webpack-cli": "^5.1.4"
|
|
382
|
-
},
|
|
383
|
-
"unpkg": "dist/chatnest.min.js",
|
|
384
|
-
"jsdelivr": "dist/chatnest.min.js"
|
|
385
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "chatnest",
|
|
3
|
+
"version": "3.4.7",
|
|
4
|
+
"description": "A lightweight, customizable, and responsive chat widget for modern web applications.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"chat",
|
|
7
|
+
"widget",
|
|
8
|
+
"chatbot",
|
|
9
|
+
"ai",
|
|
10
|
+
"assistant"
|
|
11
|
+
],
|
|
12
|
+
"homepage": "https://github.com/Pro-Sifat-Hasan/chatnest#readme",
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/Pro-Sifat-Hasan/chatnest/issues"
|
|
15
|
+
},
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "git+https://github.com/Pro-Sifat-Hasan/chatnest.git"
|
|
19
|
+
},
|
|
20
|
+
"license": "MIT",
|
|
21
|
+
"author": "Sifat Hasan",
|
|
22
|
+
"type": "commonjs",
|
|
23
|
+
"main": "dist/chatnest.min.js",
|
|
24
|
+
"files": [
|
|
25
|
+
"dist/",
|
|
26
|
+
"README.md",
|
|
27
|
+
"LICENSE"
|
|
28
|
+
],
|
|
29
|
+
"directories": {
|
|
30
|
+
"test": "tests"
|
|
31
|
+
},
|
|
32
|
+
"scripts": {
|
|
33
|
+
"build": "webpack --mode production",
|
|
34
|
+
"dev": "webpack --mode development --watch",
|
|
35
|
+
"prepare": "npm run build",
|
|
36
|
+
"lint": "eslint .",
|
|
37
|
+
"lint:fix": "eslint . --fix",
|
|
38
|
+
"test": "jest",
|
|
39
|
+
"test:coverage": "jest --coverage",
|
|
40
|
+
"check": "npm run lint && npm run test && npm run build"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@babel/core": "^7.23.0",
|
|
44
|
+
"@babel/preset-env": "^7.22.20",
|
|
45
|
+
"@babel/preset-typescript": "^7.28.5",
|
|
46
|
+
"@eslint/js": "^9.0.0",
|
|
47
|
+
"@jest/globals": "^30.3.0",
|
|
48
|
+
"@types/jest": "^30.0.0",
|
|
49
|
+
"@typescript-eslint/eslint-plugin": "^8.58.0",
|
|
50
|
+
"@typescript-eslint/parser": "^8.58.0",
|
|
51
|
+
"babel-loader": "^9.1.3",
|
|
52
|
+
"css-loader": "^6.8.1",
|
|
53
|
+
"eslint": "^9.0.0",
|
|
54
|
+
"eslint-config-prettier": "^9.0.0",
|
|
55
|
+
"globals": "^15.0.0",
|
|
56
|
+
"jest": "^30.3.0",
|
|
57
|
+
"jest-environment-jsdom": "^30.3.0",
|
|
58
|
+
"marked": "^9.1.6",
|
|
59
|
+
"prettier": "^3.0.0",
|
|
60
|
+
"style-loader": "^3.3.3",
|
|
61
|
+
"terser-webpack-plugin": "^5.3.9",
|
|
62
|
+
"typescript": "^6.0.2",
|
|
63
|
+
"webpack": "^5.88.2",
|
|
64
|
+
"webpack-cli": "^5.1.4"
|
|
65
|
+
},
|
|
66
|
+
"unpkg": "dist/chatnest.min.js",
|
|
67
|
+
"jsdelivr": "dist/chatnest.min.js"
|
|
68
|
+
}
|