gci-chatbot-ai 1.0.13 → 1.0.15
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/gci-chatbot-ai.js +1912 -1852
- package/dist/gci-chatbot-ai.umd.cjs +33 -43
- package/dist/src/components/ChatbotComponent.vue.d.ts +0 -9
- package/dist/style.css +1 -1
- package/package.json +68 -68
package/package.json
CHANGED
|
@@ -1,71 +1,71 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
2
|
+
"name": "gci-chatbot-ai",
|
|
3
|
+
"version": "1.0.15",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"files": [
|
|
6
|
+
"dist"
|
|
7
|
+
],
|
|
8
|
+
"main": "./dist/gci-chatbot-ai.umd.cjs",
|
|
9
|
+
"module": "./dist/gci-chatbot-ai.js",
|
|
10
|
+
"types": "./dist/main.d.ts",
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"import": "./dist/gci-chatbot-ai.js",
|
|
14
|
+
"require": "./dist/gci-chatbot-ai.umd.js",
|
|
15
|
+
"types": "./dist/lib/main.d.ts"
|
|
16
|
+
},
|
|
17
|
+
"./style.css": "./dist/style.css"
|
|
16
18
|
},
|
|
17
|
-
"
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
"
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
"
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
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
|
-
"author": "GCI",
|
|
70
|
-
"license": "MIT"
|
|
19
|
+
"scripts": {
|
|
20
|
+
"dev": "vite --host",
|
|
21
|
+
"build": "vite build && vue-tsc --emitDeclarationOnly",
|
|
22
|
+
"preview": "vite preview"
|
|
23
|
+
},
|
|
24
|
+
"dependencies": {
|
|
25
|
+
"@ai-sdk/vue": "^3.0.33",
|
|
26
|
+
"@primeuix/themes": "^2.0.3",
|
|
27
|
+
"ai": "^6.0.33",
|
|
28
|
+
"lucide-vue-next": "^0.562.0",
|
|
29
|
+
"primevue": "^4.5.4",
|
|
30
|
+
"sass": "^1.63.3",
|
|
31
|
+
"sass-loader": "^13.3.2",
|
|
32
|
+
"tailwindcss": "^3.4.0",
|
|
33
|
+
"vue": "^3.5.26",
|
|
34
|
+
"zod": "^4.3.5"
|
|
35
|
+
},
|
|
36
|
+
"devDependencies": {
|
|
37
|
+
"prettier": "^3.8.0",
|
|
38
|
+
"vite-plugin-dts": "^4.5.4",
|
|
39
|
+
"vite-plugin-vue-devtools": "^8.0.5",
|
|
40
|
+
"@tsconfig/node18": "^18.2.2",
|
|
41
|
+
"@types/jsdom": "^21.1.3",
|
|
42
|
+
"@types/node": "^18.18.5",
|
|
43
|
+
"@vitejs/plugin-vue": "^4.4.0",
|
|
44
|
+
"@vitejs/plugin-vue-jsx": "^3.0.2",
|
|
45
|
+
"@vue/test-utils": "^2.4.1",
|
|
46
|
+
"@vue/tsconfig": "^0.4.0",
|
|
47
|
+
"autoprefixer": "^10.4.16",
|
|
48
|
+
"jsdom": "^22.1.0",
|
|
49
|
+
"less": "^3.11.1",
|
|
50
|
+
"less-loader": "^11.1.3",
|
|
51
|
+
"npm-run-all2": "^6.1.1",
|
|
52
|
+
"postcss": "^8.4.32",
|
|
53
|
+
"sass": "^1.63.3",
|
|
54
|
+
"sass-loader": "^13.3.2",
|
|
55
|
+
"tailwindcss": "^3.3.6",
|
|
56
|
+
"typescript": "~5.2.0",
|
|
57
|
+
"vite": "^4.4.11",
|
|
58
|
+
"vite-plugin-pwa": "^0.13.3",
|
|
59
|
+
"vitest": "^0.34.6",
|
|
60
|
+
"vue-tsc": "^1.8.19"
|
|
61
|
+
},
|
|
62
|
+
"keywords": [
|
|
63
|
+
"vue",
|
|
64
|
+
"ai",
|
|
65
|
+
"chat",
|
|
66
|
+
"component",
|
|
67
|
+
"gci"
|
|
68
|
+
],
|
|
69
|
+
"author": "GCI",
|
|
70
|
+
"license": "MIT"
|
|
71
71
|
}
|