ai-chat-bot-interface 1.7.13 → 1.7.14
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/index.css +1 -1
- package/dist/index.mjs +18 -13
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +3 -3
- package/dist/index.umd.js.map +1 -1
- package/package.json +12 -4
- package/dist/index.d.ts +0 -11
package/package.json
CHANGED
|
@@ -1,15 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ai-chat-bot-interface",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.14",
|
|
4
4
|
"main": "./dist/index.umd.js",
|
|
5
5
|
"module": "./dist/index.es.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
|
-
"files": [
|
|
7
|
+
"files": [
|
|
8
|
+
"dist",
|
|
9
|
+
"package.json"
|
|
10
|
+
],
|
|
8
11
|
"peerDependencies": {
|
|
9
12
|
"vue": "^3.5.13"
|
|
10
13
|
},
|
|
11
14
|
"devDependencies": {
|
|
12
15
|
"@vitejs/plugin-vue": "^5.2.1",
|
|
16
|
+
"esbuild": "^0.27.4",
|
|
13
17
|
"less": "^4.2.2",
|
|
14
18
|
"markdown-it": "^14.1.0",
|
|
15
19
|
"prettier": "^2.6.2",
|
|
@@ -20,11 +24,15 @@
|
|
|
20
24
|
},
|
|
21
25
|
"scripts": {
|
|
22
26
|
"dev": "vite",
|
|
23
|
-
"build": "vite build && node -
|
|
27
|
+
"build": "vite build && node scripts/inline-styles.mjs",
|
|
24
28
|
"preview": "vite preview",
|
|
25
29
|
"prettier:write": "prettier --write src"
|
|
26
30
|
},
|
|
27
|
-
"keywords": [
|
|
31
|
+
"keywords": [
|
|
32
|
+
"vue3",
|
|
33
|
+
"ai",
|
|
34
|
+
"bot"
|
|
35
|
+
],
|
|
28
36
|
"author": "lin_26",
|
|
29
37
|
"license": "MIT"
|
|
30
38
|
}
|
package/dist/index.d.ts
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { App, Plugin, DefineComponent } from 'vue';
|
|
2
|
-
|
|
3
|
-
declare const ChatUi: DefineComponent<{}, {}, any>;
|
|
4
|
-
|
|
5
|
-
/** 插件类型声明 */
|
|
6
|
-
declare const AiChatBotInterface: Plugin & {
|
|
7
|
-
install(app: App): void;
|
|
8
|
-
};
|
|
9
|
-
|
|
10
|
-
export { ChatUi };
|
|
11
|
-
export default AiChatBotInterface;
|