-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.72 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": "fastify-openid-auth",
"version": "10.0.0",
"description": "Fastify auth plugin for openid-client",
"type": "module",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./login": "./dist/login.js",
"./logout": "./dist/logout.js",
"./plugin": "./dist/plugin.js",
"./refresh": "./dist/refresh.js",
"./verify": "./dist/verify.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc --declaration -p tsconfig.json",
"clean": "shx rm -rf dist",
"check": "biome check",
"lint": "biome lint",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikaelkaron/fastify-openid-auth.git"
},
"files": [
"dist/"
],
"keywords": [
"fastify",
"openid"
],
"author": "Mikael Karon <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mikaelkaron/fastify-openid-auth/issues"
},
"homepage": "https://github.com/mikaelkaron/fastify-openid-auth#readme",
"devDependencies": {
"@biomejs/biome": "^1.9.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.0",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@tsconfig/node20": "^20.1.2",
"@types/node": "^20.11.19",
"fastify": "^5.0.0",
"semantic-release": "^24.1.2",
"shx": "^0.3.4",
"typescript": "^5.6.3"
},
"dependencies": {
"@fastify/error": "^4.0.0",
"fastify-plugin": "^5.0.1",
"jose": "^4.15.9",
"openid-client": "^5.7.0"
}
}