-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
39 lines (39 loc) · 959 Bytes
/
package.json
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
34
35
36
37
38
39
{
"name": "next-auth-prisma-adapter",
"version": "0.1.0",
"description": "Configurable models names for next-auth's Prisma Adapter",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --treeshake",
"dev": "pnpm build --watch",
"lint": "eslint src --fix",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
"prepublish": "pnpm build",
"test": "jest"
},
"files": [
"/dist"
],
"keywords": [
"prisma",
"next-auth",
"adapter",
"models",
"config"
],
"author": "Orlando Groppo <[email protected]>",
"license": "MIT",
"peerDependencies": {
"@prisma/client": ">=5",
"next-auth": ">=4"
},
"devDependencies": {
"eslint-config-custom": "workspace:*",
"jest": "^29.7.0",
"next-auth": "^4.24.7",
"tsup": "^8.0.2",
"typescript": "^5.4.3"
}
}