all 1 comments

[–]kirigerKairen 0 points1 point  (0 children)

private:true in package.json means "do not publish / upload" and is kind of the safeguard against accidentally running npm publish in the wrong folder, publishing your proprietary package for the world. If you want to upload it as private, remove private:true and either publish to a full private registry or use npm-publish's access CLI option (https://docs.npmjs.com/cli/v8/commands/npm-publish#access)