Deno has had import maps support for quite some time now, and a recent blog post about the downsides of using the deps.ts (like I do in @simplewebauthn/server)...
...made me want to try to migrate the library to using import maps in deno.jsonc instead.
This PR replaces deps.ts with an import map, then refactors everything away from relative importing out of deps.ts for more traditional package name identifiers.
Deno has had import maps support for quite some time now, and a recent blog post about the downsides of using the deps.ts (like I do in @simplewebauthn/server)...
https://deno.com/blog/http-imports
...made me want to try to migrate the library to using import maps in deno.jsonc instead.
This PR replaces deps.ts with an import map, then refactors everything away from relative importing out of deps.ts for more traditional package name identifiers.