UNPKG

strapi-plugin-firebase-authentication

Version:

Allows easy integration between clients utilizing Firebase for authentication and Strapi

105 lines (104 loc) 3.4 kB
{ "name": "strapi-plugin-firebase-authentication", "version": "1.3.2", "description": "Allows easy integration between clients utilizing Firebase for authentication and Strapi", "license": "MIT", "repository": { "type": "git", "url": "git+ssh://git@github.com/Meta-CTO/strapi-plugin-firebase-auth.git" }, "bugs": { "url": "https://github.com/Meta-CTO/strapi-plugin-firebase-auth/issues" }, "homepage": "https://github.com/Meta-CTO/strapi-plugin-firebase-auth#readme", "author": "Garrett Fritz <garrett@metacto.com>", "keywords": [ "strapi5", "strapi-plugin" ], "type": "commonjs", "exports": { "./package.json": "./package.json", "./strapi-admin": { "types": "./dist/admin/src/index.d.ts", "source": "./admin/src/index.ts", "import": "./dist/admin/index.mjs", "require": "./dist/admin/index.js", "default": "./dist/admin/index.js" }, "./strapi-server": { "types": "./dist/server/src/index.d.ts", "source": "./server/src/index.ts", "import": "./dist/server/index.mjs", "require": "./dist/server/index.js", "default": "./dist/server/index.js" } }, "files": [ "dist" ], "scripts": { "afterClone": "rm -rf dist node_modules package-lock.json && npm install", "build": "strapi-plugin build", "format": "npx prettier --write .", "format:check": "npx prettier -c .", "release": "npm run format && npm run build && npm run verify && changelogen --release && npm publish && git push --follow-tags", "changelog": "changelogen --release", "test:ts:back": "run -T tsc -p server/tsconfig.json", "test:ts:front": "run -T tsc -p admin/tsconfig.json", "verify": "strapi-plugin verify", "watch": "strapi-plugin watch", "watch:link": "strapi-plugin watch:link" }, "dependencies": { "@tanstack/react-query": "^5.90.2", "crypto-js": "^4.2.0", "destr": "^2.0.5", "firebase-admin": "^13.3.0", "react-icons": "^5.5.0", "react-international-phone": "^4.6.0", "react-intl": "^7.1.12", "react-phone-input-2": "^2.15.1", "react-phone-number-input": "^3.4.12", "react-syntax-highlighter": "^15.6.6", "@radix-ui/react-tooltip": "1.0.7", "validator": "^13.15.15" }, "devDependencies": { "@strapi/sdk-plugin": "^5.3.2", "@strapi/strapi": "^5.0.0", "@strapi/typescript-utils": "^5.23.3", "@strapi/design-system": "^2.0.0-rc.16", "@strapi/icons": "^2.0.0-rc.25", "@types/koa": "^2.15.0", "@types/react": "^18.3.0", "@types/react-dom": "^18.3.0", "@types/react-syntax-highlighter": "^15.5.13", "@types/validator": "^13.15.3", "changelogen": "^0.6.1", "prettier": "^3.6.2", "react": "^18.3.0", "react-dom": "^18.3.0", "react-router-dom": "^6.28.0", "styled-components": "^6.1.19", "typescript": "^5.7.3" }, "peerDependencies": { "@strapi/strapi": "^5.0.0", "react": "^18.0.0", "react-dom": "^18.0.0", "react-router-dom": "^6.0.0", "styled-components": "^6.0.0" }, "engines": { "node": ">=18.0.0 <=22.x.x", "npm": ">=6.0.0" }, "access": "public", "strapi": { "kind": "plugin", "name": "firebase-authentication", "displayName": "Strapi <-> Firebase Auth Plugin", "description": "Allows easy integration between clients utilizing Firebase for authentication and Strapi" } }