@peterbud/nuxt-aegis 1.1.0-alpha.5 → 1.1.0-alpha.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -61,12 +61,12 @@ export default defineNuxtConfig({
61
61
 
62
62
  nuxtAegis: {
63
63
  token: {
64
- secret: process.env.NUXT_AEGIS_TOKEN_SECRET!,
64
+ secret: process.env.NUXT_NUXT_AEGIS_TOKEN_SECRET!,
65
65
  },
66
66
  providers: {
67
67
  google: {
68
- clientId: process.env.GOOGLE_CLIENT_ID!,
69
- clientSecret: process.env.GOOGLE_CLIENT_SECRET!,
68
+ clientId: process.env.NUXT_NUXT_AEGIS_PROVIDERS_GOOGLE_CLIENT_ID!,
69
+ clientSecret: process.env.NUXT_NUXT_AEGIS_PROVIDERS_GOOGLE_CLIENT_SECRET!,
70
70
  },
71
71
  },
72
72
  },
@@ -114,6 +114,7 @@ const { user, isLoggedIn, login, logout } = useAuth()
114
114
 
115
115
  Ready to dive deeper? Check out the full documentation:
116
116
 
117
+ - **[Documentation Home](https://peterbud.github.io/nuxt-aegis/)** - Main documentation site.
117
118
  - **[Getting Started](https://peterbud.github.io/nuxt-aegis/getting-started/installation)** - Installation and setup guides.
118
119
  - **[Architecture](https://peterbud.github.io/nuxt-aegis/architecture/)** - Overview of the system architecture.
119
120
  - **[Providers](https://peterbud.github.io/nuxt-aegis/providers/)** - Configure Google, GitHub, Auth0, Password, and Mock providers.
package/dist/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "nuxt-aegis",
3
3
  "configKey": "nuxtAegis",
4
- "version": "1.1.0-alpha.5",
4
+ "version": "1.1.0-alpha.6",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.2",
7
7
  "unbuild": "unknown"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@peterbud/nuxt-aegis",
3
- "version": "1.1.0-alpha.5",
3
+ "version": "1.1.0-alpha.6",
4
4
  "description": "Nuxt module for authentication with JWT token generation and session management.",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -52,30 +52,25 @@
52
52
  "test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
53
53
  },
54
54
  "dependencies": {
55
- "@nuxt/kit": "^4.3.0",
55
+ "@nuxt/kit": "^4.4.6",
56
56
  "consola": "^3.4.2",
57
- "defu": "^6.1.4",
58
- "jose": "^6.1.3",
59
- "ufo": "^1.6.3"
57
+ "defu": "^6.1.7",
58
+ "jose": "^6.2.3",
59
+ "ufo": "^1.6.4"
60
60
  },
61
61
  "devDependencies": {
62
- "@nuxt/devtools": "^3.1.1",
63
- "@nuxt/eslint-config": "^1.13.0",
62
+ "@nuxt/devtools": "^3.2.4",
63
+ "@nuxt/eslint-config": "^1.15.2",
64
64
  "@nuxt/module-builder": "^1.0.2",
65
- "@nuxt/schema": "^4.3.0",
66
- "@nuxt/test-utils": "^3.23.0",
65
+ "@nuxt/schema": "^4.4.6",
66
+ "@nuxt/test-utils": "^4.0.3",
67
67
  "@types/node": "latest",
68
68
  "changelogen": "^0.6.2",
69
- "eslint": "^9.39.2",
70
- "nuxt": "^4.3.0",
71
- "typescript": "~5.9.3",
72
- "vitest": "^3.2.4",
73
- "vue-tsc": "^3.2.3"
74
- },
75
- "pnpm": {
76
- "overrides": {
77
- "vue-router": "4.4.5"
78
- }
69
+ "eslint": "^10.4.0",
70
+ "nuxt": "^4.4.6",
71
+ "typescript": "~6.0.3",
72
+ "vitest": "^4.1.7",
73
+ "vue-tsc": "^3.3.1"
79
74
  },
80
75
  "packageManager": "pnpm@10.17.1"
81
76
  }