Files
archived-next-auth/packages/adapter-d1/package.json
2023-10-24 00:26:45 +00:00

58 lines
1.2 KiB
JSON

{
"name": "@auth/d1-adapter",
"version": "0.2.3",
"description": "A Cloudflare D1 adapter for Auth.js",
"homepage": "https://authjs.dev",
"repository": "https://github.com/nextauthjs/next-auth",
"bugs": {
"url": "https://github.com/nextauthjs/next-auth/issues"
},
"author": "Josh Schlesser <josh@schlesser.dev>",
"contributors": [
"Thang Huu Vu <hi@thvu.dev>"
],
"license": "ISC",
"keywords": [
"next-auth",
"@auth",
"Auth.js",
"next.js",
"oauth",
"d1"
],
"type": "module",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js"
}
},
"files": [
"*.d.ts*",
"*.js",
"src"
],
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"test": "jest"
},
"dependencies": {
"@auth/core": "workspace:*"
},
"devDependencies": {
"@auth/adapter-test": "workspace:*",
"@auth/tsconfig": "workspace:*",
"@cloudflare/workers-types": "^4.20230321.0",
"@miniflare/d1": "^2.12.2",
"better-sqlite3": "^8.6.0",
"jest": "^29.3.0"
},
"jest": {
"preset": "@auth/adapter-test/jest"
}
}