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

61 lines
1.4 KiB
JSON

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