-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.16 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
{
"name": "vue-chat-ai-plugin",
"version": "1.0.0",
"description": "A Vue 3 chat component plugin",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"keywords": [
"vue",
"chat",
"ai",
"component",
"plugin"
],
"author": "gxj199946",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gxj199946/vue-chat-plugin.git"
},
"bugs": {
"url": "https://github.com/gxj199946/vue-chat-plugin/issues"
},
"homepage": "https://github.com/gxj199946/vue-chat-plugin#readme",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"scripts": {
"build": "vite build"
},
"dependencies": {
"@microsoft/fetch-event-source": "^2.0.1",
"highlight.js": "^11.9.0",
"markdown-it": "^13.0.2",
"markdown-it-highlightjs": "^4.0.1"
},
"peerDependencies": {
"vue": "^3.3.0"
},
"devDependencies": {
"@types/markdown-it": "^13.0.7",
"@types/node": "^22.10.1",
"@vitejs/plugin-vue": "^4.6.2",
"sass": "^1.81.1",
"typescript": "^5.0.0",
"vite": "^5.4.11",
"vite-plugin-dts": "^3.9.1",
"vue": "^3.3.0"
}
}