@core-pilot/client-vue 0.0.1-beta.1
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 +14 -0
- package/dist/bubbleList.js +2 -0
- package/dist/bubbleList.js.map +1 -0
- package/dist/coreText.js +2 -0
- package/dist/coreText.js.map +1 -0
- package/dist/editorSender.js +4 -0
- package/dist/editorSender.js.map +1 -0
- package/dist/fileCard.js +2 -0
- package/dist/fileCard.js.map +1 -0
- package/dist/filePreview.js +57 -0
- package/dist/filePreview.js.map +1 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -0
- package/dist/xMarkdown.js +2 -0
- package/dist/xMarkdown.js.map +1 -0
- package/package.json +95 -0
package/package.json
ADDED
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@core-pilot/client-vue",
|
|
3
|
+
"version": "0.0.1-beta.1",
|
|
4
|
+
"lcapIdeVersion": "3.12",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.mjs",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist"
|
|
9
|
+
],
|
|
10
|
+
"publishConfig": {
|
|
11
|
+
"access": "public"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [
|
|
14
|
+
"Vue3"
|
|
15
|
+
],
|
|
16
|
+
"author": "",
|
|
17
|
+
"license": "ISC",
|
|
18
|
+
"dependencies": {
|
|
19
|
+
"@element-plus/icons-vue": "^2.3.2",
|
|
20
|
+
"@microsoft/fetch-event-source": "^2.0.1",
|
|
21
|
+
"@types/markdown-it": "^14.1.2",
|
|
22
|
+
"@types/rollup-plugin-peer-deps-external": "^2.2.6",
|
|
23
|
+
"@vueuse/core": "^14.0.0",
|
|
24
|
+
"chatarea": "^6.0.6",
|
|
25
|
+
"copy-to-clipboard": "^3.3.3",
|
|
26
|
+
"docx-preview": "^0.3.6",
|
|
27
|
+
"element-plus": "^2.11.2",
|
|
28
|
+
"katex": "^0.16.25",
|
|
29
|
+
"less": "^4.4.1",
|
|
30
|
+
"lodash": "^4.17.21",
|
|
31
|
+
"mark.js": "^8.11.1",
|
|
32
|
+
"markdown-it-emoji": "^3.0.0",
|
|
33
|
+
"markdown-it-multimd-table": "^4.2.3",
|
|
34
|
+
"pptx-preview": "^1.0.7",
|
|
35
|
+
"rehype-katex": "^7.0.1",
|
|
36
|
+
"rehype-raw": "^7.0.0",
|
|
37
|
+
"rehype-stringify": "^10.0.1",
|
|
38
|
+
"remark-breaks": "^4.0.0",
|
|
39
|
+
"remark-gemoji": "^8.0.0",
|
|
40
|
+
"remark-gfm": "^4.0.1",
|
|
41
|
+
"remark-math": "^6.0.0",
|
|
42
|
+
"remark-parse": "^11.0.0",
|
|
43
|
+
"remark-rehype": "^11.1.2",
|
|
44
|
+
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
45
|
+
"sass-embedded": "^1.92.1",
|
|
46
|
+
"unified": "^11.0.5",
|
|
47
|
+
"unplugin-element-plus": "^0.10.0",
|
|
48
|
+
"vite-plugin-css-injected-by-js": "^3.5.2",
|
|
49
|
+
"vite-plugin-dts": "^4.5.4",
|
|
50
|
+
"vue-element-plus-x": "^1.3.7",
|
|
51
|
+
"vue-pdf-embed": "^2.1.3"
|
|
52
|
+
},
|
|
53
|
+
"devDependencies": {
|
|
54
|
+
"@chromatic-com/storybook": "^3.2.2",
|
|
55
|
+
"@lcap/builder": "^1.6.1",
|
|
56
|
+
"@nasl/types": "^0.1.14",
|
|
57
|
+
"@storybook/addon-essentials": "^8.4.6",
|
|
58
|
+
"@storybook/addon-interactions": "^8.4.6",
|
|
59
|
+
"@storybook/addon-onboarding": "^8.4.6",
|
|
60
|
+
"@storybook/blocks": "^8.4.6",
|
|
61
|
+
"@storybook/test": "^8.4.6",
|
|
62
|
+
"@storybook/vue3": "^8.4.6",
|
|
63
|
+
"@storybook/vue3-vite": "^8.4.6",
|
|
64
|
+
"@vitejs/plugin-vue": "^5.2.1",
|
|
65
|
+
"@vitejs/plugin-vue-jsx": "^4.1.1",
|
|
66
|
+
"autoprefixer": "^10.4.16",
|
|
67
|
+
"fs-extra": "^11.2.0",
|
|
68
|
+
"lcap-ide-server-proxy": "^0.1.2-beta",
|
|
69
|
+
"storybook": "^8.4.6",
|
|
70
|
+
"typescript": "~5.6.2",
|
|
71
|
+
"vite": "^6.0.1",
|
|
72
|
+
"vitest": "^1.1.0",
|
|
73
|
+
"vue": "^3.5.13",
|
|
74
|
+
"vue-router": "^4.5.0",
|
|
75
|
+
"vue-tsc": "^2.1.10"
|
|
76
|
+
},
|
|
77
|
+
"peerDependencies": {
|
|
78
|
+
"vue": "^3.5.0",
|
|
79
|
+
"vue-router": "^4.5.0",
|
|
80
|
+
"element-plus": "^2.11.2",
|
|
81
|
+
"vue-element-plus-x": "^1.3.7"
|
|
82
|
+
},
|
|
83
|
+
"title": "AI 问答组件",
|
|
84
|
+
"description": "AI 问答组件",
|
|
85
|
+
"scripts": {
|
|
86
|
+
"dev": "npm run start",
|
|
87
|
+
"start": "storybook dev -p 8008",
|
|
88
|
+
"build": "vue-tsc -b && vite build",
|
|
89
|
+
"create": "lcap-scripts create",
|
|
90
|
+
"watch": "lcap-scripts watch",
|
|
91
|
+
"play": "lcap-scripts play",
|
|
92
|
+
"release": "lcap publish",
|
|
93
|
+
"test": "vitest"
|
|
94
|
+
}
|
|
95
|
+
}
|