npmnpm packages when using deno adddeno add. An alternative solution using .npmrc.npmrc configuration files and enabling nodeModulesDirnodeModulesDir inside deno.jsondeno.json made it simpler as you would only need to deno cache <entrypoint.ts>deno cache <entrypoint.ts> to download your private npm package to the projects node_modulesnode_modules directory.deno compiledeno compile command would fail when building container images. This is why node_modules/node_modules/ is needed. error: Unable to load /tmp/deno-compile-example_app/app/node_modules/.deno/@my-org+mylib@1.0.0/node_modules/@my-org/mylib/index.js imported from file:///tmp/deno-compile-example_app/app/src/app.tserror: Unable to load /tmp/deno-compile-example_app/app/node_modules/.deno/@my-org+mylib@1.0.0/node_modules/@my-org/mylib/index.js imported from file:///tmp/deno-compile-example_app/app/src/app.ts.deno.jsondeno.json file? I see that the option can now be set to manualmanual, but why on earth would I want to go back to a package.jsonpackage.json file? Should I just manually copy cache directories at build time inside the image to trick deno into symlinking them into the node_modulesnode_modules directory?Join the Discord to ask follow-up questions and connect with the community