@coze/cli 0.1.0-alpha.0f8b9e → 0.1.0-alpha.2c7d10
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 +27 -17
- package/THIRD-PARTY-LICENSES.md +31 -0
- package/bin/main +3 -1
- package/lib/cli.js +3427 -2713
- package/lib/{index-SwtgDxQR.js → index-5XDMejBE.js} +10883 -10880
- package/lib/send-message.worker.js +2 -2
- package/package.json +7 -19
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
const process = require('process');
|
|
4
|
-
const index = require('./index-
|
|
4
|
+
const index = require('./index-5XDMejBE.js');
|
|
5
|
+
require('lodash');
|
|
5
6
|
require('mitt');
|
|
6
7
|
require('crypto');
|
|
7
8
|
require('form-data');
|
|
@@ -21,7 +22,6 @@ require('node:path');
|
|
|
21
22
|
require('fs');
|
|
22
23
|
require('path');
|
|
23
24
|
require('fs/promises');
|
|
24
|
-
require('lodash');
|
|
25
25
|
require('undici');
|
|
26
26
|
|
|
27
27
|
async function main() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coze/cli",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.2c7d10",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "tmp",
|
|
6
6
|
"license": "MIT",
|
|
@@ -14,44 +14,36 @@
|
|
|
14
14
|
"bin",
|
|
15
15
|
"README.md",
|
|
16
16
|
"LICENSE.md",
|
|
17
|
+
"THIRD-PARTY-LICENSES.md",
|
|
17
18
|
"!**/*.tsbuildinfo",
|
|
18
19
|
"!**/*.map"
|
|
19
20
|
],
|
|
20
21
|
"scripts": {
|
|
21
|
-
"audit:post": "pack-audit post",
|
|
22
|
-
"audit:pre": "pack-audit pre",
|
|
23
22
|
"prebuild": "tsx scripts/prebuild.ts",
|
|
24
23
|
"build": "tsx scripts/build.ts",
|
|
25
24
|
"lint": "eslint ./ --cache",
|
|
26
|
-
"pre-release": "tsx scripts/pre-release.ts",
|
|
27
|
-
"prepublishOnly": "npm run pre-release",
|
|
28
25
|
"test": "vitest --run --passWithNoTests",
|
|
29
26
|
"test:all": "bash scripts/test-coverage.sh",
|
|
30
27
|
"test:cov": "vitest --run --passWithNoTests --coverage",
|
|
31
28
|
"test:e2e": "NODE_ENV=test bash scripts/e2e.sh"
|
|
32
29
|
},
|
|
33
30
|
"dependencies": {
|
|
34
|
-
"ahooks": "~3.9.6",
|
|
35
31
|
"chalk": "^4.1.2",
|
|
36
32
|
"commander": "~12.1.0",
|
|
37
|
-
"form-data": "^4.0.
|
|
33
|
+
"form-data": "^4.0.5",
|
|
38
34
|
"http-proxy-agent": "~8.0.0",
|
|
39
35
|
"https-proxy-agent": "~8.0.0",
|
|
40
|
-
"lodash": "^4.17.
|
|
41
|
-
"marked": "^15.0.7",
|
|
42
|
-
"marked-terminal": "~7.3.0",
|
|
36
|
+
"lodash": "^4.17.21",
|
|
43
37
|
"mitt": "~3.0.1",
|
|
44
38
|
"omelette": "~0.4.17",
|
|
45
|
-
"
|
|
46
|
-
"shelljs": "^0.10.0",
|
|
47
|
-
"undici": "~7.24.5",
|
|
48
|
-
"ws": "^8.18.0"
|
|
39
|
+
"undici": "~7.24.5"
|
|
49
40
|
},
|
|
50
41
|
"devDependencies": {
|
|
51
42
|
"@coze-arch/api-schema": "workspace:*",
|
|
52
43
|
"@coze-arch/eslint-config": "workspace:*",
|
|
53
44
|
"@coze-arch/pack-audit": "workspace:*",
|
|
54
45
|
"@coze-arch/request": "workspace:*",
|
|
46
|
+
"@coze-arch/rollup-config": "workspace:*",
|
|
55
47
|
"@coze-arch/ts-config": "workspace:*",
|
|
56
48
|
"@coze-arch/vitest-config": "workspace:*",
|
|
57
49
|
"@coze-chat/chat-area-utils": "workspace:*",
|
|
@@ -64,13 +56,9 @@
|
|
|
64
56
|
"@rollup/plugin-node-resolve": "^15.3.0",
|
|
65
57
|
"@rollup/plugin-sucrase": "^5.0.2",
|
|
66
58
|
"@types/lodash": "~4.17.24",
|
|
67
|
-
"@types/marked-terminal": "~6.1.1",
|
|
68
59
|
"@types/node": "^24",
|
|
69
|
-
"@types/react": "18.3.27",
|
|
70
|
-
"@types/shelljs": "^0.10.0",
|
|
71
|
-
"@types/ws": "^8.5.13",
|
|
72
60
|
"@vitest/coverage-v8": "~4.0.18",
|
|
73
|
-
"rollup": "^4.
|
|
61
|
+
"rollup": "^4.60.1",
|
|
74
62
|
"sucrase": "^3.35.0",
|
|
75
63
|
"tsx": "^4.20.6",
|
|
76
64
|
"vitest": "~4.0.18"
|