Before I do a small release and tag it, I\'d like to update the package.json to reflect the new version of the program.
Is there a way to edit the file package
package
With Husky:
{ "name": "demo-project", "version": "0.0.3", "husky": { "hooks": { "pre-commit": "npm --no-git-tag-version version patch" } } }