@manycore/custom-sdk 2.0.0-beta.0 → 2.0.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/index.d.ts +419 -181
- package/index.js +30 -40
- package/package.json +3 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@manycore/custom-sdk",
|
|
3
|
-
"version": "2.0.0
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "custom v2.0 sdk",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -9,17 +9,10 @@
|
|
|
9
9
|
"build-package:prod": "cross-env NODE_OPTIONS=--max_old_space_size=16000 node_modules/.bin/webpack-cli -c scripts/webpack.config.js --mode production",
|
|
10
10
|
"build:dts": "api-extractor run --local && rm -rf dist",
|
|
11
11
|
"copy": "node scripts/webpack-build-helper.js",
|
|
12
|
-
"build-package": "yarn build-package:prod && yarn build:tsc && yarn build:dts && yarn copy"
|
|
13
|
-
},
|
|
14
|
-
"release": {
|
|
15
|
-
"scripts": {
|
|
16
|
-
"pre-release": "yarn build-package:prod && yarn build:tsc && yarn build:dts && yarn copy --rename",
|
|
17
|
-
"pre-public": "node ./scripts/nowork.js"
|
|
18
|
-
},
|
|
19
|
-
"publishRoot": "./build"
|
|
12
|
+
"build-package": "yarn build-package:prod && yarn build:tsc && yarn build:dts && yarn copy && node ./scripts/version.js"
|
|
20
13
|
},
|
|
21
14
|
"peerDependencies": {
|
|
22
|
-
"@manycore/custom-miniapp-sdk": "^0.
|
|
15
|
+
"@manycore/custom-miniapp-sdk": "^0.20.10",
|
|
23
16
|
"servkit": "^1.0.15"
|
|
24
17
|
},
|
|
25
18
|
"homepage": "https://manual.kujiale.com/custom-sdk",
|