@auth/pg-adapter
Version:
Postgres adapter for next-auth.
54 lines • 1.01 kB
JSON
{
"name": "@auth/pg-adapter",
"version": "1.9.1",
"description": "Postgres adapter for next-auth.",
"homepage": "https://authjs.dev",
"repository": "https://github.com/nextauthjs/next-auth",
"bugs": {
"url": "https://github.com/nextauthjs/next-auth/issues"
},
"author": "Jake Coppinger",
"contributors": [
"Thang Huu Vu <hi@thvu.dev>"
],
"license": "ISC",
"keywords": [
"next-auth",
"@auth",
"Auth.js",
"next.js",
"oauth",
"postgres"
],
"type": "module",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js"
}
},
"files": [
"*.d.ts*",
"*.js",
"src"
],
"private": false,
"publishConfig": {
"access": "public"
},
"dependencies": {
"@auth/core": "0.39.1"
},
"peerDependencies": {
"pg": "^8"
},
"devDependencies": {
"@types/pg": "^8.6.5",
"pg": "^8.7.1"
},
"scripts": {
"test": "./test/test.sh",
"build": "tsc",
"clean": "rm -rf *.js *.d.ts*"
}
}