gci-chatbot-ai 1.0.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 +19 -0
- package/dist/gci-chatbot-ai.js +6852 -0
- package/dist/gci-chatbot-ai.umd.cjs +93 -0
- package/dist/lib/main.d.ts +2 -0
- package/dist/src/components/ChatbotComponent.vue.d.ts +32 -0
- package/dist/style.css +1 -0
- package/dist/vite.svg +1 -0
- package/package.json +73 -0
package/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
## Project Setup
|
|
2
|
+
|
|
3
|
+
```sh
|
|
4
|
+
npm install
|
|
5
|
+
```
|
|
6
|
+
|
|
7
|
+
### Compile and Hot-Reload for Development
|
|
8
|
+
|
|
9
|
+
```sh
|
|
10
|
+
npm run dev
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
### Type-Check, Compile and Minify for Production
|
|
14
|
+
|
|
15
|
+
```sh
|
|
16
|
+
npm run build
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
### Run Unit Tests with [Vitest](https://vitest.dev/)
|