@next-auth/typeorm-legacy-adapter
Version:
TypeORM (legacy) adapter for next-auth.
79 lines • 1.77 kB
JSON
{
"name": "@next-auth/typeorm-legacy-adapter",
"version": "2.0.2",
"description": "TypeORM (legacy) 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": "Iain Collins",
"contributors": [
"Balázs Orbán <info@balazsorban.com>"
],
"main": "dist/index.js",
"files": [
"README.md",
"dist"
],
"license": "ISC",
"keywords": [
"next-auth",
"next.js",
"oauth",
"typeorm"
],
"private": false,
"publishConfig": {
"access": "public"
},
"devDependencies": {
"jest": "^27.4.3",
"mssql": "^7.2.1",
"mysql": "^2.18.1",
"pg": "^8.7.3",
"sqlite3": "^5.0.8",
"typeorm": "0.3.7",
"typeorm-naming-strategies": "^4.1.0",
"typescript": "^4.7.4",
"@next-auth/adapter-test": "0.0.0",
"next-auth": "4.22.0",
"@next-auth/tsconfig": "0.0.0"
},
"peerDependencies": {
"mssql": "^6.2.1 || 7",
"mysql": "^2.18.1",
"next-auth": "^4",
"pg": "^8.2.1",
"sqlite3": "^5.0.2",
"typeorm": "0.3.7"
},
"peerDependenciesMeta": {
"mysql": {
"optional": true
},
"mssql": {
"optional": true
},
"pg": {
"optional": true
},
"sqlite3": {
"optional": true
}
},
"jest": {
"preset": "@next-auth/adapter-test/jest"
},
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"clean": "rm -rf dist",
"init:db": "tests/init.sh",
"mysql": "pnpm init:db && tests/mysql/test.sh",
"postgres": "pnpm init:db && tests/postgresql/test.sh",
"sqlite": "tests/sqlite/test.sh",
"test:containers": "tests/test.sh",
"test": "tests/test.sh"
}
}