@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/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
+ }