@curvenote/remix-auth-google
Version:
**Forked** and updated from [https://github.com/pbteja1998/remix-auth-google](https://github.com/pbteja1998/remix-auth-google) to use the latest `remix-auth-oauth2` strategy.
86 lines (85 loc) • 2.09 kB
JSON
{
"name": "@curvenote/remix-auth-google",
"version": "3.0.0",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"sideEffects": false,
"type": "module",
"scripts": {
"build": "tsc",
"typecheck": "tsc --project tsconfig.json --noEmit",
"lint": "eslint ./src --fix",
"format": "prettier --config .prettierrc --write --list-different --ignore-path .gitignore .",
"prepare": "husky",
"test": "echo \"Error: no test specified\" && exit 0"
},
"keywords": [
"remix",
"remix-auth",
"auth",
"authentication",
"strategy",
"google-auth"
],
"author": {
"name": "Steve Purves",
"email": "steve@curvenote.com"
},
"contributors": [
{
"name": "Bhanu Teja Pachipulusu",
"email": "pbteja1998@gmail.com",
"url": "https://github.com/pbteja1998"
}
],
"repository": {
"url": "https://github.com/pbteja1998/remix-auth-google",
"type": "git"
},
"license": "MIT",
"files": [
"build",
"package.json",
"README.md"
],
"peerDependencies": {
"@remix-run/server-runtime": "^2.0.1",
"remix-auth": "^4.0.0"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@remix-run/node": "^2",
"@remix-run/react": "^2",
"@remix-run/server-runtime": "^2",
"@total-typescript/tsconfig": "^1.0.4",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"babel-jest": "^29.7.0",
"eslint": "^9.15.0",
"eslint-config-galex": "^3.5.3",
"globals": "^15.12.0",
"husky": ">=6",
"lint-staged": ">=12.1.4",
"prettier": "^3.4.1",
"react": "^18.3.1",
"remix-auth": "^4.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0"
},
"dependencies": {
"remix-auth-oauth2": "^3.1.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "yarn lint",
"*.{js,jsx,ts,tsx,css,json,md}": "yarn format"
},
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public"
}
}