Files
emaui/node_modules/@module-federation/dts-plugin/package.json
2026-05-29 15:23:46 +03:00

108 lines
2.9 KiB
JSON

{
"name": "@module-federation/dts-plugin",
"version": "2.5.0",
"author": "hanric <hanric.zhang@gmail.com>",
"main": "./dist/index.js",
"module": "./dist/esm/index.mjs",
"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": {
"types": "./dist/index.d.ts",
"default": "./dist/esm/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./core": {
"import": {
"types": "./dist/core.d.ts",
"default": "./dist/esm/core.mjs"
},
"require": {
"types": "./dist/core.d.ts",
"default": "./dist/core.js"
}
},
"./dynamic-remote-type-hints-plugin": {
"import": {
"types": "./dist/dynamic-remote-type-hints-plugin.d.ts",
"default": "./dist/esm/dynamic-remote-type-hints-plugin.mjs"
},
"require": {
"types": "./dist/dynamic-remote-type-hints-plugin.d.ts",
"default": "./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",
"isomorphic-ws": "5.0.0",
"undici": "7.24.7",
"node-schedule": "2.1.1",
"ws": "8.18.0",
"@module-federation/managers": "2.5.0",
"@module-federation/third-party-dts-extractor": "2.5.0",
"@module-federation/sdk": "2.5.0",
"@module-federation/error-codes": "2.5.0"
},
"devDependencies": {
"@types/node-schedule": "2.1.7",
"@types/ws": "8.5.12",
"@vue/tsconfig": "^0.7.0",
"rimraf": "~6.0.1",
"vue": "^3.5.13",
"vue-tsc": "^2.2.10",
"directory-tree": "3.5.2",
"vitest": "1.6.0",
"webpack": "^5.104.1",
"@module-federation/runtime": "2.5.0"
},
"peerDependencies": {
"typescript": "^4.9.0 || ^5.0.0",
"vue-tsc": ">=1.0.24"
},
"peerDependenciesMeta": {
"vue-tsc": {
"optional": true
}
},
"scripts": {
"build": "tsdown --config ./tsdown.config.ts && sleep 1 && cp *.md ./dist",
"test": "node -e \"require('fs').rmSync('dist-test',{recursive:true,force:true,maxRetries:20,retryDelay:50})\" && pnpm run test-impl",
"test-impl": "pnpm exec vitest run --passWithNoTests --config vite.config.mts",
"lint": "ESLINT_USE_FLAT_CONFIG=false pnpm exec eslint --ignore-pattern node_modules \"**/*.ts\" \"package.json\"",
"build-debug": "FEDERATION_DEBUG=true pnpm run build",
"pre-release": "pnpm run test && pnpm run build"
}
}