Set package.json private flag to false for npm publication

Changed `"private"` to `false` in package.json to allow publishing the package to npm. The `"access": "restricted"` setting ensures that access remains limited to @soulcraft organization members. Updated README to reflect the new configuration.
This commit is contained in:
David Snelling 2025-05-23 11:30:19 -07:00
parent 7638506ffa
commit 99bc4990bd
2 changed files with 3 additions and 3 deletions

View file

@ -30,7 +30,7 @@
],
"author": "David Snelling (david@soulcraft.com)",
"license": "MIT",
"private": true,
"private": false,
"publishConfig": {
"access": "restricted"
},