XuqmGroup-Vue3SDK/package.json
XuqmGroup 9779efdf52 docs(testing): 添加测试进度跟踪和bug记录文档
- 创建 BUG_TRACKER.md 记录已修复和开放的 bug 问题
- 添加 TEST_PROGRESS.md 跟踪各模块测试覆盖率和验证状态
- 修复 RN Chat Demo Jest 配置以支持本地 SDK 源码解析
- 修复 Python Server SDK 回调消息解析和顶层导出问题
- 修复 Vue3 SDK package exports 条件顺序警告
- 完善 im-service 时间字段单位一致性处理
- 优化 RN SDK 历史消息 upsert 逻辑避免回推状态丢失
- 增强 Android 黑名单操作错误处理和 UI 反馈
- 实现 im-service AppSecret 鉴权和 HMAC 签名验证
- 添加 IM Token 过期时间和自动续签机制
- 修复 RN SDK 草稿同步避免多设备数据污染
- 优化 Vue3 SDK 撤回编辑操作的本地状态更新
- 完善 im-service 消息摘要媒体类型占位文本显示
2026-04-30 15:53:38 +08:00

36 行
867 B
JSON

{
"name": "@xuqm/vue3-sdk",
"version": "0.1.0",
"description": "XuqmGroup Vue3 SDK — IM & platform integration for web",
"private": false,
"publishConfig": {
"registry": "https://nexus.xuqinmin.com/repository/npm-hosted/"
},
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js"
}
},
"files": ["dist"],
"scripts": {
"dev": "vite build --watch",
"build": "tsc --emitDeclarationOnly && vite build",
"type-check": "tsc --noEmit"
},
"peerDependencies": {
"vue": "^3.5.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.2.1",
"typescript": "^5.6.0",
"vite": "^6.0.0",
"vite-plugin-dts": "^4.3.0",
"vue": "^3.5.13"
}
}