diff --git a/README.md b/README.md index 1f840f0..1a18398 100644 --- a/README.md +++ b/README.md @@ -4,10 +4,10 @@ A high-level library for working with JSON Web Tokens (JWT), making it easier to ## Installation -Install the library along with an implementation of the `@mjackson/file-storage` +Install the library along with an implementation of the `@remix-run/file-storage` ```sh -bun add @edgefirst-dev/jwt @mjackson/file-storage +bun add @edgefirst-dev/jwt @remix-run/file-storage ``` ## Usage @@ -30,7 +30,7 @@ To sign a JWT, you need a signing key. ```ts import { JWT, JWK } from "@edgefirst-dev/jwt"; -import { MemoryFileStorage } from "@mjackson/file-storage/memory"; +import { MemoryFileStorage } from "@remix-run/file-storage/memory"; let storage = new MemoryFileStorage(); diff --git a/package.json b/package.json index 116cc58..249acfc 100644 --- a/package.json +++ b/package.json @@ -42,7 +42,7 @@ }, "dependencies": { "@edgefirst-dev/data": "0.0.4", - "@mjackson/file-storage": "^0.7.0", + "@remix-run/file-storage": "^0.9.0", "jose": "^6.0.11", "type-fest": "^4.34.1" },