I have created a package on npm that create a "scss directory stucture" and I would like to copy/add custom scripts to the package.json file at the root of the project.
MY-PROJECT
├── node_modules
├── scss
└── package.json <--
All I was able to do, is to copy a file name "package.json" to the local directory but if there is already one, it will overwrite it.
Obvisously i do not want to overwrite that file, but only add scripts like "npm run watch". So the user would be able to start working on its project right away without having to write those scripts himself.
Thanks for the help