mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
* Upgrade turborepo, add next-auth as dev deps * Fix TS error * Update adapters.json * ignore linting
36 lines
887 B
JSON
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"
|
|
}
|
|
}
|