nuxt-auther 1.0.4 → 1.1.1

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/dist/module.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "nuxt-auther",
3
- "version": "1.0.4",
3
+ "version": "1.1.1",
4
4
  "configKey": "auth",
5
5
  "compatibility": {
6
- "nuxt": "^3.0.0"
6
+ "nuxt": ">=3.0.0 <5.0.0"
7
7
  }
8
8
  }
package/dist/module.mjs CHANGED
@@ -7,7 +7,7 @@ import { existsSync } from 'fs';
7
7
  import { hash } from 'ohash';
8
8
 
9
9
  const name = "nuxt-auther";
10
- const version = "1.0.4";
10
+ const version = "1.1.1";
11
11
 
12
12
  const OAUTH2DEFAULTS = {
13
13
  accessType: void 0,
@@ -937,7 +937,7 @@ const module = defineNuxtModule({
937
937
  version,
938
938
  configKey: CONFIG_KEY,
939
939
  compatibility: {
940
- nuxt: "^3.0.0"
940
+ nuxt: ">=3.0.0 <5.0.0"
941
941
  }
942
942
  },
943
943
  defaults: ({ options }) => ({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxt-auther",
3
- "version": "1.0.4",
3
+ "version": "1.1.1",
4
4
  "description": "Authentication module for Nuxt.JS",
5
5
  "homepage": "https://github.com/zerosdev/nuxt-auther",
6
6
  "author": "zerosdev",