mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
59 lines
1.3 KiB
JSON
59 lines
1.3 KiB
JSON
{
|
|
"name": "@auth/pouchdb-adapter",
|
|
"version": "1.0.3",
|
|
"description": "PouchDB 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": "jpbourgeon <jeanphilippe.bourgeon@gmail.com> (https://github.com/jpbourgeon)",
|
|
"license": "ISC",
|
|
"keywords": [
|
|
"next-auth",
|
|
"next.js",
|
|
"oauth",
|
|
"pouchdb"
|
|
],
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"types": "./index.d.ts",
|
|
"import": "./index.js"
|
|
}
|
|
},
|
|
"private": false,
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"build": "pnpm clean && tsc",
|
|
"clean": "rm -rf index.*",
|
|
"test": "jest",
|
|
"test:dev": "jest --watch"
|
|
},
|
|
"files": [
|
|
"*.js",
|
|
"*.d.ts*",
|
|
"src"
|
|
],
|
|
"peerDependencies": {
|
|
"pouchdb": "^8.0.1",
|
|
"pouchdb-find": "^8.0.1"
|
|
},
|
|
"dependencies": {
|
|
"@auth/core": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@auth/adapter-test": "workspace:*",
|
|
"@auth/tsconfig": "workspace:*",
|
|
"@types/pouchdb": "^6.4.0",
|
|
"jest": "^27.4.3",
|
|
"pouchdb": "^8.0.1",
|
|
"pouchdb-adapter-memory": "^8.0.1",
|
|
"pouchdb-find": "^8.0.1"
|
|
},
|
|
"jest": {
|
|
"preset": "@auth/adapter-test/jest"
|
|
}
|
|
} |