diff options
Diffstat (limited to 'packages/server/src')
-rw-r--r-- | packages/server/src/deps.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/server/src/deps.ts b/packages/server/src/deps.ts index 0f6c2ac..3d32709 100644 --- a/packages/server/src/deps.ts +++ b/packages/server/src/deps.ts @@ -19,11 +19,11 @@ export type { // @simplewebauthn/iso-webcrypto export { default as WebCrypto } from '../../iso-webcrypto/src/browser.ts'; +// cbor (a.k.a. cbor-x in Node land) +export * as cborx from 'https://deno.land/x/cbor@v1.5.2/index.js'; + // NPM: cross-fetch export { default as fetch } from 'npm:cross-fetch'; // NPM: debug export { default as debug, Debugger } from 'npm:debug'; - -// cbor (a.k.a. cbor-x in Node land) -export * as cborx from 'https://deno.land/x/cbor@v1.5.2/index.js'; |