rag-frontend/apps/web-antd/package.json
向宁 dfa70b7ef4 feat: 集成 IM 即时通讯模块(SignalR + 聊天 UI)
新增 IM 功能模块,对接独立 IM 后端服务:
- API 层:独立 request client 直连 IM 后端(5212),与 rag-backend 代理隔离
- SignalR:实时消息收发、已读回执、在线状态、输入提示
- Pinia Store:会话列表、消息历史、未读计数、在线用户状态管理
- 聊天页面:会话列表 + 消息区域 + 群聊创建,支持文本/图片/表情消息
- 路由:/chat 页面接入主导航
2026-05-17 17:06:52 +08:00

52 lines
1.4 KiB
JSON

{
"name": "@vben/web-antd",
"version": "5.7.0",
"homepage": "https://vben.pro",
"bugs": "https://github.com/vbenjs/vue-vben-admin/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/vbenjs/vue-vben-admin.git",
"directory": "apps/web-antd"
},
"license": "MIT",
"author": {
"name": "vben",
"email": "ann.vben@gmail.com",
"url": "https://github.com/anncwb"
},
"type": "module",
"scripts": {
"build": "pnpm vite build --mode production",
"build:analyze": "pnpm vite build --mode analyze",
"dev": "pnpm vite --mode development",
"preview": "vite preview",
"typecheck": "vue-tsc --noEmit --skipLibCheck"
},
"imports": {
"#/*": "./src/*"
},
"dependencies": {
"@microsoft/signalr": "^10.0.0",
"@vben/access": "workspace:*",
"@vben/common-ui": "workspace:*",
"@vben/constants": "workspace:*",
"@vben/hooks": "workspace:*",
"@vben/icons": "workspace:*",
"@vben/layouts": "workspace:*",
"@vben/locales": "workspace:*",
"@vben/plugins": "workspace:*",
"@vben/preferences": "workspace:*",
"@vben/request": "workspace:*",
"@vben/stores": "workspace:*",
"@vben/styles": "workspace:*",
"@vben/types": "workspace:*",
"@vben/utils": "workspace:*",
"@vueuse/core": "catalog:",
"ant-design-vue": "catalog:",
"dayjs": "catalog:",
"pinia": "catalog:",
"vue": "catalog:",
"vue-router": "catalog:"
}
}