-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 2.99 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 2.99 KB
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@eggjs/bin",
"version": "8.0.2-beta.6",
"description": "egg developer tool",
"homepage": "https://github.com/eggjs/egg/tree/next/tools/egg-bin",
"bugs": {
"url": "https://github.com/eggjs/egg/issues"
},
"license": "MIT",
"author": "fengmk2 <fengmk2@gmail.com> (https://github.com/fengmk2)",
"repository": {
"type": "git",
"url": "git+https://github.com/eggjs/egg.git",
"directory": "tools/egg-bin"
},
"bin": {
"egg-bin": "./bin/run.js"
},
"files": [
"bin",
"dist",
"scripts"
],
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./src/index.ts",
"./baseCommand": "./src/baseCommand.ts",
"./commands/cov": "./src/commands/cov.ts",
"./commands/dev": "./src/commands/dev.ts",
"./commands/manifest": "./src/commands/manifest.ts",
"./commands/test": "./src/commands/test.ts",
"./types": "./src/types.ts",
"./utils": "./src/utils.ts",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public",
"exports": {
".": "./dist/index.js",
"./baseCommand": "./dist/baseCommand.js",
"./commands/cov": "./dist/commands/cov.js",
"./commands/dev": "./dist/commands/dev.js",
"./commands/manifest": "./dist/commands/manifest.js",
"./commands/test": "./dist/commands/test.js",
"./types": "./dist/types.js",
"./utils": "./dist/utils.js",
"./package.json": "./package.json"
}
},
"scripts": {
"typecheck": "tsgo --noEmit",
"pretest": "tsdown",
"test": "vitest run",
"cov": "vitest run --coverage",
"ci": "npm run cov"
},
"dependencies": {
"@eggjs/core": "workspace:*",
"@eggjs/tegg-vitest": "workspace:*",
"@eggjs/utils": "workspace:*",
"@oclif/core": "catalog:",
"@vitest/coverage-v8": "catalog:",
"ci-parallel-vars": "catalog:",
"detect-port": "catalog:",
"globby": "catalog:",
"jest-changed-files": "catalog:",
"ts-node": "catalog:",
"tsconfig-paths": "catalog:",
"utility": "catalog:",
"vitest": "catalog:"
},
"devDependencies": {
"@eggjs/mock": "workspace:*",
"@eggjs/supertest": "workspace:*",
"@eggjs/tsconfig": "workspace:*",
"@swc-node/register": "catalog:",
"@swc/core": "catalog:",
"@types/node": "catalog:",
"assert-file": "catalog:",
"coffee": "catalog:",
"cpy": "catalog:",
"egg": "workspace:*",
"esbuild": "catalog:",
"esbuild-register": "catalog:",
"npminstall": "catalog:",
"rimraf": "catalog:",
"runscript": "catalog:",
"sdk-base": "catalog:",
"typescript": "catalog:"
},
"peerDependencies": {
"@eggjs/mock": "workspace:*"
},
"peerDependenciesMeta": {
"@eggjs/mock": {
"optional": true
}
},
"oclif": {
"additionalHelpFlags": [
"-h"
],
"bin": "egg-bin",
"commands": "./dist/commands",
"dirname": "egg-bin",
"topicSeparator": " "
},
"engines": {
"node": ">=22.18.0"
}
}