-
-
Notifications
You must be signed in to change notification settings - Fork 411
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.12 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.12 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
{
"name": "@module-federation/dts-plugin",
"version": "0.21.3",
"author": "hanric <hanric.zhang@gmail.com>",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/module-federation/core.git",
"directory": "packages/dts-plugin"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/",
"README.md"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./core": {
"import": "./dist/core.js",
"require": "./dist/core.js"
},
"./dynamic-remote-type-hints-plugin": {
"types": "./dist/dynamic-remote-type-hints-plugin.d.ts",
"import": "./dist/esm/dynamic-remote-type-hints-plugin.js",
"require": "./dist/dynamic-remote-type-hints-plugin.js"
},
"./*": "./*"
},
"typesVersions": {
"*": {
".": [
"./dist/index.d.ts"
],
"core": [
"./dist/core.d.ts"
],
"dynamic-remote-type-hints-plugin": [
"./dist/dynamic-remote-type-hints-plugin.d.ts"
]
}
},
"dependencies": {
"adm-zip": "^0.5.10",
"ansi-colors": "^4.1.3",
"axios": "^1.12.0",
"rambda": "^9.1.0",
"@module-federation/sdk": "workspace:*",
"@module-federation/managers": "workspace:*",
"lodash.clonedeepwith": "4.5.0",
"@module-federation/third-party-dts-extractor": "workspace:*",
"@module-federation/error-codes": "workspace:*",
"chalk": "3.0.0",
"fs-extra": "9.1.0",
"isomorphic-ws": "5.0.0",
"koa": "3.0.3",
"log4js": "6.9.1",
"node-schedule": "2.1.1",
"ws": "8.18.0"
},
"devDependencies": {
"@types/ws": "8.5.12",
"@types/koa": "2.15.0",
"@types/node-schedule": "2.1.7",
"@module-federation/runtime": "workspace:*",
"vue": "^3.5.13",
"@vue/tsconfig": "^0.7.0",
"vue-tsc": "^2.2.10",
"rimraf": "~6.0.1"
},
"peerDependencies": {
"typescript": "^4.9.0 || ^5.0.0",
"vue-tsc": ">=1.0.24"
},
"peerDependenciesMeta": {
"vue-tsc": {
"optional": true
}
}
}