An npm package that I am using has an incorrect file path specified in its package.json. The current configuration is:
"main": "./htmldiff.js",
However, for it to function correctly, it should be:
"main": "./src/htmldiff.js",
I can try committing and downloading the un-merged version, but I wonder if there is a simpler solution that only involves updating local files?