@eggjs/scripts 5.0.0-beta.35 → 5.0.1-beta.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/package.json +41 -46
package/package.json
CHANGED
|
@@ -1,19 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eggjs/scripts",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.1-beta.0",
|
|
4
4
|
"description": "deploy tool for egg project",
|
|
5
|
-
"
|
|
6
|
-
"
|
|
7
|
-
"
|
|
8
|
-
"./baseCommand": "./dist/baseCommand.js",
|
|
9
|
-
"./commands/start": "./dist/commands/start.js",
|
|
10
|
-
"./commands/stop": "./dist/commands/stop.js",
|
|
11
|
-
"./helper": "./dist/helper.js",
|
|
12
|
-
"./types": "./dist/types.js",
|
|
13
|
-
"./package.json": "./package.json"
|
|
5
|
+
"homepage": "https://github.com/eggjs/egg/tree/next/tools/scripts",
|
|
6
|
+
"bugs": {
|
|
7
|
+
"url": "https://github.com/eggjs/egg/issues"
|
|
14
8
|
},
|
|
15
|
-
"
|
|
16
|
-
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"author": "TZ <atian25@qq.com>",
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "git+https://github.com/eggjs/egg.git",
|
|
14
|
+
"directory": "tools/scripts"
|
|
17
15
|
},
|
|
18
16
|
"bin": {
|
|
19
17
|
"egg-scripts": "./bin/run.js",
|
|
@@ -24,28 +22,21 @@
|
|
|
24
22
|
"dist",
|
|
25
23
|
"scripts"
|
|
26
24
|
],
|
|
27
|
-
"
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
"
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
"url": "https://github.com/eggjs/egg/issues"
|
|
40
|
-
},
|
|
41
|
-
"repository": {
|
|
42
|
-
"type": "git",
|
|
43
|
-
"url": "git+https://github.com/eggjs/egg.git",
|
|
44
|
-
"directory": "tools/scripts"
|
|
25
|
+
"type": "module",
|
|
26
|
+
"main": "./dist/index.js",
|
|
27
|
+
"module": "./dist/index.js",
|
|
28
|
+
"types": "./dist/index.d.ts",
|
|
29
|
+
"exports": {
|
|
30
|
+
".": "./dist/index.js",
|
|
31
|
+
"./baseCommand": "./dist/baseCommand.js",
|
|
32
|
+
"./commands/start": "./dist/commands/start.js",
|
|
33
|
+
"./commands/stop": "./dist/commands/stop.js",
|
|
34
|
+
"./helper": "./dist/helper.js",
|
|
35
|
+
"./types": "./dist/types.js",
|
|
36
|
+
"./package.json": "./package.json"
|
|
45
37
|
},
|
|
46
|
-
"
|
|
47
|
-
|
|
48
|
-
"node": ">= 22.18.0"
|
|
38
|
+
"publishConfig": {
|
|
39
|
+
"access": "public"
|
|
49
40
|
},
|
|
50
41
|
"dependencies": {
|
|
51
42
|
"@oclif/core": "^4.2.0",
|
|
@@ -53,29 +44,33 @@
|
|
|
53
44
|
"runscript": "^2.0.1",
|
|
54
45
|
"source-map-support": "^0.5.21",
|
|
55
46
|
"utility": "^2.5.0",
|
|
56
|
-
"@eggjs/utils": "5.0.
|
|
47
|
+
"@eggjs/utils": "5.0.1-beta.0"
|
|
57
48
|
},
|
|
58
49
|
"devDependencies": {
|
|
59
|
-
"@types/node": "^24.10.
|
|
50
|
+
"@types/node": "^24.10.2",
|
|
60
51
|
"coffee": "5",
|
|
61
52
|
"detect-port": "^2.1.0",
|
|
62
53
|
"mm": "^4.0.2",
|
|
63
|
-
"
|
|
64
|
-
"tsdown": "^0.17.0",
|
|
54
|
+
"tsdown": "^0.18.2",
|
|
65
55
|
"typescript": "^5.9.3",
|
|
66
56
|
"urllib": "^4.8.2",
|
|
67
57
|
"vitest": "^4.0.15",
|
|
68
|
-
"egg": "4.1.
|
|
69
|
-
|
|
58
|
+
"egg": "4.1.1-beta.0"
|
|
59
|
+
},
|
|
60
|
+
"oclif": {
|
|
61
|
+
"additionalHelpFlags": [
|
|
62
|
+
"-h"
|
|
63
|
+
],
|
|
64
|
+
"bin": "eggctl",
|
|
65
|
+
"commands": "./dist/commands",
|
|
66
|
+
"dirname": "eggctl",
|
|
67
|
+
"topicSeparator": " "
|
|
68
|
+
},
|
|
69
|
+
"engines": {
|
|
70
|
+
"node": ">= 22.18.0"
|
|
70
71
|
},
|
|
71
|
-
"main": "./dist/index.js",
|
|
72
|
-
"module": "./dist/index.js",
|
|
73
|
-
"types": "./dist/index.d.ts",
|
|
74
72
|
"scripts": {
|
|
75
|
-
"
|
|
76
|
-
"typecheck": "tsc --noEmit",
|
|
77
|
-
"lint": "oxlint --type-aware",
|
|
78
|
-
"pretest": "pnpm run build",
|
|
73
|
+
"typecheck": "tsgo --noEmit",
|
|
79
74
|
"test": "vitest run --bail 1 --no-file-parallelism",
|
|
80
75
|
"cov": "pnpm test --coverage",
|
|
81
76
|
"ci": "pnpm run cov"
|