@cloudbase/cli 2.0.12-alpha.2 → 2.0.12-alpha.3
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.
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@cloudbase/cli",
|
|
3
|
+
"version": "2.0.12-alpha.2",
|
|
4
|
+
"description": "cli tool for cloudbase",
|
|
5
|
+
"main": "lib/index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"build": "rimraf lib types && tsc",
|
|
8
|
+
"watch": "rimraf lib types && tsc -w",
|
|
9
|
+
"dev": "rimraf lib types && tsc -w",
|
|
10
|
+
"eslint": "eslint \"./**/*.ts\"",
|
|
11
|
+
"test": "jest --runInBand --forceExit --detectOpenHandles --coverage --verbose --testTimeout=10000",
|
|
12
|
+
"tsc": "tsc",
|
|
13
|
+
"pkg": "pkg ./bin/cloudbase.js --out-path ./pkg",
|
|
14
|
+
"postinstall": "node ./post-install.js || exit 0"
|
|
15
|
+
},
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "https://github.com/TencentCloudBase/cloud-base-cli.git"
|
|
19
|
+
},
|
|
20
|
+
"bin": {
|
|
21
|
+
"tcb": "bin/tcb.js",
|
|
22
|
+
"cloudbase": "bin/cloudbase.js"
|
|
23
|
+
},
|
|
24
|
+
"husky": {
|
|
25
|
+
"hooks": {
|
|
26
|
+
"pre-commit": "npm run build && git add ."
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"author": "cwuyiqing@gmail.com",
|
|
30
|
+
"license": "ISC",
|
|
31
|
+
"dependencies": {
|
|
32
|
+
"@cloudbase/cloud-api": "^0.5.5",
|
|
33
|
+
"@cloudbase/framework-core": "^1.6.1",
|
|
34
|
+
"@cloudbase/lowcode-cli": "0.14.5-alpha.3",
|
|
35
|
+
"@cloudbase/manager-node": "4.0.1",
|
|
36
|
+
"@cloudbase/toolbox": "^0.7.3",
|
|
37
|
+
"@sentry/node": "^5.10.2",
|
|
38
|
+
"address": "^1.1.2",
|
|
39
|
+
"chalk": "^2.4.2",
|
|
40
|
+
"cli-table3": "^0.5.1",
|
|
41
|
+
"commander": "7",
|
|
42
|
+
"del": "^5.1.0",
|
|
43
|
+
"didyoumean": "^1.2.2",
|
|
44
|
+
"enquirer": "^2.3.6",
|
|
45
|
+
"execa": "^4.0.3",
|
|
46
|
+
"fs-extra": "^8.1.0",
|
|
47
|
+
"https-proxy-agent": "^5.0.1",
|
|
48
|
+
"inquirer": "^6.5.0",
|
|
49
|
+
"lodash": "^4.17.21",
|
|
50
|
+
"log-symbols": "^3.0.0",
|
|
51
|
+
"lowdb": "^1.0.0",
|
|
52
|
+
"make-dir": "^3.0.0",
|
|
53
|
+
"node-fetch": "^2.6.0",
|
|
54
|
+
"open": "^7.0.0",
|
|
55
|
+
"ora": "^4.0.2",
|
|
56
|
+
"portfinder": "^1.0.28",
|
|
57
|
+
"progress": "^2.0.3",
|
|
58
|
+
"query-string": "^6.8.1",
|
|
59
|
+
"reflect-metadata": "^0.1.13",
|
|
60
|
+
"semver": "^7.3.7",
|
|
61
|
+
"tar-fs": "^2.0.1",
|
|
62
|
+
"terminal-link": "^2.1.1",
|
|
63
|
+
"unzipper": "^0.10.10",
|
|
64
|
+
"update-notifier": "^4.0.0",
|
|
65
|
+
"xdg-basedir": "^4.0.0",
|
|
66
|
+
"yargs": "^16.2.0",
|
|
67
|
+
"yargs-parser": "^21.0.1"
|
|
68
|
+
},
|
|
69
|
+
"devDependencies": {
|
|
70
|
+
"@types/jest": "^27",
|
|
71
|
+
"@types/koa__router": "^8.0.11",
|
|
72
|
+
"@types/lodash": "^4.14.182",
|
|
73
|
+
"@types/node": "^12.12.38",
|
|
74
|
+
"@types/node-fetch": "^2.5.4",
|
|
75
|
+
"@types/react": "^17.0.37",
|
|
76
|
+
"@types/semver": "^7.3.9",
|
|
77
|
+
"@types/webpack-dev-server": "^3.11.1",
|
|
78
|
+
"@typescript-eslint/eslint-plugin": "^4.8.1",
|
|
79
|
+
"@typescript-eslint/parser": "^4.8.1",
|
|
80
|
+
"eslint": "^7.14.0",
|
|
81
|
+
"eslint-config-alloy": "^3.8.2",
|
|
82
|
+
"husky": "^3.0.9",
|
|
83
|
+
"jest": "^27",
|
|
84
|
+
"rimraf": "^3.0.2",
|
|
85
|
+
"ts-jest": "^27",
|
|
86
|
+
"typescript": "^4.7.2"
|
|
87
|
+
}
|
|
88
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloudbase/cli",
|
|
3
|
-
"version": "2.0.12-alpha.
|
|
3
|
+
"version": "2.0.12-alpha.3",
|
|
4
4
|
"description": "cli tool for cloudbase",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@cloudbase/cloud-api": "^0.5.5",
|
|
33
33
|
"@cloudbase/framework-core": "^1.6.1",
|
|
34
|
-
"@cloudbase/lowcode-cli": "0.14.5-alpha.
|
|
34
|
+
"@cloudbase/lowcode-cli": "0.14.5-alpha.3",
|
|
35
35
|
"@cloudbase/manager-node": "4.0.1",
|
|
36
36
|
"@cloudbase/toolbox": "^0.7.3",
|
|
37
37
|
"@sentry/node": "^5.10.2",
|