-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1008 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
40
41
42
43
{
"$schema": "https://json.schemastore.org/package.json",
"name": "fastify-user",
"version": "1.1.0",
"description": "Fastify plugin to extract user",
"main": "index.js",
"scripts": {
"test": "standard | snazzy && c8 --100 tap --no-coverage test/*test.js && tsd",
"lint": "standard"
},
"types": "index.d.ts",
"keywords": [
"fastify",
"user",
"plugin",
"jwt",
"webhook"
],
"author": "Marco Piraccini <marco.piraccini@gmail.com>",
"license": "MIT",
"dependencies": {
"@fastify/error": "^4.0.0",
"@fastify/jwt": "^9.0.0",
"fastify": "^5.0.0",
"fastify-plugin": "^5.0.0",
"get-jwks": "^9.0.0"
},
"devDependencies": {
"@fastify/cookie": "^11.0.0",
"@fastify/session": "^11.0.0",
"@types/node": "^22.0.0",
"c8": "^10.0.0",
"fast-jwt": "^4.0.0",
"snazzy": "^9.0.0",
"standard": "^17.0.0",
"tap": "^16.3.3",
"tsd": "^0.31.0",
"undici": "^6.0.0"
},
"tsd": {
"directory": "test/types"
}
}