@appboxo/web-sdk 1.0.0 → 1.0.1

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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -5,7 +5,7 @@ Embed miniapps into your desktop application using iframe communication.
5
5
  ## Quick Start
6
6
 
7
7
  ```typescript
8
- import { AppboxoWebSDK } from "boxo-desktop-host-sdk";
8
+ import { AppboxoWebSDK } from "@appboxo/web-sdk";
9
9
 
10
10
  const sdk = new AppboxoWebSDK({
11
11
  clientId: "your-client-id",
@@ -26,9 +26,9 @@ sdk.mount({
26
26
  ## Installation
27
27
 
28
28
  ```bash
29
- npm install boxo-desktop-host-sdk
29
+ npm install @appboxo/web-sdk
30
30
  # or
31
- pnpm install boxo-desktop-host-sdk
31
+ pnpm install @appboxo/web-sdk
32
32
  ```
33
33
 
34
34
  ## Configuration
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appboxo/web-sdk",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Boxo Desktop Host App SDK for handling miniapp events",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -44,7 +44,7 @@
44
44
  ],
45
45
  "repository": {
46
46
  "type": "git",
47
- "url": "https://github.com/memoriaXII/b-sdk.git"
47
+ "url": "git+https://github.com/Appboxo/web-sdk.git"
48
48
  },
49
- "homepage": "https://github.com/memoriaXII/b-sdk#readme"
49
+ "homepage": "https://github.com/Appboxo/web-sdk#readme"
50
50
  }