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

44 lines
1002 B
JSON

{
"name": "@next-auth/dynamodb-adapter",
"repository": "https://github.com/nextauthjs/adapters",
"version": "1.0.3",
"description": "AWS DynamoDB adapter for next-auth.",
"keywords": [
"next-auth",
"next.js",
"oauth",
"dynamodb"
],
"homepage": "https://next-auth.js.org",
"bugs": {
"url": "https://github.com/nextauthjs/next-auth/issues"
},
"main": "dist/index.js",
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"test:default": "jest",
"test:custom": "CUSTOM_MODEL=1 jest",
"test": "yarn test:default && yarn test:custom",
"build": "tsc"
},
"files": [
"README.md",
"dist"
],
"author": "Pol Marnette",
"license": "ISC",
"peerDependencies": {
"@aws-sdk/lib-dynamodb": "^3.36.1",
"next-auth": "^4.0.1"
},
"devDependencies": {
"@aws-sdk/client-dynamodb": "^3.36.1",
"@aws-sdk/lib-dynamodb": "^3.36.1",
"@shelf/jest-dynamodb": "^2.1.0",
"next-auth": "^4.0.1"
}
}