-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 964 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 964 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
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "@smarthr/next-auth",
"version": "0.1.6",
"description": "SmartHR's next-auth utility",
"author": "SmartHR",
"homepage": "https://github.com/kufu/tamatebako#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kufu/tamatebako.git",
"directory": "packages/next-auth"
},
"bugs": {
"url": "https://github.com/kufu/tamatebako/issues"
},
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"prebuild": "pnpm clean",
"clean": "rimraf lib"
},
"directories": {
"lib": "lib",
"test": "__tests__"
},
"dependencies": {
"uuid": "^14.0.0"
},
"devDependencies": {
"@types/node": "^20.19.41",
"@types/uuid": "^11.0.0",
"ioredis": "^5.10.1",
"next-auth": "^4.24.14"
},
"peerDependencies": {
"ioredis": ">=5.2.4",
"next-auth": ">=4.18.8"
}
}