Files
flights_web_raw/ClientApp/node_modules/@module-federation/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

86 lines
1.8 KiB
JSON

{
"name": "@module-federation/runtime",
"version": "0.22.0",
"type": "module",
"author": "zhouxiao <codingzx@gmail.com>",
"main": "./dist/index.cjs.cjs",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/module-federation/core.git",
"directory": "packages/runtime"
},
"files": [
"dist/",
"README.md"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.esm.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs.cjs"
}
},
"./helpers": {
"import": {
"types": "./dist/helpers.d.ts",
"default": "./dist/helpers.esm.js"
},
"require": {
"types": "./dist/helpers.d.ts",
"default": "./dist/helpers.cjs.cjs"
}
},
"./types": {
"import": {
"types": "./dist/types.d.ts",
"default": "./dist/types.esm.js"
},
"require": {
"types": "./dist/types.d.ts",
"default": "./dist/types.cjs.cjs"
}
},
"./core": {
"import": {
"types": "./dist/core.d.ts",
"default": "./dist/core.esm.js"
},
"require": {
"types": "./dist/core.d.ts",
"default": "./dist/core.cjs.cjs"
}
},
"./*": "./*"
},
"typesVersions": {
"*": {
".": [
"./dist/index.d.ts"
],
"helpers": [
"./dist/helpers.d.ts"
],
"types": [
"./dist/types.d.ts"
],
"core": [
"./dist/core.d.ts"
]
}
},
"dependencies": {
"@module-federation/runtime-core": "0.22.0",
"@module-federation/error-codes": "0.22.0",
"@module-federation/sdk": "0.22.0"
}
}