Skip to content
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
{
"name": "@metamask/vault-decryptor",
"version": "1.0.0",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It seems that this PR is not just about making the site publishable, we are also making the package public as well. Do we want to set this version to 0.0.0? Otherwise, when we make a PR to release the package, the version won't be changed (or maybe it will, but it might go from 1.0.0 to something 0.1.0 which would be strange).

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you very much! Updated version to 0.0.0

"private": true,
"description": "Utility for decrypting MetaMask vault data",
"main": "index.js",
"files": [
"index.html",
"bundle.js"
],
"scripts": {
"start": "beefy index.js:bundle.js --live --open",
"test": "jest && jest-it-up",
Expand Down Expand Up @@ -72,5 +75,9 @@
"engines": {
"node": ">=18.0.0"
},
"packageManager": "[email protected]"
"packageManager": "[email protected]",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}
Loading