canirequire › ESM-only › @semantic-release/npm
Is @semantic-release/npm ESM-only? Can you require() it?
semantic-release plugin to publish a npm package
Last verified Sep 9, 2026 against @semantic-release/npm@13.1.5. JSON
ESM-only ESM-only since 10.0.0 — last CommonJS version is 9.0.2
@semantic-release/npm dropped its CommonJS build in 10.0.0 (March 2023). The last version you can require() on every Node.js version, including 18 and older, is 9.0.2, published Jan 13, 2023.
require("@semantic-release/npm") fails even on Node.js 20.19+ / 22.12+ because the package uses top-level await, which require(esm) cannot load. Use import() instead.
@semantic-release/npm@13.1.5 declares engines "^22.14.0 || >= 24.10.0", so Node.js 18, 20 are outside its supported range regardless of module format.
Does @semantic-release/npm@13.1.5 actually load? Runtime test results
Installed and executed on Sep 9, 2026 with require("@semantic-release/npm") from a CommonJS file and import "@semantic-release/npm" from an ES module.
| Runtime | require("@semantic-release/npm") | import "@semantic-release/npm" |
|---|---|---|
| Node.js 18 | ✗ failsERR_REQUIRE_ESM | ✓ works |
| Node.js 20 | ✗ failsERR_REQUIRE_ASYNC_MODULE | ✓ works |
| Node.js 22 | ✗ failsERR_REQUIRE_ASYNC_MODULE | ✓ works |
| Node.js 24 | ✗ failsERR_REQUIRE_ASYNC_MODULE | ✓ works |
| Node.js 26 | ✗ failsERR_REQUIRE_ASYNC_MODULE | ✓ works |
| Bun 1.4 | ✗ failsTypeError | ✓ works |
How to import @semantic-release/npm
ES modules (import)
import npm from "@semantic-release/npm";CommonJS (require)
// Node.js 20.19+ / 22.12+ / newer (package has no top-level await):
const npm = require("@semantic-release/npm");
// Any Node.js version:
const npm = await import("@semantic-release/npm");
// Or pin the last CommonJS release:
// npm install @semantic-release/npm@9.0.2Module format by version
Derived from the type, main and exports fields of every stable release on npm (111 versions; the newest 60 shown).
| Versions | Format | First published |
|---|---|---|
| 10.0.0 – 13.1.5 | ESM-only | Mar 22, 2023 |
| 5.1.7 – 9.0.2 | CommonJS | Apr 14, 2019 |
Frequently asked
Is @semantic-release/npm ESM-only?
@semantic-release/npm@13.1.5 is ESM-only. @semantic-release/npm dropped its CommonJS build in 10.0.0 (March 2023). The last version you can require() on every Node.js version, including 18 and older, is 9.0.2, published Jan 13, 2023.
Which version of @semantic-release/npm still supports CommonJS / require()?
9.0.2 is the last version of @semantic-release/npm with a CommonJS build. Install it with "npm install @semantic-release/npm@9.0.2". Every version from 10.0.0 on is ESM-only.
How do I use @semantic-release/npm from a CommonJS file?
Use a dynamic import: const mod = await import("@semantic-release/npm"). On Node.js 20.19+, 22.12+ and newer, a plain require("@semantic-release/npm") also works for ESM packages that do not use top-level await. Alternatively pin @semantic-release/npm@9.0.2.
Does @semantic-release/npm work in Bun?
Yes. import "@semantic-release/npm" loaded successfully in Bun 1.4 on Sep 9, 2026.
Does @semantic-release/npm ship TypeScript types?
No. @semantic-release/npm ships no type declarations and there is no @types package for it.
Links
Other esm-only packages
- ansi-styles 7.0.0last CJS
5.2.0 - strip-ansi 7.2.0last CJS
6.0.1 - commander 15.0.0last CJS
14.0.3 - supports-color 11.0.0last CJS
8.1.1 - chalk 6.0.0last CJS
4.1.2 - tslib 2.8.1last CJS
2.5.2 - string-width 8.2.2last CJS
4.2.3 - ansi-regex 6.3.0last CJS
5.0.1
Similar popularity
- @rollup/plugin-typescript 12.3.0Dual
- @fortawesome/fontawesome-svg-core 7.3.1Dual
- @rollup/plugin-alias 6.0.0ESM-only
- @fortawesome/free-solid-svg-icons 7.3.1Dual
- @storybook/addons 7.6.17Dual
- @semantic-release/commit-analyzer 13.0.1ESM-only
- @semantic-release/github 12.0.9ESM-only
- @storybook/react-webpack5 10.6.0No entry