Files
archived-next-auth/packages/adapter-pouchdb/package.json
Balázs Orbán 44aaa6f1c3 chore: turbo cleanup (#4951)
* clean up `package.json` files

* chore(ts): make sure `next-auth/next` does not conflict with `next`

* simplify `turbo.json`

* fix: apply suggestion

* simplify doc dev command

* ignore upstash redis again

* ignore mikro orm for now

* chore: dev command

* update lock file

* update css path for dev only

* Update apps/dev/package.json

Co-authored-by: Thang Vu <thvu@hey.com>
2022-09-08 16:43:16 +02:00

54 lines
1.2 KiB
JSON

{
"name": "@next-auth/pouchdb-adapter",
"version": "0.1.4",
"description": "PouchDB adapter for next-auth.",
"homepage": "https://next-auth.js.org",
"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)",
"main": "dist/index.js",
"license": "ISC",
"keywords": [
"next-auth",
"next.js",
"oauth",
"pouchdb"
],
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"build:wip": "tsc",
"tdd": "jest --watch",
"test:wip": "jest"
},
"files": [
"README.md",
"dist"
],
"peerDependencies": {
"next-auth": "^3",
"pouchdb": "^7.2.2",
"pouchdb-find": "^7.2.2"
},
"dependencies": {
"crypto": "^1.0.1",
"ulid": "^2.3.0"
},
"devDependencies": {
"@next-auth/adapter-test": "workspace:*",
"@next-auth/tsconfig": "workspace:*",
"@types/pouchdb": "^6.4.0",
"jest": "^27.4.3",
"next-auth": "workspace:*",
"pouchdb": "^7.2.2",
"pouchdb-adapter-memory": "^7.2.2",
"pouchdb-find": "^7.2.2"
},
"jest": {
"preset": "@next-auth/adapter-test/jest"
}
}