ai-chat-bot-interface 1.7.16 → 1.8.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.
Files changed (2) hide show
  1. package/dist/index.d.ts +9 -0
  2. package/package.json +3 -3
@@ -0,0 +1,9 @@
1
+ import { App, DefineComponent } from 'vue';
2
+
3
+ export const ChatUi: DefineComponent<any, any, any>;
4
+
5
+ declare const _default: {
6
+ install: (app: App) => void;
7
+ };
8
+
9
+ export default _default;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ai-chat-bot-interface",
3
3
  "private": false,
4
- "version": "1.7.16",
4
+ "version": "1.8.0",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
@@ -9,7 +9,8 @@
9
9
  "files": ["dist"],
10
10
  "scripts": {
11
11
  "dev": "vite",
12
- "build": "vite build",
12
+ "build": "vite build && npm run copy-types",
13
+ "copy-types": "node scripts/copy-types.js",
13
14
  "preview": "vite preview",
14
15
  "prettier:write": "prettier --write src",
15
16
  "prepublishOnly": "npm run build"
@@ -29,7 +30,6 @@
29
30
  "@vitejs/plugin-vue": "^5.2.1",
30
31
  "less": "^4.2.2",
31
32
  "prettier": "^2.6.2",
32
- "typescript": "^5.9.3",
33
33
  "vite": "^6.1.0"
34
34
  },
35
35
  "author": "lin_26",