@nuxt/devtools-ui-kit 4.0.0-alpha.10 → 4.0.0-alpha.12

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
@@ -1,6 +1,6 @@
1
1
  # @nuxt/devtools-ui-kit
2
2
 
3
- <a href="https://www.npmjs.com/package/@nuxt/devtools-ui-kit"><img src="https://flat.badgen.net/npm/v/@nuxt/devtools-ui-kit" alt="npm version"></a>
3
+ <a href="https://npmx.dev/package/@nuxt/devtools-ui-kit"><img src="https://flat.badgen.net/npm/v/@nuxt/devtools-ui-kit" alt="npm version"></a>
4
4
 
5
5
  > **Deprecated**: This package is deprecated and no longer recommended for new integrations. It is kept around for existing consumers, but should not be adopted going forward.
6
6
 
package/dist/module.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@nuxt/devtools-ui-kit",
3
3
  "configKey": "devtoolsUIKit",
4
- "version": "4.0.0-alpha.10",
4
+ "version": "4.0.0-alpha.12",
5
5
  "builder": {
6
6
  "@nuxt/module-builder": "1.0.3",
7
7
  "unbuild": "3.6.1"
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@nuxt/devtools-ui-kit",
3
3
  "type": "module",
4
- "version": "4.0.0-alpha.10",
4
+ "version": "4.0.0-alpha.12",
5
5
  "license": "MIT",
6
6
  "deprecated": "This package is deprecated and no longer recommended for use. See https://devtools.nuxt.com/module/ui-kit for details.",
7
7
  "homepage": "https://devtools.nuxt.com/module/ui-kit",
@@ -11,32 +11,23 @@
11
11
  "directory": "packages/devtools-ui-kit"
12
12
  },
13
13
  "exports": {
14
- ".": {
15
- "import": "./dist/module.mjs",
16
- "require": "./module.cjs"
17
- },
18
- "./module": {
19
- "import": "./dist/module.mjs",
20
- "require": "./module.cjs"
21
- },
22
- "./unocss": {
23
- "import": "./dist/unocss.mjs"
24
- }
14
+ ".": "./dist/module.mjs",
15
+ "./module": "./dist/module.mjs",
16
+ "./unocss": "./dist/unocss.mjs"
25
17
  },
26
18
  "main": "./dist/module.mjs",
27
19
  "files": [
28
- "*.cjs",
29
20
  "dist"
30
21
  ],
31
22
  "peerDependencies": {
32
- "@nuxt/devtools": "4.0.0-alpha.10"
23
+ "@nuxt/kit": "^4.0.0-0 || ^5.0.0-0",
24
+ "@nuxt/devtools": "4.0.0-alpha.12"
33
25
  },
34
26
  "dependencies": {
35
27
  "@iconify-json/carbon": "^1.2.25",
36
- "@iconify-json/logos": "^1.2.11",
28
+ "@iconify-json/logos": "^1.2.13",
37
29
  "@iconify-json/ri": "^1.2.10",
38
30
  "@iconify-json/tabler": "^1.2.38",
39
- "@nuxt/kit": "npm:@nuxt/kit-nightly@5.0.0-29755283.b4586ef2",
40
31
  "@unocss/core": "^66.7.5",
41
32
  "@unocss/nuxt": "^66.7.5",
42
33
  "@unocss/preset-attributify": "^66.7.5",
@@ -51,12 +42,13 @@
51
42
  "splitpanes": "^4.1.2",
52
43
  "unocss": "^66.7.5",
53
44
  "v-lazy-show": "^0.3.0",
54
- "@nuxt/devtools-kit": "4.0.0-alpha.10"
45
+ "@nuxt/devtools-kit": "4.0.0-alpha.12"
55
46
  },
56
47
  "devDependencies": {
48
+ "@nuxt/kit": "npm:@nuxt/kit-nightly@5.0.0-29755283.b4586ef2",
57
49
  "nuxt": "npm:nuxt-nightly@5.0.0-29755283.b4586ef2",
58
50
  "unbuild": "^3.6.1",
59
- "@nuxt/devtools": "4.0.0-alpha.10"
51
+ "@nuxt/devtools": "4.0.0-alpha.12"
60
52
  },
61
53
  "publishConfig": {
62
54
  "access": "public"
package/dist/module.d.ts DELETED
@@ -1,13 +0,0 @@
1
- import * as _nuxt_schema from '@nuxt/schema';
2
- export { unocssPreset } from './unocss.js';
3
- import '@unocss/nuxt';
4
- import 'unocss';
5
-
6
- interface ModuleOptions {
7
- dev?: boolean;
8
- preset?: string;
9
- }
10
- declare const _default: _nuxt_schema.NuxtModule<ModuleOptions, ModuleOptions, false>;
11
-
12
- export { _default as default };
13
- export type { ModuleOptions };
package/dist/unocss.d.ts DELETED
@@ -1,7 +0,0 @@
1
- import { UnocssNuxtOptions } from '@unocss/nuxt';
2
- import { Preset } from 'unocss';
3
-
4
- declare function unocssPreset(): Preset;
5
- declare function extendUnocssOptions(user?: UnocssNuxtOptions): UnocssNuxtOptions;
6
-
7
- export { extendUnocssOptions, unocssPreset };
package/module.cjs DELETED
@@ -1,6 +0,0 @@
1
- // CommonJS proxy to bypass jiti transforms from nuxt 2 and using native ESM
2
- module.exports = function (...args) {
3
- return import('./dist/module.mjs').then(m => m.default.call(this, ...args))
4
- }
5
-
6
- module.exports.meta = require('./package.json')