Is there any way to rename an NPM module that has already been published? I want to change the name of my module to more accurately match the API it exposes but would not li
There isn't any exposed way to do that. When I've encountered this in the past the approach I took was:
npm deprecate %ProjectName%@"<=put-latest-version-here" "WARNING: This project has been renamed to %NewProjectName%. Install using %NewProjectName% instead."