Files
archived-next-auth/packages/adapter-mongodb/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

36 lines
887 B
JSON

{
"name": "@next-auth/mongodb-adapter",
"version": "1.0.3",
"description": "mongoDB adapter for next-auth.",
"homepage": "https://next-auth.js.org",
"repository": "https://github.com/nextauthjs/adapters",
"bugs": {
"url": "https://github.com/nextauthjs/next-auth/issues"
},
"author": "Balázs Orbán <info@balazsorban.com>",
"main": "dist/index.js",
"license": "ISC",
"keywords": ["next-auth", "next.js", "oauth", "mongodb", "adapter"],
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "./tests/test.sh",
"test:watch": "./tests/test.sh -w",
"build": "tsc"
},
"files": ["README.md", "dist"],
"peerDependencies": {
"mongodb": "^4.1.1",
"next-auth": "^4.0.1"
},
"devDependencies": {
"mongodb": "^4.4.0",
"next-auth": "^4.0.1"
},
"jest": {
"preset": "adapter-test/jest"
}
}