UNPKG

remix-auth-email-link

Version:

> This strategy is heavily based on **kcd** strategy present in the [v2 of Remix Auth](https://github.com/sergiodxa/remix-auth/blob/v2.6.0/docs/strategies/kcd.md). The major difference being we are using `crypto-js` instead of `crypto` so that it can be d

66 lines (65 loc) 1.71 kB
{ "name": "remix-auth-email-link", "version": "2.1.1", "main": "./build/index.js", "types": "./build/index.d.ts", "scripts": { "build": "tsc --project tsconfig.json", "typecheck": "tsc --project tsconfig.json --noEmit", "lint": "eslint . --fix --ignore-path .gitignore", "format": "prettier --config .prettierrc --write --list-different --ignore-path .gitignore .", "coverage": "yarn test -- --coverage", "prepare": "husky install" }, "keywords": [ "remix", "remix-auth", "auth", "authentication", "strategy" ], "author": { "name": "Bhanu Teja Pachipulusu", "email": "pbteja1998@gmail.com", "url": "https://github.com/pbteja1998" }, "repository": { "url": "https://github.com/pbteja1998/remix-auth-email-link", "type": "git" }, "license": "MIT", "files": [ "build", "package.json", "README.md" ], "peerDependencies": { "@remix-run/server-runtime": "^2.0.1", "remix-auth": "^3.6.0" }, "devDependencies": { "@remix-run/node": "^2.0.1", "@remix-run/react": "^2.0.1", "@remix-run/server-runtime": "^2.0.1", "@types/crypto-js": "^4.1.0", "@typescript-eslint/eslint-plugin": "^5.8.1", "@typescript-eslint/parser": "^5.8.1", "core-js-pure": "^3.33.0", "eslint": "^8.5.0", "eslint-config-galex": "^3.5.3", "husky": ">=6", "lint-staged": ">=12.1.4", "prettier": "^2.5.1", "react": "^18.0.2", "remix-auth": "^3.6.0", "ts-node": "^10.4.0", "typescript": "^5.2.0" }, "dependencies": { "crypto-js": "^4.2.0" }, "lint-staged": { "*.{js,jsx,ts,tsx}": "yarn lint", "*.{js,jsx,ts,tsx,css,json,md}": "yarn format" } }