javascriptdependenciesdeno

How to add dev-only dependencies in Deno?


In Node.js, we can use npm install -D foo to add a dependency into package.json > devDependencies. When the package is published and used as a dependency, devDependencies won't be installed.

But in deno.json, there is only imports, no devImports. According to Deno v2 RC announcement, we can use deno add --dev. But this only add contents to deno.lock, not adding anything to deno.json. I tried deno add --dev eslint (not migrating Deno Lint yet), but it complained eslint: command not found.

When package.json exists, it's added to package.json, but I'm trying finding a pure-Deno solution.

I found denoland/deno#26865, but no answers are there.


Solution

  • See this answer by "crowKats" here, but in short:

    With a “npm-style” Deno project, based on package.json, use

    But with a deno.json or deno.jsonc project, use

    There’s no need to segregate development and production dependencies for Deno 2+ native projects. Deno is smart: it only caches and installs the dependencies needed for the current runtime.

    While I’m not a Deno expert myself (still learning), my suggestion is that you need to read Deno's documentation attentively but also with an "open mind" (don't expect it to just be a cuter, giant-lizard version of npm):

    References: