@module-federation/dts-plugin 0.0.0-chore-bump-node-22-20260710161714
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/LICENSE +21 -0
- package/README.md +1 -0
- package/dist/Action-CzhPMw2i.js +153 -0
- package/dist/Broker-CaenCqdn.js +783 -0
- package/dist/CHANGELOG.md +1390 -0
- package/dist/DtsWorker-Bt7-_SGH.d.ts +166 -0
- package/dist/README.md +1 -0
- package/dist/constant-YOdZl7sj.d.ts +42 -0
- package/dist/consumeTypes-Dle9g2SZ.js +241 -0
- package/dist/core.d.ts +3 -0
- package/dist/core.js +28 -0
- package/dist/dynamic-remote-type-hints-plugin.d.ts +766 -0
- package/dist/dynamic-remote-type-hints-plugin.js +74 -0
- package/dist/esm/Action-DNNg2YDh.mjs +47 -0
- package/dist/esm/Broker-Cmbh_XVO.mjs +718 -0
- package/dist/esm/consumeTypes-3S4eCiRK.mjs +208 -0
- package/dist/esm/core.mjs +5 -0
- package/dist/esm/dynamic-remote-type-hints-plugin.mjs +73 -0
- package/dist/esm/expose-rpc-CDdqA9PX.mjs +1380 -0
- package/dist/esm/fork-dev-worker.mjs +113 -0
- package/dist/esm/fork-generate-dts.mjs +14 -0
- package/dist/esm/index.mjs +509 -0
- package/dist/esm/start-broker.mjs +22 -0
- package/dist/esm/utils-CkPvDGOy.mjs +13 -0
- package/dist/expose-rpc-BpRiu3VK.js +1489 -0
- package/dist/fork-dev-worker.d.ts +16 -0
- package/dist/fork-dev-worker.js +114 -0
- package/dist/fork-generate-dts.d.ts +6 -0
- package/dist/fork-generate-dts.js +15 -0
- package/dist/iife/launch-web-client.iife.js +117 -0
- package/dist/index.d.ts +67 -0
- package/dist/index.js +517 -0
- package/dist/start-broker.d.ts +44 -0
- package/dist/start-broker.js +23 -0
- package/dist/utils-7KqCZHbb.js +19 -0
- package/package.json +108 -0
package/package.json
ADDED
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@module-federation/dts-plugin",
|
|
3
|
+
"version": "0.0.0-chore-bump-node-22-20260710161714",
|
|
4
|
+
"author": "hanric <hanric.zhang@gmail.com>",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"module": "./dist/esm/index.mjs",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"license": "MIT",
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/module-federation/core.git",
|
|
12
|
+
"directory": "packages/dts-plugin"
|
|
13
|
+
},
|
|
14
|
+
"publishConfig": {
|
|
15
|
+
"access": "public"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist/",
|
|
19
|
+
"README.md"
|
|
20
|
+
],
|
|
21
|
+
"exports": {
|
|
22
|
+
".": {
|
|
23
|
+
"import": {
|
|
24
|
+
"types": "./dist/index.d.ts",
|
|
25
|
+
"default": "./dist/esm/index.mjs"
|
|
26
|
+
},
|
|
27
|
+
"require": {
|
|
28
|
+
"types": "./dist/index.d.ts",
|
|
29
|
+
"default": "./dist/index.js"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"./core": {
|
|
33
|
+
"import": {
|
|
34
|
+
"types": "./dist/core.d.ts",
|
|
35
|
+
"default": "./dist/esm/core.mjs"
|
|
36
|
+
},
|
|
37
|
+
"require": {
|
|
38
|
+
"types": "./dist/core.d.ts",
|
|
39
|
+
"default": "./dist/core.js"
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
"./dynamic-remote-type-hints-plugin": {
|
|
43
|
+
"import": {
|
|
44
|
+
"types": "./dist/dynamic-remote-type-hints-plugin.d.ts",
|
|
45
|
+
"default": "./dist/esm/dynamic-remote-type-hints-plugin.mjs"
|
|
46
|
+
},
|
|
47
|
+
"require": {
|
|
48
|
+
"types": "./dist/dynamic-remote-type-hints-plugin.d.ts",
|
|
49
|
+
"default": "./dist/dynamic-remote-type-hints-plugin.js"
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
"./*": "./*"
|
|
53
|
+
},
|
|
54
|
+
"typesVersions": {
|
|
55
|
+
"*": {
|
|
56
|
+
".": [
|
|
57
|
+
"./dist/index.d.ts"
|
|
58
|
+
],
|
|
59
|
+
"core": [
|
|
60
|
+
"./dist/core.d.ts"
|
|
61
|
+
],
|
|
62
|
+
"dynamic-remote-type-hints-plugin": [
|
|
63
|
+
"./dist/dynamic-remote-type-hints-plugin.d.ts"
|
|
64
|
+
]
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
"dependencies": {
|
|
68
|
+
"adm-zip": "0.5.10",
|
|
69
|
+
"isomorphic-ws": "5.0.0",
|
|
70
|
+
"undici": "7.28.0",
|
|
71
|
+
"node-schedule": "2.1.1",
|
|
72
|
+
"ws": "8.21.0",
|
|
73
|
+
"@module-federation/error-codes": "0.0.0-chore-bump-node-22-20260710161714",
|
|
74
|
+
"@module-federation/third-party-dts-extractor": "0.0.0-chore-bump-node-22-20260710161714",
|
|
75
|
+
"@module-federation/sdk": "0.0.0-chore-bump-node-22-20260710161714",
|
|
76
|
+
"@module-federation/managers": "0.0.0-chore-bump-node-22-20260710161714"
|
|
77
|
+
},
|
|
78
|
+
"devDependencies": {
|
|
79
|
+
"@rstest/core": "^0.10.6",
|
|
80
|
+
"@types/node-schedule": "2.1.7",
|
|
81
|
+
"@types/ws": "8.5.12",
|
|
82
|
+
"@vue/tsconfig": "^0.7.0",
|
|
83
|
+
"directory-tree": "3.5.2",
|
|
84
|
+
"rimraf": "~6.0.1",
|
|
85
|
+
"typescript": "6.0.3",
|
|
86
|
+
"vue": "^3.5.13",
|
|
87
|
+
"vue-tsc": "^2.2.10",
|
|
88
|
+
"webpack": "^5.104.1",
|
|
89
|
+
"@module-federation/runtime": "0.0.0-chore-bump-node-22-20260710161714"
|
|
90
|
+
},
|
|
91
|
+
"peerDependencies": {
|
|
92
|
+
"typescript": "^4.9.0 || ^5.0.0 || ^6.0.0",
|
|
93
|
+
"vue-tsc": ">=1.0.24"
|
|
94
|
+
},
|
|
95
|
+
"peerDependenciesMeta": {
|
|
96
|
+
"vue-tsc": {
|
|
97
|
+
"optional": true
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
"scripts": {
|
|
101
|
+
"build": "tsdown --config ./tsdown.config.ts && sleep 1 && cp *.md ./dist",
|
|
102
|
+
"test": "node -e \"require('fs').rmSync('dist-test',{recursive:true,force:true,maxRetries:20,retryDelay:50})\" && pnpm run test-impl",
|
|
103
|
+
"test-impl": "pnpm exec rstest --passWithNoTests",
|
|
104
|
+
"lint": "ESLINT_USE_FLAT_CONFIG=false pnpm exec eslint --ignore-pattern node_modules \"**/*.ts\" \"package.json\"",
|
|
105
|
+
"build-debug": "FEDERATION_DEBUG=true pnpm run build",
|
|
106
|
+
"pre-release": "pnpm run test && pnpm run build"
|
|
107
|
+
}
|
|
108
|
+
}
|