mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
* feat: pnpm * Update publish script * gitignore the pnpm debug log * Fix workspace * Fix dev commands * feat: pnpm * Update publish script * gitignore the pnpm debug log * Fix workspace * Fix dev commands * chore: fix pnpm install in GitHub Action * fix: update tsconfig path * pnpm run -> pnpm * chore: remove cache-node and add back setup-node * fix: tsconfig dependencies * chore: fix tsconfig path * fix: adapter-test dependencies * fix: setup-node for release-pr * fix: import adapter-test * chore: update workspace dependency for next-auth * fix: test failure * fix: add jest for adapters * fix: jest again * fix: mongo in prisma * fix: `--no-git-checks` for `release-pr` Co-authored-by: Balázs Orbán <info@balazsorban.com>
50 lines
1.1 KiB
JSON
50 lines
1.1 KiB
JSON
{
|
|
"name": "@next-auth/mikro-orm-adapter",
|
|
"version": "2.0.1",
|
|
"description": "MikroORM 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": "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.0.2",
|
|
"next-auth": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@mikro-orm/core": "^5.0.2",
|
|
"@mikro-orm/sqlite": "^5.0.2",
|
|
"@next-auth/adapter-test": "workspace:^0.0.0",
|
|
"@next-auth/tsconfig": "workspace:^0.0.0",
|
|
"jest": "^27.4.3",
|
|
"next-auth": "workspace:*"
|
|
},
|
|
"jest": {
|
|
"preset": "@next-auth/adapter-test/jest"
|
|
}
|
|
}
|