- 添加 expiresAt 和 refreshUserSig 参数支持自动续签 - 修改 PushSDK 初始化方式,自动完成设备注册和厂商初始化 - 调整过期续签策略,从提前 15 分钟改为提前 5 分钟触发 - 重构 RN SDK 文档结构,简化安装和使用方式 - 更新统一登录流程,支持 profile 信息传递 - 添加 IM 数据库自动隔离功能 - 修复 Android 群消息聚合问题 - 补充自动化测试验证和错误处理机制
30 行
794 B
JSON
30 行
794 B
JSON
{
|
|
"name": "@xuqm/rn-im",
|
|
"version": "0.2.0",
|
|
"description": "XuqmGroup RN SDK — IM module (single chat, group chat, 13 message types)",
|
|
"license": "UNLICENSED",
|
|
"main": "src/index.ts",
|
|
"react-native": "src/index.ts",
|
|
"types": "src/index.ts",
|
|
"private": false,
|
|
"publishConfig": {
|
|
"registry": "https://nexus.xuqinmin.com/repository/npm-hosted/"
|
|
},
|
|
"scripts": {
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "tsc -p tsconfig.test.json && node --test dist-test/tests/runtime.test.js"
|
|
},
|
|
"dependencies": {
|
|
"@xuqm/rn-common": ">=0.2.0",
|
|
"@xuqm/rn-sdk": ">=0.2.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@nozbe/watermelondb": ">=0.27.0",
|
|
"react-native": ">=0.76.0"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.9.3",
|
|
"@types/react-native": "^0.73.0"
|
|
}
|
|
}
|