-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.3 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@brendon1555/authjs-mongoose-adapter",
"version": "1.0.2",
"description": "Mongoose adapter for Auth.js",
"homepage": "https://github.com/brendon1555/authjs-mongoose-adapter",
"repository": "https://github.com/brendon1555/authjs-mongoose-adapter",
"bugs": {
"url": "https://github.com/brendon1555/authjs-mongoose-adapter/issues"
},
"author": "Brendon Lees <[email protected]>",
"type": "module",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"license": "ISC",
"keywords": [
"next-auth",
"auth.js",
"next.js",
"oauth",
"mongoose",
"adapter"
],
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "./test/test.sh",
"test:win": "test\\test.cmd",
"test:ci": "vitest",
"build": "tsc",
"format": "prettier --write .",
"release": "np --no-tests --no-publish"
},
"dependencies": {
"@auth/core": "^0.31.0"
},
"devDependencies": {
"@types/node": "^20.12.11",
"@vitest/coverage-v8": "^1.6.0",
"mongoose": "^8.3.4",
"np": "^10.0.5",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"peerDependencies": {
"mongoose": "^8"
}
}