@defaultusr/dai-ui 1.0.4 → 1.0.5

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.
Files changed (2) hide show
  1. package/dist/nuxt.js +3 -3
  2. package/package.json +2 -1
package/dist/nuxt.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { defineNuxtModule as n, addComponent as a } from "@nuxt/kit";
2
- const p = n({
2
+ const u = n({
3
3
  defaults: {
4
4
  prefix: "Dai"
5
5
  },
@@ -35,10 +35,10 @@ const p = n({
35
35
  a({
36
36
  name: `${e.prefix}${o}`,
37
37
  export: o,
38
- filePath: "nyet-ui"
38
+ filePath: "@defaultusr/dai-ui"
39
39
  });
40
40
  }
41
41
  });
42
42
  export {
43
- p as default
43
+ u as default
44
44
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@defaultusr/dai-ui",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist"
@@ -22,6 +22,7 @@
22
22
  },
23
23
  "./nuxt": {
24
24
  "import": {
25
+ "types": "./dist/types/nuxt.d.ts",
25
26
  "default": "./dist/nuxt.js"
26
27
  }
27
28
  }