mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 01:22:49 +00:00
103 lines
2.6 KiB
JSON
103 lines
2.6 KiB
JSON
{
|
|
"name": "@module-federation/rspack",
|
|
"version": "2.5.0",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"Module Federation",
|
|
"Rspack"
|
|
],
|
|
"files": [
|
|
"dist/",
|
|
"README.md"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/module-federation/core.git",
|
|
"directory": "packages/rspack"
|
|
},
|
|
"author": "hanric <hanric.zhang@gmail.com>",
|
|
"sideEffects": false,
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"dependencies": {
|
|
"@module-federation/bridge-react-webpack-plugin": "2.5.0",
|
|
"@module-federation/dts-plugin": "2.5.0",
|
|
"@module-federation/managers": "2.5.0",
|
|
"@module-federation/manifest": "2.5.0",
|
|
"@module-federation/sdk": "2.5.0",
|
|
"@module-federation/inject-external-runtime-core-plugin": "2.5.0",
|
|
"@module-federation/runtime-tools": "2.5.0"
|
|
},
|
|
"devDependencies": {
|
|
"@rspack/core": "^1.0.2"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"import": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.mjs"
|
|
},
|
|
"require": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
}
|
|
},
|
|
"./plugin": {
|
|
"import": {
|
|
"types": "./dist/plugin.d.ts",
|
|
"default": "./dist/plugin.mjs"
|
|
},
|
|
"require": {
|
|
"types": "./dist/plugin.d.ts",
|
|
"default": "./dist/plugin.js"
|
|
}
|
|
},
|
|
"./remote-entry-plugin": {
|
|
"import": {
|
|
"types": "./dist/remote-entry-plugin.d.ts",
|
|
"default": "./dist/remote-entry-plugin.mjs"
|
|
},
|
|
"require": {
|
|
"types": "./dist/remote-entry-plugin.d.ts",
|
|
"default": "./dist/remote-entry-plugin.js"
|
|
}
|
|
}
|
|
},
|
|
"typesVersions": {
|
|
"*": {
|
|
".": [
|
|
"./dist/index.d.ts"
|
|
],
|
|
"plugin": [
|
|
"./dist/plugin.d.ts"
|
|
],
|
|
"remote-entry-plugin": [
|
|
"./dist/remote-entry-plugin.d.ts"
|
|
]
|
|
}
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": "^4.9.0 || ^5.0.0",
|
|
"vue-tsc": ">=1.0.24",
|
|
"@rspack/core": "^0.7.0 || ^1.0.0 || ^2.0.0-0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"typescript": {
|
|
"optional": true
|
|
},
|
|
"vue-tsc": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "rslib build",
|
|
"lint": "ESLINT_USE_FLAT_CONFIG=false pnpm exec eslint --ignore-pattern node_modules \"**/*.ts\" \"package.json\"",
|
|
"test": "pnpm exec jest --config jest.config.js --passWithNoTests",
|
|
"test:ci": "pnpm exec jest --config jest.config.js --passWithNoTests --ci --coverage",
|
|
"pre-release": "pnpm run test && pnpm run build"
|
|
}
|
|
} |