@jolibox/sdk 0.0.7 → 0.0.8

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/README-zh_cn.md CHANGED
@@ -13,7 +13,7 @@ Jolibox SDK 是一个 JavaScript 库,提供了一种简单的方法来集成 J
13
13
  在这种情况下,你不应该在你的 JavaScript 文件中编写 import 语句。
14
14
 
15
15
  ```html
16
- <script src="https://cdn.jsdelivr.net/npm/@jolibox/sdk@0.0.7/dist/index.iife.js"></script>
16
+ <script src="https://cdn.jsdelivr.net/npm/@jolibox/sdk@0.0.8/dist/index.iife.js"></script>
17
17
  ```
18
18
 
19
19
  ### 通过 NPM 安装
package/README.md CHANGED
@@ -13,7 +13,7 @@ If you want to use the library via CDN, you add the following script tag to your
13
13
  In such case, you should not write the import statement in your JavaScript file.
14
14
 
15
15
  ```html
16
- <script src="https://cdn.jsdelivr.net/npm/@jolibox/sdk@0.0.7/dist/index.iife.js"></script>
16
+ <script src="https://cdn.jsdelivr.net/npm/@jolibox/sdk@0.0.8/dist/index.iife.js"></script>
17
17
  ```
18
18
 
19
19
  ### Via NPM
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jolibox/sdk",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "description": "Jolibox JavaScript SDK for Ads",
5
5
  "homepage": "https://sdk-docs.jolibox.com",
6
6
  "repository": {
@@ -12,12 +12,6 @@
12
12
  "type": "module",
13
13
  "module": "dist/index.js",
14
14
  "types": "dist/index.d.ts",
15
- "scripts": {
16
- "build": "tsup",
17
- "typedoc": "typedoc",
18
- "typedoc:i18n": "typedoc --plugin typedoc-plugin-localization --generate-json ../../json/en",
19
- "test": "echo \"Error: no test specified\" && exit 1"
20
- },
21
15
  "keywords": [
22
16
  "jolibox",
23
17
  "minigame",
@@ -34,6 +28,12 @@
34
28
  }
35
29
  },
36
30
  "dependencies": {
37
- "@jolibox/web-sync-sdk": "workspace:*"
31
+ "@jolibox/web-sync-sdk": "0.0.8"
32
+ },
33
+ "scripts": {
34
+ "build": "tsup",
35
+ "typedoc": "typedoc",
36
+ "typedoc:i18n": "typedoc --plugin typedoc-plugin-localization --generate-json ../../json/en",
37
+ "test": "echo \"Error: no test specified\" && exit 1"
38
38
  }
39
- }
39
+ }