@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 +4 -3
- package/dist/module.json +1 -1
- package/package.json +14 -19
package/README.md
CHANGED
|
@@ -61,12 +61,12 @@ export default defineNuxtConfig({
|
|
|
61
61
|
|
|
62
62
|
nuxtAegis: {
|
|
63
63
|
token: {
|
|
64
|
-
secret: process.env.
|
|
64
|
+
secret: process.env.NUXT_NUXT_AEGIS_TOKEN_SECRET!,
|
|
65
65
|
},
|
|
66
66
|
providers: {
|
|
67
67
|
google: {
|
|
68
|
-
clientId: process.env.
|
|
69
|
-
clientSecret: process.env.
|
|
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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@peterbud/nuxt-aegis",
|
|
3
|
-
"version": "1.1.0-alpha.
|
|
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.
|
|
55
|
+
"@nuxt/kit": "^4.4.6",
|
|
56
56
|
"consola": "^3.4.2",
|
|
57
|
-
"defu": "^6.1.
|
|
58
|
-
"jose": "^6.
|
|
59
|
-
"ufo": "^1.6.
|
|
57
|
+
"defu": "^6.1.7",
|
|
58
|
+
"jose": "^6.2.3",
|
|
59
|
+
"ufo": "^1.6.4"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
|
-
"@nuxt/devtools": "^3.
|
|
63
|
-
"@nuxt/eslint-config": "^1.
|
|
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.
|
|
66
|
-
"@nuxt/test-utils": "^
|
|
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": "^
|
|
70
|
-
"nuxt": "^4.
|
|
71
|
-
"typescript": "~
|
|
72
|
-
"vitest": "^
|
|
73
|
-
"vue-tsc": "^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
|
}
|