Files
flights_web_raw/ClientApp/node_modules/@module-federation/webpack-bundler-runtime/package.json
T
gnezim 0a5ab058a6 Initial commit: Aeroflot Flights Web - Angular 12 baseline
- Angular 12 application with PrimeNG components
- 5 existing Cypress e2e test suites
- SCSS styling with BEM naming convention
- i18n support (10 languages)
- Leaflet map integration
- Complete component hierarchy and routing structure

This baseline will be used for Angular → React migration.
2026-04-05 18:47:57 +03:00

68 lines
1.5 KiB
JSON

{
"public": true,
"name": "@module-federation/webpack-bundler-runtime",
"version": "0.22.0",
"type": "module",
"license": "MIT",
"description": "Module Federation Runtime for webpack",
"keywords": [
"Module Federation",
"bundler runtime"
],
"files": [
"dist/",
"README.md"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/module-federation/core.git",
"directory": "packages/webpack-bundler-runtime"
},
"author": "zhanghang <hanric.zhang@gmail.com>",
"main": "./dist/index.cjs.cjs",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"dependencies": {
"@module-federation/runtime": "0.22.0",
"@module-federation/sdk": "0.22.0"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.esm.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs.cjs"
}
},
"./constant": {
"import": {
"types": "./dist/constant.d.ts",
"default": "./dist/constant.esm.js"
},
"require": {
"types": "./dist/constant.d.ts",
"default": "./dist/constant.cjs.cjs"
}
},
"./*": "./*"
},
"typesVersions": {
"*": {
".": [
"./dist/index.d.ts"
],
"constant": [
"./dist/constant.d.ts"
]
}
},
"devDependencies": {
"@module-federation/runtime": "0.22.0"
}
}