-
Notifications
You must be signed in to change notification settings - Fork 92
/
package.json
102 lines (102 loc) · 2.37 KB
/
package.json
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
{
"name": "@eggjs/core",
"version": "6.0.2",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">= 18.19.0"
},
"tnpm": {
"mode": "npm"
},
"description": "A core plugin framework based on @eggjs/koa",
"scripts": {
"lint": "eslint src test --ext ts",
"pretest": "npm run prepublishOnly",
"test": "npm run lint -- --fix && npm run test-local",
"test-local": "egg-bin test",
"preci": "npm run prepublishOnly",
"ci": "npm run lint && egg-bin cov && npm run prepublishOnly",
"prepublishOnly": "tshy && tshy-after"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eggjs/egg-core.git"
},
"keywords": [
"egg",
"loader"
],
"author": "fengmk2 <fengmk2@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/eggjs/egg/issues"
},
"homepage": "https://github.com/eggjs/egg-core#readme",
"dependencies": {
"@eggjs/koa": "^2.18.2",
"@eggjs/router": "^3.0.5",
"@eggjs/utils": "^4.0.2",
"egg-logger": "^3.5.0",
"egg-path-matching": "^2.0.0",
"extend2": "^4.0.0",
"get-ready": "^3.1.0",
"globby": "^11.0.2",
"is-type-of": "^2.1.0",
"node-homedir": "^2.0.0",
"performance-ms": "^1.1.0",
"ready-callback": "^4.0.0",
"tsconfig-paths": "^4.2.0",
"utility": "^2.1.0"
},
"devDependencies": {
"@eggjs/tsconfig": "1",
"@types/js-yaml": "4",
"@types/mocha": "10",
"@types/node": "20",
"@types/supertest": "6",
"await-event": "2",
"coffee": "5",
"egg-bin": "6",
"eslint": "8",
"eslint-config-egg": "14",
"gals": "1",
"js-yaml": "3",
"mm": "3",
"supertest": "7",
"ts-node": "10",
"tshy": "1",
"tshy-after": "1",
"typescript": "5",
"urllib": "4"
},
"files": [
"dist",
"src"
],
"type": "module",
"tshy": {
"exports": {
"./package.json": "./package.json",
".": "./src/index.ts"
}
},
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"source": "./src/index.ts",
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"source": "./src/index.ts",
"types": "./dist/commonjs/index.d.ts",
"default": "./dist/commonjs/index.js"
}
}
},
"main": "./dist/commonjs/index.js",
"types": "./dist/commonjs/index.d.ts"
}