diff --git a/README.md b/README.md index 41955cf9..38b086e5 100644 --- a/README.md +++ b/README.md @@ -135,13 +135,13 @@ To publish updates to the package: Note that the package has the following configuration in package.json: ```json -"private": true, +"private": false, "publishConfig": { "access": "restricted" } ``` -This ensures that the package is only accessible to users with appropriate permissions within the @soulcraft organization. +This ensures that the package is only accessible to users with appropriate permissions within the @soulcraft organization. The `"access": "restricted"` setting limits access to the package to members of the @soulcraft organization, while `"private": false` allows the package to be published to npm. ### Installing the Private Package diff --git a/package.json b/package.json index 9e576c3e..e959c05c 100644 --- a/package.json +++ b/package.json @@ -30,7 +30,7 @@ ], "author": "David Snelling (david@soulcraft.com)", "license": "MIT", - "private": true, + "private": false, "publishConfig": { "access": "restricted" },