XuqmGroup-RNSDK/package.json
XuqmGroup 507ce3d2ee feat(update): release-set 事务制品与原生层职责拆分
- 插件包改为 .xuqm.zip 事务制品,manifest/bundle/资源/SHA-256 统一校验
- 原生层拆分为桥接编排、插件包暂存、底层存储三个单一职责类
- 状态查询改为纯读取,不再误触发安装;新增 NATIVE_BASELINE_INCOMPATIBLE 拒绝
- SemVer 解析拆分为独立原生类并补原生测试
- XWebView 收口唯一内核,错误态统一中文层与重试
- common 增加请求头/运行时契约收口与 http 测试
2026-07-20 19:31:43 +08:00

50 行
1.7 KiB
JSON

{
"name": "@xuqm/rn-sdk",
"version": "0.5.0-alpha.1",
"description": "XuqmGroup React Native SDK workspace — Common, Update, BugCollect and XWebView",
"license": "UNLICENSED",
"main": "src/index.ts",
"react-native": "src/index.ts",
"types": "src/index.ts",
"private": true,
"packageManager": "pnpm@11.13.1",
"files": [
"src"
],
"workspaces": [
"packages/*"
],
"publishConfig": {
"registry": "https://nexus.xuqinmin.com/repository/npm-hosted/"
},
"scripts": {
"format": "prettier --write AGENTS.md docs/IMPLEMENTATION_HANDOFF.md package.json packages/common packages/bugcollect packages/update packages/xwebview",
"format:check": "prettier --check AGENTS.md docs/IMPLEMENTATION_HANDOFF.md package.json packages/common packages/bugcollect packages/update packages/xwebview",
"test": "corepack pnpm --recursive --if-present test",
"typecheck": "tsc --noEmit",
"typecheck:all": "corepack pnpm --recursive --if-present typecheck",
"validate": "corepack pnpm format:check && corepack pnpm typecheck:all && corepack pnpm test"
},
"peerDependencies": {
"@react-native-async-storage/async-storage": ">=1.21.0",
"react": ">=18.0.0",
"react-native": ">=0.76.0"
},
"dependencies": {
"@xuqm/rn-common": "workspace:*",
"@xuqm/rn-bugcollect": "workspace:*",
"@xuqm/rn-update": "workspace:*",
"@xuqm/rn-xwebview": "workspace:*"
},
"devDependencies": {
"@react-native-async-storage/async-storage": "^3.1.1",
"@types/node": "^22.20.1",
"@types/react": "^19.0.0",
"axios": "^1.18.0",
"prettier": "3.9.5",
"react": "19.2.7",
"react-native": "0.86.0",
"typescript": "catalog:"
}
}