Error code

npm EPUBLISHCONFLICT

NPMEPUBLISHCONFLICT
Runtime Error Code· An error code from a programming runtime or package manager, like Node.js or npm.

What it means

The package version you are trying to publish already exists in the registry.

How to fix it

  1. Bump the version in package.json with npm version patch (or minor/major).
  2. Ensure you have not accidentally republished a version that was already released.
  3. Check the registry page for the package to confirm which versions exist.

Not affiliated with npm. Answer summarized from the manufacturer's manual linked above; consult that source for the authoritative procedure.