@unocss/nuxt 66.6.0 → 66.6.2

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/index.cjs +2 -1
  2. package/package.json +24 -29
package/dist/index.cjs CHANGED
@@ -1,3 +1,4 @@
1
+ Object.defineProperty(exports, '__esModule', { value: true });
1
2
  //#region rolldown:runtime
2
3
  var __create = Object.create;
3
4
  var __defProp = Object.defineProperty;
@@ -173,4 +174,4 @@ export default mergeConfigs([${configPaths.map((_, index) => `cfg${index}`).join
173
174
  });
174
175
 
175
176
  //#endregion
176
- module.exports = src_default;
177
+ exports.default = src_default;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@unocss/nuxt",
3
3
  "type": "module",
4
- "version": "66.6.0",
4
+ "version": "66.6.2",
5
5
  "description": "Nuxt module for UnoCSS",
6
6
  "author": "Anthony Fu <anthonyfu117@hotmail.com>",
7
7
  "license": "MIT",
@@ -24,41 +24,36 @@
24
24
  "sideEffects": false,
25
25
  "exports": {
26
26
  ".": {
27
- "import": {
28
- "types": "./dist/index.d.mts",
29
- "default": "./dist/index.mjs"
30
- },
31
- "require": {
32
- "types": "./dist/index.d.cts",
33
- "default": "./dist/index.cjs"
34
- }
35
- }
27
+ "require": "./dist/index.cjs",
28
+ "import": "./dist/index.mjs"
29
+ },
30
+ "./package.json": "./package.json"
36
31
  },
37
- "main": "dist/index.mjs",
38
- "module": "dist/index.mjs",
39
- "types": "dist/index.d.ts",
32
+ "main": "./dist/index.cjs",
33
+ "module": "./dist/index.mjs",
34
+ "types": "./dist/index.d.cts",
40
35
  "files": [
41
36
  "dist",
42
37
  "runtime"
43
38
  ],
44
39
  "dependencies": {
45
- "@nuxt/kit": "^4.2.2",
46
- "@unocss/config": "66.6.0",
47
- "@unocss/preset-icons": "66.6.0",
48
- "@unocss/core": "66.6.0",
49
- "@unocss/preset-tagify": "66.6.0",
50
- "@unocss/preset-attributify": "66.6.0",
51
- "@unocss/preset-typography": "66.6.0",
52
- "@unocss/preset-web-fonts": "66.6.0",
53
- "@unocss/preset-wind3": "66.6.0",
54
- "@unocss/preset-wind4": "66.6.0",
55
- "@unocss/reset": "66.6.0",
56
- "@unocss/vite": "66.6.0",
57
- "@unocss/webpack": "66.6.0",
58
- "unocss": "66.6.0"
40
+ "@nuxt/kit": "^4.3.1",
41
+ "@unocss/config": "66.6.2",
42
+ "@unocss/core": "66.6.2",
43
+ "@unocss/preset-attributify": "66.6.2",
44
+ "@unocss/preset-icons": "66.6.2",
45
+ "@unocss/preset-tagify": "66.6.2",
46
+ "@unocss/preset-typography": "66.6.2",
47
+ "@unocss/preset-web-fonts": "66.6.2",
48
+ "@unocss/preset-wind3": "66.6.2",
49
+ "@unocss/reset": "66.6.2",
50
+ "@unocss/preset-wind4": "66.6.2",
51
+ "@unocss/vite": "66.6.2",
52
+ "@unocss/webpack": "66.6.2",
53
+ "unocss": "66.6.2"
59
54
  },
60
55
  "scripts": {
61
- "build": "tsdown --config-loader unrun",
62
- "dev": "tsdown --config-loader unrun --watch"
56
+ "build": "tsdown",
57
+ "dev": "tsdown --watch"
63
58
  }
64
59
  }