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

43 lines
850 B
JSON

{
"name": "@next-auth/sequelize-adapter",
"version": "1.0.2",
"description": "Sequelize adapter for next-auth.",
"homepage": "https://next-auth.js.org",
"repository": "https://github.com/nextauthjs/adapters",
"bugs": {
"url": "https://github.com/nextauthjs/adapters/issues"
},
"author": "github.com/luke-j",
"main": "dist/index.js",
"license": "ISC",
"keywords": [
"next-auth",
"next.js",
"oauth",
"sequelize"
],
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"test:wip": "jest",
"build": "tsc"
},
"files": [
"README.md",
"dist"
],
"peerDependencies": {
"next-auth": "^4.0.1",
"sequelize": "^6.6.5"
},
"devDependencies": {
"next-auth": "^4.0.1",
"sequelize": "^6.6.5"
},
"jest": {
"preset": "adapter-test/jest"
}
}