diff --git a/README.md b/README.md index f3634b0..727a2d0 100644 --- a/README.md +++ b/README.md @@ -16,9 +16,9 @@ This repository provides a set of pre-built strategies for use with Remix Auth, Install the package using your preferred package manager: ```bash -npm install @vd-tech/remix-auth-strategies +npm install @vdtech/remix-auth-strategies # or -yarn add @vd-tech/remix-auth-strategies +yarn add @vdtech/remix-auth-strategies ``` ## Usage @@ -26,7 +26,7 @@ yarn add @vd-tech/remix-auth-strategies ### Azure AD B2C Strategy ```typescript -import { AzureB2CStrategy } from "@vd-tech/remix-auth-strategies"; +import { AzureB2CStrategy } from "@vdtech/remix-auth-strategies"; const azureStrategy = new AzureB2CStrategy( { @@ -49,7 +49,7 @@ const azureStrategy = new AzureB2CStrategy( ### Auth0 Strategy ```typescript -import { Auth0Strategy } from "@vd-tech/remix-auth-strategies"; +import { Auth0Strategy } from "@vdtech/remix-auth-strategies"; const auth0Strategy = new Auth0Strategy( { diff --git a/package.json b/package.json index 5c0267d..305a066 100644 --- a/package.json +++ b/package.json @@ -1,11 +1,9 @@ { - "name": "@vd-tech/remix-auth-strategies", - "version": "0.0.1", + "name": "@vdtech/remix-auth-strategies", + "version": "0.0.0", "description": "A collection of authentication strategies for Remix Auth, designed to simplify the integration of various OAuth2 providers.", "license": "MIT", - "funding": [ - "https://github.com/sponsors/paul-vd" - ], + "funding": ["https://github.com/sponsors/paul-vd"], "author": { "name": "Paul van Dyk", "email": "paul@vandyk.fr", @@ -19,13 +17,7 @@ "bugs": { "url": "https://github.com/vd-tech/remix-auth-strategies/issues" }, - "keywords": [ - "remix", - "remix-auth", - "auth", - "authentication", - "strategy" - ], + "keywords": ["remix", "remix-auth", "auth", "authentication", "strategy"], "scripts": { "build": "tsc", "typecheck": "tsc --noEmit", @@ -38,11 +30,7 @@ "engines": { "node": ">=20.0.0" }, - "files": [ - "build", - "package.json", - "README.md" - ], + "files": ["build", "package.json", "README.md"], "exports": { "./azure": "./build/azure.js", "./auth0": "./build/auth0.js",