Files
archived-next-auth/packages/adapter-mikro-orm/package.json

54 lines
1.1 KiB
JSON

{
"name": "@next-auth/mikro-orm-adapter",
"version": "3.0.1",
"description": "MikroORM 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": "Jonas Strassel <info@jonas-strassel.de>",
"contributors": [
"Balázs Orbán <info@balazsorban.com>"
],
"main": "dist/index.js",
"license": "ISC",
"keywords": [
"next-auth",
"next.js",
"oauth",
"mikro-orm"
],
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "jest --runInBand",
"build": "tsc"
},
"files": [
"README.md",
"dist"
],
"peerDependencies": {
"@mikro-orm/core": "^5",
"next-auth": "^4"
},
"devDependencies": {
"@mikro-orm/core": "^5",
"@mikro-orm/sqlite": "^5",
"@next-auth/adapter-test": "workspace:*",
"@next-auth/tsconfig": "workspace:*",
"@types/uuid": ">=8",
"jest": "^29",
"next-auth": "workspace:*"
},
"dependencies": {
"uuid": "^9"
},
"jest": {
"preset": "@next-auth/adapter-test/jest"
}
}