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

60 lines
1.2 KiB
JSON

{
"name": "@auth/edgedb-adapter",
"version": "0.2.3",
"description": "EdgeDB 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": "Bruno Crosier",
"contributors": [
"Thang Huu Vu <hi@thvu.dev>"
],
"type": "module",
"types": "./index.d.ts",
"files": [
"*.d.ts*",
"*.js",
"lib",
"src"
],
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js"
}
},
"license": "ISC",
"keywords": [
"next-auth",
"next.js",
"oauth",
"edgedb"
],
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"test": "jest"
},
"dependencies": {
"@auth/core": "workspace:*"
},
"peerDependencies": {
"edgedb": "^1.0.1"
},
"devDependencies": {
"@auth/adapter-test": "workspace:^0.0.0",
"@auth/tsconfig": "workspace:^0.0.0",
"jest": "^27.4.3",
"@auth/core": "workspace:*",
"typescript": "^4.7.4",
"edgedb": "^1.0.1"
},
"jest": {
"preset": "@auth/adapter-test/jest"
}
}