-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
62 lines (62 loc) · 1.54 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
59
60
61
62
{
"name": "next-auth-sanity",
"description": "NextAuth Adapter for Sanity",
"version": "1.5.3",
"main": "index.js",
"types": "index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/Fedeya/next-auth-sanity.git"
},
"author": "Fedeya <[email protected]>",
"license": "MIT",
"private": false,
"files": [
"index.js",
"index.d.ts",
"queries.js",
"queries.d.ts",
"adapter.js",
"adapter.d.ts",
"client.js",
"client.d.ts",
"schemas.js",
"schemas.d.ts",
"credentials.js",
"credentials.d.ts"
],
"keywords": [
"next-auth",
"oauth",
"sanity",
"next-auth-sanity"
],
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"clean": "rm -rf index.js index.d.ts queries.js queries.ts queries.d.ts adapter.js adapter.ts adapter.d.ts client.js client.ts client.d.ts schemas.js schemas.ts schemas.d.ts credentials.js credentials.ts credentials.d.ts",
"prepublishOnly": "yarn build",
"postpublish": "yarn clean"
},
"devDependencies": {
"@sanity/client": "^6.4.8",
"@types/lru-cache": "^5.1.0",
"@types/node": "^14.14.41",
"next-auth": "^4.22.1",
"typescript": "^4.2.4"
},
"dependencies": {
"@sanity/uuid": "^3.0.1",
"argon2": "^0.30.3",
"groq": "^2.2.6"
},
"peerDependencies": {
"@sanity/client": "^6.4.8",
"next-auth": "^4.22.1"
},
"bugs": {
"url": "https://github.com/Fedeya/next-auth-sanity/issues"
},
"homepage": "https://github.com/Fedeya/next-auth-sanity#readme"
}