@accelbyte/sdk 0.1.1-alpha.46 → 0.1.1-alpha.47

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/CHANGELOG.md +4 -0
  2. package/package.json +13 -28
package/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ### 0.1.1-alpha.47 - 2022-12-22
2
+
3
+ - Fix wrong fields in package.json being deleted
4
+
1
5
  ### 0.1.1-alpha.46 - 2022-12-22
2
6
 
3
7
  - Make dependencies exist in SDK when publishing
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@accelbyte/sdk",
3
- "version": "0.1.1-alpha.46",
3
+ "version": "0.1.1-alpha.47",
4
4
  "author": "AccelByte Inc",
5
5
  "license": "AccelByte License",
6
6
  "main": "./dist/index.js",
@@ -17,32 +17,17 @@
17
17
  },
18
18
  "./package.json": "./package.json"
19
19
  },
20
- "scripts": {
21
- "prebuild": "rimraf dist",
22
- "doc": "typedoc --plugin typedoc-plugin-markdown --out docs src/api",
23
- "build": "rollup -c rollup.config.js",
24
- "build:dts": "rollup -c rollup.dts.config.js",
25
- "postbuild": "yarn build:dts && rimraf dist/types",
26
- "test": "vitest"
27
- },
28
- "devDependencies": {
29
- "@rollup/plugin-alias": "4.0.2",
30
- "@rollup/plugin-commonjs": "20.0.0",
31
- "@rollup/plugin-json": "4.1.0",
32
- "@rollup/plugin-node-resolve": "13.0.4",
33
- "@rollup/plugin-typescript": "10.0.1",
34
- "@types/crypto-js": "4.1.0",
35
- "@types/platform": "1.3.4",
36
- "@types/uuid": "8.3.4",
37
- "msw": "0.48.2",
38
- "rimraf": "3.0.2",
39
- "rollup": "2.56.2",
40
- "rollup-plugin-dts": "4.2.2",
41
- "rollup-plugin-peer-deps-external": "2.2.4",
42
- "tslib": "2.3.1",
43
- "typedoc": "0.23.20",
44
- "typedoc-plugin-markdown": "^3.13.6",
45
- "typescript": "4.6.4",
46
- "vitest": "0.25.1"
20
+ "dependencies": {
21
+ "axios": "0.27.2",
22
+ "buffer": "6.0.3",
23
+ "crypto-js": "4.1.1",
24
+ "justice-js-common-utils": "git+https://github.com/AccelByte/justice-js-common-utils.git#1.36.2",
25
+ "lodash-core": "^4.17.19",
26
+ "nanoid": "3.1.30",
27
+ "platform": "1.3.6",
28
+ "query-string": "7.1.1",
29
+ "uuid": "8.3.2",
30
+ "validator": "10.2.0",
31
+ "zod": "3.17.3"
47
32
  }
48
33
  }