Files
archived-next-auth/packages/adapter-upstash-redis/package.json

53 lines
1.2 KiB
JSON

{
"name": "@next-auth/upstash-redis-adapter",
"version": "3.0.3",
"description": "Upstash adapter for next-auth. It uses Upstash's connectionless (HTTP based) Redis client.",
"homepage": "https://authjs.dev",
"repository": "https://github.com/nextauthjs/next-auth",
"bugs": {
"url": "https://github.com/nextauthjs/next-auth/issues"
},
"author": "github.com/kay-is",
"main": "dist/index.js",
"license": "ISC",
"keywords": [
"next-auth",
"next.js",
"oauth",
"upstash",
"redis"
],
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "jest",
"build": "tsc"
},
"files": [
"README.md",
"dist"
],
"peerDependencies": {
"@upstash/redis": "^1.0.1",
"next-auth": "^4"
},
"devDependencies": {
"@next-auth/adapter-test": "workspace:*",
"@next-auth/tsconfig": "workspace:*",
"@types/uuid": "^8.3.3",
"@upstash/redis": "^1.0.1",
"dotenv": "^10.0.0",
"isomorphic-fetch": "3.0.0",
"jest": "^27.4.3",
"next-auth": "workspace:*"
},
"dependencies": {
"uuid": "^8.3.2"
},
"jest": {
"preset": "@next-auth/adapter-test/jest"
}
}