# @module-federation/manifest

> Provide manifest/stats for webpack/rspack MF project .

Latest version **2.9.0** (published 2026-08-24) · MIT license · 0 weekly downloads

## Install

```sh
npm install @module-federation/manifest
pnpm add @module-federation/manifest
yarn add @module-federation/manifest
bun add @module-federation/manifest
```

## Health

**Score 75/100 (B)** — status: active.

Positive: has types; esm support; no vulnerabilities; has provenance; recently updated; high maintenance score; high quality score.

Warnings: low downloads.

## Facts

| | |
|---|---|
| Version | 2.9.0 |
| Published | 2026-08-24 |
| First published | 2024-02-23 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 3 |
| Unpacked size | 135.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Provenance | attested (GitHub Actions) |
| GitHub stars | 2639 |
| Author | hanric |
| Maintainers | zackljackson, heal, shawzhou, gioboa |
| Keywords | Module Federation, Webpack, Rspack, Manifest |

## Links

- npm: https://www.npmjs.com/package/@module-federation/manifest
- Repository: https://github.com/module-federation/core
- Homepage: https://github.com/module-federation/core#readme
- Issues: https://github.com/module-federation/core/issues
- npm.io page: https://npm.io/package/@module-federation/manifest

## Dependencies (3)

- [@module-federation/sdk](https://npm.io/package/@module-federation/sdk.md) 2.9.0
- [@module-federation/managers](https://npm.io/package/@module-federation/managers.md) 2.9.0
- [@module-federation/dts-plugin](https://npm.io/package/@module-federation/dts-plugin.md) 2.9.0

## Alternatives

- [raw-loader](https://npm.io/package/raw-loader.md) — 4.3M weekly downloads
- [plop](https://npm.io/package/plop.md) — 1.4M weekly downloads
- [webpack-deadcode-plugin](https://npm.io/package/webpack-deadcode-plugin.md) — 80.3K weekly downloads
- [@storybook/preact-vite](https://npm.io/package/@storybook/preact-vite.md) — 54.2K weekly downloads
- [vite-plugin-transform](https://npm.io/package/vite-plugin-transform.md) — 2.4K weekly downloads

## Recent versions

- 2.9.0 (latest) — 2026-08-24
- 0.0.0-release-v2-9-0-20260824030637 (next) — 2026-08-24
- 0.0.0-fix-runtime-core-set-shared-lib-20260819111025 — 2026-08-19
- 0.0.0-feat-preload-asset-url-dedupe-20260819073808 — 2026-08-19
- 0.0.0-feat-preload-asset-url-dedupe-20260819072341 — 2026-08-19
- 2.8.2 — 2026-08-06
- 0.0.0-feat-operate-openruntime-20260803054425 — 2026-08-03
- 0.0.0-feat-operate-openruntime-20260729120109 — 2026-07-29
- 0.0.0-feat-operate-openruntime-20260729082849 — 2026-07-29
- 2.8.1 — 2026-07-28
- 0.0.0-feat-operate-openruntime-20260726151341 — 2026-07-26
- 0.0.0-feat-operate-openruntime-20260726083609 — 2026-07-26
- 0.0.0-codex-rspress-codeblock-transform-20260724100038 — 2026-07-24
- 0.0.0-feat-operate-openruntime-20260722064424 — 2026-07-22
- 0.0.0-main-20260720131707 — 2026-07-20
- … 1096 more at https://npm.io/package/@module-federation/manifest/versions

## README

# `@module-federation/manifest` Documentation

## Description

This package contains the manifest plugin for webpack/rspack internal.

## Installation

```sh
npm install @module-federation/manifest
```

## Usage

1. replace expose options with container.options.exposes = containerManager.containerPluginExposesOptions;

```js
import { ContainerManager } from '@module-federation/managers';
const containerManager = new ContainerManager();
containerManager.init(options);
// it will set expose name automatically
options.exposes = containerManager.containerPluginExposesOptions;
```

2. use StatsPlugin in webpack.config.js

```js
import { StatsPlugin } from '@module-federation/manifest';

new StatsPlugin(mfOptions, {
  pluginVersion: pkg.version,
  bundler: 'webpack',
}).apply(compiler);
```

---
_Source: https://npm.io/package/@module-federation/manifest · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
