forked from opentiny/tiny-robot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.47 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@opentiny/tiny-robot",
"version": "0.5.0",
"license": "MIT",
"description": "TinyRobot 是一个 AI 对话组件库,提供了丰富的 AI 交互组件,助力开发者快速构建企业级 AI 应用;同时也是一个智能助手,支持普通 AI 问答、也支持集成 MCP Server,让 AI 真正帮人“干活”。",
"homepage": "https://docs.opentiny.design/tiny-robot/",
"repository": {
"type": "git",
"url": "git+https://github.com/opentiny/tiny-robot.git"
},
"bugs": {
"url": "https://github.com/opentiny/tiny-robot/issues"
},
"keywords": [
"vue",
"vue3",
"vue-components",
"component-library",
"ai",
"ai-components",
"chat",
"chat-ui",
"chatbot",
"llm",
"openai",
"assistant",
"streaming",
"conversation",
"tiny-robot",
"opentiny"
],
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"sideEffects": ["**/*.css"],
"files": [
"dist",
"README*"
],
"scripts": {
"dev": "vue-tsc && vite build --watch",
"build": "vue-tsc && vite build",
"type-check": "vue-tsc --noEmit"
},
"peerDependencies": {
"vue": "^3.3.11",
"dompurify": "^3.3.1",
"markdown-it": "^14.1.0"
},
"dependencies": {
"@floating-ui/dom": "^1.6.0",
"@opentiny/tiny-robot-svgs": "workspace:*",
"@opentiny/vue": "^3.20.0",
"@vueuse/core": "^13.1.0",
"jsonrepair": "^3.13.1",
"@tiptap/core": "3.17.1",
"@tiptap/vue-3": "3.17.1",
"@tiptap/pm": "3.17.1",
"@tiptap/extensions": "3.17.1",
"@tiptap/extension-document": "3.17.1",
"@tiptap/extension-paragraph": "3.17.1",
"@tiptap/extension-text": "3.17.1",
"@tiptap/extension-history": "3.17.1",
"@tiptap/extension-placeholder": "3.17.1",
"@tiptap/extension-character-count": "3.17.1",
"unicode-segmenter": "^0.14.5"
},
"devDependencies": {
"@types/dom-speech-recognition": "^0.0.6",
"@types/lodash-es": "^4.17.12",
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.13.17",
"@vitejs/plugin-vue": "^4.5.2",
"@vitejs/plugin-vue-jsx": "^4.1.2",
"dompurify": "^3.3.1",
"less": "^4.2.2",
"markdown-it": "^14.1.0",
"typescript": "^5.2.2",
"vite": "^5.0.8",
"vite-plugin-dts": "^4.5.3",
"vue": "^3.3.11",
"vue-tsc": "^2.2.8"
},
"optionalDependencies": {
"@tiptap/extension-bubble-menu": "3.17.1",
"@tiptap/extension-floating-menu": "3.17.1"
}
}