-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 909 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 909 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "@sidebase/authjs-prisma-adapter",
"version": "0.1.0",
"description": "A next-auth/authjs type-compatible Prisma 6 adapter for the new `prisma-client`-provider",
"repository": "github:sidebase/authjs-prisma-adapter",
"keywords": [],
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepack": "pnpm build"
},
"devDependencies": {
"typescript": "^5.9.2"
},
"peerDependencies": {
"next-auth": "~4.21.1"
},
"packageManager": "pnpm@10.15.0+sha512.486ebc259d3e999a4e8691ce03b5cac4a71cbeca39372a9b762cb500cfdf0873e2cb16abe3d951b1ee2cf012503f027b98b6584e4df22524e0c7450d9ec7aa7b"
}