Package.json Generator

Generate a package.json file with common configurations

Result
package.json
{ "name": "my-package", "version": "1.0.0", "description": "", "main": "index.js", "type": "module", "scripts": { "start": "node index.js", "dev": "node --watch index.js", "test": "echo \"Error: no test specified\" && exit 1", "build": "echo \"No build step configured\"" }, "keywords": [], "author": "", "license": "MIT" }