XuqmGroup-H5SDK/package.json
徐勤民 e34fa2052a feat(private): add private deployment SDK module
Adds @xuqm/h5-sdk/private entry point with JSON-based initialization,
feature gating, and error codes for private deployment scenarios.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-18 21:08:08 +08:00

38 行
926 B
JSON

{
"name": "@xuqm/h5-sdk",
"version": "0.2.0",
"description": "XuqmGroup H5 SDK — Pure JS/TS IM SDK for web and H5",
"private": false,
"publishConfig": {
"registry": "https://nexus.xuqinmin.com/repository/npm-hosted/"
},
"main": "dist/index.umd.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.umd.js"
},
"./private": {
"types": "./dist/private/index.d.ts",
"import": "./dist/private/index.es.js",
"require": "./dist/private/index.umd.js"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "vite build --watch",
"build": "tsc --emitDeclarationOnly && vite build",
"type-check": "tsc --noEmit"
},
"devDependencies": {
"typescript": "^5.6.0",
"vite": "^6.0.0",
"vite-plugin-dts": "^4.3.0"
}
}