Automates the exports
field in package.json
for multi-format packages by
analyzing distribution files. Declarative, extensible, and build-tool agnostic.
export-map-generator
provides a plugin-oriented pipeline for full control
over the generation of the exports -typically for package.json
files-
allowing developers to customize, extend, or override every step of the process.
The generator is built around several core ideas, all designed to enhance the developer experience.
Start with presets, extend or override as needed. From file-system API to entry generation, every step is customizable.
Demonstration: Configuration with the built-in presets
export default defineConfig({
presets: [
dts(),
cjs(),
esm(),
standard(),
],
});
Scans the distribution folders instead of the source files. This ensures that the actual distribution files are used for generating the exports, causing zero extra I/O overhead for the task.
Demonstration: Tree structure of a sample distribution folder
dist
├── cjs
│ └── array.cjs
├── esm
│ └── array.mjs
└── types
└── array.d.ts
Supports CJS, ESM, DTS, hybrid modules, and more. The import conditions are organized in the correct order to prevent conflicts.
Demonstration: Exports generated for a sample dual-package module
{
"exports": {
"./array.js": {
"types": "./dist/types/array.d.ts",
"import": "./dist/esm/array.mjs",
"require": "./dist/cjs/array.cjs",
"default": "./src/array.ts"
}
}
}
Resolves path ambiguities by organizing the exported entries in the correct order to prevent overlapping import paths.
Demonstration: Multiple import paths generated for the same file
{
"exports": {
"./array.d.ts": {
"types": "./dist/types/array.d.ts",
"default": "./src/array.ts"
},
"./array.js": {
"types": "./dist/types/array.d.ts",
"import": "./dist/esm/array.mjs",
"require": "./dist/cjs/array.cjs",
"default": "./src/array.ts"
},
"./array": {
"types": "./dist/types/array.d.ts",
"import": "./dist/esm/array.mjs",
"require": "./dist/cjs/array.cjs",
"default": "./src/array.ts"
}
}
}
Detects and generates exports for barrel files (index files) in the root and subdirectories.
Demonstration: Generating exports from directories
export default defineConfig({
extensions: [
barrel(),
],
});
{
"exports": {
"./index.js": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs",
"default": "./src/index.ts"
},
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs",
"default": "./src/index.ts"
}
}
}
Use via terminal or integrate into custom flows.
Demonstration: Generating the export map programmatically
const context = await resolveContext();
const exportMap = await generateExportMapByContext(context);
Demonstration: Listing the CLI commands
⋊> export-map-generator
Usage: export-map-generator [options] [command]
Options:
-V, --version output the version number
--cwd <PATH> path to the working directory
-c, --config <PATH> path to the configuration file
--dry-run preview changes without writing to disk (default: false)
-h, --help display help for command
Commands:
config configuration commands
context context commands
generate [options] generate export map
help [command] display help for command
The package is available on npm and can be installed with any compatible package manager.
npm install --save-dev export-map-generator
The library uses several optional peer dependencies to provide additional functionality. If you encounter issues with loading the configuration or running the CLI commands, you may need to install these dependencies.
npm install --save-dev commander cosmiconfig pretty-format
By default, the generator does not include any activated functionality. This design ensures that the export strategy remains explicit and intentional. From analyzing directories to writing the final export map, all logic is handled via extensions and presets that are explicitly activated in the configuration.
Built-in presets can be used to quickly setup the generator with common export patterns and conventions. For the list of available presets, refer to the Presets section.
The CLI provides a convenient way to interact with the generator. You can use it to generate the export map, preview changes, and inspect the context.
To preview the changes without writing to disk, you can use the --dry-run
and
--stdout
options together:
export-map-generator --dry-run generate --stdout
Note: The --stdout
option does not prevent the generator from updating the
package.json
file. To achieve that, you need to use the --dry-run
option.
For programmatic usage, you can import the library and use it in your scripts:
import { resolveContext } from "export-map-generator/context";
import { generateExportMapByContext } from "export-map-generator/export-map";
const context = await resolveContext({ dryRun: true });
const exportMap = await generateExportMapByContext(context);
The generator without any configuration cannot generate an exports
map,
this is by design to ensure that the user explicitly defines how the exports
should be structured. The configuration allows you to specify presets, plugins,
and other options to customize the export map generation process.
The configuration for export-map-generator
can be done via these files:
exports.config.cjs
exports.config.js
exports.config.mjs
(recommended)exports.config.ts
(recommended)
The configuration file should export either a default object or a function that returns an object.
import defineConfig from "export-map-generator/config";
export default defineConfig({});
Extensions are the plugins that provide core or additional functionalities to the generator. An extension can implement any method listed in the table below.
Method | Description |
---|---|
setup | Initialize the extension and set up any necessary state. |
resolveConfig | Resolve the configuration for the extension. |
resolveContext | Resolve the context for the extension. |
produceDirentRefs | Produce directory entries (e.g. matching a pattern). |
produceEntriesByDirentRef | Produce export-map entries based on the given directory entry. |
produceEntries | Produce export-map entries, (e.g. additional entries). |
handleEntryByDirentRef | Handle the entry by directory entry. |
handleEntry | Handle the entry (any entry). |
aggregateExportMap | Consolidate the generated entries and produce the final export map. |
sortExportMap | Sort the export map entries (e.g. to avoid conflicts). |
reportExportMap | Report the generated export map (e.g. update the package.json file). |
Presets are predefined configurations that encapsulate common export patterns and conventions. They can be used to quickly set up the export map generation without needing to define everything from scratch. The library comes with a set of built-in presets that can be used directly or extended as needed.
The CJS preset is designed for projects that distribute their code using the CommonJS module format.
Example: Using the CJS preset
import defineConfig from "export-map-generator/config";
import cjs from "export-map-generator/presets/cjs";
export default defineConfig({
presets: [
cjs(),
],
});
Example: Using the CJS preset for TypeScript source files
import defineConfig from "export-map-generator/config";
import cjs from "export-map-generator/presets/cjs";
export default defineConfig({
presets: [
cjs({
src: {
extension: ".ts",
},
}),
],
});
The CSS preset is designed for distributing stylesheet files.
Example: Using the CSS preset
import defineConfig from "export-map-generator/config";
import css from "export-map-generator/presets/css";
export default defineConfig({
presets: [
css(),
],
});
Example: Using the CSS preset for Sass source files
import defineConfig from "export-map-generator/config";
import css from "export-map-generator/presets/css";
export default defineConfig({
presets: [
css({
src: {
extension: ".sass",
},
}),
],
});
The DTS preset is designed for projects that distribute TypeScript declaration files.
Example: Using the DTS preset
import defineConfig from "export-map-generator/config";
import dts from "export-map-generator/presets/dts";
export default defineConfig({
presets: [
dts(),
],
});
Example: Using the DTS preset for TypeScript source files
import defineConfig from "export-map-generator/config";
import dts from "export-map-generator/presets/dts";
export default defineConfig({
presets: [
dts({
src: {
extension: ".ts",
},
}),
],
});
The ESM preset is designed for projects that distribute their code using the ECMAScript module format.
Example: Using the ESM preset
import defineConfig from "export-map-generator/config";
import esm from "export-map-generator/presets/esm";
export default defineConfig({
presets: [
esm(),
],
});
Example: Using the ESM preset for TypeScript source files
import defineConfig from "export-map-generator/config";
import esm from "export-map-generator/presets/esm";
export default defineConfig({
presets: [
esm({
src: {
extension: ".ts",
},
}),
],
});
The generic preset is designed to provide a flexible configuration for projects that do not fit into the standard module formats. It allows defining custom export patterns and conventions.
Example: Using the generic preset for arbitrary files
import defineConfig from "export-map-generator/config";
import generic from "export-map-generator/presets/generic";
export default defineConfig({
presets: [
generic({
conditions: [
"license",
],
dist: {
path: "licenses",
extension: "",
},
filter: (direntRef) =>
{
return (
direntRef.dirent.isFile()
&& ["", ".md", ".txt"].includes(direntRef.parsedPath.ext)
);
},
virtual: {
extension: ".license"
},
}),
],
});
The JSON preset is designed for distributing JSON files.
Example: Using the JSON preset
import defineConfig from "export-map-generator/config";
import json from "export-map-generator/presets/json";
export default defineConfig({
presets: [
json(),
],
});
The package-json preset ensures that package.json
file is explicitly
specified in the exports
, which is required by some environments to access
metadata safely.
Example: Using the Package-JSON preset
import defineConfig from "export-map-generator/config";
import packageJSON from "export-map-generator/presets/package-json";
export default defineConfig({
presets: [
packageJSON(),
],
});
The standard preset provides a comprehensive configuration that combines extensions that are responsible for these core functionalities:
- Analyzing the distribution for barrel files (index files)
- Generating exports from directories that contain barrel files
- Consolidating the export patterns per import path
- Preventing import path conflicts by organizing them in correct order
- Preventing runtime condition conflicts by organizing the exports in correct order
- Updating the
exports
field in thepackage.json
file
Example: Using the standard preset
import defineConfig from "export-map-generator/config";
import standard from "export-map-generator/presets/standard";
export default defineConfig({
presets: [
standard(),
],
});
The work of export-map-generator
can be seen in the
package.json
file of this repository. The exports
field is
generated based on the distribution files and the configuration provided in
the exports.config.ts
file. The generator analyzes the
distribution files and generates the exports
field based on the conventions
defined in the configuration.
This project is licensed under the MIT License. See the LICENSE file for details.