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

85 lines
2.0 KiB
JSON

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