Files
archived-next-auth/packages/adapter-firebase/package.json
Thang Vu 6e28ccf84f chore(adapters): Add next-autth as devDependencies for adapters (#4226)
* Upgrade turborepo, add next-auth as dev deps

* Fix TS error

* Update adapters.json

* ignore linting
2022-03-21 21:26:37 +01:00

44 lines
1.0 KiB
JSON

{
"name": "@next-auth/firebase-adapter",
"version": "0.1.3",
"description": "Firebase adapter for next-auth.",
"homepage": "https://next-auth.js.org",
"repository": "https://github.com/nextauthjs/adapters",
"bugs": {
"url": "https://github.com/nextauthjs/adapters/issues"
},
"author": "Ron Houben <ron.houben85@gmail.com>",
"contributors": [
"Nico Domino <yo@ndo.dev>",
"Alex Meuer <github@alexmeuer.com>"
],
"main": "dist/index.js",
"files": [
"dist",
"index.d.ts"
],
"license": "ISC",
"keywords": [
"next-auth",
"next.js",
"firebase"
],
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"build:wip": "tsc",
"test:wip": "FIRESTORE_EMULATOR_HOST=localhost:8080 firebase emulators:exec --only firestore --project next-auth-test jest"
},
"peerDependencies": {
"firebase": "^8.6.2",
"next-auth": "latest"
},
"devDependencies": {
"firebase": "^8.6.2",
"firebase-tools": "^9.11.0",
"next-auth": "^4.0.1"
}
}