@cloudbase/js-sdk 1.7.1 → 2.0.0-alpha.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/auth/dist/index.d.ts +0 -1
- package/auth/dist/index.esm.js +2 -3
- package/auth/dist/index.js +3 -4
- package/database/dist/index.esm.js +1 -1
- package/database/dist/index.js +2 -2
- package/dist/index.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/miniprogram_dist/analytics.js +1 -1
- package/miniprogram_dist/app.js +1 -1
- package/miniprogram_dist/auth.js +1 -1
- package/miniprogram_dist/functions.js +1 -1
- package/miniprogram_dist/index.js +5 -5
- package/miniprogram_dist/oauth.js +1 -0
- package/miniprogram_dist/storage.js +1 -1
- package/package.json +90 -90
package/package.json
CHANGED
|
@@ -1,92 +1,92 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
2
|
+
"name": "@cloudbase/js-sdk",
|
|
3
|
+
"version": "2.0.0-alpha.0",
|
|
4
|
+
"description": "cloudbase javascript sdk",
|
|
5
|
+
"main": "dist/index.cjs.js",
|
|
6
|
+
"module": "dist/index.esm.js",
|
|
7
|
+
"miniprogram": "miniprogram_dist",
|
|
8
|
+
"typings": "./index.d.ts",
|
|
9
|
+
"scripts": {
|
|
10
|
+
"lint": "eslint --fix \"./src/**/*.ts\" \"./database/**/*.ts\"",
|
|
11
|
+
"build": "rm -rf dist/ && gulp build",
|
|
12
|
+
"build:cdn": "gulp cdn",
|
|
13
|
+
"build:miniapp": "gulp miniapp",
|
|
14
|
+
"build:e2e": "rm -rf dist/ && NODE_ENV=e2e gulp e2e"
|
|
15
|
+
},
|
|
16
|
+
"publishConfig": {
|
|
17
|
+
"access": "public"
|
|
18
|
+
},
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "https://github.com/TencentCloudBase/cloudbase-js-sdk"
|
|
22
|
+
},
|
|
23
|
+
"keywords": [
|
|
24
|
+
"tcb",
|
|
25
|
+
"cloudbase",
|
|
26
|
+
"Cloudbase",
|
|
27
|
+
"serverless",
|
|
28
|
+
"Serverless",
|
|
29
|
+
"javascript",
|
|
30
|
+
"JavaScript"
|
|
31
|
+
],
|
|
32
|
+
"files": [
|
|
33
|
+
"miniprogram_dist",
|
|
34
|
+
"**/dist/",
|
|
35
|
+
"/index.d.ts",
|
|
36
|
+
"**/package.json"
|
|
37
|
+
],
|
|
38
|
+
"components": [
|
|
39
|
+
"app",
|
|
40
|
+
"auth",
|
|
41
|
+
"database",
|
|
42
|
+
"functions",
|
|
43
|
+
"storage"
|
|
44
|
+
],
|
|
45
|
+
"author": "",
|
|
46
|
+
"license": "ISC",
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"@cloudbase/analytics": "^2.0.0-alpha.0",
|
|
49
|
+
"@cloudbase/app": "^2.0.0-alpha.0",
|
|
50
|
+
"@cloudbase/auth": "^2.0.0-alpha.0",
|
|
51
|
+
"@cloudbase/database": "0.9.18-next",
|
|
52
|
+
"@cloudbase/functions": "^2.0.0-alpha.0",
|
|
53
|
+
"@cloudbase/realtime": "^2.0.0-alpha.0",
|
|
54
|
+
"@cloudbase/storage": "^2.0.0-alpha.0",
|
|
55
|
+
"@cloudbase/types": "^2.0.0-alpha.0",
|
|
56
|
+
"@cloudbase/utilities": "^2.0.0-alpha.0"
|
|
57
|
+
},
|
|
58
|
+
"devDependencies": {
|
|
59
|
+
"@babel/core": "^7.9.0",
|
|
60
|
+
"@babel/plugin-proposal-class-properties": "^7.8.3",
|
|
61
|
+
"@babel/plugin-transform-runtime": "^7.9.0",
|
|
62
|
+
"@babel/preset-env": "^7.9.5",
|
|
63
|
+
"@babel/preset-typescript": "^7.9.0",
|
|
64
|
+
"@typescript-eslint/eslint-plugin": "^3.8.0",
|
|
65
|
+
"@typescript-eslint/parser": "^3.8.0",
|
|
66
|
+
"awesome-typescript-loader": "^5.2.1",
|
|
67
|
+
"babel-loader": "^8.1.0",
|
|
68
|
+
"eslint": "^7.6.0",
|
|
69
|
+
"eslint-config-alloy": "^3.7.4",
|
|
70
|
+
"gulp": "^4.0.2",
|
|
71
|
+
"gulp-clean": "^0.4.0",
|
|
72
|
+
"gulp-rename": "^2.0.0",
|
|
73
|
+
"gulp-sourcemaps": "^2.6.5",
|
|
74
|
+
"gulp-typescript": "^6.0.0-alpha.1",
|
|
75
|
+
"json-loader": "^0.5.7",
|
|
76
|
+
"merge-stream": "^2.0.0",
|
|
77
|
+
"package-json-cleanup-loader": "^1.0.3",
|
|
78
|
+
"typescript": "^3.8.3",
|
|
79
|
+
"webpack": "4.41.3",
|
|
80
|
+
"webpack-cli": "^3.3.11",
|
|
81
|
+
"webpack-node-externals": "^1.7.2",
|
|
82
|
+
"webpack-stream": "^5.2.1",
|
|
83
|
+
"webpack-visualizer-plugin": "^0.1.11"
|
|
84
|
+
},
|
|
85
|
+
"browserslist": [
|
|
86
|
+
"last 2 version",
|
|
87
|
+
"> 1%",
|
|
88
|
+
"not dead",
|
|
89
|
+
"chrome 53"
|
|
90
|
+
],
|
|
91
|
+
"gitHead": "9ab9ea4322a548cd981d5fe747b6dee911272a6d"
|
|
92
92
|
}
|