Skip to content

Commit

Permalink
jsr
Browse files Browse the repository at this point in the history
  • Loading branch information
aricart committed May 9, 2024
1 parent 6ee2c23 commit 7b86cda
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
{
"name": "@nats-io/jwt",
"version": "0.0.9",
"exports": {
".": "./src/mod.ts"
},
"imports": {
"std/": "https://deno.land/std@0.206.0/"
"std/": "https://deno.land/std@0.206.0/",
"@nats-io/nkeys": "jsr:@nats-io/nkeys"
},
"lint": {
"exclude": ["docs/", "lib/", "esm/jwt.js", "debug/", "cjs/", "cjs_src/"]
Expand Down
4 changes: 2 additions & 2 deletions src/nkeys.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2021-2023 The NATS Authors
// Copyright 2021-2024 The NATS Authors
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
Expand All @@ -11,7 +11,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

import * as nkeys from "https://raw.githubusercontent.com/nats-io/nkeys.js/v1.0.5/modules/esm/mod.ts";
import * as nkeys from "@nats-io/nkeys";

const createOperator = nkeys.createOperator;
const createAccount = nkeys.createAccount;
Expand Down

0 comments on commit 7b86cda

Please sign in to comment.