@zhipu/zp-cli 0.0.1 → 0.0.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.
- package/README.md +13 -9
- package/dist/build-dashboard-CqZVHPH7.mjs +502 -0
- package/dist/build-jobs-m5jbiNTx.mjs +191 -0
- package/dist/cli.mjs +580 -88
- package/package.json +77 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zhipu/zp-cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "内部单命令部署工具",
|
|
5
5
|
"bin": {
|
|
6
6
|
"zpc": "./dist/cli.mjs"
|
|
@@ -19,24 +19,98 @@
|
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@commander-js/extra-typings": "^15.0.0",
|
|
22
|
+
"@inquirer/prompts": "^8.6.0",
|
|
23
|
+
"@vue-tui/components": "^0.3.0",
|
|
24
|
+
"@vue-tui/runtime": "^0.3.0",
|
|
25
|
+
"chalk": "^6.0.0",
|
|
22
26
|
"commander": "^15.0.0",
|
|
23
|
-
"jiti": "^2.7.0"
|
|
27
|
+
"jiti": "^2.7.0",
|
|
28
|
+
"strip-ansi": "^7.2.0",
|
|
29
|
+
"vue": "^3.5.41"
|
|
24
30
|
},
|
|
25
31
|
"devDependencies": {
|
|
26
32
|
"@types/node": "^26.1.1",
|
|
33
|
+
"@vitejs/plugin-vue": "^6.0.8",
|
|
34
|
+
"@vue-tui/testing": "^0.3.0",
|
|
27
35
|
"bumpp": "^11.1.0",
|
|
28
36
|
"oxfmt": "^0.64.0",
|
|
29
37
|
"typescript": "^7.0.2",
|
|
38
|
+
"unplugin-vue": "^7.2.0",
|
|
30
39
|
"vite": "npm:@voidzero-dev/vite-plus-core@0.2.6",
|
|
31
|
-
"vite-plus": "0.2.6"
|
|
40
|
+
"vite-plus": "0.2.6",
|
|
41
|
+
"node": "runtime:25.9.0"
|
|
32
42
|
},
|
|
33
43
|
"devEngines": {
|
|
34
44
|
"packageManager": {
|
|
35
45
|
"name": "pnpm",
|
|
36
46
|
"version": "11.22.0",
|
|
37
47
|
"onFail": "download"
|
|
48
|
+
},
|
|
49
|
+
"runtime": {
|
|
50
|
+
"name": "node",
|
|
51
|
+
"version": "25.9.0",
|
|
52
|
+
"onFail": "download"
|
|
38
53
|
}
|
|
39
54
|
},
|
|
55
|
+
"inlinedDependencies": {
|
|
56
|
+
"@alcalzone/ansi-tokenize": "0.3.0",
|
|
57
|
+
"@babel/parser": "7.29.8",
|
|
58
|
+
"@commander-js/extra-typings": "15.0.0",
|
|
59
|
+
"@inquirer/ansi": "2.0.7",
|
|
60
|
+
"@inquirer/checkbox": "5.2.2",
|
|
61
|
+
"@inquirer/confirm": "6.2.0",
|
|
62
|
+
"@inquirer/core": "12.0.0",
|
|
63
|
+
"@inquirer/editor": "5.3.0",
|
|
64
|
+
"@inquirer/expand": "5.1.2",
|
|
65
|
+
"@inquirer/external-editor": "3.0.4",
|
|
66
|
+
"@inquirer/figures": "2.0.8",
|
|
67
|
+
"@inquirer/input": "5.1.3",
|
|
68
|
+
"@inquirer/number": "4.2.0",
|
|
69
|
+
"@inquirer/password": "5.1.2",
|
|
70
|
+
"@inquirer/prompts": "8.6.0",
|
|
71
|
+
"@inquirer/rawlist": "5.3.2",
|
|
72
|
+
"@inquirer/search": "4.3.0",
|
|
73
|
+
"@inquirer/select": "5.2.2",
|
|
74
|
+
"@vue-tui/components": "0.3.0",
|
|
75
|
+
"@vue-tui/runtime": "0.3.0",
|
|
76
|
+
"@vue/compiler-core": "3.5.41",
|
|
77
|
+
"@vue/compiler-dom": "3.5.41",
|
|
78
|
+
"@vue/reactivity": "3.5.41",
|
|
79
|
+
"@vue/runtime-core": "3.5.41",
|
|
80
|
+
"@vue/runtime-dom": "3.5.41",
|
|
81
|
+
"@vue/shared": "3.5.41",
|
|
82
|
+
"ansi-escapes": "7.3.0",
|
|
83
|
+
"ansi-styles": "6.2.3",
|
|
84
|
+
"chalk": [
|
|
85
|
+
"5.6.2",
|
|
86
|
+
"6.0.0"
|
|
87
|
+
],
|
|
88
|
+
"chardet": "2.2.0",
|
|
89
|
+
"cli-boxes": "3.0.0",
|
|
90
|
+
"cli-truncate": "6.1.1",
|
|
91
|
+
"cli-width": "4.1.0",
|
|
92
|
+
"commander": "15.0.0",
|
|
93
|
+
"entities": "7.0.1",
|
|
94
|
+
"environment": "1.1.0",
|
|
95
|
+
"estree-walker": "2.0.2",
|
|
96
|
+
"fast-string-truncated-width": "3.0.3",
|
|
97
|
+
"fast-string-width": "3.0.2",
|
|
98
|
+
"fast-wrap-ansi": "0.2.2",
|
|
99
|
+
"get-east-asian-width": "1.6.0",
|
|
100
|
+
"iconv-lite": "0.7.3",
|
|
101
|
+
"is-fullwidth-code-point": "5.1.0",
|
|
102
|
+
"jiti": "2.7.0",
|
|
103
|
+
"mute-stream": "3.0.0",
|
|
104
|
+
"patch-console": "2.0.0",
|
|
105
|
+
"safer-buffer": "2.1.2",
|
|
106
|
+
"signal-exit": "4.1.0",
|
|
107
|
+
"slice-ansi": "9.0.0",
|
|
108
|
+
"source-map-js": "1.2.1",
|
|
109
|
+
"string-width": "8.2.2",
|
|
110
|
+
"vue": "3.5.41",
|
|
111
|
+
"wrap-ansi": "10.0.1",
|
|
112
|
+
"yoga-layout": "3.2.1"
|
|
113
|
+
},
|
|
40
114
|
"scripts": {
|
|
41
115
|
"build": "vp pack",
|
|
42
116
|
"dev": "vp pack --watch",
|