deno.json references a project within (at some sub-dir path).deno.json uses the "exports" option to map "." to "./src/mod.ts".deno.json then references this directory in the "imports" map, from "package-a" to "./package-a"."exports" values, such that 1) I can import with a short specifier, and 2) I can reference either a local directory or the package on JSR without changing any import code.