deno build (to pre render my sveltekit app) and cd build && deno index.js works like a charm. However, I also have some api routes that use npm packages. devDependencies, such as lints and types. In npm, I would use --omit=dev (I believe Bun has a similar flag).devDependencies when running deno install deDependencies.devDependencies when running deno install or should I use --entrypoint=file1.file2 , if so which file should I select? Or is there a better way to handle this?