-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
89 lines (89 loc) · 1.97 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "fastify-next-auth",
"version": "0.7.0",
"description": "Auth.js plugin for Fastify.",
"author": "Robert Soriano <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/wobsoriano/fastify-next-auth.git"
},
"keywords": [
"fastify",
"nodejs",
"oauth",
"jwt",
"oauth2",
"authentication",
"nextjs",
"csrf",
"oidc",
"nextauth",
"vue",
"react",
"svelte"
],
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./client": {
"types": "./dist/client/index.d.ts",
"require": "./dist/client/index.js",
"import": "./dist/client/index.mjs"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"*.d.ts"
],
"scripts": {
"build": "tsup",
"dev": "tsup --onSuccess \"pnpm --filter playground dev\"",
"test": "vitest run",
"prepublishOnly": "pnpm build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "bumpp && npm publish",
"update-deps": "taze -w && pnpm i",
"dev:playground": "pnpm --filter playground dev"
},
"peerDependencies": {
"@auth/core": ">=0.10.0"
},
"dependencies": {
"authey": "^0.8.1",
"fastify-plugin": "^4.5.0",
"path-to-regexp": "^6.2.1",
"reusify": "^1.0.4"
},
"devDependencies": {
"@antfu/eslint-config": "^0.39.6",
"@auth/core": "^0.10.0",
"@fastify/env": "^4.2.0",
"@types/node": "^20.3.2",
"@types/tap": "^15.0.8",
"bumpp": "^9.1.1",
"eslint": "^8.43.0",
"esno": "^0.16.3",
"fastify": "4.18.0",
"taze": "^0.10.3",
"tsup": "7.1.0",
"typescript": "5.1.5",
"vitest": "^0.32.2"
},
"eslintConfig": {
"extends": "@antfu",
"rules": {
"unicorn/prefer-node-protocol": "off"
}
}
}