Skip to content

Commit 165cf73

Browse files
committed
chore(deps): ⬆️ Upgraded dependencies
1 parent e79f856 commit 165cf73

File tree

4 files changed

+936
-209
lines changed

4 files changed

+936
-209
lines changed

eslint.config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,11 @@ export default createConfigForNuxt({
3636
},
3737
],
3838
},
39+
languageOptions: {
40+
parserOptions: {
41+
warnOnUnsupportedTypeScriptVersion: false,
42+
},
43+
},
3944
},
4045
),
4146
)

package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"type": "module",
44
"version": "1.0.0-beta.1",
55
"private": false,
6-
"packageManager": "pnpm@9.11.0",
6+
"packageManager": "pnpm@9.12.1",
77
"description": "OIDC authentication module for Nuxt SSR",
88
"license": "MIT",
99
"homepage": "https://github.com/itpropro/nuxt-oidc-auth#readme",
@@ -33,12 +33,12 @@
3333
"test:watch": "vitest watch"
3434
},
3535
"dependencies": {
36-
"@nuxt/devtools-kit": "^1.5.0",
37-
"@nuxt/devtools-ui-kit": "^1.5.0",
36+
"@nuxt/devtools-kit": "^1.5.2",
37+
"@nuxt/devtools-ui-kit": "^1.5.2",
3838
"consola": "^3.2.3",
3939
"defu": "^6.1.4",
40-
"h3": "^1.12.0",
41-
"jose": "^5.9.2",
40+
"h3": "^1.13.0",
41+
"jose": "^5.9.3",
4242
"ofetch": "^1.4.0",
4343
"scule": "^1.3.0",
4444
"sirv": "^2.0.4",
@@ -47,21 +47,21 @@
4747
"undio": "^0.2.0"
4848
},
4949
"devDependencies": {
50-
"@antfu/eslint-config": "^3.7.1",
51-
"@nuxt/devtools": "^1.5.0",
50+
"@antfu/eslint-config": "^3.7.3",
51+
"@nuxt/devtools": "^1.5.2",
5252
"@nuxt/eslint-config": "^0.5.7",
5353
"@nuxt/kit": "^3.13.2",
5454
"@nuxt/module-builder": "^0.8.4",
5555
"@nuxt/schema": "^3.13.2",
56-
"@nuxt/test-utils": "^3.14.2",
57-
"@types/node": "^22.5.5",
58-
"@unocss/eslint-plugin": "^0.62.4",
56+
"@nuxt/test-utils": "^3.14.3",
57+
"@types/node": "^22.7.4",
58+
"@unocss/eslint-plugin": "^0.63.3",
5959
"changelogen": "^0.5.7",
6060
"concurrently": "^9.0.1",
61-
"eslint": "^9.11.0",
61+
"eslint": "^9.12.0",
6262
"nuxt": "^3.13.2",
6363
"typescript": "^5.6.2",
64-
"vitest": "^2.1.1",
64+
"vitest": "^2.1.2",
6565
"vue-tsc": "^2.1.6"
6666
},
6767
"pnpm": {

playground/nuxt.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ export default defineNuxtConfig({
6565
clientSecret: '',
6666
redirectUri: 'http://localhost:3000/auth/keycloak/callback',
6767
userNameClaim: 'preferred_username',
68+
logoutRedirectUri: 'http://localhost:3000',
6869
},
6970
cognito: {
7071
clientId: '',

0 commit comments

Comments
 (0)