dcim-web-sdk 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,37 @@
1
+ {
2
+ "name": "dcim-web-sdk",
3
+ "version": "0.1.0",
4
+ "description": "Tencent-style compatibility SDK built on top of @openim/client-sdk",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "main": "./dist/index.cjs",
8
+ "module": "./dist/index.js",
9
+ "types": "./dist/index.d.ts",
10
+ "exports": {
11
+ ".": {
12
+ "types": "./dist/index.d.ts",
13
+ "import": "./dist/index.js",
14
+ "require": "./dist/index.cjs"
15
+ }
16
+ },
17
+ "files": [
18
+ "dist"
19
+ ],
20
+ "scripts": {
21
+ "build": "tsup src/index.ts --dts --format esm,cjs --clean",
22
+ "demo": "vite demo --host 127.0.0.1 --port 4173",
23
+ "demo:build": "vite build demo",
24
+ "postinstall": "node ./scripts/fix-openim-protocol.mjs",
25
+ "smoke:local": "node ./scripts/local-smoke.mjs",
26
+ "type-check": "tsc --noEmit",
27
+ "prepare": "npm run build"
28
+ },
29
+ "dependencies": {
30
+ "@openim/client-sdk": "^3.8.3-hotfix.0"
31
+ },
32
+ "devDependencies": {
33
+ "vite": "^7.1.3",
34
+ "tsup": "^8.5.0",
35
+ "typescript": "^5.9.3"
36
+ }
37
+ }