{"_attachments":{},"_id":"unplugin-vue-components","_rev":"1508086-61f332ef958f5014fc4c1caf","author":"antfu <anthonyfu117@hotmail.com>","description":"Components auto importing for Vue","dist-tags":{"latest":"32.1.0"},"license":"MIT","maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"hannoeru","email":"me@hanlee.co"},{"name":"sxzz","email":"sxzz@sxzz.moe"},{"name":"userquin","email":"userquin@gmail.com"}],"name":"unplugin-vue-components","readme":"# unplugin-vue-components\n\n[![NPM version](https://img.shields.io/npm/v/unplugin-vue-components?color=a1b858&label=)](https://www.npmjs.com/package/unplugin-vue-components)\n\nOn-demand components auto importing for Vue.\n\n###### Features\n\n- 💚 Supports Vue 3 out-of-the-box.\n- ✨ Supports both components and directives.\n- ⚡️ Supports Vite, Webpack, Rspack, Rollup, Rolldown, esbuild and more, powered by <a href=\"https://github.com/unjs/unplugin\">unplugin</a>.\n- 🏝 Tree-shakable, only registers the components you use.\n- 🪐 Folder names as namespaces.\n- 🦾 Full TypeScript support.\n- 🌈 [Built-in resolvers](#importing-from-ui-libraries) for popular UI libraries.\n- 😃 Works perfectly with [unplugin-icons](https://github.com/antfu/unplugin-icons).\n\n<br>\n\n<p align=\"center\">\n  <a href=\"https://cdn.jsdelivr.net/gh/antfu/static/sponsors.svg\">\n    <img src='https://cdn.jsdelivr.net/gh/antfu/static/sponsors.svg' alt='Sponsors'/>\n  </a>\n</p>\n\n<br>\n\n## Installation\n\n```bash\nnpm i unplugin-vue-components -D\n```\n\n> **`vite-plugin-components` has been renamed to `unplugin-vue-components`**, see the [migration guide](#migrate-from-vite-plugin-components).\n\n<details>\n<summary>Vite</summary><br>\n\n```ts\n// vite.config.ts\nimport Components from 'unplugin-vue-components/vite'\n\nexport default defineConfig({\n  plugins: [\n    Components({ /* options */ }),\n  ],\n})\n```\n\n<br></details>\n\n<details>\n<summary>Rollup</summary><br>\n\n```ts\n// rollup.config.js\nimport Components from 'unplugin-vue-components/rollup'\n\nexport default {\n  plugins: [\n    Components({ /* options */ }),\n  ],\n}\n```\n\n<br></details>\n\n<details>\n<summary>Rolldown</summary><br>\n\n```ts\n// rolldown.config.js\nimport Components from 'unplugin-vue-components/rolldown'\n\nexport default {\n  plugins: [\n    Components({ /* options */ }),\n  ],\n}\n```\n\n<br></details>\n\n<details>\n<summary>Webpack</summary><br>\n\n```ts\n// webpack.config.js\n// unplugin-vue-components removed support for CommonJS after version 29.1.0\nmodule.exports = {\n  /* ... */\n  plugins: [\n    require('unplugin-vue-components/webpack')({ /* options */ }),\n  ],\n}\n```\n\n<br></details>\n\n<details>\n<summary>Rspack</summary><br>\n\n```ts\n// rspack.config.js\n// unplugin-vue-components removed support for CommonJS after version 29.1.0\nmodule.exports = {\n  /* ... */\n  plugins: [\n    require('unplugin-vue-components/rspack')({ /* options */ }),\n  ],\n}\n```\n\n<br></details>\n\n<details>\n<summary>Nuxt</summary><br>\n\nYou might not need this plugin for Nuxt. Use [`@nuxt/components`](https://github.com/nuxt/components) instead.\n\n<br></details>\n\n<details>\n<summary>Quasar</summary><br>\n\n```ts\n// vite.config.js [Vite]\nimport Components from 'unplugin-vue-components/vite'\nimport { defineConfig } from 'vite'\n\nexport default defineConfig({\n  plugins: [\n    Components({ /* options */ })\n  ]\n})\n```\n\n```ts\n// quasar.config.js\nexport default defineConfig(() => {\n  return {\n    build: {\n      vitePlugins: [\n        ['unplugin-vue-components/vite', { /* options */ }],\n      ]\n    },\n  }\n})\n```\n\n<br></details>\n\n<details>\n<summary>esbuild</summary><br>\n\n```ts\n// esbuild.config.js\nimport { build } from 'esbuild'\nimport Components from 'unplugin-vue-components/esbuild'\n\nbuild({\n  /* ... */\n  plugins: [\n    Components({\n      /* options */\n    }),\n  ],\n})\n```\n\n<br></details>\n\n## Usage\n\nUse components in templates as you would usually do, it will import components on demand, and there is no `import` and `component registration` required anymore! If you register the parent component asynchronously (or lazy route), the auto-imported components will be code-split along with their parent.\n\nIt will automatically turn this\n\n```html\n<template>\n  <div>\n    <HelloWorld msg=\"Hello Vue 3.0 + Vite\" />\n  </div>\n</template>\n\n<script>\n  export default {\n    name: 'App',\n  }\n</script>\n```\n\ninto this\n\n```html\n<template>\n  <div>\n    <HelloWorld msg=\"Hello Vue 3.0 + Vite\" />\n  </div>\n</template>\n\n<script>\n  import HelloWorld from './src/components/HelloWorld.vue'\n\n  export default {\n    name: 'App',\n    components: {\n      HelloWorld,\n    },\n  }\n</script>\n```\n\n> **Note**\n> By default this plugin will import components in the `src/components` path. You can customize it using the `dirs` option.\n\n## TypeScript\n\nTo get TypeScript support for auto-imported components, there is [a PR](https://github.com/vuejs/core/pull/3399) to Vue 3 extending the interface of global components. Currently, [Volar](https://github.com/johnsoncodehk/volar) has supported this usage already. If you are using Volar, you can change the config as following to get the support.\n\n```ts\nComponents({\n  dts: true, // enabled by default if `typescript` is installed\n})\n```\n\nOnce the setup is done, a `components.d.ts` will be generated and updates automatically with the type definitions. Feel free to commit it into git or not as you want.\n\n> **Make sure you also add `components.d.ts` to your `tsconfig.json` under `include`.**\n\n## Importing from UI Libraries\n\nWe have several built-in resolvers for popular UI libraries like **Vuetify**, **Ant Design Vue**, and **Element Plus**, where you can enable them by:\n\nSupported Resolvers:\n\n- [Ant Design Vue](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/antdv.ts)\n- [Arco Design Vue](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/arco.ts)\n- [BootstrapVue](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/bootstrap-vue.ts)\n- [Element Plus](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/element-plus.ts)\n- [Headless UI](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/headless-ui.ts)\n- [IDux](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/idux.ts)\n- [Inkline](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/inkline.ts)\n- [Ionic](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/ionic.ts)\n- [Naive UI](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/naive-ui.ts)\n- [Prime Vue](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/prime-vue.ts)\n- [Quasar](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/quasar.ts)\n- [TDesign](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/tdesign.ts)\n  - [`@tdesign-vue-next/auto-import-resolver`](https://github.com/Tencent/tdesign-vue-next/blob/develop/packages/auto-import-resolver/README.md) - TDesign's own auto-import resolver\n- [Vant](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/vant.ts)\n  - [`@vant/auto-import-resolver`](https://github.com/youzan/vant/blob/main/packages/vant-auto-import-resolver/README.md) - Vant's own auto-import resolver\n- [Varlet UI](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/varlet-ui.ts)\n  - [`@varlet/import-resolver`](https://github.com/varletjs/varlet/blob/dev/packages/varlet-import-resolver/README.md) - Varlet's own auto-import resolver\n- [VEUI](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/veui.ts)\n- [View UI](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/view-ui.ts)\n- [Vuetify](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/vuetify.ts) &mdash; Prefer first-party plugins when possible: [v3 + vite](https://www.npmjs.com/package/vite-plugin-vuetify), [v3 + webpack](https://www.npmjs.com/package/webpack-plugin-vuetify), [v2 + webpack](https://npmjs.com/package/vuetify-loader)\n- [VueUse Components](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/vueuse.ts)\n- [VueUse Directives](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/vueuse-directive.ts)\n- [Dev UI](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/devui.ts)\n\n```ts\nimport {\n  AntDesignVueResolver,\n  ElementPlusResolver,\n  VantResolver,\n} from 'unplugin-vue-components/resolvers'\n// vite.config.js\nimport Components from 'unplugin-vue-components/vite'\n\n// your plugin installation\nComponents({\n  resolvers: [\n    AntDesignVueResolver(),\n    ElementPlusResolver(),\n    VantResolver(),\n  ],\n})\n```\n\nYou can also write your own resolver quickly:\n\n```ts\nComponents({\n  resolvers: [\n    // example of importing Vant\n    (componentName) => {\n      // where `componentName` is always CapitalCase\n      if (componentName.startsWith('Van'))\n        return { name: componentName.slice(3), from: 'vant' }\n    },\n  ],\n})\n```\n\n> [We no longer accept new resolvers](./src/core/resolvers/_READ_BEFORE_CONTRIBUTE.md).\n\n## Types for global registered components\n\nSome libraries might register some global components for you to use anywhere (e.g. Vue Router provides `<RouterLink>` and `<RouterView>`). Since they are global available, there is no need for this plugin to import them. However, those are commonly not TypeScript friendly, and you might need to register their types manually.\n\nThus `unplugin-vue-components` provided a way to only register types for global components.\n\n```ts\nComponents({\n  dts: true,\n  types: [{\n    from: 'vue-router',\n    names: ['RouterLink', 'RouterView'],\n  }],\n})\n```\n\nSo the `RouterLink` and `RouterView` will be presented in `components.d.ts`.\n\nBy default, `unplugin-vue-components` detects supported libraries automatically (e.g. `vue-router`) when they are installed in the workspace. If you want to disable it completely, you can pass an empty array to it:\n\n```ts\nComponents({\n  // Disable type only registration\n  types: [],\n})\n```\n\n## Migrate from `vite-plugin-components`\n\n`package.json`\n\n```diff\n{\n  \"devDependencies\": {\n-   \"vite-plugin-components\": \"*\",\n+   \"unplugin-vue-components\": \"^0.14.0\",\n  }\n}\n```\n\n`vite.config.js`\n\n```diff\n- import Components, { ElementPlusResolver } from 'vite-plugin-components'\n+ import Components from 'unplugin-vue-components/vite'\n+ import { ElementPlusResolver } from 'unplugin-vue-components/resolvers'\n\nexport default {\n  plugins: [\n    /* ... */\n    Components({\n      /* ... */\n\n      // `customComponentsResolvers` has renamed to `resolver`\n-     customComponentsResolvers: [\n+     resolvers: [\n        ElementPlusResolver(),\n      ],\n\n      // `globalComponentsDeclaration` has renamed to `dts`\n-     globalComponentsDeclaration: true,\n+     dts: true,\n\n      // `customLoaderMatcher` is depreacted, use `include` instead\n-     customLoaderMatcher: id => id.endsWith('.md'),\n+     include: [/\\.vue$/, /\\.vue\\?vue/, /\\.vue\\.[tj]sx?\\?vue/, /\\.md$/],\n    }),\n  ],\n}\n```\n\n## Configuration\n\nThe following show the default values of the configuration\n\n```ts\nComponents({\n  // relative paths to the directory to search for components.\n  dirs: ['src/components'],\n\n  // valid file extensions for components.\n  extensions: ['vue'],\n\n  // Glob patterns to match file names to be detected as components.\n  // You can also specify multiple like this: `src/components/*.{vue,tsx}`\n  // When specified, the `dirs`, `extensions`, and `directoryAsNamespace` options will be ignored.\n  // If you want to exclude components being registered, use negative globs with leading `!`.\n  globs: ['src/components/*.vue'],\n\n  // search for subdirectories\n  deep: true,\n\n  // resolvers for custom components\n  resolvers: [],\n\n  // generate `components.d.ts` global declarations,\n  // also accepts a path for custom filename\n  // default: `true` if package typescript is installed\n  dts: false,\n\n  // generate dts with TSX support\n  // default: `true` if `@vitejs/plugin-vue-jsx` is installed\n  dtsTsx: false,\n\n  // Allow subdirectories as namespace prefix for components.\n  directoryAsNamespace: false,\n\n  // Collapse same prefixes (camel-sensitive) of folders and components\n  // to prevent duplication inside namespaced component name.\n  // works when `directoryAsNamespace: true`\n  collapseSamePrefixes: false,\n\n  // Subdirectory paths for ignoring namespace prefixes.\n  // works when `directoryAsNamespace: true`\n  globalNamespaces: [],\n\n  // auto import for directives\n  directives: true,\n\n  // Transform path before resolving\n  importPathTransform: v => v,\n\n  // Allow for components to override other components with the same name\n  allowOverrides: false,\n\n  // Filters for transforming targets (components to insert the auto import)\n  // Note these are NOT about including/excluding components registered - use `globs` or `excludeNames` for that\n  include: [/\\.vue$/, /\\.vue\\?vue/, /\\.vue\\.[tj]sx?\\?vue/],\n  exclude: [/[\\\\/]node_modules[\\\\/]/, /[\\\\/]\\.git[\\\\/]/, /[\\\\/]\\.nuxt[\\\\/]/],\n\n  // Filters for component names that will not be imported\n  // Use for globally imported async components or other conflicts that the plugin cannot detect\n  excludeNames: [/^Async.+/],\n\n  // Vue version of project. It will detect automatically if not specified.\n  // Acceptable value: 2 | 2.7 | 3\n  version: 2.7,\n\n  // Only provide types of components in library (registered globally)\n  // see https://github.com/unplugin/unplugin-vue-components/blob/main/src/core/type-imports/index.ts\n  types: [\n    /* ... */\n  ],\n\n  // Save component information into a JSON file for other tools to consume.\n  // Provide a filepath to save the JSON file.\n  // When set to `true`, it will save to `./.components-info.json`\n  dumpComponentsInfo: false,\n\n  // The mode for syncing the components.d.ts and .components-info.json file.\n  // 'append': only append the new components to the existing files.\n  // 'overwrite': overwrite the whole existing files with the current components.\n  // 'default': use 'append' strategy when using dev server, 'overwrite' strategy when using build.\n  syncMode: 'default',\n})\n```\n\n## Example\n\n[Vitesse](https://github.com/antfu/vitesse) starter template.\n\n## Thanks\n\nThanks to [@brattonross](https://github.com/brattonross), this project is heavily inspired by [vite-plugin-voie](https://github.com/vamplate/vite-plugin-voie).\n\n## License\n\n[MIT](./LICENSE) License © 2020-PRESENT [Anthony Fu](https://github.com/antfu)\n","time":{"created":"2022-01-28T00:03:59.841Z","modified":"2026-05-20T04:39:00.080Z","0.17.16":"2022-02-05T01:09:00.009Z","0.17.9":"2021-12-13T12:05:23.661Z","0.17.8":"2021-12-10T11:36:35.026Z","0.17.6":"2021-12-06T11:59:59.362Z","0.17.5":"2021-12-05T17:18:01.053Z","0.17.4":"2021-12-04T15:02:51.998Z","0.17.3":"2021-12-04T13:14:36.419Z","0.17.2":"2021-11-06T01:07:18.964Z","0.17.1":"2021-11-05T03:31:18.087Z","0.17.0":"2021-10-29T19:57:12.335Z","0.16.0":"2021-10-18T23:24:24.551Z","0.15.6":"2021-09-29T20:44:22.003Z","0.15.5":"2021-09-29T19:46:11.533Z","0.15.4":"2021-09-25T22:26:16.683Z","0.15.3":"2021-09-24T00:18:41.227Z","0.15.2":"2021-09-16T02:02:50.679Z","0.15.1":"2021-09-14T02:22:00.612Z","0.15.0":"2021-09-07T20:54:43.327Z","0.14.13":"2021-09-07T09:16:15.803Z","0.14.12":"2021-09-05T18:24:16.816Z","0.14.11":"2021-09-02T21:39:44.731Z","0.14.10":"2021-09-02T10:27:28.082Z","0.14.9":"2021-09-02T01:36:10.983Z","0.14.8":"2021-09-01T13:58:01.380Z","0.14.7":"2021-09-01T11:12:04.840Z","0.14.6":"2021-08-31T07:57:25.122Z","0.14.5":"2021-08-30T15:12:36.849Z","0.14.4":"2021-08-30T11:10:40.373Z","0.14.3":"2021-08-30T09:31:36.425Z","0.14.2":"2021-08-30T08:51:09.955Z","0.14.1":"2021-08-30T08:32:16.731Z","0.14.0-beta.1":"2021-08-29T15:24:35.062Z","0.0.0":"2021-08-29T06:04:46.847Z","0.17.10":"2021-12-24T05:10:37.073Z","0.17.11":"2021-12-26T03:54:14.540Z","0.17.13":"2022-01-16T09:46:01.659Z","0.17.14":"2022-01-20T20:54:59.729Z","0.17.15":"2022-01-27T09:18:01.953Z","0.17.17":"2022-02-07T01:13:33.571Z","0.17.18":"2022-02-08T11:23:10.248Z","0.17.19":"2022-02-22T06:28:41.941Z","0.17.20":"2022-02-22T19:02:38.704Z","0.17.21":"2022-02-24T09:52:30.067Z","0.18.0":"2022-03-11T11:51:31.991Z","0.18.1":"2022-03-17T19:41:12.369Z","0.18.2":"2022-03-19T16:25:27.868Z","0.18.3":"2022-03-19T16:27:16.593Z","0.18.4":"2022-03-23T06:10:19.086Z","0.18.5":"2022-03-26T12:12:18.991Z","0.19.0":"2022-04-10T02:12:35.753Z","0.19.1":"2022-04-10T11:40:58.248Z","0.19.2":"2022-04-11T05:32:23.363Z","0.19.3":"2022-04-14T09:53:02.658Z","0.19.5":"2022-05-09T13:05:01.706Z","0.19.6":"2022-05-27T05:12:30.627Z","0.20.0":"2022-06-23T10:43:32.482Z","0.19.9":"2022-06-23T10:44:19.008Z","0.20.1":"2022-06-26T13:36:03.163Z","0.21.0":"2022-07-01T08:27:00.180Z","0.21.1":"2022-07-06T04:02:05.479Z","0.21.2":"2022-07-26T03:29:28.475Z","0.22.0":"2022-08-04T06:51:39.288Z","0.22.1":"2022-08-08T10:19:06.877Z","0.22.2":"2022-08-08T17:01:30.046Z","0.22.3":"2022-08-09T06:43:00.559Z","0.22.4":"2022-08-09T17:38:31.039Z","0.22.6":"2022-09-12T01:47:03.045Z","0.22.7":"2022-09-12T04:20:23.792Z","0.22.8":"2022-10-05T08:59:40.042Z","0.22.9":"2022-10-24T09:10:18.511Z","0.22.11":"2022-11-22T10:58:27.935Z","0.22.12":"2022-12-12T09:25:33.330Z","0.23.0":"2023-01-28T11:56:56.505Z","0.24.0":"2023-02-16T09:43:25.569Z","0.24.1":"2023-03-06T23:21:35.491Z","0.25.0":"2023-05-30T09:41:37.925Z","0.25.1":"2023-06-05T12:08:02.881Z","0.25.2":"2023-08-30T14:09:33.205Z","0.26.0":"2023-12-03T15:27:31.292Z","0.27.0":"2024-05-01T06:53:12.624Z","0.27.1":"2024-06-25T08:29:40.800Z","0.27.2":"2024-06-26T18:09:40.704Z","0.27.3":"2024-07-16T12:56:44.339Z","0.27.4":"2024-08-12T12:04:33.769Z","0.27.5":"2024-11-27T10:44:19.102Z","0.28.0":"2024-12-16T05:55:59.581Z","28.0.0":"2025-01-08T05:52:39.678Z","28.1.0":"2025-02-15T08:30:09.168Z","28.2.0":"2025-02-18T04:53:09.568Z","28.3.0":"2025-02-19T05:17:29.390Z","28.4.0":"2025-02-19T05:59:08.835Z","28.4.1":"2025-02-27T03:19:36.869Z","28.5.0":"2025-04-14T06:43:42.625Z","28.6.0":"2025-05-26T04:56:03.281Z","28.7.0":"2025-05-26T05:00:37.477Z","28.8.0":"2025-06-29T01:54:34.874Z","29.0.0":"2025-08-06T05:16:03.701Z","29.1.0":"2025-09-20T22:13:30.934Z","29.2.0":"2025-10-19T23:11:19.289Z","30.0.0":"2025-10-19T23:16:25.639Z","31.0.0":"2026-01-14T23:24:38.799Z","31.1.0":"2026-03-23T08:55:43.159Z","32.0.0":"2026-03-23T08:56:26.781Z","32.1.0":"2026-05-20T04:38:37.140Z"},"versions":{"0.17.16":{"name":"unplugin-vue-components","version":"0.17.16","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"tsup src/*.ts && esno scripts/postbuild.ts","dev":"tsup src/*.ts --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint --ext .js,.vue,.ts,.tsx .","release":"npx bumpp --commit --tag --push","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@babel/traverse":"^7.15.4","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@babel/traverse":{"optional":true}},"dependencies":{"@antfu/utils":"^0.4.0","@rollup/pluginutils":"^4.1.2","chokidar":"^3.5.2","debug":"^4.3.3","fast-glob":"^3.2.11","local-pkg":"^0.4.1","magic-string":"^0.25.7","minimatch":"^3.0.4","resolve":"^1.21.0","unplugin":"^0.3.0"},"devDependencies":{"@antfu/eslint-config":"^0.16.0","@babel/parser":"^7.16.8","@babel/traverse":"^7.16.8","@babel/types":"^7.16.8","@types/debug":"^4.1.7","@types/minimatch":"^3.0.5","@types/node":"^17.0.8","@types/resolve":"^1.20.1","@typescript-eslint/eslint-plugin":"^5.9.1","bumpp":"^7.1.1","compare-versions":"^4.1.3","element-plus":"^1.1.0-beta.24","eslint":"^8.7.0","esno":"^0.14.0","rollup":"^2.64.0","tsup":"5.7.4","typescript":"^4.5.4","vite":"^2.7.12","vitest":"^0.1.17","vue":"3.2.26"},"engines":{"node":">=14"},"gitHead":"8d82df139b95db9790a9a8de6c64b3a81514e76d","_id":"unplugin-vue-components@0.17.16","_nodeVersion":"14.18.3","_npmVersion":"6.14.15","dist":{"integrity":"sha512-WGQdPAZ6uzx00gRQuhTVxY91dxVz6VD5CpeBjVSrzwghki4fShk3l6h3N/jWQDWCi1ej+JnjYOwND4SLoujDGg==","shasum":"219500210a786be9d14414cadf53d9160541cd6d","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.17.16.tgz","fileCount":43,"unpackedSize":231978,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh/c4sCRA9TVsSAnZWagAAB+4P/iSlCgxcO07JdqdAm0Kg\nBjBi3RTUZpQWWFK/J/OIUWBfajDoubBYoLiCWUfQ+1hSakwR/5w0nfg3UcIl\nfZEaVHpaiJmgzJ1Tfz7kiQfsXh3jR0RMTpLZtWJSkG5nzVjGlMc4y7Psv4tk\neQeKZw4u99UgD+N/hvDUgjquYEXI3io5fDO6xEAopElMEHfR2vYnv+Rbxg46\nEN5vl2DrTsvN4mKSVPHjg92yLQ+wwmWkv0Lr4VrFTwp/ULxoBYuNvyZQAilc\nfzylp1E9h2kI1MHWFmXqQdy4ppTMBp2VqenSyNPpOsVU0WiqJexaFtkrtV4P\nU66nx/npPtcczQPuFoTFpD19LHY6o/ezZMu/qWXM/teYwWd/Q/gi+xr+Ies4\nR4tlOt73VhY/gXUQrwiSmD2KYmmxkRggf5m+KmKgWPx3zQ/b6kQQscki+cpn\nZqzCFHurH6sYLE+tUayyHR9GYZDMOsfMIZuXBJrdu/3T/rENAqYj3Jk43/UR\n2gdZHF9AfwDfza6QFv+fvAPRL1kWRlD50Hmj53VRWUe5xEJVEhARPm++rYmB\n1vvVwB8FmuTFsD0lh9hy8v6eZGkA5zbj1lQonVQns5ypxM02GQM2FX1If3if\npJjde86B+AGQbdAgJ6rlcaKFc01cjAaM6VHaCIQz59rOYCqaukmHgnvTsWfa\nbOSL\r\n=J5sT\r\n-----END PGP SIGNATURE-----\r\n","size":49749},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.17.16_1644023339866_0.2018451755921553"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-02-05T01:09:06.979Z"},"0.17.9":{"name":"unplugin-vue-components","version":"0.17.9","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"tsup src/*.ts && esno scripts/postbuild.ts","dev":"tsup src/*.ts --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@babel/traverse":"^7.15.4","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@babel/traverse":{"optional":true}},"dependencies":{"@antfu/utils":"^0.3.0","@rollup/pluginutils":"^4.1.1","chokidar":"^3.5.2","debug":"^4.3.2","fast-glob":"^3.2.7","local-pkg":"^0.4.0","magic-string":"^0.25.7","minimatch":"^3.0.4","resolve":"^1.20.0","unplugin":"^0.2.21"},"devDependencies":{"@antfu/eslint-config":"^0.10.0","@babel/parser":"^7.16.4","@babel/traverse":"^7.16.3","@babel/types":"^7.16.0","@types/debug":"^4.1.7","@types/minimatch":"^3.0.5","@types/node":"^16.11.9","@types/resolve":"^1.20.1","@typescript-eslint/eslint-plugin":"^5.4.0","bumpp":"^7.1.1","compare-versions":"^4.1.1","element-plus":"^1.1.0-beta.24","eslint":"^8.3.0","esno":"^0.12.1","rollup":"^2.60.0","tsup":"^5.7.4","typescript":"^4.5.2","vite":"^2.6.14","vitest":"^0.0.50","vue":"3"},"engines":{"node":">=14"},"gitHead":"6ae07b04839bcd730bf4b2d5cf19a265e4490f4d","_id":"unplugin-vue-components@0.17.9","_nodeVersion":"14.18.2","_npmVersion":"6.14.15","dist":{"integrity":"sha512-SZrK3T/uEoP2g2bH+8DwBznoqlS0dI7kQvCmHmL8HmTXdM78kh5P/9SN5IwuNpfbmXoGXWJPB8Pr8Ke8zsgpmA==","shasum":"a2acc9b4e073f52df82d2036a318d76f0c66538b","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.17.9.tgz","fileCount":39,"unpackedSize":216659,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhtzcDCRA9TVsSAnZWagAA09oP/0G2luDtGJygYzJgF61r\nbdOXNoC4IQnJSrzQut2VvE31/+c+abztrNsyhLG44bX6Ccjv8U3b2HFuw1Qe\n/1rQEd+Dc7CfXmRmDlVj5aPOqB2Yl/dY5biooIklt+Zjtz9XNGNEYLEk2RIq\n5zfifEeDG2JEVhwHGqgKRv+yZvHAGCNzkfUQrg04mOKa3RfD9O9bkSYWWlTE\nXGlikwM2/pDz1yUb3+a53btKeG5pAHn0PDApHBRGMbHwfVj4W28UwTFZhlxp\nMGOz2kAwjucEfMWax0JqPD9VHMGlmLCrt8zgUum+3IuTirA82bsengYXzrtd\nFGR/FBnr1Nz3F4JF0kaaXR/Day4e8H0a8cYUh6P8/yB+LmPSUkdvVQSq2M0D\nWbqtBsLNUIR41i1+xGjZr1vPKK4gTnh8bKzDkpMIMzeUe7fEkXbA59yme7FM\nIs2Gx0ZexmVzVJAmLSuUcZwnyCVYwuSjQ2aPxiS3WS4vadfRBRd+rWlLiWMk\ndalaU2aqn7AJoeFOBoQttAHYpCG575z7kyemJDXTfhUILVo0DHEBSBtPNofH\nslwBV59dMgCP222rK7coXudF+EMrnrMKyQ5dpIELm9CWFuTmYhyfnx95pgSF\ny1wXvDIO73cvy16322tpyCLtz8rtHl9o2WiVJgx4P/CdLTeA3vH6cAMGTPIX\ndFQR\r\n=xq+N\r\n-----END PGP SIGNATURE-----\r\n","size":47021,"noattachment":false},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.17.9_1639397123499_0.3925435452389401"},"_hasShrinkwrap":false,"publish_time":1639397123661,"_cnpm_publish_time":1639397123661,"_cnpmcore_publish_time":"2021-12-16T20:19:14.446Z"},"0.17.8":{"name":"unplugin-vue-components","version":"0.17.8","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"tsup src/*.ts && esno scripts/postbuild.ts","dev":"tsup src/*.ts --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@babel/traverse":"^7.15.4","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@babel/traverse":{"optional":true}},"dependencies":{"@antfu/utils":"^0.3.0","@rollup/pluginutils":"^4.1.1","chokidar":"^3.5.2","debug":"^4.3.2","fast-glob":"^3.2.7","local-pkg":"^0.4.0","magic-string":"^0.25.7","minimatch":"^3.0.4","resolve":"^1.20.0","unplugin":"^0.2.21"},"devDependencies":{"@antfu/eslint-config":"^0.10.0","@babel/parser":"^7.16.4","@babel/traverse":"^7.16.3","@babel/types":"^7.16.0","@types/debug":"^4.1.7","@types/minimatch":"^3.0.5","@types/node":"^16.11.9","@types/resolve":"^1.20.1","@typescript-eslint/eslint-plugin":"^5.4.0","bumpp":"^7.1.1","compare-versions":"^4.1.1","element-plus":"^1.1.0-beta.24","eslint":"^8.3.0","esno":"^0.12.1","rollup":"^2.60.0","tsup":"^5.7.4","typescript":"^4.5.2","vite":"^2.6.14","vitest":"^0.0.50","vue":"3"},"engines":{"node":">=14"},"gitHead":"26338f8ed65ec1333c5bf23a3fb3627b2ead9fcc","_id":"unplugin-vue-components@0.17.8","_nodeVersion":"14.18.1","_npmVersion":"6.14.15","dist":{"integrity":"sha512-biyIE8TQwolK/ii3vu3xJ4w83+bliAgka3AuhU2cX5OOvJP+xuq39Skhf+BkNkZoY8xoeU65WHOgLFl//m3/YQ==","shasum":"16960d5761dc4ce73e70fcd4b76a708c38587eef","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.17.8.tgz","fileCount":39,"unpackedSize":216035,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhszvDCRA9TVsSAnZWagAAk5kQAJbT9nUHB7pftq90eFla\nUmYm5oLNVbtLem0Hkfez6QxdejUfSlFnjSBdGMB4mjlorlbondIm4aTuBdYP\nHCYhC5Z9gx+dLfe8FwcwM/2wvnKmjqNOyBoymeqcINkC6p1MoWzbYnCaUNMR\n25CckWFjdQnuCvoeFn+d0oMisFy0666bpGg82yR/eDykjjxPanzNcYBqrnHM\nsol4D0t2+KWZvS0WT3Wbi7eo12iOLMzyJqCntB+aM6vw3/Uwrb70gHYeg24p\nLs97pQojOXn2rUv3zwpeZ8zvBBv6Ziusd2p5l9auwR+EP+VEw7p6C3D9MNZa\npLqEF1tCFicdsOka6wSts+YmnDT1+/oZodMNkXB65jOPAeIhOzDJF0EVtcl1\nESGmLKvB+7webxpcy2pe2e7jwyMJnINvjUMT1UFjfudDPUtf2pYoQxv3VN8w\nPdV29Mn3Uz/KkOLTtwz6ZfBefyVMGNSqQaNr1wP5YeyKn5FoTPQ4S80fHLp7\nczkR3lfEpBb3IHhh5ABlV5jKluSacRmNFiXNNgcfq0xlPsVK1YTjsEDgaQA/\nVcbv4LZnN+uXf4yDGbp1JW6lMEVLj68PSH756XK/M5vWYx7/ypV/aDRktSKE\nB2CzybKK+SUOr6viDBf6nY1eJqIcH8AwPeS+fC56YvGYrjFFNf2aDnqlRQGV\no6eW\r\n=8EZX\r\n-----END PGP SIGNATURE-----\r\n","size":46771,"noattachment":false},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.17.8_1639136194899_0.2238511522036961"},"_hasShrinkwrap":false,"publish_time":1639136195026,"_cnpm_publish_time":1639136195026,"_cnpmcore_publish_time":"2021-12-16T20:19:14.735Z"},"0.17.6":{"name":"unplugin-vue-components","version":"0.17.6","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"tsup src/*.ts && esno scripts/postbuild.ts","dev":"tsup src/*.ts --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push","test":"jest","test:update":"jest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@babel/traverse":"^7.15.4","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@babel/traverse":{"optional":true}},"dependencies":{"@antfu/utils":"^0.3.0","@rollup/pluginutils":"^4.1.1","chokidar":"^3.5.2","debug":"^4.3.2","fast-glob":"^3.2.7","local-pkg":"^0.4.0","magic-string":"^0.25.7","minimatch":"^3.0.4","resolve":"^1.20.0","unplugin":"^0.2.21"},"devDependencies":{"@antfu/eslint-config":"^0.10.0","@babel/parser":"^7.16.4","@babel/traverse":"^7.16.3","@babel/types":"^7.16.0","@types/debug":"^4.1.7","@types/jest":"^27.0.3","@types/minimatch":"^3.0.5","@types/node":"^16.11.9","@types/resolve":"^1.20.1","@typescript-eslint/eslint-plugin":"^5.4.0","bumpp":"^7.1.1","compare-versions":"^4.1.1","element-plus":"^1.1.0-beta.24","eslint":"^8.3.0","esno":"^0.12.1","jest":"^27.3.1","rollup":"^2.60.0","ts-jest":"^27.0.7","tsup":"^5.7.4","typescript":"^4.5.2","vite":"^2.6.14","vue":"3"},"engines":{"node":">=14"},"gitHead":"9dc7333b3d502a5985713afe00b8d6d69a1add7b","_id":"unplugin-vue-components@0.17.6","_nodeVersion":"14.18.1","_npmVersion":"6.14.15","dist":{"integrity":"sha512-Z2XvwKeY7/++MucRKzJihDsbdL8rFb71VfmuhtMtLE8zurjFu57XKFx0RNFUD5zD4g0HEyR9GGTwXu2YI0rang==","shasum":"895445a0e4d21e8298f36847009bae4f88429eaf","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.17.6.tgz","fileCount":39,"unpackedSize":215909,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhrfs/CRA9TVsSAnZWagAA28cP/0PQXlHEU44oIQ/6LXtk\nQ+RPZFaweB+78T77I0Y44dsoVy86/sMUmngyTS7pl0Covni1OlAXPS/Y6GVm\naF4kkPdxiNmsXVAbxtuK/uwYqJOAIv7Xw44dt4AvcfhRrN0Br6BcLusA593J\nLAwGt9E4gfNOufV8beS9Fid3vbtm07HgYUMv3/v4BNQOjZVge91Svf1b74hj\nzvXeDlcp/m6t53K4PLTNymwZCu/cuCrAJL0/WmiYN7mSSO3TpxbJb8h8y80p\nDU6HbkNkTPVM0YmhHtn5Ndh1/4u/v4UfsS21zAvTz3L42QI9oRClHEHfUVFh\n35TGH9NaZSPkMyZDIBVm3M5RAkde5hOS+lkBtwkyw2V2eWp/a/AUpMIaxBS8\nwW/5RB6QkvvQlit3Y1QVc5FWfoqlkl0vBQ+K7ebZiHDGtqs1DGQsQxlaxDUw\nUQ7LwrTGuYMjZmZkX0wc+PKa/uHtTDQaTz5IX3ji4SlpSRRf29ON0nFGsHTM\nvVInYFzTtJRjAh8em5iV2dpc+JyHD8hsLI35JYhFNAUXVTS0Tmjno2sOKKDI\nV5OCBEojVbOqFBZ7K4Nk9Y7ZMd9qTXZvHiLrI0LkQydqLe5carL6xJOaP/RZ\nTDYkaxPGfTksQASUHful0FFnj1TCj2RbfuH/l/Dk3ui5DiCVWB59StPMO8CX\ni3g3\r\n=Gbjk\r\n-----END PGP SIGNATURE-----\r\n","size":46780,"noattachment":false},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.17.6_1638791999205_0.8383128241886777"},"_hasShrinkwrap":false,"publish_time":1638791999362,"_cnpm_publish_time":1638791999362,"_cnpmcore_publish_time":"2021-12-16T20:19:14.984Z"},"0.17.5":{"name":"unplugin-vue-components","version":"0.17.5","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"tsup src/*.ts && esno scripts/postbuild.ts","dev":"tsup src/*.ts --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push","test":"jest","test:update":"jest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@babel/traverse":"^7.15.4","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@babel/traverse":{"optional":true}},"dependencies":{"@antfu/utils":"^0.3.0","@rollup/pluginutils":"^4.1.1","chokidar":"^3.5.2","debug":"^4.3.2","fast-glob":"^3.2.7","local-pkg":"^0.4.0","magic-string":"^0.25.7","minimatch":"^3.0.4","resolve":"^1.20.0","unplugin":"^0.2.21"},"devDependencies":{"@antfu/eslint-config":"^0.10.0","@babel/parser":"^7.16.4","@babel/traverse":"^7.16.3","@babel/types":"^7.16.0","@types/debug":"^4.1.7","@types/jest":"^27.0.3","@types/minimatch":"^3.0.5","@types/node":"^16.11.9","@types/resolve":"^1.20.1","@typescript-eslint/eslint-plugin":"^5.4.0","bumpp":"^7.1.1","compare-versions":"^4.1.1","element-plus":"^1.1.0-beta.24","eslint":"^8.3.0","esno":"^0.12.1","jest":"^27.3.1","rollup":"^2.60.0","ts-jest":"^27.0.7","tsup":"^5.7.4","typescript":"^4.5.2","vite":"^2.6.14","vue":"3"},"engines":{"node":">=14"},"gitHead":"96a41376830328b34987eeb1cf171fe6d2db993b","_id":"unplugin-vue-components@0.17.5","_nodeVersion":"14.18.1","_npmVersion":"6.14.15","dist":{"integrity":"sha512-KjvKCMgVtfJypDfRkM90s++ayOjwjpJWmlksnOfX1hASIshdYlJuBqO/DE6YTPG7kAk8+83py50yKBioNj9wAw==","shasum":"0a08b60e11757a577246d358ecc2efa497b79fdf","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.17.5.tgz","fileCount":39,"unpackedSize":214587,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhrPRJCRA9TVsSAnZWagAA4D8QAIwbCU6cZ63pHXBx7gq1\nWC4qNduTNwwVXyZGKG0rsfXkQZUGAowIhEB5aIL3UOnhN62HzqsteDpMBfH0\nftiuKNwUOVfBowv7GoJ+FVXeURnDGlScwC26dWsleeddZf0PDTYzzn4PgU81\nV2keT3IwR06ApEq7Iyu7rNyREN830F5o2u/0A5fqF/4Gdu69ly9ARRSfr32I\nnZgxXTdUUPId1TNjgfVjXbbDyrczppEhwj+NjgMKRezf4AakM56d4fDQZMTx\ncAZdCM1NlNb3duJW/oNrfEmnfu++JiOcO1fTTm/MbsLbzWX6/T5cYNHVCkEO\nAZHy7KeUEIoobKviVChMn5HiQMvWHnOuReb8h1bFeRbDzxMWNtexZKKkiRjG\nC5xxtcjnvsWUxLpQbdyQiGkYbaW1cA+gNbKT4UM5l1payNQVguYgxZGE8aDs\nScq/znSJgh35CuEEGDfe9DiNtDaD/BsB4pY1iV8fM9Q/aoFG1uLA/srOBJ3Z\nFqJgEv/PzGcR/FKVU6DWHU6U8DrIFC8VWRklFUTvCtI95Lvkkq3I2ttiSJRo\nGxDiD79edxv0xGUUJFX4mw6NK9+uRf4l65f7GDrMeF606VxgPWd6RDsafRgM\nteUfY+SBMfXq1HmlgekUkWrjZ3/loVBKvfDbijx0dnHGYQdcgttqEsyNO5YU\ne3ZF\r\n=D2yk\r\n-----END PGP SIGNATURE-----\r\n","size":46507,"noattachment":false},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.17.5_1638724680874_0.5548814151921375"},"_hasShrinkwrap":false,"publish_time":1638724681053,"_cnpm_publish_time":1638724681053,"_cnpmcore_publish_time":"2021-12-16T20:19:15.627Z"},"0.17.4":{"name":"unplugin-vue-components","version":"0.17.4","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"tsup src/*.ts && esno scripts/postbuild.ts","dev":"tsup src/*.ts --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push","test":"jest","test:update":"jest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@babel/traverse":"^7.15.4","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@babel/traverse":{"optional":true}},"dependencies":{"@antfu/utils":"^0.3.0","@rollup/pluginutils":"^4.1.1","chokidar":"^3.5.2","debug":"^4.3.2","fast-glob":"^3.2.7","local-pkg":"^0.4.0","magic-string":"^0.25.7","minimatch":"^3.0.4","resolve":"^1.20.0","unplugin":"^0.2.21"},"devDependencies":{"@antfu/eslint-config":"^0.10.0","@babel/parser":"^7.16.4","@babel/traverse":"^7.16.3","@babel/types":"^7.16.0","@types/debug":"^4.1.7","@types/jest":"^27.0.3","@types/minimatch":"^3.0.5","@types/node":"^16.11.9","@types/resolve":"^1.20.1","@typescript-eslint/eslint-plugin":"^5.4.0","bumpp":"^7.1.1","compare-versions":"^4.1.1","element-plus":"^1.1.0-beta.24","eslint":"^8.3.0","esno":"^0.12.1","jest":"^27.3.1","rollup":"^2.60.0","ts-jest":"^27.0.7","tsup":"^5.7.4","typescript":"^4.5.2","vite":"^2.6.14","vue":"3"},"engines":{"node":">=14"},"gitHead":"72fc4ec209cf4288835f1e22262d64793580f43e","_id":"unplugin-vue-components@0.17.4","_nodeVersion":"14.18.1","_npmVersion":"6.14.15","dist":{"integrity":"sha512-xBc/pprXOzIjW7aZ5Km5MfnbXev8ot13TUXH0Ln1Cs4zsNhKK3aWsl8IKo1RyL3c+pduR4IwWbMW/HHR+AuHuA==","shasum":"34b8f6f07555e0e19851e4cabdb48e2206512d3d","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.17.4.tgz","fileCount":39,"unpackedSize":214250,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhq4MbCRA9TVsSAnZWagAAa1cP+gP4NarusgQwqxoZZLrL\n2Wlxkho00Miw0yRne7Xp88E5Vfr2Dlx1kwt0d7ZZ6BWRDU1PXmPBS5i4bcp4\n6cf5piI0LpIMf3QwM8dv3WSGCCZb7qrAk27GyNLxEObS1264QsBddMCTLHqj\nQTc78aCQqOMO0ZrJN4NUFMHCfS58ogybc8pDUNDS6hk4eh5ObPBjxQ8LhjGf\nF8wLLrGKwEu5AkF7b3u6e0gaivO3aLoSlqayE8L2l5VTVyI5LUshZtHpAPOx\nwJmng6wI3GEkwLKpKGBmmXgWlkQy8GjLdkhfKPrJnDw9sS7OW18XIPyVdy9l\nysZ/CbVw2F7n8V3H1kenqJF8jRe4wiRjTudMxaykKESzXD/vNCUIdiYb0HbD\n6CWZ0FrEoSaOh8rrBvvXX+wObFbW5Hh4hOBeo6fKEtG/rQjC0zJjsW4gjg9k\n7kL4maGnl/MvrS5whs8UFZsGUL+DhmUz9Dya6UibC7ap7ne5eTewW9ryg2dc\nblynJd+A5bpA5lBmL0gnxbvlOiz4Xckd9NWC23GFBqy4RZxl5ifS4zzjhPwL\n+BSiXkqwUg1w89NKChwoNwGXgJatA0iImnnQ9RQ9KqcPD+RaJSzKwuSvuWh9\nWzOQDtkhJIkEPLM0kzuRI9rS/VgKyh1RrqRfqMVc1BCY8YdKyR8FkcNKKzj+\nOr6z\r\n=mruI\r\n-----END PGP SIGNATURE-----\r\n","size":46398,"noattachment":false},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.17.4_1638630171839_0.6758102089493121"},"_hasShrinkwrap":false,"publish_time":1638630171998,"_cnpm_publish_time":1638630171998,"_cnpmcore_publish_time":"2021-12-16T20:19:15.930Z"},"0.17.3":{"name":"unplugin-vue-components","version":"0.17.3","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"tsup src/*.ts && esno scripts/postbuild.ts","dev":"tsup src/*.ts --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push","test":"jest","test:update":"jest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@babel/traverse":"^7.15.4","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@babel/traverse":{"optional":true}},"dependencies":{"@antfu/utils":"^0.3.0","@rollup/pluginutils":"^4.1.1","chokidar":"^3.5.2","debug":"^4.3.2","fast-glob":"^3.2.7","local-pkg":"^0.4.0","magic-string":"^0.25.7","minimatch":"^3.0.4","resolve":"^1.20.0","unplugin":"^0.2.21"},"devDependencies":{"@antfu/eslint-config":"^0.10.0","@babel/parser":"^7.16.4","@babel/traverse":"^7.16.3","@babel/types":"^7.16.0","@types/debug":"^4.1.7","@types/jest":"^27.0.3","@types/minimatch":"^3.0.5","@types/node":"^16.11.9","@types/resolve":"^1.20.1","@typescript-eslint/eslint-plugin":"^5.4.0","bumpp":"^7.1.1","compare-versions":"^4.1.1","element-plus":"^1.1.0-beta.24","eslint":"^8.3.0","esno":"^0.12.1","jest":"^27.3.1","rollup":"^2.60.0","ts-jest":"^27.0.7","tsup":"^5.7.4","typescript":"^4.5.2","vite":"^2.6.14","vue":"3"},"engines":{"node":">=14"},"gitHead":"0f31f847490cc448251f00dd789d3f56ab7187d0","_id":"unplugin-vue-components@0.17.3","_nodeVersion":"14.18.1","_npmVersion":"6.14.15","dist":{"integrity":"sha512-p5Y6vNVCOVvP5yaZfrkebp6gt5DW8aFjIngOoGUzl4ifbxZnTmwzx1kZD3GMQcx1he5zG3tEKSjIEFtsfsf4NQ==","shasum":"4983dfdfb764ee9fd9e7c69a5baa8beb768d707e","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.17.3.tgz","fileCount":39,"unpackedSize":213422,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhq2m8CRA9TVsSAnZWagAAOjwP/RRr/TUxHVB44xJrmtCi\nmJSj3LEVEuUrziQ7clXrGm3Li85R1gCvzwLhAzz9e3rho0vYxxXCThW7KOBw\nq3CPqCoK04judcScYm/I5D0ngAsVRRcICbVKzED0/XS8x89VRQ79io+pDTFs\nE0Az+ooWOq5UEgAl0G1SwWq/H4ToobWDl2+gNfa/XHHZrkEuRF94LslJhzhd\nlDfzhDcy+JXpePcICgMq4eIeSsAj/vJ16PSkp2mwPfZgMIdNJS24atf+SW5g\nBVMk6QYvha5JcjZZkSBqCnKF8dcXeFP5W/QyrfvXslrEQY+ImeA6RlKUWeul\njrHz0/q3VRqt8q9oj9zqvMb5JsmhOFsNsHEyISm3yN6stCtZz66OrVlgFNnm\nPb0yHb0fwRf94Wan51AkY9pBxlV/GvKj7sMUPldVpjL5C3S0idflCZPHBTf1\noaRZU+At+k6fhxi9vDx21MpFEND0c2aoXYgIZBjtjz2t+v8yvb+coNx4VbvP\nTMY2kmbCkB8GrETB8UQe2klXbyjoDBLmDkOHGByk+GO8+exxwxmEhH7cN4pc\nOsaYU3+IpbgGq9U1MRTQngErigRrQiiDpIdo7406yL3EzdI4Eq2QHFSFeN0H\nDJIcJvF0kysxtzGMlSu5Dmc5NakLLK+OHgs+zmbXMziToHnwoAlx/2CR89lB\nGYzA\r\n=HXnp\r\n-----END PGP SIGNATURE-----\r\n","size":46161,"noattachment":false},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.17.3_1638623676216_0.5924665782369114"},"_hasShrinkwrap":false,"publish_time":1638623676419,"_cnpm_publish_time":1638623676419,"_cnpmcore_publish_time":"2021-12-16T20:19:16.159Z"},"0.17.2":{"name":"unplugin-vue-components","version":"0.17.2","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"tsup src/*.ts && esno scripts/postbuild.ts","dev":"tsup src/*.ts --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push","test":"jest","test:update":"jest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@babel/traverse":"^7.15.4","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@babel/traverse":{"optional":true}},"dependencies":{"@antfu/utils":"^0.3.0","@rollup/pluginutils":"^4.1.1","chokidar":"^3.5.2","debug":"^4.3.2","fast-glob":"^3.2.7","local-pkg":"^0.1.0","magic-string":"^0.25.7","minimatch":"^3.0.4","resolve":"^1.20.0","unplugin":"^0.2.13"},"devDependencies":{"@antfu/eslint-config":"^0.9.0","@babel/parser":"^7.15.8","@babel/traverse":"^7.15.4","@babel/types":"^7.15.6","@types/debug":"^4.1.7","@types/jest":"^27.0.2","@types/minimatch":"^3.0.5","@types/node":"^16.9.6","@types/resolve":"^1.20.1","@typescript-eslint/eslint-plugin":"^4.31.2","bumpp":"^7.1.1","compare-versions":"^3.6.0","element-plus":"^1.1.0-beta.24","eslint":"^7.32.0","esno":"^0.9.1","jest":"^27.2.1","rollup":"^2.57.0","ts-jest":"^27.0.5","tsup":"^5.1.0","typescript":"^4.4.3","vite":"^2.5.10"},"engines":{"node":">=14"},"gitHead":"64823c6660b7adab3f8925ed6838f6d882aa0ef9","_id":"unplugin-vue-components@0.17.2","_nodeVersion":"14.18.1","_npmVersion":"6.14.15","dist":{"shasum":"db7e669fac3cc36b87ba056f63e2eaa47a7f1b9b","size":45440,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.17.2.tgz","integrity":"sha512-e4ZdOpnzFMQJx3rDLotLyucTap0bUlMy+6BRYyoN6jE1ZyGAgR6jodmpHZAPR3xkC4pkqW5PLlyDfIH/+lzkng=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.17.2_1636160838776_0.43650826460132897"},"_hasShrinkwrap":false,"publish_time":1636160838964,"_cnpm_publish_time":1636160838964,"_cnpmcore_publish_time":"2021-12-16T20:19:16.397Z"},"0.17.1":{"name":"unplugin-vue-components","version":"0.17.1","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"tsup src/*.ts && esno scripts/postbuild.ts","dev":"tsup src/*.ts --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push","test":"jest","test:update":"jest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@babel/traverse":"^7.15.4","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@babel/traverse":{"optional":true}},"dependencies":{"@antfu/utils":"^0.3.0","@rollup/pluginutils":"^4.1.1","chokidar":"^3.5.2","debug":"^4.3.2","fast-glob":"^3.2.7","local-pkg":"^0.1.0","magic-string":"^0.25.7","minimatch":"^3.0.4","resolve":"^1.20.0","unplugin":"^0.2.13"},"devDependencies":{"@antfu/eslint-config":"^0.9.0","@babel/parser":"^7.15.8","@babel/traverse":"^7.15.4","@babel/types":"^7.15.6","@types/debug":"^4.1.7","@types/jest":"^27.0.2","@types/minimatch":"^3.0.5","@types/node":"^16.9.6","@types/resolve":"^1.20.1","@typescript-eslint/eslint-plugin":"^4.31.2","bumpp":"^7.1.1","compare-versions":"^3.6.0","element-plus":"^1.1.0-beta.24","eslint":"^7.32.0","esno":"^0.9.1","jest":"^27.2.1","rollup":"^2.57.0","ts-jest":"^27.0.5","tsup":"^5.1.0","typescript":"^4.4.3","vite":"^2.5.10"},"engines":{"node":">=14"},"gitHead":"d1aa643fb30a8673b72d1fb5c451ba691426e1bb","_id":"unplugin-vue-components@0.17.1","_nodeVersion":"14.18.1","_npmVersion":"6.14.15","dist":{"shasum":"01e54679ffb7cb9b5cee4c4338385622d071d03f","size":45457,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.17.1.tgz","integrity":"sha512-y/Gj5+y2PsMQp90JQ/ZxCF7AxfyWsDLiplQLRkzDgXoI5MLmoVZ/4Z0dNjXPcz5oF9uY7xU8F2BhXc3Jz9tJPQ=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.17.1_1636083077907_0.8287752927808754"},"_hasShrinkwrap":false,"publish_time":1636083078087,"_cnpm_publish_time":1636083078087,"_cnpmcore_publish_time":"2021-12-16T20:19:16.638Z"},"0.17.0":{"name":"unplugin-vue-components","version":"0.17.0","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"tsup src/*.ts && esno scripts/postbuild.ts","dev":"tsup src/*.ts --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push","test":"jest","test:update":"jest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@babel/traverse":"^7.15.4","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@babel/traverse":{"optional":true}},"dependencies":{"@antfu/utils":"^0.3.0","@rollup/pluginutils":"^4.1.1","chokidar":"^3.5.2","debug":"^4.3.2","fast-glob":"^3.2.7","local-pkg":"^0.1.0","magic-string":"^0.25.7","minimatch":"^3.0.4","resolve":"^1.20.0","unplugin":"^0.2.13"},"devDependencies":{"@antfu/eslint-config":"^0.9.0","@babel/parser":"^7.15.8","@babel/traverse":"^7.15.4","@babel/types":"^7.15.6","@types/debug":"^4.1.7","@types/jest":"^27.0.2","@types/minimatch":"^3.0.5","@types/node":"^16.9.6","@types/resolve":"^1.20.1","@typescript-eslint/eslint-plugin":"^4.31.2","bumpp":"^7.1.1","compare-versions":"^3.6.0","element-plus":"^1.1.0-beta.24","eslint":"^7.32.0","esno":"^0.9.1","jest":"^27.2.1","rollup":"^2.57.0","ts-jest":"^27.0.5","tsup":"^5.1.0","typescript":"^4.4.3","vite":"^2.5.10"},"engines":{"node":">=14"},"gitHead":"0069cf45e29bb1eec5cfa09895c588466eb79f1c","_id":"unplugin-vue-components@0.17.0","_nodeVersion":"14.18.1","_npmVersion":"6.14.15","dist":{"shasum":"fdfe4e8c84ed75e2c26f998919ed9c92db9ed6db","size":45294,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.17.0.tgz","integrity":"sha512-KMh+5z9L256l2z1zpoy/9xhLjrpBvYyaEVgckC0sF6mLspTAB5tPJ4aOhpI+zB8Tu8owLqiw4DoOoMHFgYbQNQ=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.17.0_1635537432196_0.7933692293722825"},"_hasShrinkwrap":false,"publish_time":1635537432335,"_cnpm_publish_time":1635537432335,"_cnpmcore_publish_time":"2021-12-16T20:19:16.947Z"},"0.16.0":{"name":"unplugin-vue-components","version":"0.16.0","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"tsup src/*.ts && esno scripts/postbuild.ts","dev":"tsup src/*.ts --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push","test":"jest","test:update":"jest --u"},"peerDependencies":{"vue":"2 || 3"},"dependencies":{"@antfu/utils":"^0.3.0","@rollup/pluginutils":"^4.1.1","chokidar":"^3.5.2","debug":"^4.3.2","fast-glob":"^3.2.7","local-pkg":"^0.1.0","magic-string":"^0.25.7","minimatch":"^3.0.4","resolve":"^1.20.0","unplugin":"^0.2.13"},"devDependencies":{"@antfu/eslint-config":"^0.9.0","@babel/parser":"^7.15.8","@babel/traverse":"^7.15.4","@babel/types":"^7.15.6","@types/debug":"^4.1.7","@types/jest":"^27.0.2","@types/minimatch":"^3.0.5","@types/node":"^16.9.6","@types/resolve":"^1.20.1","@typescript-eslint/eslint-plugin":"^4.31.2","bumpp":"^7.1.1","compare-versions":"^3.6.0","eslint":"^7.32.0","esno":"^0.9.1","jest":"^27.2.1","rollup":"^2.57.0","ts-jest":"^27.0.5","tsup":"^5.1.0","typescript":"^4.4.3","vite":"^2.5.10"},"engines":{"node":">=14"},"gitHead":"5f3dd468091d0873ad2bd8c16b1598f4d8167cd3","_id":"unplugin-vue-components@0.16.0","_nodeVersion":"14.18.0","_npmVersion":"6.14.15","dist":{"shasum":"15a5d5d03ad658ae0202523811ec76150776569d","size":499359,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.16.0.tgz","integrity":"sha512-BM/5p6/btLgDjUxf290cKbzbaGow95NFibhp+TSQhL0wyb1Q6sP0nmlqOvGnpLANFq0+urXxXDloMLlTJH6Fww=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.16.0_1634599464296_0.21510922656568132"},"_hasShrinkwrap":false,"publish_time":1634599464551,"_cnpm_publish_time":1634599464551,"_cnpmcore_publish_time":"2021-12-16T20:19:17.822Z"},"0.15.6":{"name":"unplugin-vue-components","version":"0.15.6","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"rimraf dist && tsup src/*.ts --format cjs,esm --dts --splitting && esno scripts/postbuild.ts","dev":"tsup src/*.ts --format cjs,esm --watch src","example:build":"npm -C examples/vue3 run build","example:dev":"npm -C examples/vue3 run dev","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push","test":"jest","test:update":"jest --u"},"dependencies":{"@antfu/utils":"^0.3.0","@rollup/pluginutils":"^4.1.1","chokidar":"^3.5.2","debug":"^4.3.2","fast-glob":"^3.2.7","local-pkg":"^0.1.0","magic-string":"^0.25.7","minimatch":"^3.0.4","resolve":"^1.20.0","unplugin":"^0.2.13"},"devDependencies":{"@antfu/eslint-config":"^0.9.0","@types/debug":"^4.1.7","@types/jest":"^27.0.2","@types/minimatch":"^3.0.5","@types/node":"^16.9.6","@types/resolve":"^1.20.1","@typescript-eslint/eslint-plugin":"^4.31.2","bumpp":"^7.1.1","compare-versions":"^3.6.0","eslint":"^7.32.0","esno":"^0.9.1","jest":"^27.2.1","rollup":"^2.57.0","ts-jest":"^27.0.5","tsup":"^5.1.0","typescript":"^4.4.3","vite":"^2.5.10"},"peerDependencies":{"vue":"2 || 3"},"engines":{"node":">=14"},"gitHead":"872019591a925dcb2af326a651005eb712cb9b5d","_id":"unplugin-vue-components@0.15.6","_nodeVersion":"14.17.6","_npmVersion":"6.14.15","dist":{"shasum":"cd4e06e507c9dd7b6469e345b6812b3843e86d63","size":30522,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.15.6.tgz","integrity":"sha512-Prl+qtWtDwnxSYJckGn+WvrXElhEnjN9bJyi9D7d0mJcsspuFBlxRQEzAUnDvlr0CvuIkBZBVdXLu1oDTESjhg=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.15.6_1632948261871_0.593171017574569"},"_hasShrinkwrap":false,"publish_time":1632948262003,"_cnpm_publish_time":1632948262003,"_cnpmcore_publish_time":"2021-12-16T20:19:18.114Z"},"0.15.5":{"name":"unplugin-vue-components","version":"0.15.5","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"rimraf dist && tsup src/*.ts --format cjs,esm --dts --splitting && esno scripts/postbuild.ts","dev":"tsup src/*.ts --format cjs,esm --watch src","example:build":"npm -C examples/vue3 run build","example:dev":"npm -C examples/vue3 run dev","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push","test":"jest","test:update":"jest --u"},"dependencies":{"@antfu/utils":"^0.3.0","@rollup/pluginutils":"^4.1.1","chokidar":"^3.5.2","debug":"^4.3.2","fast-glob":"^3.2.7","has-pkg":"^0.0.1","magic-string":"^0.25.7","minimatch":"^3.0.4","resolve":"^1.20.0","unplugin":"^0.2.13"},"devDependencies":{"@antfu/eslint-config":"^0.9.0","@types/debug":"^4.1.7","@types/jest":"^27.0.2","@types/minimatch":"^3.0.5","@types/node":"^16.9.6","@types/resolve":"^1.20.1","@typescript-eslint/eslint-plugin":"^4.31.2","bumpp":"^7.1.1","compare-versions":"^3.6.0","eslint":"^7.32.0","esno":"^0.9.1","jest":"^27.2.1","rollup":"^2.57.0","ts-jest":"^27.0.5","tsup":"^5.1.0","typescript":"^4.4.3","vite":"^2.5.10"},"peerDependencies":{"vue":"2 || 3"},"engines":{"node":">=14"},"gitHead":"4991c80a2caa16ccf16e5aaf692e477693dd3170","_id":"unplugin-vue-components@0.15.5","_nodeVersion":"14.17.6","_npmVersion":"6.14.15","dist":{"shasum":"116b36ae75bf3027b71d46ae7555c4db0e698014","size":30486,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.15.5.tgz","integrity":"sha512-a7VsAvpUsLEpVRbnTGZZI2LaHb8Z2Sl0AU42c2nINofPX/8yeRRsRqC4u1B/to++uftw+tm2P7ehjZBIxdL+WA=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.15.5_1632944771330_0.5243064441138816"},"_hasShrinkwrap":false,"publish_time":1632944771533,"_cnpm_publish_time":1632944771533,"_cnpmcore_publish_time":"2021-12-16T20:19:18.310Z"},"0.15.4":{"name":"unplugin-vue-components","version":"0.15.4","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"rimraf dist && tsup src/*.ts --format cjs,esm --dts --splitting && esno scripts/postbuild.ts","dev":"tsup src/*.ts --format cjs,esm --watch src","example:build":"npm -C examples/vue3 run build","example:dev":"npm -C examples/vue3 run dev","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push","test":"jest","test:update":"jest --u"},"dependencies":{"@antfu/utils":"^0.3.0","@rollup/pluginutils":"^4.1.1","chokidar":"^3.5.2","debug":"^4.3.2","fast-glob":"^3.2.7","has-pkg":"^0.0.1","magic-string":"^0.25.7","minimatch":"^3.0.4","resolve":"^1.20.0","unplugin":"^0.2.13"},"devDependencies":{"@antfu/eslint-config":"^0.9.0","@types/debug":"^4.1.7","@types/jest":"^27.0.2","@types/minimatch":"^3.0.5","@types/node":"^16.9.6","@types/resolve":"^1.20.1","@typescript-eslint/eslint-plugin":"^4.31.2","bumpp":"^7.1.1","compare-versions":"^3.6.0","eslint":"^7.32.0","esno":"^0.9.1","jest":"^27.2.1","rollup":"^2.57.0","ts-jest":"^27.0.5","tsup":"^5.1.0","typescript":"^4.4.3","vite":"^2.5.10"},"peerDependencies":{"vue":"2 || 3"},"engines":{"node":">=14"},"gitHead":"9da0093c33df5ff92cbd54e13948a991362ace5e","_id":"unplugin-vue-components@0.15.4","_nodeVersion":"14.17.6","_npmVersion":"6.14.15","dist":{"shasum":"f1a84f82f814b23a521ff2d6469cafb642f862f8","size":30494,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.15.4.tgz","integrity":"sha512-RQpNj5u4j7yiZpaUyzTyJl6ZTtwlThOnTmchV6Foml8BvRBv/Eogr8zFeQ89amEd9Wc9eiCA46d6v0u3uM/d/A=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.15.4_1632608776492_0.7572203798334911"},"_hasShrinkwrap":false,"publish_time":1632608776683,"_cnpm_publish_time":1632608776683,"_cnpmcore_publish_time":"2021-12-16T20:19:18.958Z"},"0.15.3":{"name":"unplugin-vue-components","version":"0.15.3","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"rimraf dist && tsup src/*.ts --format cjs,esm --dts --splitting && esno scripts/postbuild.ts","dev":"tsup src/*.ts --format cjs,esm --watch src","example:build":"npm -C examples/vue3 run build","example:dev":"npm -C examples/vue3 run dev","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push","test":"jest","test:update":"jest --u"},"dependencies":{"@rollup/pluginutils":"^4.1.1","chokidar":"^3.5.2","debug":"^4.3.2","fast-glob":"^3.2.7","has-pkg":"^0.0.1","magic-string":"^0.25.7","minimatch":"^3.0.4","resolve":"^1.20.0","unplugin":"^0.2.13"},"devDependencies":{"@antfu/eslint-config":"^0.9.0","@antfu/utils":"^0.3.0","@types/debug":"^4.1.7","@types/jest":"^27.0.2","@types/minimatch":"^3.0.5","@types/node":"^16.9.6","@types/resolve":"^1.20.1","@typescript-eslint/eslint-plugin":"^4.31.2","bumpp":"^7.1.1","compare-versions":"^3.6.0","eslint":"^7.32.0","esno":"^0.9.1","jest":"^27.2.1","rollup":"^2.57.0","ts-jest":"^27.0.5","tsup":"^5.1.0","typescript":"^4.4.3","vite":"^2.5.10"},"peerDependencies":{"vue":"2 || 3"},"engines":{"node":">=14"},"gitHead":"a5dc2f24aa3256b0f0f2ebac52c5684a981a01d5","_id":"unplugin-vue-components@0.15.3","_nodeVersion":"14.17.6","_npmVersion":"6.14.15","dist":{"shasum":"655a9d511d71b591a2ec2b3374e8ba3c330b9f30","size":35305,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.15.3.tgz","integrity":"sha512-y358MXjvfmAqo/n/BKwl2QP5cbo0Npj37FbWig+9BKREMMPvZRIBNK8z4E9+ewriDAXGHcKAbHmXCinZf30hBA=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.15.3_1632442721058_0.14376939520595156"},"_hasShrinkwrap":false,"publish_time":1632442721227,"_cnpm_publish_time":1632442721227,"_cnpmcore_publish_time":"2021-12-16T20:19:19.232Z"},"0.15.2":{"name":"unplugin-vue-components","version":"0.15.2","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"rimraf dist && tsup src/*.ts --format cjs,esm --dts && esno scripts/postbuild.ts","dev":"tsup src/*.ts --format cjs,esm --watch src","example:build":"npm -C examples/vue3 run build","example:dev":"npm -C examples/vue3 run dev","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push","test":"jest","test:update":"jest --u"},"dependencies":{"@rollup/pluginutils":"^4.1.1","chokidar":"^3.5.2","debug":"^4.3.2","fast-glob":"^3.2.7","has-pkg":"^0.0.1","magic-string":"^0.25.7","minimatch":"^3.0.4","resolve":"^1.20.0","unplugin":"^0.2.10"},"devDependencies":{"@antfu/eslint-config":"^0.9.0","@antfu/utils":"^0.3.0","@types/debug":"^4.1.7","@types/jest":"^27.0.1","@types/minimatch":"^3.0.5","@types/node":"^16.9.1","@types/resolve":"^1.20.1","@typescript-eslint/eslint-plugin":"^4.31.1","bumpp":"^7.1.1","compare-versions":"^3.6.0","eslint":"^7.32.0","esno":"^0.9.1","jest":"^27.2.0","rollup":"^2.56.3","ts-jest":"^27.0.5","tsup":"^4.14.0","typescript":"^4.4.3","vite":"^2.5.7"},"peerDependencies":{"vue":"2 || 3"},"engines":{"node":">=14"},"gitHead":"cc6c42a03a0d897e6e02179b50c103053df0a2e5","_id":"unplugin-vue-components@0.15.2","_nodeVersion":"14.17.6","_npmVersion":"6.14.15","dist":{"shasum":"47c484614cfc2af84e769cabec3856d20848cedd","size":34988,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.15.2.tgz","integrity":"sha512-g9IUvBzRTJw2TniXVVtzkxs+VNJ5buzzsG7vIQdwh28830AYo052l//hCTv/4tvT4wPGJiCCZQdJ8O5MREDbuQ=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.15.2_1631757770450_0.485753847966262"},"_hasShrinkwrap":false,"publish_time":1631757770679,"_cnpm_publish_time":1631757770679,"_cnpmcore_publish_time":"2021-12-16T20:19:19.504Z"},"0.15.1":{"name":"unplugin-vue-components","version":"0.15.1","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"rimraf dist && tsup src/*.ts --format cjs,esm --dts && esno scripts/postbuild.ts","dev":"tsup src/*.ts --format cjs,esm --watch src","example:build":"npm -C examples/vue3 run build","example:dev":"npm -C examples/vue3 run dev","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push","test":"jest","test:update":"jest --u"},"dependencies":{"@rollup/pluginutils":"^4.1.1","chokidar":"^3.5.2","debug":"^4.3.2","fast-glob":"^3.2.7","has-pkg":"^0.0.1","magic-string":"^0.25.7","minimatch":"^3.0.4","resolve":"^1.20.0","unplugin":"^0.2.7"},"devDependencies":{"@antfu/eslint-config":"^0.7.0","@antfu/utils":"^0.3.0","@types/debug":"^4.1.7","@types/jest":"^27.0.1","@types/minimatch":"^3.0.5","@types/node":"^16.7.13","@types/resolve":"^1.20.1","@typescript-eslint/eslint-plugin":"^4.31.0","bumpp":"^7.1.1","compare-versions":"^3.6.0","eslint":"^7.32.0","esno":"^0.9.1","jest":"^27.1.0","rollup":"^2.56.3","ts-jest":"^27.0.5","tsup":"^4.14.0","typescript":"^4.4.2","vite":"^2.5.4"},"peerDependencies":{"vue":"2 || 3"},"engines":{"node":">=14"},"gitHead":"aa48c05dc543bc3707b8b995315f59313df538d8","_id":"unplugin-vue-components@0.15.1","_nodeVersion":"14.17.6","_npmVersion":"6.14.15","dist":{"shasum":"60833df9f54e5eedde7d916c2ba66e9a263798a7","size":34699,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.15.1.tgz","integrity":"sha512-vAcMrylfiDPPc8rp2vmviSvyC13D5OAHFlfvcSSKUN2NgYcHZRnxAb4/msuJQyyWMXXXwptVm6I+WQ9ZhonnZw=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.15.1_1631586120460_0.008757786865487338"},"_hasShrinkwrap":false,"publish_time":1631586120612,"_cnpm_publish_time":1631586120612,"_cnpmcore_publish_time":"2021-12-16T20:19:19.816Z"},"0.15.0":{"name":"unplugin-vue-components","version":"0.15.0","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"rimraf dist && tsup src/*.ts --format cjs,esm --dts && esno scripts/postbuild.ts","dev":"tsup src/*.ts --format cjs,esm --watch src","example:build":"npm -C examples/vue3 run build","example:dev":"npm -C examples/vue3 run dev","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push","test":"jest","test:update":"jest --u"},"dependencies":{"@rollup/pluginutils":"^4.1.1","chokidar":"^3.5.2","debug":"^4.3.2","fast-glob":"^3.2.7","has-pkg":"^0.0.1","magic-string":"^0.25.7","minimatch":"^3.0.4","resolve":"^1.20.0","unplugin":"^0.2.7"},"devDependencies":{"@antfu/eslint-config":"^0.7.0","@antfu/utils":"^0.3.0","@types/debug":"^4.1.7","@types/jest":"^27.0.1","@types/minimatch":"^3.0.5","@types/node":"^16.7.13","@types/resolve":"^1.20.1","@typescript-eslint/eslint-plugin":"^4.31.0","bumpp":"^7.1.1","compare-versions":"^3.6.0","eslint":"^7.32.0","esno":"^0.9.1","jest":"^27.1.0","rollup":"^2.56.3","ts-jest":"^27.0.5","tsup":"^4.14.0","typescript":"^4.4.2","vite":"^2.5.4"},"peerDependencies":{"vue":"2 || 3"},"engines":{"node":">=14"},"gitHead":"138be3132b7c6c9560cf3f35ceb00d9f05934b60","_id":"unplugin-vue-components@0.15.0","_nodeVersion":"14.17.6","_npmVersion":"6.14.15","dist":{"shasum":"5f124d70f166f8ace05ad9ce9230a84e8b306ac5","size":34680,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.15.0.tgz","integrity":"sha512-qnK2OmhbE02ZlfvN6m8vYwvVGoWMf0m2d85wCbQKXJeDJ1XdKrnGs3Lyq4VrO7n8zpX34hOkZWHdXBOWkElEDw=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.15.0_1631048083146_0.6810365980326312"},"_hasShrinkwrap":false,"publish_time":1631048083327,"_cnpm_publish_time":1631048083327,"_cnpmcore_publish_time":"2021-12-16T20:19:20.044Z"},"0.14.13":{"name":"unplugin-vue-components","version":"0.14.13","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"rimraf dist && tsup src/*.ts --format cjs,esm --dts && esno scripts/postbuild.ts","dev":"tsup src/*.ts --format cjs,esm --watch src","example:build":"npm -C examples/vue3 run build","example:dev":"npm -C examples/vue3 run dev","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push","test":"jest","test:update":"jest --u"},"dependencies":{"@rollup/pluginutils":"^4.1.1","debug":"^4.3.2","fast-glob":"^3.2.7","has-pkg":"^0.0.1","magic-string":"^0.25.7","minimatch":"^3.0.4","resolve":"^1.20.0","unplugin":"^0.2.7"},"devDependencies":{"@antfu/eslint-config":"^0.7.0","@antfu/utils":"^0.3.0","@types/debug":"^4.1.7","@types/jest":"^27.0.1","@types/minimatch":"^3.0.5","@types/node":"^16.7.10","@types/resolve":"^1.20.1","@typescript-eslint/eslint-plugin":"^4.30.0","bumpp":"^7.1.1","compare-versions":"^3.6.0","eslint":"^7.32.0","esno":"^0.9.1","jest":"^27.1.0","rollup":"^2.56.3","ts-jest":"^27.0.5","tsup":"^4.14.0","typescript":"^4.4.2","vite":"^2.5.3"},"peerDependencies":{"vue":"2 || 3"},"engines":{"node":">=14"},"gitHead":"6cd50baff569ea5983b44a3646bc2f96e2f2e078","_id":"unplugin-vue-components@0.14.13","_nodeVersion":"14.17.6","_npmVersion":"6.14.15","dist":{"shasum":"b8c7abe76d0f8eb194043aac7b9045eeef173c7e","size":34527,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.14.13.tgz","integrity":"sha512-wfqCSIvlbgFsKQ5+GVwXeuBBdKyn63+TQtjOoitm1sEb/3j2IU/h+T7vKjbHFHgGGGlq6LPW9k0P03uxfXwVnw=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.14.13_1631006175636_0.7417461316153615"},"_hasShrinkwrap":false,"publish_time":1631006175803,"_cnpm_publish_time":1631006175803,"_cnpmcore_publish_time":"2021-12-16T20:19:20.301Z"},"0.14.12":{"name":"unplugin-vue-components","version":"0.14.12","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"rimraf dist && tsup src/*.ts --format cjs,esm --dts && esno scripts/postbuild.ts","dev":"tsup src/*.ts --format cjs,esm --watch src","example:build":"npm -C examples/vue3 run build","example:dev":"npm -C examples/vue3 run dev","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push","test":"jest","test:update":"jest --u"},"dependencies":{"@rollup/pluginutils":"^4.1.1","debug":"^4.3.2","fast-glob":"^3.2.7","has-pkg":"^0.0.1","magic-string":"^0.25.7","minimatch":"^3.0.4","resolve":"^1.20.0","unplugin":"^0.2.7"},"peerDependencies":{"vue":"2 || 3"},"devDependencies":{"@antfu/eslint-config":"^0.7.0","@antfu/utils":"^0.3.0","@types/debug":"^4.1.7","@types/jest":"^27.0.1","@types/minimatch":"^3.0.5","@types/node":"^16.7.10","@types/resolve":"^1.20.1","@typescript-eslint/eslint-plugin":"^4.30.0","compare-versions":"^3.6.0","eslint":"^7.32.0","esno":"^0.9.1","jest":"^27.1.0","rollup":"^2.56.3","ts-jest":"^27.0.5","tsup":"^4.14.0","typescript":"^4.4.2","vite":"^2.5.3"},"gitHead":"30dc007223fcb5c27e14d81b1a353fe7c4a9c5ab","_id":"unplugin-vue-components@0.14.12","_nodeVersion":"14.17.6","_npmVersion":"6.14.15","dist":{"shasum":"f8935c591830f7f821c35a3335577272a8df3829","size":34496,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.14.12.tgz","integrity":"sha512-LpzQA0ZJwBTCszfr+A2PUYaHfYjRR+m2F2wdoLe405ucGlx0wGR9H2OTOmhLKy0UhK15bkCDfDrR97fmfQPWsw=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.14.12_1630866256654_0.2774297440638205"},"_hasShrinkwrap":false,"publish_time":1630866256816,"_cnpm_publish_time":1630866256816,"_cnpmcore_publish_time":"2021-12-16T20:19:20.548Z"},"0.14.11":{"name":"unplugin-vue-components","version":"0.14.11","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"rimraf dist && tsup src/*.ts --format cjs,esm --dts && esno scripts/postbuild.ts","dev":"tsup src/*.ts --format cjs,esm --watch src","example:build":"npm -C examples/vue3 run build","example:dev":"npm -C examples/vue3 run dev","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push","test":"jest","test:update":"jest --u"},"dependencies":{"@rollup/pluginutils":"^4.1.1","debug":"^4.3.2","fast-glob":"^3.2.7","has-pkg":"^0.0.1","magic-string":"^0.25.7","minimatch":"^3.0.4","resolve":"^1.20.0","unplugin":"^0.2.7"},"peerDependencies":{"vue":"2 || 3"},"devDependencies":{"@antfu/eslint-config":"^0.7.0","@antfu/utils":"^0.3.0","@types/debug":"^4.1.7","@types/jest":"^27.0.1","@types/minimatch":"^3.0.5","@types/node":"^16.7.10","@types/resolve":"^1.20.1","@typescript-eslint/eslint-plugin":"^4.30.0","compare-versions":"^3.6.0","eslint":"^7.32.0","esno":"^0.9.1","jest":"^27.1.0","rollup":"^2.56.3","ts-jest":"^27.0.5","tsup":"^4.14.0","typescript":"^4.4.2","vite":"^2.5.3"},"gitHead":"e7e1863969d851487375f7eb9efecf97ba8bba5b","_id":"unplugin-vue-components@0.14.11","_nodeVersion":"14.17.6","_npmVersion":"6.14.15","dist":{"shasum":"aef2c0480316e864450cb3e0b7f63e8f10695027","size":34461,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.14.11.tgz","integrity":"sha512-ulgt/waXWynt1QOik19YPO76nicB3u8RFWjiU3y4Gv9tx32bBYc9bsrkm+SfOBDxQPtdYc/yo5KQ3gSVKYdAow=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.14.11_1630618784586_0.713846623925005"},"_hasShrinkwrap":false,"publish_time":1630618784731,"_cnpm_publish_time":1630618784731,"_cnpmcore_publish_time":"2021-12-16T20:19:20.790Z"},"0.14.10":{"name":"unplugin-vue-components","version":"0.14.10","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"rimraf dist && tsup src/*.ts --format cjs,esm --dts && esno scripts/postbuild.ts","dev":"tsup src/*.ts --format cjs,esm --watch src","example:build":"npm -C examples/vue3 run build","example:dev":"npm -C examples/vue3 run dev","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push","test":"jest","test:update":"jest --u"},"dependencies":{"@rollup/pluginutils":"^4.1.1","debug":"^4.3.2","fast-glob":"^3.2.7","has-pkg":"^0.0.1","magic-string":"^0.25.7","minimatch":"^3.0.4","unplugin":"^0.2.7"},"peerDependencies":{"vue":"2 || 3"},"devDependencies":{"@antfu/eslint-config":"^0.7.0","@antfu/utils":"^0.3.0","@types/debug":"^4.1.7","@types/jest":"^27.0.1","@types/minimatch":"^3.0.5","@types/node":"^16.7.10","@typescript-eslint/eslint-plugin":"^4.30.0","compare-versions":"^3.6.0","eslint":"^7.32.0","esno":"^0.9.1","jest":"^27.1.0","rollup":"^2.56.3","ts-jest":"^27.0.5","tsup":"^4.14.0","typescript":"^4.4.2","vite":"^2.5.3"},"gitHead":"e936eae45709958be6275f5a35e3406d994f201f","_id":"unplugin-vue-components@0.14.10","_nodeVersion":"14.17.6","_npmVersion":"6.14.15","dist":{"shasum":"b407ae2fb64b2394a3a9ef70c4c62cfc95811bc4","size":34209,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.14.10.tgz","integrity":"sha512-1JsEw4o+ln2aSmFAhUYtF/eeVVyawYPQWsbU9kG9dK/mPFvmZH/ODcdvgRKkRumw8etJLSqGSrLS+Gu+Da5hCg=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.14.10_1630578447942_0.8921164750888142"},"_hasShrinkwrap":false,"publish_time":1630578448082,"_cnpm_publish_time":1630578448082,"_cnpmcore_publish_time":"2021-12-16T20:19:21.027Z"},"0.14.9":{"name":"unplugin-vue-components","version":"0.14.9","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"rimraf dist && tsup src/*.ts --format cjs,esm --dts && esno scripts/postbuild.ts","dev":"tsup src/*.ts --format cjs,esm --watch src","example:build":"npm -C examples/vue3 run build","example:dev":"npm -C examples/vue3 run dev","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push","test":"jest","test:update":"jest --u"},"dependencies":{"@rollup/pluginutils":"^4.1.1","debug":"^4.3.2","fast-glob":"^3.2.7","has-pkg":"^0.0.1","magic-string":"^0.25.7","minimatch":"^3.0.4","unplugin":"^0.2.7"},"peerDependencies":{"vue":"2 || 3"},"devDependencies":{"@antfu/eslint-config":"^0.7.0","@antfu/utils":"^0.3.0","@types/debug":"^4.1.7","@types/jest":"^27.0.1","@types/minimatch":"^3.0.5","@types/node":"^16.7.10","@typescript-eslint/eslint-plugin":"^4.30.0","compare-versions":"^3.6.0","eslint":"^7.32.0","esno":"^0.9.1","jest":"^27.1.0","rollup":"^2.56.3","ts-jest":"^27.0.5","tsup":"^4.14.0","typescript":"^4.4.2","vite":"^2.5.3"},"gitHead":"fe50fc52fff7cd2a93dda9b0ac2c47984947aae5","_id":"unplugin-vue-components@0.14.9","_nodeVersion":"14.17.6","_npmVersion":"6.14.15","dist":{"shasum":"76de29969241a57d2b4661d8d02acce615fd0542","size":34215,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.14.9.tgz","integrity":"sha512-pjhZqEmfA/77cRA1poDFkHB1TdgwspJDAcAaW1ekSvF2jV8XumpnLqxlx5ihHfUvETHjZogVV7AZzHiQg04Zwg=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.14.9_1630546570710_0.04383141545482916"},"_hasShrinkwrap":false,"publish_time":1630546570983,"_cnpm_publish_time":1630546570983,"_cnpmcore_publish_time":"2021-12-16T20:19:21.303Z"},"0.14.8":{"name":"unplugin-vue-components","version":"0.14.8","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"rimraf dist && tsup src/*.ts --format cjs,esm --dts && esno scripts/postbuild.ts","dev":"tsup src/*.ts --format cjs,esm --watch src","example:build":"npm -C examples/vue3 run build","example:dev":"npm -C examples/vue3 run dev","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push","test":"jest","test:update":"jest --u"},"dependencies":{"@rollup/pluginutils":"^4.1.1","debug":"^4.3.2","fast-glob":"^3.2.7","has-pkg":"^0.0.1","magic-string":"^0.25.7","minimatch":"^3.0.4","unplugin":"^0.2.7"},"peerDependencies":{"vue":"2 || 3"},"devDependencies":{"@antfu/eslint-config":"^0.7.0","@antfu/utils":"^0.3.0","@types/debug":"^4.1.7","@types/jest":"^27.0.1","@types/minimatch":"^3.0.5","@types/node":"^16.7.10","@typescript-eslint/eslint-plugin":"^4.30.0","compare-versions":"^3.6.0","eslint":"^7.32.0","esno":"^0.9.1","jest":"^27.1.0","rollup":"^2.56.3","ts-jest":"^27.0.5","tsup":"^4.14.0","typescript":"^4.4.2","vite":"^2.5.3"},"gitHead":"94562d635fa487b69160eeebea6aecebf5c9f1d9","_id":"unplugin-vue-components@0.14.8","_nodeVersion":"14.17.5","_npmVersion":"6.14.14","dist":{"shasum":"8382fd79f600ded4554cb6d32576756957104327","size":34119,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.14.8.tgz","integrity":"sha512-RmG9s2A2QdHpQNz8PpKjK0j1YqjuwZ4Cm4oHbRaZNoHF1DUL8l/9B3QfvXQOrbUr20C7UslhzWd98FYqEAz+dQ=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.14.8_1630504681197_0.1778073352540872"},"_hasShrinkwrap":false,"publish_time":1630504681380,"_cnpm_publish_time":1630504681380,"_cnpmcore_publish_time":"2021-12-16T20:19:21.732Z"},"0.14.7":{"name":"unplugin-vue-components","version":"0.14.7","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"rimraf dist && tsup src/*.ts --format cjs,esm --dts && esno scripts/postbuild.ts","dev":"tsup src/*.ts --format cjs,esm --watch src","example:build":"npm -C examples/vue3 run build","example:dev":"npm -C examples/vue3 run dev","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push","test":"jest","test:update":"jest --u"},"dependencies":{"@rollup/pluginutils":"^4.1.1","debug":"^4.3.2","fast-glob":"^3.2.7","has-pkg":"^0.0.1","magic-string":"^0.25.7","minimatch":"^3.0.4","unplugin":"^0.2.4"},"peerDependencies":{"vue":"2 || 3"},"devDependencies":{"@antfu/eslint-config":"^0.7.0","@antfu/utils":"^0.3.0","@types/debug":"^4.1.7","@types/jest":"^27.0.1","@types/minimatch":"^3.0.5","@types/node":"^16.7.6","@typescript-eslint/eslint-plugin":"^4.29.3","compare-versions":"^3.6.0","eslint":"^7.32.0","esno":"^0.9.1","jest":"^27.1.0","rollup":"^2.56.3","ts-jest":"^27.0.5","tsup":"^4.14.0","typescript":"^4.4.2","vite":"^2.5.1"},"gitHead":"ce4709d11309958ec53ff58a7f46739919dff75d","_id":"unplugin-vue-components@0.14.7","_nodeVersion":"14.17.5","_npmVersion":"6.14.14","dist":{"shasum":"83414e2b63f97c662c413bbd898053437b6e81f4","size":32899,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.14.7.tgz","integrity":"sha512-8akFOEbWK5mtxf89+kHwLSeSKnPwb/adaBsmPMd+WZGwwNF8dvtlA2ZMLCGemPZAayUdbLpTeupQrKxgPs6EaA=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.14.7_1630494724686_0.5414007809910646"},"_hasShrinkwrap":false,"publish_time":1630494724840,"_cnpm_publish_time":1630494724840,"_cnpmcore_publish_time":"2021-12-16T20:19:21.984Z"},"0.14.6":{"name":"unplugin-vue-components","version":"0.14.6","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"rimraf dist && tsup src/*.ts --format cjs,esm --dts && esno scripts/postbuild.ts","dev":"tsup src/*.ts --format cjs,esm --watch src","example:build":"npm -C examples/vue3 run build","example:dev":"npm -C examples/vue3 run dev","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push","test":"jest","test:update":"jest --u"},"dependencies":{"@rollup/pluginutils":"^4.1.1","debug":"^4.3.2","fast-glob":"^3.2.7","has-pkg":"^0.0.1","magic-string":"^0.25.7","minimatch":"^3.0.4","unplugin":"^0.2.4"},"peerDependencies":{"vue":"2 || 3"},"devDependencies":{"@antfu/eslint-config":"^0.7.0","@antfu/utils":"^0.3.0","@types/debug":"^4.1.7","@types/jest":"^27.0.1","@types/minimatch":"^3.0.5","@types/node":"^16.7.6","@typescript-eslint/eslint-plugin":"^4.29.3","compare-versions":"^3.6.0","eslint":"^7.32.0","esno":"^0.9.1","jest":"^27.1.0","rollup":"^2.56.3","ts-jest":"^27.0.5","tsup":"^4.14.0","typescript":"^4.4.2","vite":"^2.5.1"},"gitHead":"1c9a2551030294a1723ce3034db5f0ddb91b7555","_id":"unplugin-vue-components@0.14.6","_nodeVersion":"14.17.5","_npmVersion":"6.14.14","dist":{"shasum":"154ce2cb6400c081435316ee7ba91f72225ddd7a","size":32834,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.14.6.tgz","integrity":"sha512-zNNRFX/HM6vDj0rE/e1Ezc5Mjf3b76AUMbeHo742w3VASiODXqqN3WkRJnA2jSZQi5VrGqBv9t6aZSS8/A36Og=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.14.6_1630396644935_0.18761396949789422"},"_hasShrinkwrap":false,"publish_time":1630396645122,"_cnpm_publish_time":1630396645122,"_cnpmcore_publish_time":"2021-12-16T20:19:22.205Z"},"0.14.5":{"name":"unplugin-vue-components","version":"0.14.5","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"rimraf dist && tsup src/*.ts --format cjs,esm --dts && esno scripts/postbuild.ts","dev":"tsup src/*.ts --format cjs,esm --watch src","example:build":"npm -C examples/vue3 run build","example:dev":"npm -C examples/vue3 run dev","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push","test":"jest","test:update":"jest --u"},"dependencies":{"@rollup/pluginutils":"^4.1.1","debug":"^4.3.2","fast-glob":"^3.2.7","has-pkg":"^0.0.1","magic-string":"^0.25.7","minimatch":"^3.0.4","unplugin":"^0.2.4"},"peerDependencies":{"vue":"2 || 3"},"devDependencies":{"@antfu/eslint-config":"^0.7.0","@antfu/utils":"^0.3.0","@types/debug":"^4.1.7","@types/jest":"^27.0.1","@types/minimatch":"^3.0.5","@types/node":"^16.7.6","@typescript-eslint/eslint-plugin":"^4.29.3","compare-versions":"^3.6.0","eslint":"^7.32.0","esno":"^0.9.1","jest":"^27.1.0","rollup":"^2.56.3","ts-jest":"^27.0.5","tsup":"^4.14.0","typescript":"^4.4.2","vite":"^2.5.1"},"gitHead":"bb9a62ab8c4b88a87e4cdb88e14d7efcf9a06cb7","_id":"unplugin-vue-components@0.14.5","_nodeVersion":"14.17.5","_npmVersion":"6.14.14","dist":{"shasum":"abbc8bf3671692524cc898c2efaee73fa8d099fd","size":32621,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.14.5.tgz","integrity":"sha512-E4iU7j/PjKer36MLNIQRKNa56hshNNwPxYXjR6elsXjnjDTlLk8hm5+mEF8NtlTlwMjqkRqJdE3eAjyOk072QA=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.14.5_1630336356702_0.8893011855924737"},"_hasShrinkwrap":false,"publish_time":1630336356849,"_cnpm_publish_time":1630336356849,"_cnpmcore_publish_time":"2021-12-16T20:19:22.431Z"},"0.14.4":{"name":"unplugin-vue-components","version":"0.14.4","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"rimraf dist && tsup src/*.ts --format cjs,esm --dts && esno scripts/postbuild.ts","dev":"tsup src/*.ts --format cjs,esm --watch src","example:build":"npm -C examples/vue3 run build","example:dev":"npm -C examples/vue3 run dev","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push","test":"jest","test:update":"jest --u"},"dependencies":{"@rollup/pluginutils":"^4.1.1","debug":"^4.3.2","fast-glob":"^3.2.7","has-pkg":"^0.0.1","magic-string":"^0.25.7","minimatch":"^3.0.4","unplugin":"^0.2.3"},"peerDependencies":{"vue":"2 || 3"},"devDependencies":{"@antfu/eslint-config":"^0.7.0","@antfu/utils":"^0.2.4","@types/debug":"^4.1.7","@types/jest":"^27.0.1","@types/minimatch":"^3.0.5","@types/node":"^16.6.1","@typescript-eslint/eslint-plugin":"^4.29.1","compare-versions":"^3.6.0","eslint":"^7.32.0","esno":"^0.9.1","jest":"^27.0.6","rollup":"^2.56.2","ts-jest":"^27.0.4","tsup":"^4.13.1","typescript":"^4.3.5","vite":"^2.4.4"},"gitHead":"a4959597ec5d271ca99a958c19e4bb79bd02d8a8","_id":"unplugin-vue-components@0.14.4","_nodeVersion":"14.17.5","_npmVersion":"6.14.14","dist":{"shasum":"b64894312d07620d990fde8fd3f8c60cc478c25e","size":32119,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.14.4.tgz","integrity":"sha512-USHhygphLYEa6t3PmQCaCc9pgjRnymARtLh2AcqLqRd81IZFltCn7F7EJwOXN4BOTk8LLPiEDpsDumZiUXAD7w=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.14.4_1630321840189_0.18577917220482587"},"_hasShrinkwrap":false,"publish_time":1630321840373,"_cnpm_publish_time":1630321840373,"_cnpmcore_publish_time":"2021-12-16T20:19:22.645Z"},"0.14.3":{"name":"unplugin-vue-components","version":"0.14.3","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"rimraf dist && tsup src/*.ts --format cjs,esm --dts && esno scripts/postbuild.ts","dev":"tsup src/*.ts --format cjs,esm --watch src","example:build":"npm -C examples/vue3 run build","example:dev":"npm -C examples/vue3 run dev","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push","test":"jest","test:update":"jest --u"},"dependencies":{"@rollup/pluginutils":"^4.1.1","debug":"^4.3.2","fast-glob":"^3.2.7","has-pkg":"^0.0.1","magic-string":"^0.25.7","minimatch":"^3.0.4","unplugin":"^0.2.3"},"peerDependencies":{"vue":"2 || 3"},"devDependencies":{"@antfu/eslint-config":"^0.7.0","@antfu/utils":"^0.2.4","@types/debug":"^4.1.7","@types/jest":"^27.0.1","@types/minimatch":"^3.0.5","@types/node":"^16.6.1","@typescript-eslint/eslint-plugin":"^4.29.1","compare-versions":"^3.6.0","eslint":"^7.32.0","esno":"^0.9.1","jest":"^27.0.6","rollup":"^2.56.2","ts-jest":"^27.0.4","tsup":"^4.13.1","typescript":"^4.3.5","vite":"^2.4.4"},"gitHead":"958514a4de52c0a8038f054ef7d6d1fabe50613c","_id":"unplugin-vue-components@0.14.3","_nodeVersion":"14.17.5","_npmVersion":"6.14.14","dist":{"shasum":"382104ae3310eb84f69239b14322aa3aae1418ab","size":32119,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.14.3.tgz","integrity":"sha512-XgBeybz+YvGjuoknAZpTXnk4umrUl2zY1Ym4e7mfrieR+X7Sfi13k6dKRyaWM10jV3Ut1OomoFvdCBIT8ZpsLw=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.14.3_1630315896288_0.10294760404814274"},"_hasShrinkwrap":false,"publish_time":1630315896425,"_cnpm_publish_time":1630315896425,"_cnpmcore_publish_time":"2021-12-16T20:19:22.831Z"},"0.14.2":{"name":"unplugin-vue-components","version":"0.14.2","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"rimraf dist && tsup src/*.ts --format cjs,esm --dts && esno scripts/postbuild.ts","dev":"tsup src/*.ts --format cjs,esm --watch src","example:build":"npm -C examples/vue3 run build","example:dev":"npm -C examples/vue3 run dev","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push","test":"jest","test:update":"jest --u"},"dependencies":{"@rollup/pluginutils":"^4.1.1","debug":"^4.3.2","fast-glob":"^3.2.7","has-pkg":"^0.0.1","magic-string":"^0.25.7","minimatch":"^3.0.4","unplugin":"^0.2.3"},"peerDependencies":{"vue":"2 || 3"},"devDependencies":{"@antfu/eslint-config":"^0.7.0","@antfu/utils":"^0.2.4","@types/debug":"^4.1.7","@types/jest":"^27.0.1","@types/minimatch":"^3.0.5","@types/node":"^16.6.1","@typescript-eslint/eslint-plugin":"^4.29.1","compare-versions":"^3.6.0","eslint":"^7.32.0","esno":"^0.9.1","jest":"^27.0.6","rollup":"^2.56.2","ts-jest":"^27.0.4","tsup":"^4.13.1","typescript":"^4.3.5","vite":"^2.4.4"},"gitHead":"53a52729d2fea42ffa13a27857a2f0594f73c578","_id":"unplugin-vue-components@0.14.2","_nodeVersion":"14.17.5","_npmVersion":"6.14.14","dist":{"shasum":"4bf4015da9a99ac3c036be5d3cde8fc33f0ef488","size":32150,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.14.2.tgz","integrity":"sha512-hQ2LeTIrGOMlBL0Vhy1vHA95ill5RcoUsgbf7jJo6+GSkTZn0WrKy6GCgChd4Xz+7yEsk0SGzjUPCopawnyviA=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.14.2_1630313469790_0.9682437450351942"},"_hasShrinkwrap":false,"publish_time":1630313469955,"_cnpm_publish_time":1630313469955,"_cnpmcore_publish_time":"2021-12-16T20:19:23.072Z"},"0.14.1":{"name":"unplugin-vue-components","version":"0.14.1","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"rimraf dist && tsup src/*.ts --format cjs,esm --dts && esno scripts/postbuild.ts","dev":"tsup src/*.ts --format cjs,esm --watch src","example:build":"npm -C examples/vue3 run build","example:dev":"npm -C examples/vue3 run dev","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push","test":"jest","test:update":"jest --u"},"dependencies":{"@rollup/pluginutils":"^4.1.1","debug":"^4.3.2","fast-glob":"^3.2.7","has-pkg":"^0.0.1","magic-string":"^0.25.7","minimatch":"^3.0.4","unplugin":"^0.2.3"},"devDependencies":{"@antfu/eslint-config":"^0.7.0","@antfu/utils":"^0.2.4","@types/debug":"^4.1.7","@types/jest":"^27.0.1","@types/minimatch":"^3.0.5","@types/node":"^16.6.1","@typescript-eslint/eslint-plugin":"^4.29.1","compare-versions":"^3.6.0","eslint":"^7.32.0","esno":"^0.9.1","jest":"^27.0.6","rollup":"^2.56.2","ts-jest":"^27.0.4","tsup":"^4.13.1","typescript":"^4.3.5","vite":"^2.4.4"},"gitHead":"a78154b54b98bdd52ab8d59c053521e34ee6462b","_id":"unplugin-vue-components@0.14.1","_nodeVersion":"14.17.5","_npmVersion":"6.14.14","dist":{"shasum":"cd3ae898a4247f3d4261fde733e0780846cdbb57","size":176277,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.14.1.tgz","integrity":"sha512-MG6ecu0rQDZBgp0OIB5HLvFS9EQ26gymSEJM/uV+pXCvTZJlJPlHZjozHwO8n2xRWLr//kIfIORYW5oOHKk2tg=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.14.1_1630312336504_0.04113613065258792"},"_hasShrinkwrap":false,"publish_time":1630312336731,"_cnpm_publish_time":1630312336731,"_cnpmcore_publish_time":"2021-12-16T20:19:23.665Z"},"0.14.0-beta.1":{"name":"unplugin-vue-components","version":"0.14.0-beta.1","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"rimraf dist && tsup 'src/*.ts' --format cjs,esm --dts && esno scripts/postbuild.ts","dev":"tsup 'src/*.ts' --format cjs,esm --watch src","example:build":"npm -C examples/vue3 run build","example:dev":"npm -C examples/vue3 run dev","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push","test":"jest","test:update":"jest --u"},"dependencies":{"@rollup/pluginutils":"^4.1.1","debug":"^4.3.2","fast-glob":"^3.2.7","has-pkg":"^0.0.1","magic-string":"^0.25.7","minimatch":"^3.0.4","unplugin":"^0.2.3"},"devDependencies":{"@antfu/eslint-config":"^0.7.0","@antfu/utils":"^0.2.4","@types/debug":"^4.1.7","@types/jest":"^27.0.1","@types/minimatch":"^3.0.5","@types/node":"^16.6.1","@typescript-eslint/eslint-plugin":"^4.29.1","eslint":"^7.32.0","jest":"^27.0.6","rollup":"^2.56.2","ts-jest":"^27.0.4","tsup":"^4.13.1","typescript":"^4.3.5","vite":"^2.4.4"},"gitHead":"bbbd6edabb21ec4bc9bcb7a564af3d37b9c0b856","_id":"unplugin-vue-components@0.14.0-beta.1","_nodeVersion":"16.6.2","_npmVersion":"7.20.3","dist":{"shasum":"94e00258f1fffdddc001bb17b9b4fd6be39fd07c","size":171447,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.14.0-beta.1.tgz","integrity":"sha512-5K2f5RLTBe/3pu1jrQNeKMJPEjnGLcb6JWF7epoac3q8owQrCfgRFyVmeKLZut15Br1pVIAFQhFLKVImCGr13g=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.14.0-beta.1_1630250674846_0.15305057788482945"},"_hasShrinkwrap":false,"publish_time":1630250675062,"_cnpm_publish_time":1630250675062,"_cnpmcore_publish_time":"2021-12-16T20:19:24.219Z"},"0.0.0":{"name":"unplugin-vue-components","version":"0.0.0","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"rimraf dist && tsup 'src/*.ts' --format cjs,esm --dts && esno scripts/postbuild.ts","dev":"tsup 'src/*.ts' --format cjs,esm --watch src","example:build":"npm -C examples/vue3 run build","example:dev":"npm -C examples/vue3 run dev","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push","test":"jest","test:update":"jest --u"},"dependencies":{"debug":"^4.3.2","fast-glob":"^3.2.7","has-pkg":"^0.0.1","magic-string":"^0.25.7","minimatch":"^3.0.4","unplugin":"^0.2.3"},"devDependencies":{"@antfu/eslint-config":"^0.7.0","@antfu/utils":"^0.2.4","@types/debug":"^4.1.7","@types/jest":"^27.0.1","@types/minimatch":"^3.0.5","@types/node":"^16.6.1","@typescript-eslint/eslint-plugin":"^4.29.1","eslint":"^7.32.0","jest":"^27.0.6","rollup":"^2.56.2","standard-version":"^9.3.1","ts-jest":"^27.0.4","tsup":"^4.13.1","typescript":"^4.3.5","vite":"^2.4.4"},"gitHead":"5cc5c4dfef347bc9c37afad5c7cbcf1bb0795fa5","_id":"unplugin-vue-components@0.0.0","_nodeVersion":"16.6.2","_npmVersion":"7.20.3","dist":{"shasum":"03fe377489ec661981682f8569ae5144992a3b65","size":27951,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.0.0.tgz","integrity":"sha512-74pcnQPsjGyP1mxINTv/tDSG9c/qLKv428quf7/xLezlPzgEtrCvxI/PJ4HLzZLS4sNhwgTmWjR6MekMOZlk6A=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.0.0_1630217086723_0.7561319043139143"},"_hasShrinkwrap":false,"publish_time":1630217086847,"_cnpm_publish_time":1630217086847,"_cnpmcore_publish_time":"2021-12-16T20:19:24.488Z"},"0.17.10":{"name":"unplugin-vue-components","version":"0.17.10","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"tsup src/*.ts && esno scripts/postbuild.ts","dev":"tsup src/*.ts --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@babel/traverse":"^7.15.4","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@babel/traverse":{"optional":true}},"dependencies":{"@antfu/utils":"^0.3.0","@rollup/pluginutils":"^4.1.1","chokidar":"^3.5.2","debug":"^4.3.2","fast-glob":"^3.2.7","local-pkg":"^0.4.0","magic-string":"^0.25.7","minimatch":"^3.0.4","resolve":"^1.20.0","unplugin":"^0.2.21"},"devDependencies":{"@antfu/eslint-config":"^0.10.0","@babel/parser":"^7.16.4","@babel/traverse":"^7.16.3","@babel/types":"^7.16.0","@types/debug":"^4.1.7","@types/minimatch":"^3.0.5","@types/node":"^16.11.9","@types/resolve":"^1.20.1","@typescript-eslint/eslint-plugin":"^5.4.0","bumpp":"^7.1.1","compare-versions":"^4.1.1","element-plus":"^1.1.0-beta.24","eslint":"^8.3.0","esno":"^0.12.1","rollup":"^2.60.0","tsup":"^5.7.4","typescript":"^4.5.2","vite":"^2.6.14","vitest":"^0.0.50","vue":"3"},"engines":{"node":">=14"},"gitHead":"f69ccec0f6870a0d551f8f40171a56254487b2cb","_id":"unplugin-vue-components@0.17.10","_nodeVersion":"14.18.2","_npmVersion":"6.14.15","dist":{"integrity":"sha512-7FXgLcDl+ZOFqezlSVPs+t4vP7hV3FhR+nOJs6IpkX7zBWHKNy1YeHSBn+By1p8vBbLLDRYDxL11KQqjrwPK3Q==","shasum":"232f0d9bbf3e6bd2747c1b44e3013cd4876afac2","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.17.10.tgz","fileCount":39,"unpackedSize":217889,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhxVZNCRA9TVsSAnZWagAADHcP/0dFqK14r6GjdWLsqg5H\nHnsy4CC5m+5QBMys33ctqJ5DImpgj9Mub2mUeN3nzr2E7bwopdism4VPD8gE\nIJ7luUa4Fo8jiz/tLeRNuSzvrPMnFYEPeO/QDh0EYiBia+tTlNQNR3anbSzw\n/v0x0qH1l5+aA7hsA8lOhZCorJIISZ0Vv4+pTH5Udvhh9Etsedoy/nXxPqTu\n6U6kas88hajUiOWGWEj+0bzZnqqi7fkKEm8+c8c4VhaUYYYKsawVw8mfv0t7\nqIoaM9CB7jrk976KW2lXC/FSGlDWx5JkfdoZGT/PTTo1M4f7/SARdNUCYfsY\nh8w9W3bxaq/oe496vGfY1fOqEOUHPxoUrwTJVcn3VFQxouzIpyY3mUW5b9bI\nHA3i2iJD9iuFYmnuEKmh1MxtWs2D9ryvDPvTio+JGrbWvAXDXLwSu5orUyw3\n71FNI5XCUNnE5/yCpaFSHrWjWn0H9CxfuWqTzZQxgs7GiadC476GK8T+T8K9\njWcr5AV3bSOTMJEmU6147CYpZJaZnhiudfIZ35OSg6JbNEU5vCdCCQRTVgYx\n4THlZZxEBprUoOj/to9qDWWoKDtFvsC05wNdBX/a+vCXwEnm4wvHieraUdIp\nG6V+O+UsVDphDaBS/1M4yjDOkYySGd4lLk47TBDdG7ejnoC4UJwzUxM3LvHK\nJCrd\r\n=5gnb\r\n-----END PGP SIGNATURE-----\r\n","size":47320},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.17.10_1640322636933_0.0629796333799657"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2021-12-27T19:33:15.847Z"},"0.17.11":{"name":"unplugin-vue-components","version":"0.17.11","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"tsup src/*.ts && esno scripts/postbuild.ts","dev":"tsup src/*.ts --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@babel/traverse":"^7.15.4","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@babel/traverse":{"optional":true}},"dependencies":{"@antfu/utils":"^0.3.0","@rollup/pluginutils":"^4.1.1","chokidar":"^3.5.2","debug":"^4.3.2","fast-glob":"^3.2.7","local-pkg":"^0.4.0","magic-string":"^0.25.7","minimatch":"^3.0.4","resolve":"^1.20.0","unplugin":"^0.2.21"},"devDependencies":{"@antfu/eslint-config":"^0.10.0","@babel/parser":"^7.16.4","@babel/traverse":"^7.16.3","@babel/types":"^7.16.0","@types/debug":"^4.1.7","@types/minimatch":"^3.0.5","@types/node":"^16.11.9","@types/resolve":"^1.20.1","@typescript-eslint/eslint-plugin":"^5.4.0","bumpp":"^7.1.1","compare-versions":"^4.1.1","element-plus":"^1.1.0-beta.24","eslint":"^8.3.0","esno":"^0.12.1","rollup":"^2.60.0","tsup":"^5.7.4","typescript":"^4.5.2","vite":"^2.6.14","vitest":"^0.0.50","vue":"3"},"engines":{"node":">=14"},"gitHead":"2b216b60673274a76be840773cb20bc302a1847b","_id":"unplugin-vue-components@0.17.11","_nodeVersion":"14.18.2","_npmVersion":"6.14.15","dist":{"integrity":"sha512-u5MQ0TbikszRelCt6EA/HskGtGkGLDxi7tQ4/4tcEPWkH3yXSZRJCOeLF5MSdxN1SiGjaJ0I9zeHjoZFC3FvRw==","shasum":"ce5ba9692236cdcfa6750c4c7ad999747c3c2db4","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.17.11.tgz","fileCount":39,"unpackedSize":227209,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhx+dmCRA9TVsSAnZWagAAgtUP+QGxeUGXeipWIVncZc0/\n1KXoZpv8YwMB7FdeYZMbB00yK1amYNaLxoQ8YBL4vqt1OvVOeexCe+E+spFp\nVtM7mlYsDI/tCzetEJN1SqKJzirA3lugRVD0Xw0sp4CmGUihBjFxa+Tz1jli\nBbVjFwprdXQy9wGyXF7C+5NLzx07xbca1X/fwLTmfmCCU8gN6wiW+QTS0PLT\n0ncOcjPHvULcAk8BypmiyMnDb+EbnaFQlZynSLFl7HyIIaP1Zr3NgkDwpUVN\nqgmB3VQM4UlOjVN+AUqIVis+Oy+KVnI8iteZy+EOWpQd3z+JO3QgZWhCBYEH\ndW15R3dZIYysBJHEi/awwfBYGcxCFUGUUJY1LMUI4xy4JvduE6V7EmiRriQe\nkoRkRD/BSfydYVHTtBR7xcaIo7e0osYUHRw9VExmUMcLLMijbnBv/UYcjwUl\nJXfs1SmE6pm4L8+Bym5N8mYxNDRSVn8AenGVHtkNQ8otsDw4SWq3JvFMZaNP\nvqq5KI5Y8uBKRXxF7xoR5UuJLnyASkZXe8QmN7t05N0MIR2rlDFjgzy8orix\nhxE/mHpiObefdSoOGYGzKxxJnp6/HhxE0WSnHDBK83xJPkVKZzuh+EEmAfns\na2/HYD30wq+T4SfnhgQngonqvPGTZn6mzWejVsCrfG3eFXknxI8MWHkYnt1N\n+VRI\r\n=zXCT\r\n-----END PGP SIGNATURE-----\r\n","size":48795},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.17.11_1640490854383_0.9983886602229528"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2021-12-27T19:33:16.591Z"},"0.17.13":{"name":"unplugin-vue-components","version":"0.17.13","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"tsup src/*.ts && esno scripts/postbuild.ts","dev":"tsup src/*.ts --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint --ext .js,.vue,.ts,.tsx .","release":"npx bumpp --commit --tag --push","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@babel/traverse":"^7.15.4","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@babel/traverse":{"optional":true}},"dependencies":{"@antfu/utils":"^0.4.0","@rollup/pluginutils":"^4.1.2","chokidar":"^3.5.2","debug":"^4.3.3","fast-glob":"^3.2.11","local-pkg":"^0.4.1","magic-string":"^0.25.7","minimatch":"^3.0.4","resolve":"^1.21.0","unplugin":"^0.3.0"},"devDependencies":{"@antfu/eslint-config":"^0.16.0","@babel/parser":"^7.16.8","@babel/traverse":"^7.16.8","@babel/types":"^7.16.8","@types/debug":"^4.1.7","@types/minimatch":"^3.0.5","@types/node":"^17.0.8","@types/resolve":"^1.20.1","@typescript-eslint/eslint-plugin":"^5.9.1","bumpp":"^7.1.1","compare-versions":"^4.1.3","element-plus":"^1.1.0-beta.24","eslint":"^8.7.0","esno":"^0.14.0","rollup":"^2.64.0","tsup":"5.7.4","typescript":"^4.5.4","vite":"^2.7.12","vitest":"^0.1.17","vue":"3.2.26"},"engines":{"node":">=14"},"gitHead":"484ef05350a582469aa4f1d53067dff0401f45d8","_id":"unplugin-vue-components@0.17.13","_nodeVersion":"14.18.3","_npmVersion":"6.14.15","dist":{"integrity":"sha512-WII6hAW+HSvlXDx4t0LqcAvLg4ESsoBz1nuUDMPx6ZGuKBPjSRP4Wmnk559nZ6qpaOW41iY48cBeUpWSPjH7WA==","shasum":"d82a8aefb27a470a0c9c9d5359f04d119f5d6fd1","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.17.13.tgz","fileCount":43,"unpackedSize":231087,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh4+lZCRA9TVsSAnZWagAA0CAP/RxLNPjzw4+YmjVJIBUQ\noYME42fTSRMHqLZBCRo6jJzsip0mRkKhsQKdbGGmNZa97XuQyK0u4dgyg+81\nBiZ/d7ZbBHeG7d/PTh3lwscT0n8nRrkSA0CyWfOY1eJyxguUVtauEHSG2CQR\nD20roUB0S9C0nNCGWecPPO8NQDL7ep4+1gOEBoFGsu5Io7tUUaZETQdygh7b\nt7Zqu0xX5QsV0oSHLpGEY8vA+o39tjZOghTVoZNqrNnEHg0Xg3BGsR1LNMRm\nzYEzan2IstjdLGpUB6RvkdabhbKydC3BW3y6Qvg9s0OIuDcwGIu4Cxnwb0rd\nTMwEKXWDYtPmD09D1lKjDMFRQsm4pk6RjZcJTWY6tJi5AQWUjUcaCMox3W9t\npksA+CclVVrio3Z8a81o/X6TnCbfXTB3d/TIp6PPO0bZHeYnQupltZ+3QR67\naXSOA/G6y1Wntj0P+q8jvJlFK/NST52O9GH/ocbOuQsquk/PPSlTkA1XMT0p\nYWpTPIA0qDajKvsI/+VlpdrayAXViNWzYy9XtUzjreKB0aNhBMR+sGtDYbcp\n6n1YgAxFDBsW6wPYqJt2sPDzaY0CiiTNd8kHWY/PonBkF+BjNHv2eLgPetP/\nYqkRtPLNUMr5FjRL0gw4LN8hWWsiptelSOC67tjQgbXq8c1JeHtRrq/kFyaL\nnauk\r\n=x7h5\r\n-----END PGP SIGNATURE-----\r\n","size":49565},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.17.13_1642326361466_0.08308101467991302"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-01-16T09:46:07.111Z"},"0.17.14":{"name":"unplugin-vue-components","version":"0.17.14","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"tsup src/*.ts && esno scripts/postbuild.ts","dev":"tsup src/*.ts --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint --ext .js,.vue,.ts,.tsx .","release":"npx bumpp --commit --tag --push","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@babel/traverse":"^7.15.4","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@babel/traverse":{"optional":true}},"dependencies":{"@antfu/utils":"^0.4.0","@rollup/pluginutils":"^4.1.2","chokidar":"^3.5.2","debug":"^4.3.3","fast-glob":"^3.2.11","local-pkg":"^0.4.1","magic-string":"^0.25.7","minimatch":"^3.0.4","resolve":"^1.21.0","unplugin":"^0.3.0"},"devDependencies":{"@antfu/eslint-config":"^0.16.0","@babel/parser":"^7.16.8","@babel/traverse":"^7.16.8","@babel/types":"^7.16.8","@types/debug":"^4.1.7","@types/minimatch":"^3.0.5","@types/node":"^17.0.8","@types/resolve":"^1.20.1","@typescript-eslint/eslint-plugin":"^5.9.1","bumpp":"^7.1.1","compare-versions":"^4.1.3","element-plus":"^1.1.0-beta.24","eslint":"^8.7.0","esno":"^0.14.0","rollup":"^2.64.0","tsup":"5.7.4","typescript":"^4.5.4","vite":"^2.7.12","vitest":"^0.1.17","vue":"3.2.26"},"engines":{"node":">=14"},"gitHead":"c81257e2ea7c55686223bb8e9f18316602f2542c","_id":"unplugin-vue-components@0.17.14","_nodeVersion":"14.18.3","_npmVersion":"6.14.15","dist":{"integrity":"sha512-PSJ2EwFTxFSVg/HhUDyoYa5/s6hWqdQzlbJLOIEr0bv4Qczp5YRpTlObld5cjgieFtgPtq2W21A77ucB/msgeg==","shasum":"979f56c1783c6c6f94a31e618c599a3b4a5c013f","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.17.14.tgz","fileCount":43,"unpackedSize":231565,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh6cwjCRA9TVsSAnZWagAA+6oP/17JW/5Fj5SlPC9+Tg9D\n5EM2Jb4cr1+mHQ0k571piOhvpGYyvwiBaU2A7rNYeDr9vfWyT7FB9tATxl0I\ny0ykzcpW7BzMz2+5EOiAd6f0JjxXpToTjUOxWDQuBT7OMt03f+x64GaJUBcR\niSfAlBvXhg5ZLaV1zC15VEjL/oBGJt/UML+AJllpMNsWwKmTE3Cy/aqUYrpF\nkg8DyWO99q51u3Wz3rl44srG2p/HFLiFuv7Sp/nA+VLQDvqyHD48Bk4gN50o\nuY5JsR3feT2DIFME1B3tLQTFmVT9AdE8Wi4ZvNECyILdyrrmtUaUSCOnGl1+\nRH+oQEURWE98bget9L57ytyUaOkqAIAfIaNlXz1CPAQ2RudjLe8t8Ue739Qi\n9rbCt95boeG6lhbapyMvoH0d7jvpA3A+YFngzOCbn7TPbEJ4mhQaR4r9zsod\nhks2IdIgtNxpb9al43b6Al/75jjGMoSY+k/ILX+mcKami3E4eu32HcbTvxuO\nj4JRkhNQGIZIk7UmY0x7wmZTqTlOcOWa0BMUTe9Y5m3bBsZuYFY9nak8aW+Q\no1I13zuH98Ifj2EgTQT1v7C8mvlS8w051f4SMT7XOKlanZC49HEHWoQLN2Gn\nHBO1qHojqTGgVJEkLZHwX0+8WWnRDKWXjdRXJsV+JtmHiJ7STn8p0ec9okew\ns1lf\r\n=+HmR\r\n-----END PGP SIGNATURE-----\r\n","size":49639},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.17.14_1642712099450_0.6501260994781122"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-01-20T20:58:19.177Z"},"0.17.15":{"name":"unplugin-vue-components","version":"0.17.15","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"tsup src/*.ts && esno scripts/postbuild.ts","dev":"tsup src/*.ts --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint --ext .js,.vue,.ts,.tsx .","release":"npx bumpp --commit --tag --push","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@babel/traverse":"^7.15.4","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@babel/traverse":{"optional":true}},"dependencies":{"@antfu/utils":"^0.4.0","@rollup/pluginutils":"^4.1.2","chokidar":"^3.5.2","debug":"^4.3.3","fast-glob":"^3.2.11","local-pkg":"^0.4.1","magic-string":"^0.25.7","minimatch":"^3.0.4","resolve":"^1.21.0","unplugin":"^0.3.0"},"devDependencies":{"@antfu/eslint-config":"^0.16.0","@babel/parser":"^7.16.8","@babel/traverse":"^7.16.8","@babel/types":"^7.16.8","@types/debug":"^4.1.7","@types/minimatch":"^3.0.5","@types/node":"^17.0.8","@types/resolve":"^1.20.1","@typescript-eslint/eslint-plugin":"^5.9.1","bumpp":"^7.1.1","compare-versions":"^4.1.3","element-plus":"^1.1.0-beta.24","eslint":"^8.7.0","esno":"^0.14.0","rollup":"^2.64.0","tsup":"5.7.4","typescript":"^4.5.4","vite":"^2.7.12","vitest":"^0.1.17","vue":"3.2.26"},"engines":{"node":">=14"},"gitHead":"186f65b61b7e39c1a4c3bcac32644702c5167f60","_id":"unplugin-vue-components@0.17.15","_nodeVersion":"14.18.3","_npmVersion":"6.14.15","dist":{"integrity":"sha512-KpSlv7BaPRswwlCUy7gdpiqOAaHnMeMTmMOqJPmreYTGupt+6qXH3S3uLEmPmXUcuzRXlL+4eysuVunSAbsn0A==","shasum":"bae100c53ef489c31d1a9053b2cd7d5133d23e71","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.17.15.tgz","fileCount":43,"unpackedSize":231940,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh8mNJCRA9TVsSAnZWagAAjysP/2Rs/J5RNyDuDo8VZd7o\n7AFTEmY+NOeHgBUMHpw4zC0SWbJ9fkMsQoKry/JJ8nOunU+Q4hvIMKgqgjjd\nk4pAiQBBu5gCmZ3Qd3lxQbn2ou1AVSbFd440Qk1uhWIjB8B7wrOGSvVbIqav\nGXnLBh8cGQifQneahai+pGndcie6Fsfjp0b8990D2lJqyCsmnULuPDJG5ZLo\nu/Sa6YOTDceFlwUIdlQKGe94tmunSMPRpOWI2Y2tPSkh4Psa19jl+YhFs5wH\nvmU7hCl6oHW3rC1LQrJ27I5weseRyqsdmgkpelzVm2F7/jo7FpUwGFrFAHNn\noniPT0kW8RjuDCSBF3RxrZ4Ja6pETMfdozF648BzOyEdmPkAjDmu7xOH8o+z\nALEQWAJzl4S31EbiROMvVSk0Sik+fKhYxCgN1I4wRz8fYs4T+YoG36v81akA\naYh8UToW4vM/hFZJY97uhkbaULkhemZyRYXKocnwIju7mpFbVUEfyKxpRqq9\nf5nd7VToI+tGnK+GZOK+B5rUnfCF0KjpLqG9tfW8iVH46SIJeRwJmxKdI8ur\nE7a/V44gHqPFWvnsZzS04e+OUxe4ZCG1R5ogIKVSFQ1BDL/f3S3njsuo4VGe\ne4v1Wl1MrBC2kPOaUJlgP1Swj+D0Sa4/y2NIzR/NQQWOEynhpMcM2zlxclts\nszB2\r\n=s9p1\r\n-----END PGP SIGNATURE-----\r\n","size":49690},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.17.15_1643275081638_0.9306900207767177"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-01-27T09:18:37.428Z"},"0.17.17":{"name":"unplugin-vue-components","version":"0.17.17","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"tsup src/*.ts && esno scripts/postbuild.ts","dev":"tsup src/*.ts --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint --ext .js,.vue,.ts,.tsx .","release":"npx bumpp --commit --tag --push","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@babel/traverse":"^7.15.4","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@babel/traverse":{"optional":true}},"dependencies":{"@antfu/utils":"^0.4.0","@rollup/pluginutils":"^4.1.2","chokidar":"^3.5.2","debug":"^4.3.3","fast-glob":"^3.2.11","local-pkg":"^0.4.1","magic-string":"^0.25.7","minimatch":"^3.0.4","resolve":"^1.21.0","unplugin":"^0.3.0"},"devDependencies":{"@antfu/eslint-config":"^0.16.0","@babel/parser":"^7.16.8","@babel/traverse":"^7.16.8","@babel/types":"^7.16.8","@types/debug":"^4.1.7","@types/minimatch":"^3.0.5","@types/node":"^17.0.8","@types/resolve":"^1.20.1","@typescript-eslint/eslint-plugin":"^5.9.1","bumpp":"^7.1.1","compare-versions":"^4.1.3","element-plus":"^1.1.0-beta.24","eslint":"^8.7.0","esno":"^0.14.0","rollup":"^2.64.0","tsup":"5.7.4","typescript":"^4.5.4","vite":"^2.7.12","vitest":"^0.1.17","vue":"3.2.26"},"engines":{"node":">=14"},"gitHead":"eef4689994e42dd9a473061be77f86837cc1aa13","_id":"unplugin-vue-components@0.17.17","_nodeVersion":"14.18.3","_npmVersion":"6.14.15","dist":{"integrity":"sha512-XaaCbsdXGazTOl0nH4+PVsuGOXmYcrqLT8B8vO9Jzz9OaUq+S9Tz4KjzUNs7bhkp83SQWaKKF0+noAynYDa/Cg==","shasum":"360174a12aa28dac26bdb2310e248fca1999f9c8","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.17.17.tgz","fileCount":43,"unpackedSize":232234,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiAHI9CRA9TVsSAnZWagAAfdcP/RyccYX2S+u64NG0uEZe\nxbnIc+ixsSxxint4rXAub0fPxnT6jqufEX6yeV6oriNoi4Mb7bBzgFQ76Fpr\n5DvasloI+eJwyL4sdba46LpwDkRIIBeKaK//ZpYrALexT6Gv8gNbp2ZuHOts\nntgqNzxc518OCKNEG9AWPG7yVX/RJc6rrsayWEIAQ3zlm4iSFxlI9Tkgohm8\nIU3XgEeAgBGE+TZpC/kj6hSAhQF2bN9aQMzjP0SkVOWCiPsAQruh/lUcj43D\npR3eJrzmPskFNphR7X3MpcX/kWITc27lu3olW2PapKAs2PggEQ4y1KgE9kQi\nkSPvCgukz8yOMDAD1jm2+AABrEGl2/DYQxB6MFQDPyReZAe+wgZrEoHyL8Nw\nlJfzaG83EeuJEWzfEKzXOTHoKkomNAQKDkKGnniMKUub9eYN9PCfkc+HCmqs\nGQ4/YT2Hca8rTzKuChTjmhDsLyLVYnR76y/2F5Vez/pUtXXonLbpgjOHrRcA\n/4FQCisPy23SUD1YN0vlIWjyd2Of6R8X6Pxon9jWB3ZRHges1Vll5m73ye/L\nJGxm5GhS0ijpzRXZJFZMgrOzSR425rfbKgn3DXPlVxVwjxFX1bHK/a3f2kbp\nF5YOahbjKmzRzMQo6L78A++mOJQHvplEgFZVFesDwosOabG1EYyjjPgcaVEd\nh4ST\r\n=bk3Q\r\n-----END PGP SIGNATURE-----\r\n","size":49738},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.17.17_1644196413404_0.9204267136390616"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-02-07T01:13:40.148Z"},"0.17.18":{"name":"unplugin-vue-components","version":"0.17.18","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"tsup src/*.ts && esno scripts/postbuild.ts","dev":"tsup src/*.ts --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint --ext .js,.vue,.ts,.tsx .","release":"npx bumpp --commit --tag --push","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@babel/traverse":"^7.15.4","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@babel/traverse":{"optional":true}},"dependencies":{"@antfu/utils":"^0.4.0","@rollup/pluginutils":"^4.1.2","chokidar":"^3.5.2","debug":"^4.3.3","fast-glob":"^3.2.11","local-pkg":"^0.4.1","magic-string":"^0.25.7","minimatch":"^3.0.4","resolve":"^1.21.0","unplugin":"^0.3.0"},"devDependencies":{"@antfu/eslint-config":"^0.16.0","@babel/parser":"^7.16.8","@babel/traverse":"^7.16.8","@babel/types":"^7.16.8","@types/debug":"^4.1.7","@types/minimatch":"^3.0.5","@types/node":"^17.0.8","@types/resolve":"^1.20.1","@typescript-eslint/eslint-plugin":"^5.9.1","bumpp":"^7.1.1","compare-versions":"^4.1.3","element-plus":"^1.1.0-beta.24","eslint":"^8.7.0","esno":"^0.14.0","rollup":"^2.64.0","tsup":"5.7.4","typescript":"^4.5.4","vite":"^2.7.12","vitest":"^0.1.17","vue":"3.2.26"},"engines":{"node":">=14"},"gitHead":"13c60c3e61bd7b477b42571a6b779cc783d7ee59","_id":"unplugin-vue-components@0.17.18","_nodeVersion":"14.18.3","_npmVersion":"6.14.15","dist":{"integrity":"sha512-4wvJnSShTXCnZpO1G6h0DlHjBXap0JqzFyU84guMT6EH0shUZZ3TAta4pDa8nNeWAtcJVTF9uQswePq1elhpKQ==","shasum":"d647f85940d78f2be66620b9f1ac1ea232edbfc5","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.17.18.tgz","fileCount":43,"unpackedSize":232352,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiAlKeCRA9TVsSAnZWagAA5L4QAKP8vOXF62GcryBs7S9j\nPrEhHwfrBpEsUHQutqT9JYSsnoy176YbtC1R3CAgT5uNPhyPUiA7WgmFiYW5\n4R7oprIgMvwrgqYbUwRoApQavJtgJs9YmhVm97D4PLt/fENt4oHabF5ldHD1\noUdFDcGbGjVNBKfgSuirCVZwWlaXMaSBvKKCUYBodit7dkS1QI+m1JpJRZM1\n05dxtr+5Yl6gRvsg8HkDpAFiDxkujuP1wiMenYquhFxvcVCd4oeKTXaVTero\n2LtZBZ5mDTjR1ckhFKW44SxyeYIZRSAMF8umIWj4gM3b1+0TMcuruMgqzdga\nyttP83nAOxvBLU42rSy6NuRoneQe3DXxq5ZmIXIiNkzCWmlCPtaNiwQg7uzk\n9JnOgtSj1TrRX237c9zEdFvzWBTINuobdCvF5aZs3jqTlWzXXMKWUIyiO46u\nMBAMjyHDZNJjYwMg7Q8RoZprBjrqYdxVG1zrz1ZRJ4xB5nBlWPCH2Xue6K+m\nr0WaGqlDDj+i0kY/vLhA7/jz9EmuLpUjfjIsU/JjYsmOtHo4+6GaZLymF69W\nxzz0raCSExxYierxgVgRJ+WDBLv/GcOGoBYEt2qcdXKlTMlBmQlEf/YHwiMd\nZ7uMv7isyJgt5abyH4rOsLvLdsAHHXc2nxGF/802CGQFp8wOqNwMFEFJR9ZM\nXvnR\r\n=g677\r\n-----END PGP SIGNATURE-----\r\n","size":49836},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.17.18_1644319390120_0.25929716491763344"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-02-08T11:24:24.394Z"},"0.17.19":{"name":"unplugin-vue-components","version":"0.17.19","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"tsup src/*.ts && esno scripts/postbuild.ts","dev":"tsup src/*.ts --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint --ext .js,.vue,.ts,.tsx .","release":"npx bumpp --commit --tag --push","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@babel/traverse":"^7.15.4","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@babel/traverse":{"optional":true}},"dependencies":{"@antfu/utils":"^0.4.0","@rollup/pluginutils":"^4.1.2","chokidar":"^3.5.2","debug":"^4.3.3","fast-glob":"^3.2.11","local-pkg":"^0.4.1","magic-string":"^0.25.7","minimatch":"^3.0.4","resolve":"^1.21.0","unplugin":"^0.3.0"},"devDependencies":{"@antfu/eslint-config":"^0.16.0","@babel/parser":"^7.16.8","@babel/traverse":"^7.16.8","@babel/types":"^7.16.8","@types/debug":"^4.1.7","@types/minimatch":"^3.0.5","@types/node":"^17.0.8","@types/resolve":"^1.20.1","@typescript-eslint/eslint-plugin":"^5.9.1","bumpp":"^7.1.1","compare-versions":"^4.1.3","element-plus":"^1.1.0-beta.24","eslint":"^8.7.0","esno":"^0.14.0","rollup":"^2.64.0","tsup":"5.7.4","typescript":"^4.5.4","vite":"^2.7.12","vitest":"^0.1.17","vue":"3.2.26"},"engines":{"node":">=14"},"gitHead":"2fed7055c5d7add7418e2ee11cf8f204f5e5b701","_id":"unplugin-vue-components@0.17.19","_nodeVersion":"14.19.0","_npmVersion":"6.14.16","dist":{"integrity":"sha512-KFOa2IS2NcSEFYomTdo0SoPQt3eIFQn9UEj2OlGfk/ShiYvpe3XJA0uaZPEv8+qxFaHxnDtZIZIIiV/Kbb2tbA==","shasum":"fb3d2f438f2deaac8217a81426a0baa09020693d","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.17.19.tgz","fileCount":43,"unpackedSize":233742,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiFIKZACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpZ6RAAmveS06feX0udzFJFpPh+500g9wUXvYUW0D/4pKnr3I8JTJ3y\r\ntccPBOECPCSrKsS90AB4R6/sFLL6UhMzxfOrhnNV0L+UAeCMdslAGD/8ShE0\r\nrEN87u21Z3AEA599+GXgxe+Kx/OBOLW/TzIjfduut/JjulhgSsHhJXx7yY0r\r\n3X+H7fGKqt1dPn6Tj/WJuzcEy1VqiAtzQ8S3LCQJ2cMij3h+NPFZ326VUyWe\r\njdwwKbp2F9uJG0HnQd6xZY/33i+Tlfbw82Lf7oGPP3H3K/KP9nIqpiMw/16b\r\nRYo7bMN1KmM8bM8DlQVv1+bTw3sPdp31LeJPL8bv3xqYh44Qb9lv+b7phBqr\r\nMfffdOC+q+7u96dGGBP2QFD/sEhHSmMA2F7HBXFSzcgl2d72uPR+PssIukMo\r\nqoVzg+5LL0CDMn4diZewLW8wUs46fyx0YKIne3dVNyzOwkc1CxNHPHsWdF3X\r\n2AXQi1irSGsWksItvBc5ylWBxXiwzLcz2sGATLM61T6qHwsA1NBWb6Q1clbv\r\nOKFccPj1VSPXqmkSGE+JkuGhouvE8zJh+AJTWfeIl4P4CLv79jOK2h8PGIFa\r\n+ULRngHaSjBokoobLT3ukC+WNPNzSVQw1EtgbTL2ZRGMalTY7NMkCK9WMDds\r\naECAfseretWxoIEYmmRWO41G1JQBwHvGzLo=\r\n=a3y+\r\n-----END PGP SIGNATURE-----\r\n","size":50239},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.17.19_1645511321571_0.9406085514555618"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-02-22T06:28:47.979Z"},"0.17.20":{"name":"unplugin-vue-components","version":"0.17.20","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"tsup src/*.ts && esno scripts/postbuild.ts","dev":"tsup src/*.ts --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint --ext .js,.vue,.ts,.tsx .","release":"npx bumpp --commit --tag --push","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@babel/traverse":"^7.15.4","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@babel/traverse":{"optional":true}},"dependencies":{"@antfu/utils":"^0.4.0","@rollup/pluginutils":"^4.1.2","chokidar":"^3.5.2","debug":"^4.3.3","fast-glob":"^3.2.11","local-pkg":"^0.4.1","magic-string":"^0.25.7","minimatch":"^3.0.4","resolve":"^1.21.0","unplugin":"^0.3.0"},"devDependencies":{"@antfu/eslint-config":"^0.16.0","@babel/parser":"^7.16.8","@babel/traverse":"^7.16.8","@babel/types":"^7.16.8","@types/debug":"^4.1.7","@types/minimatch":"^3.0.5","@types/node":"^17.0.8","@types/resolve":"^1.20.1","@typescript-eslint/eslint-plugin":"^5.9.1","bumpp":"^7.1.1","compare-versions":"^4.1.3","element-plus":"^1.1.0-beta.24","eslint":"^8.7.0","esno":"^0.14.0","rollup":"^2.64.0","tsup":"5.7.4","typescript":"^4.5.4","vite":"^2.7.12","vitest":"^0.1.17","vue":"3.2.26"},"engines":{"node":">=14"},"gitHead":"7087acad3fd15cdec71b8dc26c63f9a49ab0bb42","_id":"unplugin-vue-components@0.17.20","_nodeVersion":"14.19.0","_npmVersion":"6.14.16","dist":{"integrity":"sha512-YSofs2RFzLUZWnMyEZ25PnK1WR6etiS2Wl2TdU5T6nvyvn9HqUD54V5JAdKmybgLym6M+YoOE+Mzxtj/bTWDpQ==","shasum":"f889a20b3f6cae732679f888e2ab11fcb4e91ac6","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.17.20.tgz","fileCount":43,"unpackedSize":233884,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiFTNOACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoekxAAnq5lFXWHIYVODZiRPpGFJ954wrJT4kdeuDF/9037TlpB0Bf1\r\ntGMRPOfhvKFw4+FHMTzVQSECaNlA9xW7/Jnn/NumwggMm0L7RHdE+rAXquSF\r\nENi114H+xWbc/odga+lQflUMxTof1hq5JTP1vJHShxgsCvJrtU2F1BA+DjcZ\r\nxXwXsBR0ib8rYQfG2rBV1XfTQ/v710v/h3YZSrEVPT2evmr6I5SPzJ2G7v60\r\nh2+CqM6aS6ha4jDlodVwryxQTgxRWSKHY3cM9ZqC6oVCH+6WFQQsdTGZCG7p\r\n4usX8el2tZi6Kp2z69DVOvgHzJXcfDeC2Tf9fI3dQtjDhne93Z5LoFKhc/3W\r\n+bhTFaJFvDSOIfXCdIncfDi1uZZSI287QyG2pHv2mAsDmselHYNXkJx1kwrG\r\nYv2cpqQXlXkEEAuwNCGEP/7yB0JKTThqk2slqqyImnlIG5lphSwu3rtLrDH9\r\nAGETHn30/GdDEUSUkOMtGgz11xghx3nUMvPV+RAZQLU0ztXzN64m600sGWnw\r\nNWfd0Wq4vqkrkdSRnr1da6dHa9gjgI2tZws+byxUrvHd5/zhNG0LVMagyK3B\r\nYP3FeOYLnM8x95wmvlkcPSgcW51LfQssxSzLs4po0lEA8qhmiMbpV0EHcpUd\r\nQ6aK5My51cSH4I2VzBXgr6htxnHvOC46SCE=\r\n=tbS7\r\n-----END PGP SIGNATURE-----\r\n","size":50268},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.17.20_1645556558519_0.7225456928699678"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-02-22T19:02:42.745Z"},"0.17.21":{"name":"unplugin-vue-components","version":"0.17.21","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","scripts":{"build":"tsup src/*.ts && esno scripts/postbuild.ts","dev":"tsup src/*.ts --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint --ext .js,.vue,.ts,.tsx .","release":"npx bumpp --commit --tag --push","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@babel/traverse":"^7.15.4","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@babel/traverse":{"optional":true}},"dependencies":{"@antfu/utils":"^0.4.0","@rollup/pluginutils":"^4.1.2","chokidar":"^3.5.2","debug":"^4.3.3","fast-glob":"^3.2.11","local-pkg":"^0.4.1","magic-string":"^0.25.7","minimatch":"^3.0.4","resolve":"^1.21.0","unplugin":"^0.3.0"},"devDependencies":{"@antfu/eslint-config":"^0.16.0","@babel/parser":"^7.16.8","@babel/traverse":"^7.16.8","@babel/types":"^7.16.8","@types/debug":"^4.1.7","@types/minimatch":"^3.0.5","@types/node":"^17.0.8","@types/resolve":"^1.20.1","@typescript-eslint/eslint-plugin":"^5.9.1","bumpp":"^7.1.1","compare-versions":"^4.1.3","element-plus":"^1.1.0-beta.24","eslint":"^8.7.0","esno":"^0.14.0","rollup":"^2.64.0","tsup":"5.7.4","typescript":"^4.5.4","vite":"^2.7.12","vitest":"^0.1.17","vue":"3.2.26"},"engines":{"node":">=14"},"gitHead":"26b64c3b161189ded7abb9892c71c828c52abe88","_id":"unplugin-vue-components@0.17.21","_nodeVersion":"14.19.0","_npmVersion":"6.14.16","dist":{"integrity":"sha512-jkXksUF6zkNbzHQbw1DdrsQyVoMZGESRZDIGd9x7nUP+65nHdpBCY/JmlxSjKbuTrOwfMsk6FQFa0RpRueOCKg==","shasum":"b4acdb389ef2dab90d974353e5310507865acc43","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.17.21.tgz","fileCount":43,"unpackedSize":234365,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiF1VeACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmogqg//TOGCnXSIOgRr1E//uIwT71ZP9uYREcjCZDGy2c8EGBm3sXjc\r\npyddh6swX5mxdvHdvkEZsmGntABD62z8NA9lvqhuoiZpWmOFm3SbeFgTXAlp\r\ntwcGsbAxn7l6YMrWhnaqdIHbs0z+GG5dnlSi2Er78fOqIYn54+gNynz1Bv6X\r\nA90Fy+Z6dkbERQo+2+dy4039NMHX0D6xtVO7Rp2OVAEI3Wonya0EkREY2K8n\r\n4nV9wWnIixGzVcPiHG6bMYbOesOkYxfKhxqrU66MPV//FxfrIodwB3aTGC0Q\r\n8HZoFd0/rbN2t5JnqMuYia5HrjFvuoWPGUAAQN6N2dDPsE0NLwqnBaLHk/po\r\nMBnHyAUCC6BfzkKkmqtBDqwTG0d5EzK2VeCwGg0zeocOJatbo4yjmJDKkWaf\r\nxyNwvDD7q/RQ/3fQpDrW+SXl03cwOvOCh5Hw9dmDVhKaC6EGRGZPSb1xGI/+\r\nH9eZxHcrZWIJBKOpKIBT3Wgj3zdVLtmvzSTTVkNjNqC5ib1JEnWuCDcwfioS\r\nt4mJWXFvxltRR772BIRgMgUr69YSZWbY63xnmWp1NBLPtIauLmJlxrsgHgzc\r\nGJvhOpGfGQYuu30R7TIeGk3klWG8dWo47Sx/J9D6xKr3SqBK4lNucfFg2pm3\r\nXkAcDjSnb6uT3bU9LVPOVbgmcYV2RDdnouo=\r\n=UWrP\r\n-----END PGP SIGNATURE-----\r\n","size":50324},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.17.21_1645696349925_0.8541404063293527"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-02-24T09:52:37.821Z"},"0.18.0":{"name":"unplugin-vue-components","version":"0.18.0","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"license":"MIT","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"}},"typesVersions":{"*":{"*":["./dist/*"]}},"scripts":{"build":"tsup && esno scripts/postbuild.ts","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp --commit --tag --push","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@babel/traverse":"^7.15.4","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@babel/traverse":{"optional":true}},"dependencies":{"@antfu/utils":"^0.5.0","@rollup/pluginutils":"^4.2.0","chokidar":"^3.5.3","debug":"^4.3.3","fast-glob":"^3.2.11","local-pkg":"^0.4.1","magic-string":"^0.26.1","minimatch":"^5.0.1","resolve":"^1.22.0","unplugin":"^0.4.0"},"devDependencies":{"@antfu/eslint-config":"^0.18.8","@babel/parser":"^7.17.3","@babel/traverse":"^7.17.3","@babel/types":"^7.17.0","@types/debug":"^4.1.7","@types/minimatch":"^3.0.5","@types/node":"^17.0.21","@types/resolve":"^1.20.1","@typescript-eslint/eslint-plugin":"^5.14.0","bumpp":"^7.1.1","compare-versions":"^4.1.3","element-plus":"^2.0.5","eslint":"^8.10.0","esno":"^0.14.1","pathe":"^0.2.0","rollup":"^2.70.0","tsup":"5.12.1","typescript":"^4.6.2","vite":"^2.8.6","vitest":"^0.6.0","vue":"3.2.31"},"engines":{"node":">=14"},"gitHead":"6a3eb847385f46c5b2f0ec5adaa7694f2e2689d7","_id":"unplugin-vue-components@0.18.0","_nodeVersion":"14.19.0","_npmVersion":"6.14.16","dist":{"integrity":"sha512-qk4AgtsydOw1RoGjVlC9toBnq9U8UD8gORRbZjZoNV14c1n5+ZZXV1Hjf7ne6SCt/SROBxpK6Kh3iqL0d8ijpw==","shasum":"e247ade96ed26ad7a26223622c3cdd8513246fa9","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.18.0.tgz","fileCount":33,"unpackedSize":279333,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiKzfDACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrbAQ/+JZcyRx5jaUJqj5iIB8lvjpuEXMZ6xT/+dGxev2ayCBVsNGJb\r\nHuFTxoBL6mvhLaL5uYgpH2KnG8jxBLTr47w3YVwYUUogRaJwfAyGMXPZQhwK\r\nz+CS66zxe9Gw1BuR/acS+0UJostnU5UsIGig/JAGYodsSzezWBZE7qeaLxYE\r\nJ3TdB6oHGIAglHId71XoF3LkKXYYBtzkYKLJ/Y0yRZN0+EptwoI/ZRcsCC3A\r\nZYpYck1EQtZ8vMZceAAPONynC9gijwbXRPSsBcaSpfBlv4ay7yrD1ZMmxaBn\r\nataq9AwjrPsGuYaKct+GzsQsP2gMTR40YTnAU677wE4lzo9vRhJDhStMAnOk\r\nYa6VcbFLl8fNwjLxh9pnYwPsE+02owjBCZu+b7AfOmpWEJ7r93jSAL2pTCMT\r\nOvlnjyUgb0QhwPM0XLIWrXDEWfe2ZbloEMW5Jo+i4RyZoXZfoSqfnbdRjakk\r\nxGPtSAb9Y458xomiH72j7aCJ6EeTjRhlB6WL8t6sKnTJ5yd2QVYMnvTUGm8G\r\nhB+L9Ygg/Ra73CF0HQv4RM2I6dTkOXiRxewM89Fgc8o87rZrHL3278F6i0HG\r\nike1ptobyy+XllBhuMNVPBryUaUzCH+lScjJZUaiBXDxDkxQdfi3UCSv01bw\r\nQTnxzMj5vF57w7OOzLMo060ep2wtwBGWRwA=\r\n=O0B7\r\n-----END PGP SIGNATURE-----\r\n","size":55266},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.18.0_1646999491640_0.8829141471361024"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-11T11:51:42.880Z"},"0.18.1":{"name":"unplugin-vue-components","version":"0.18.1","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"license":"MIT","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"}},"typesVersions":{"*":{"*":["./dist/*"]}},"scripts":{"build":"tsup && esno scripts/postbuild.ts","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp --commit --tag --push","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@babel/traverse":"^7.15.4","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@babel/traverse":{"optional":true}},"dependencies":{"@antfu/utils":"^0.5.0","@rollup/pluginutils":"^4.2.0","chokidar":"^3.5.3","debug":"^4.3.3","fast-glob":"^3.2.11","local-pkg":"^0.4.1","magic-string":"^0.26.1","minimatch":"^5.0.1","resolve":"^1.22.0","unplugin":"^0.4.0"},"devDependencies":{"@antfu/eslint-config":"^0.18.8","@babel/parser":"^7.17.3","@babel/traverse":"^7.17.3","@babel/types":"^7.17.0","@types/debug":"^4.1.7","@types/minimatch":"^3.0.5","@types/node":"^17.0.21","@types/resolve":"^1.20.1","@typescript-eslint/eslint-plugin":"^5.14.0","bumpp":"^7.1.1","compare-versions":"^4.1.3","element-plus":"^2.0.5","eslint":"^8.10.0","esno":"^0.14.1","pathe":"^0.2.0","rollup":"^2.70.0","tsup":"5.12.1","typescript":"^4.6.2","vite":"^2.8.6","vitest":"^0.6.0","vue":"3.2.31"},"engines":{"node":">=14"},"gitHead":"e4e832ce93943a500a525aa49a2330fc32b07263","_id":"unplugin-vue-components@0.18.1","_nodeVersion":"14.19.0","_npmVersion":"6.14.16","dist":{"integrity":"sha512-z+dY8LBf7fhlNNK30kSRnmOjc36pjOVF0pg/x2kPUko5iDOGKU2jTp4XOxvbqWzG1fFleCfFPwKYx1GhqYT+8Q==","shasum":"f4bf80d2dbb75c407c8abbecf2c72a1ff3808674","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.18.1.tgz","fileCount":33,"unpackedSize":280266,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiM47YACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoygBAAkdTZifnBi1QW8owTuiaVRBLS3swSeJkw8hV5ZaW2qbIkDg9r\r\nodqZbcLQRnZiwwKpH6kXHXfr06phqzVGiYaCBKeaYCJTwEDBEgaQaAA7/SmV\r\nvzRHKeiyMP3E1ZXIrAJn1Sb2nizdtWgFHy781nRmOY0msPUI1Jgz3TqPWQR5\r\n0W4kJjabYrm+q/MqojTa0GV14/FV+ZJtkqOYuGHtSAEOlNBUKzGWuRayrOPT\r\neV/BJjX2Aw+ilUI/ZSX3KobcdyVb31cMKd9/hwH91DSsLi3MmxfKgoSFGL7/\r\nGIcK2Ug6AyqJyx0TwQKqXNI7oXMAnk69SlrV4eGiH/bLVCok692WxxsJKu4z\r\nDgmTuZR/HpjU8QSpdJDPUZ5tQY6dfODUiKe8ePj4Z/cxWGDNRwNiK2QEUbwU\r\nBkNIipWHdaRv9MhJ3jWvo7NbZcKDSrlpBBfS/HVKAQAyz1qx9A+h2pTyFaDj\r\nvnlB2KguB9b01FxBwS+1hCaJ4lSnmbA1/RnwbJtUF4ZSmoS6hab8LKSUcEQ8\r\nKF45AX0dFyw7rP1n9R6qNB9ntLG0IdwYfr9UDmL/0se8WHn4yWDqFgtrz2Q1\r\n94pBJqPzV+r+7CaqYg4lX8PqoltL/tZDJAYt/AvboyR3PSFNqNquvDDVXXth\r\nBj+FjY5ilsMBiZpMQiv9W1BjjHlOYT2gKPg=\r\n=OH7w\r\n-----END PGP SIGNATURE-----\r\n","size":55623},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.18.1_1647546072136_0.5649492419878852"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-17T19:41:17.613Z"},"0.18.2":{"name":"unplugin-vue-components","version":"0.18.2","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"license":"MIT","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"}},"typesVersions":{"*":{"*":["./dist/*"]}},"scripts":{"build":"tsup && esno scripts/postbuild.ts","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp --commit --tag --push","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@babel/traverse":"^7.15.4","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@babel/traverse":{"optional":true}},"dependencies":{"@antfu/utils":"^0.5.0","@rollup/pluginutils":"^4.2.0","chokidar":"^3.5.3","debug":"^4.3.3","fast-glob":"^3.2.11","local-pkg":"^0.4.1","magic-string":"^0.26.1","minimatch":"^5.0.1","resolve":"^1.22.0","unplugin":"^0.4.0"},"devDependencies":{"@antfu/eslint-config":"^0.18.8","@babel/parser":"^7.17.3","@babel/traverse":"^7.17.3","@babel/types":"^7.17.0","@types/debug":"^4.1.7","@types/minimatch":"^3.0.5","@types/node":"^17.0.21","@types/resolve":"^1.20.1","@typescript-eslint/eslint-plugin":"^5.14.0","bumpp":"^7.1.1","compare-versions":"^4.1.3","element-plus":"^2.0.5","eslint":"^8.10.0","esno":"^0.14.1","pathe":"^0.2.0","rollup":"^2.70.0","tsup":"5.12.1","typescript":"^4.6.2","vite":"^2.8.6","vitest":"^0.6.0","vue":"3.2.31"},"engines":{"node":">=14"},"gitHead":"8b2b45e7c1f98c486929cb8b2e55712df3d78d04","_id":"unplugin-vue-components@0.18.2","_nodeVersion":"14.19.0","_npmVersion":"6.14.16","dist":{"integrity":"sha512-QL4wu0L2NP3e8CH5lDik1RlpLlatzyVXC33lUx4zu67OtUfoxUXTSX+iABhpBP7rf4hF7XPtJm1o6GMex83Mow==","shasum":"24d8d666aa08b59f530aede26f21eba1d4fcfe4b","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.18.2.tgz","fileCount":33,"unpackedSize":280286,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiNgP3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmojlA//VKnObrowT9zXyO0y5U1G1CcG+kzIm3qKvP+3wyKdKPhO1vOz\r\ncNTgUJpZWhnfGjkU49GheJXwJXFs7pyy5/l+i7TwyX90mDwdpBU326s9aNSH\r\n3Uv6daXJLNGUa5DYXMVI8kCFb5s8jkTGW7UJtX2dMcFO146PeGaogBms+GZ7\r\ngypFjb1CHqk0wgBqUWzbSOEGsMdeE1wqWRmkWePbt//4c6g9AkvGjEjBpVTr\r\nahIuFaHRuWz8vP+qAammbaDvtcEWmwGk2sKE/gkL3qokf2M+gOWTpiu1+EYq\r\nFnJP/3aOwtqtiQpCPelehRRrAOF0vMlRAepxwi507QpainLYd7MAiZeJpAvE\r\nOWqGFJx4FgeFDIwU6OuinHnhWRt3+Eswe/exrF1nFmnGwBISEaGv1N8W1CYr\r\nkcFuHCynyvkVkVf0MXBx+9Wp2D9pw5JCT54IH0/wWiX2CQGigHi+Q8VKv6bG\r\nbDSt/xC3cndCk1ztsLWUw3jA4pOUXNVAeMAaMRRBkzITqQ0H2eWISrzKBe5K\r\nL+xJjw0jPCnDmeY60IGD/LTcW+n1idy77k8xadvsomjKyf2JMeDX3rQhUeTX\r\n/Ha0DVBmVvEfcH3KR92qBnWUq15wzF46YntKLxS2We38jBLQsOi6WMVQIC8c\r\nZuaDcPOBf8T/6HX7vmNFMcZLA8Ia85XtGvA=\r\n=0t8D\r\n-----END PGP SIGNATURE-----\r\n","size":55651},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.18.2_1647707127682_0.5491643354320852"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-19T16:25:31.267Z"},"0.18.3":{"name":"unplugin-vue-components","version":"0.18.3","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"license":"MIT","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"}},"typesVersions":{"*":{"*":["./dist/*"]}},"scripts":{"build":"tsup && esno scripts/postbuild.ts","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp --commit --tag --push","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@babel/traverse":"^7.15.4","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@babel/traverse":{"optional":true}},"dependencies":{"@antfu/utils":"^0.5.0","@rollup/pluginutils":"^4.2.0","chokidar":"^3.5.3","debug":"^4.3.3","fast-glob":"^3.2.11","local-pkg":"^0.4.1","magic-string":"^0.26.1","minimatch":"^5.0.1","resolve":"^1.22.0","unplugin":"^0.4.0"},"devDependencies":{"@antfu/eslint-config":"^0.18.8","@babel/parser":"^7.17.3","@babel/traverse":"^7.17.3","@babel/types":"^7.17.0","@types/debug":"^4.1.7","@types/minimatch":"^3.0.5","@types/node":"^17.0.21","@types/resolve":"^1.20.1","@typescript-eslint/eslint-plugin":"^5.14.0","bumpp":"^7.1.1","compare-versions":"^4.1.3","element-plus":"^2.0.5","eslint":"^8.10.0","esno":"^0.14.1","pathe":"^0.2.0","rollup":"^2.70.0","tsup":"5.12.1","typescript":"^4.6.2","vite":"^2.8.6","vitest":"^0.6.0","vue":"3.2.31"},"engines":{"node":">=14"},"gitHead":"89ff1dd3f177c0b7ff97cacec1afb33b2c57db58","_id":"unplugin-vue-components@0.18.3","_nodeVersion":"14.19.0","_npmVersion":"6.14.16","dist":{"integrity":"sha512-pi+BWPyN3f3AQ/Yqp6QemY8QXwIH4+ChmtcUtzcf3DD4a2926II41ZNinXp+KiN5UOSxk8fG0J6qbRpZBsD1Ew==","shasum":"b6b4720610db9c35582d20bf45a176e1e52c9a73","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.18.3.tgz","fileCount":33,"unpackedSize":280286,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiNgRkACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqtOQ/5AAv6xcuHR+uoYylWVgMEdPPyjdFLTClucpns668TIFrsVTmN\r\nAD/BPjEwcSB21RzeZElTWYZZsmcO+BUxjQgUz16n3IH0rcWH9do38OET4IQ2\r\n/km1l1KbgkeNLuudO3HJ/6p8rFigZxaXuf8u46pkdH5rup+c+/D6HBFGgg27\r\nbzPYAaxeO3eE5TPZzk06+625YX40BH4CQFwSee+UavzD5tgWUbM9ldPb7KQr\r\nHGHo9Dz0EdWaAseD1xHD8JQ2FR6EWzFjBQUaTjuLDnfhn+ggQkHPRgRtZ9FG\r\nU8iZsCFF7hO/1ZNreGY+cNRjnjucWUYToyBOeselxYe5W2Pmd8UWWoKfoqNB\r\nc5Bg0NqNbqCUG5khJg1eAS2PTkZuz7Im0QsTUhdplm1iet6KN5bx9YKiFxy/\r\nI3CVz88JN9B4w42R70Zj0vH9qQp+l8TK+FZbexAHVUQpducJmqBoUd4ft27L\r\n3HxlgHDf5lm5wOOcKacNA8nrxI4Liog5XA6UKsoW4gkeTUrvLdkftBP0MURm\r\nzKrmCsCRRtnXaDeGw+SV05TJAEH9fLbrXetEnqVbjJwqsOPdCc0KAc+ASpUw\r\nyBKmzrjWeHxDBvYBqPbjJgNtw8bS+SBwaoCw9JbjhdpKFWFzQwEiOvpEkEnJ\r\nMfpx66wkNClW+tXuQzrk2MdJcO6qrF8NOO4=\r\n=Hq2i\r\n-----END PGP SIGNATURE-----\r\n","size":55652},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.18.3_1647707236392_0.2849580977081101"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-19T16:27:20.734Z"},"0.18.4":{"name":"unplugin-vue-components","version":"0.18.4","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"license":"MIT","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"}},"typesVersions":{"*":{"*":["./dist/*"]}},"scripts":{"build":"tsup && esno scripts/postbuild.ts","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp --commit --tag --push","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@babel/traverse":"^7.15.4","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@babel/traverse":{"optional":true}},"dependencies":{"@antfu/utils":"^0.5.0","@rollup/pluginutils":"^4.2.0","chokidar":"^3.5.3","debug":"^4.3.3","fast-glob":"^3.2.11","local-pkg":"^0.4.1","magic-string":"^0.26.1","minimatch":"^5.0.1","resolve":"^1.22.0","unplugin":"^0.4.0"},"devDependencies":{"@antfu/eslint-config":"^0.18.8","@babel/parser":"^7.17.3","@babel/traverse":"^7.17.3","@babel/types":"^7.17.0","@types/debug":"^4.1.7","@types/minimatch":"^3.0.5","@types/node":"^17.0.21","@types/resolve":"^1.20.1","@typescript-eslint/eslint-plugin":"^5.14.0","bumpp":"^7.1.1","compare-versions":"^4.1.3","element-plus":"^2.0.5","eslint":"^8.10.0","esno":"^0.14.1","pathe":"^0.2.0","rollup":"^2.70.0","tsup":"5.12.1","typescript":"^4.6.2","vite":"^2.8.6","vitest":"^0.6.0","vue":"3.2.31"},"engines":{"node":">=14"},"gitHead":"b7d8bb75e4b07db224f13f5828660312f5b9f1d8","_id":"unplugin-vue-components@0.18.4","_nodeVersion":"14.19.0","_npmVersion":"6.14.16","dist":{"integrity":"sha512-nYPv7GgKKRZ/U12z6nLyjG5dsdUflTtnWvzOMLkT5p1UXT6wssN2epA/HbYV+KNLw8l+N1cGMEoaiMZrZxkh8Q==","shasum":"f835e2aea03cafe7d62537d5cd7e1daf5e013fbb","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.18.4.tgz","fileCount":33,"unpackedSize":280914,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiOrnLACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqKsRAAnnRNdFN6dFJKIjrTyHbo+vO89zP1Dk1XAm+3Wz/IHJA9KNBR\r\nf8N8y3yCTcBILjUDDcKsvZs2lcA+uGa4OlA/wYWHbQgVgjVTsSugEgAkNVg1\r\n7AfpZseY83+XX8snLC8QoXeLsdAMQKY4/vWiySFR4NfmFQQ6lSLz96M7K6DF\r\nIbPDBX5tvcbnAVlaoloVaNITpedTC6LX9hTRDmZ1gpRM8WBpWt30EJelv+2F\r\nckw3b31dwsXzSEJEH6V3dSiaUpm2o8bq+l0l64Mnbqbm6xU9hZTCtpNTHGco\r\nbFoZiJi1gvHyVijl5GiBked0CNzM52sU6+XY65mxKK49pFSSKVrcrdJouqNv\r\nYW5x/E5VMWGCaCFjCIdWcalizI3zjet/h9c40ket1Vw7tp42AeRu9RfSZV7d\r\nhOwGza6qZHpnC7yT2+l9nVS2SLycMOa65rgYvsBlnELuKbmqbfbLPzeNn9IY\r\no+0ZGcZr32M+kLcQZ1wfK8agCCicaFCfO33oTsKKNKAOH08u/5UR6jCIX4wq\r\nddCbhtTqWX31kwu0yTzIrrRQ0ttQBRHT83NeFSghniD8tqY+AP4qxllagjYE\r\n1rKBXVoLAF9J2Eu4BLNQdKh8kSfUrHgyJv78Fah30M4U0Lqr1MpbmjAYHGmI\r\n5TBZvnsf9mUABACNMvopDlc5dZTEc1k9pAk=\r\n=3Zlx\r\n-----END PGP SIGNATURE-----\r\n","size":55715},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.18.4_1648015818953_0.8858128938210335"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-23T06:10:24.320Z"},"0.18.5":{"name":"unplugin-vue-components","version":"0.18.5","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"license":"MIT","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"}},"typesVersions":{"*":{"*":["./dist/*"]}},"scripts":{"build":"tsup && esno scripts/postbuild.ts","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp --commit --tag --push","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@babel/traverse":"^7.15.4","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@babel/traverse":{"optional":true}},"dependencies":{"@antfu/utils":"^0.5.0","@rollup/pluginutils":"^4.2.0","chokidar":"^3.5.3","debug":"^4.3.3","fast-glob":"^3.2.11","local-pkg":"^0.4.1","magic-string":"^0.26.1","minimatch":"^5.0.1","resolve":"^1.22.0","unplugin":"^0.4.0"},"devDependencies":{"@antfu/eslint-config":"^0.18.8","@babel/parser":"^7.17.3","@babel/traverse":"^7.17.3","@babel/types":"^7.17.0","@types/debug":"^4.1.7","@types/minimatch":"^3.0.5","@types/node":"^17.0.21","@types/resolve":"^1.20.1","@typescript-eslint/eslint-plugin":"^5.14.0","bumpp":"^7.1.1","compare-versions":"^4.1.3","element-plus":"^2.0.5","eslint":"^8.10.0","esno":"^0.14.1","pathe":"^0.2.0","rollup":"^2.70.0","tsup":"5.12.1","typescript":"^4.6.2","vite":"^2.8.6","vitest":"^0.6.0","vue":"3.2.31"},"engines":{"node":">=14"},"gitHead":"6002cac0c35de577e5204320561f3d49b8eb3e32","_id":"unplugin-vue-components@0.18.5","_nodeVersion":"14.19.0","_npmVersion":"6.14.16","dist":{"integrity":"sha512-VPA6z/4pcKRDYtWu1H+FIpV0MADlFKG3q7YMVFzNFC3EhMVZ4WuBJ76490oKyauguNw1T1obLCuxNU9JzJ0oAQ==","shasum":"96dfad540100ed8ae8895e65c32d9b37886dc5c5","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.18.5.tgz","fileCount":33,"unpackedSize":282100,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiPwMiACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq8iw/+LAvfxFfqc2gDXn0zewHQ4rh4pKf7Ff1/ELYYBKQoa09SbiMx\r\nxeiabAZb5QEl7LQnyt1+S05yC+shImeOefxnRxcsnaSlgIJQU3LWkKPtQRur\r\ndQoJ3hxnQsiQrmEWc48E5sodcabQ8RVOegUBiAStfLWZjRUmdz8/+khbOSdA\r\nGMHaK8sm1XkuRvBIko5WeJ9HaUrS02yJbRwPvoofTbpAwuINfoG60zTEPIK+\r\nPQsn9g7gfAdU2IGFdwzA6FsKYGS78kCGeuw0P2d3Vpn80kTadGL2RuPyEZ7e\r\nYfZMa6dH1IB5Whc5PKjFMEddACp14EUP13t+lHhG6FDDjqGJmCrpTTllCmiw\r\n/pTuNph6J+Cc9rNZsEdQrr1TRMvIaBL6G/Z/GoOw3DFRUp4BMBOOLfYtb8mT\r\n8p4S2ns1RlRNL0W4FeOl81jMuJPXmeWDxlsKI1DIqa7TLgk9ONHFtcwyeB4d\r\nvEq9VSP+H1RJTnnf1cVQ9fvvDHBeQ+Gz/XyvsFvYasvVy/Fi4joSpclHX9Sq\r\nAJ/P7sUr1oyX8H9qedHjtMG0YokHqI0/LHyN+Yq3SQb1uegaDf0swf/CuV5N\r\nVExR8j6+vGoiolVpEMZap20B2B7xvg5fFWGu8poPJ6P/CS2+ofZxn3xPXSYl\r\na/rRjd6fWGbVKekuE/B6TmXv44nyvIgepv4=\r\n=TvNo\r\n-----END PGP SIGNATURE-----\r\n","size":56044},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.18.5_1648296738811_0.5617171367910354"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-26T12:12:23.640Z"},"0.19.0":{"name":"unplugin-vue-components","version":"0.19.0","packageManager":"pnpm@6.32.3","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"license":"MIT","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"}},"typesVersions":{"*":{"*":["./dist/*"]}},"scripts":{"build":"tsup && esno scripts/postbuild.ts","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp --commit --tag --push","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@babel/traverse":"^7.15.4","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@babel/traverse":{"optional":true}},"dependencies":{"@antfu/utils":"^0.5.0","@rollup/pluginutils":"^4.2.0","chokidar":"^3.5.3","debug":"^4.3.4","fast-glob":"^3.2.11","local-pkg":"^0.4.1","magic-string":"^0.26.1","minimatch":"^5.0.1","resolve":"^1.22.0","unplugin":"^0.6.1"},"devDependencies":{"@antfu/eslint-config":"^0.20.2","@babel/parser":"^7.17.9","@babel/traverse":"^7.17.9","@babel/types":"^7.17.0","@types/debug":"^4.1.7","@types/minimatch":"^3.0.5","@types/node":"^17.0.23","@types/resolve":"^1.20.1","@typescript-eslint/eslint-plugin":"^5.18.0","bumpp":"^7.1.1","compare-versions":"^4.1.3","element-plus":"^2.1.8","eslint":"^8.13.0","esno":"^0.14.1","pathe":"^0.2.0","rollup":"^2.70.1","tsup":"5.12.4","typescript":"^4.6.3","vite":"^2.9.1","vitest":"^0.9.2","vue":"3.2.31"},"engines":{"node":">=14"},"gitHead":"6da8656df72c7f080c18cd29b567b686d3c61f34","_id":"unplugin-vue-components@0.19.0","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-x9fclW9WPifXli4+bIJxIywQPssnQxbr7cFr1yEC7NuRvGhFDIDQZ8NqxE53/ZDLVJvDm0PnOSvuzLgQMeOd2g==","shasum":"73b9b1fb5eaebbbeb4755eadf1a1cf7b49ce2203","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.19.0.tgz","fileCount":33,"unpackedSize":153849,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGO36OwzSBttMkJkiXDCyzHJe2kr2HGRPo8NGvPwN73gAiEA6yS+kq32f037WcXr897X5HZbBn3rEds5YJY+P9HWMLs="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiUj0TACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpEgQ//bPM36+J9Z5rMBnoRUcP9AhFvGqbKwTOpH2k9DQtDtBaZ+CBp\r\nJjIW5oR5vA6Nwr1uXD+pfrrw7DrtIkNxfitVKSay3ZK9gS5Ft5Q7Aq7/Gw1u\r\nJHVzOnquEry0vkQg+G4u1aI/8g8soLiRAcoZ3hzLPvsvKPwhqgrsWbO05MzE\r\nJjlLzHjSPVGrovJG6frUif6uocUPts3FYCMcVHrDhBvzXIEdPV23DRZ+Y1vM\r\nXojxsspxeKKQOAyRJK1RPF7Dxxl0oGX/4MVfD0IFkc+/r8biscg8gZQMV4VE\r\neSjBt5lSyr2dIuQYvceHm5AQeJOeFSzE3XUkP2tjI4IG4cEMbov+7AWors1a\r\nTqm+wv/x4bm56SFKyLE78wnAKQGUs0tQs+z9jH2wrpvtqI2QVy9SOvWoZ+ll\r\nmkgaQtVxIbLCv3xjiUDYPf02MILkaBiFBRjU1xo2QNQiy2UgvawOoiyiM+GC\r\nuz3KrWeoBjbLYHDwfrD3HaDMry88RbJf/57jDrRA+FfciHHceQ3o7D0R9prk\r\nzclQSSVPxDCo/EcG3Y48f8IRdTH68DZAb65YU1fsfGTzojUjWKgnyPEC7UCq\r\nHvoy5vn/QPuG9TkvsGBO3ZXx6BDMtxllB+U3Ka1mFL+v5mjhVVwgjjC8t1Zd\r\ngAvrN3+eS7vULDG33w8fJ8MBrgfjseD1aW8=\r\n=D0aG\r\n-----END PGP SIGNATURE-----\r\n","size":38919},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.19.0_1649556755610_0.04611659032995363"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-04-10T02:12:39.396Z"},"0.19.1":{"name":"unplugin-vue-components","version":"0.19.1","packageManager":"pnpm@6.32.3","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"license":"MIT","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"}},"typesVersions":{"*":{"*":["./dist/*"]}},"scripts":{"build":"tsup && esno scripts/postbuild.ts","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp --commit --tag --push","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@babel/traverse":"^7.15.4","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@babel/traverse":{"optional":true}},"dependencies":{"@antfu/utils":"^0.5.0","@rollup/pluginutils":"^4.2.0","chokidar":"^3.5.3","debug":"^4.3.4","fast-glob":"^3.2.11","local-pkg":"^0.4.1","magic-string":"^0.26.1","minimatch":"^5.0.1","resolve":"^1.22.0","unplugin":"^0.6.1"},"devDependencies":{"@antfu/eslint-config":"^0.20.2","@babel/parser":"^7.17.9","@babel/traverse":"^7.17.9","@babel/types":"^7.17.0","@types/debug":"^4.1.7","@types/minimatch":"^3.0.5","@types/node":"^17.0.23","@types/resolve":"^1.20.1","@typescript-eslint/eslint-plugin":"^5.18.0","bumpp":"^7.1.1","compare-versions":"^4.1.3","element-plus":"^2.1.8","eslint":"^8.13.0","esno":"^0.14.1","pathe":"^0.2.0","rollup":"^2.70.1","tsup":"5.12.4","typescript":"^4.6.3","vite":"^2.9.1","vitest":"^0.9.2","vue":"3.2.31"},"engines":{"node":">=14"},"gitHead":"3dda2b3c4257b137ddcd72accc9d807600b8615c","_id":"unplugin-vue-components@0.19.1","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-i1mkqCf4acwkulew0+1YFEwRB4mfE9pTkiAZdm37gXxNc4U04TVGnVoEfFyavulG8kEkCRs1RChqGvV2Pta/Tg==","shasum":"571d93f01a9a646dcb33a1a643e92f3ced1d78f3","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.19.1.tgz","fileCount":33,"unpackedSize":154075,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDcTD6xLxJ/zZUPpfZU0TNCHqz09LM9i83Lt1WM4z79cAiEAljdkIb3vxY1OT+XaLR0xzN7TwuHxRlOJT1HdU+F9pew="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiUsJKACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpHFw//fqcM50c1hkItKOaieZxJrd/tHP6sTnacfQThxuEA1gSJhFDy\r\nNccUAAnqf5ZG3X81mtXVuPa3sMgi9/+d6V+zLe4IvB4OieffWtUpLiLJObVs\r\naNNXJ3051jVDaNYA2xK36R7pod411iiXXgl/BmEvqGDqIdlSzui9W3TcqP6a\r\nxRigDGeCR6v4xdDz32rM5K6c+hOa8icGjxtFbATRjHYg0BDz/kCbeG4rKrl+\r\nwDY0xZo+lDD4tcuj8nbmDRyqcT+9H6zJNuKC/Zucl+EAL3icz0H7PtFhwKng\r\nhMZaRc/WdFmUc8CtDvb3IV8cp6JDPQs+X5XAeBl3ovgJ5ehOes7i8up+NlwZ\r\njz1+W6gGAEV4MPQEXwT6u4GmDu+RAddIGqD9P43QRQs0e+V2RFmGR7Ottr8O\r\nwLLDlKpczrhMGia+woAOSCHKkomKWXzNhNAXYowyYiW3g/Ok+NlqOWGhwbHL\r\npZt6TyVfUjuZ33SbZ/kHd5T/IFmlID8/UL2sJ7PY2t1C1AJ0KZFk4iBQKHCb\r\nD5EaHCI5/z4+u4d0UfxRYpTgW8FH6MN/2I4LOeT8bhGhBbd3sC/yP9yD8Ynm\r\nCPUcNdZEkvgX6E3B2NBH6d0a05DHsepnPRBtk5iZ/bwyfIrTRYgsR6Wa8AeS\r\nBfBu9kPZCSAvw5B22Swc2OJuTKLwOx8GHz4=\r\n=2CjK\r\n-----END PGP SIGNATURE-----\r\n","size":39069},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.19.1_1649590858100_0.051041103877890404"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-04-10T13:33:41.555Z"},"0.19.2":{"name":"unplugin-vue-components","version":"0.19.2","packageManager":"pnpm@6.32.3","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"license":"MIT","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"}},"typesVersions":{"*":{"*":["./dist/*"]}},"scripts":{"build":"tsup && esno scripts/postbuild.ts","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp --commit --tag --push","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@babel/traverse":"^7.15.4","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@babel/traverse":{"optional":true}},"dependencies":{"@antfu/utils":"^0.5.0","@rollup/pluginutils":"^4.2.0","chokidar":"^3.5.3","debug":"^4.3.4","fast-glob":"^3.2.11","local-pkg":"^0.4.1","magic-string":"^0.26.1","minimatch":"^5.0.1","resolve":"^1.22.0","unplugin":"^0.6.1"},"devDependencies":{"@antfu/eslint-config":"^0.20.2","@babel/parser":"^7.17.9","@babel/traverse":"^7.17.9","@babel/types":"^7.17.0","@types/debug":"^4.1.7","@types/minimatch":"^3.0.5","@types/node":"^17.0.23","@types/resolve":"^1.20.1","@typescript-eslint/eslint-plugin":"^5.18.0","bumpp":"^7.1.1","compare-versions":"^4.1.3","element-plus":"^2.1.8","eslint":"^8.13.0","esno":"^0.14.1","pathe":"^0.2.0","rollup":"^2.70.1","tsup":"5.12.4","typescript":"^4.6.3","vite":"^2.9.1","vitest":"^0.9.2","vue":"3.2.31"},"engines":{"node":">=14"},"gitHead":"6936d5ca8ec6fc13b218201f963ade94869536d7","_id":"unplugin-vue-components@0.19.2","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-7DhQfTyHLyVIWR6VBQONLU6dDBOXtEYvZQYUpN9C+t11WOb5baIFoxfzDxkeFHTHGMhznyEOw6afHyV9JKWnig==","shasum":"960fa9983102b821ab21e873a77ae75795b589c6","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.19.2.tgz","fileCount":33,"unpackedSize":154303,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDni7BxO8KQyt/m/yT5hatbuDD0wFwh3UFZynQdBcWT6wIhAJDAh0DsZXFNx5D49+uLBC+qnSeuS4ftCvSD7o8gq6S8"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiU71nACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr5sBAAmN4mOUVALdjBZkzGQQAdhM979lfG7pHxKKYR/YAfMMa1vGZa\r\nmBkzF70NlfO/NyxUYrkaVlXU4Qu9N8RypVlpHgKqUtCHUyqxjwlejsn22tdt\r\n0UxXtTsDM8DNbUFVz8419j3FYTvjsbzEL4RHExFCKN+UFoDt6tonDsOwE9vc\r\nRkUvDC8ZsW/lhY9h/CLBiXbYHnJXrlOxwdZk3UuIID6atn0yF7sTIzjWQOte\r\nn58GL3ZmSNbCCSK61lfTCOSWoeEnlRv6Jc3jPL4SFaMM7SUlLWOGspaPntdx\r\nY6gBd5X+1vtvCnzRJnv9EYYqy+AYVNO4jjZZkka2DET+Dwv4BZyFyiBL6oJ4\r\nS8AjJfo49NNlhH2f0cDkCFbU1cmg+48u9/eJgGxChg75ACPejiaNuZuHvBm7\r\nH52QfDyx/F3a/50MVWsAdQI93WUxswjD+qUluxhJyS4PK6UHxxd3gBLRXRmJ\r\nMYW6zbs8bdZlOC/I3cCWniDUC7aXcVSKOcPJOryy5398uVZoainZeYDAguF1\r\nsFPiJ2hhhB9M29eKAZkO+/bugG+xs5PkDGl9kOd0PxWXCgw6Su85UrfTnLdQ\r\nAyw9FJJM8CnEURmDNuClzv4SZ2Ap/vI5qSf5XDvjMKwOKUubeELw3f6vGZyJ\r\nKS+siW9anj6TdAGr6e9TPKyfiDWEFeNdc1o=\r\n=Z5h7\r\n-----END PGP SIGNATURE-----\r\n","size":39075},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.19.2_1649655143128_0.8139613139388113"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-04-11T05:32:27.608Z"},"0.19.3":{"name":"unplugin-vue-components","version":"0.19.3","packageManager":"pnpm@6.32.3","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"license":"MIT","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"}},"typesVersions":{"*":{"*":["./dist/*"]}},"scripts":{"build":"tsup && esno scripts/postbuild.ts","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp --commit --tag --push","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@babel/traverse":"^7.15.4","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@babel/traverse":{"optional":true}},"dependencies":{"@antfu/utils":"^0.5.0","@rollup/pluginutils":"^4.2.0","chokidar":"^3.5.3","debug":"^4.3.4","fast-glob":"^3.2.11","local-pkg":"^0.4.1","magic-string":"^0.26.1","minimatch":"^5.0.1","resolve":"^1.22.0","unplugin":"^0.6.1"},"devDependencies":{"@antfu/eslint-config":"^0.20.2","@babel/parser":"^7.17.9","@babel/traverse":"^7.17.9","@babel/types":"^7.17.0","@types/debug":"^4.1.7","@types/minimatch":"^3.0.5","@types/node":"^17.0.23","@types/resolve":"^1.20.1","@typescript-eslint/eslint-plugin":"^5.18.0","bumpp":"^7.1.1","compare-versions":"^4.1.3","element-plus":"^2.1.8","eslint":"^8.13.0","esno":"^0.14.1","pathe":"^0.2.0","rollup":"^2.70.1","tsup":"5.12.4","typescript":"^4.6.3","vite":"^2.9.1","vitest":"^0.9.2","vue":"3.2.31"},"engines":{"node":">=14"},"gitHead":"ab0b25a1fe19da3a13a479bcffcf0054da39fc27","_id":"unplugin-vue-components@0.19.3","_nodeVersion":"14.19.1","_npmVersion":"6.14.16","dist":{"integrity":"sha512-z/kpYJnqrJuWglDNs7fy0YRHr41oLc07y2TkP3by6DqPb1GG9xGC9SFigeFwd4J7GVTqyFVsnjoeup7uK7I2dA==","shasum":"4c0aa419d118aee1c010d0da9d38ead45e735d63","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.19.3.tgz","fileCount":33,"unpackedSize":154375,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAQjU7WOUanVekH9yiTYegXJYyxjC1WihEiRhCyGIK+0AiBYHZT+wXgTaBWogc5dM5t0VqVyouF/Uk7VdnKaPSsMaA=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiV+7+ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqe3g//fb+oewCfxrl4+FyS41RD9x8rLgzl9s7TqLC4T3u6N4tCf/1M\r\nDUUEvQ1/X0fxJmAzhRdBZ8gfsvHJpwiarm8LaagdLnICB1PVqrKUFg6tWT8I\r\nOTkoPKTAPBbFM1v64slufsbvxHwOoA1LawNxZ+5ecM8E3io58Jl/oY8DJRfp\r\nyCUtaBZ5kFI6zUr7OyOaS6+qn8muwF/dnz09W2NIIQkHlPXfgVavoldSFFZm\r\naqOHDDZaF0IrHDKxeJZmQzai4HB5Moh5qSyVTMvNV1pGUvGrmruEbkxKZaUy\r\n0z4Hvg83GAynDyQRMIZNcEWpNy3wcEtra6Ozt66FDUPL7gDvTR6pCMJ4ScKb\r\nPl/5I0bHPF8zS6GmVZvLIY+LWH3OdPsNAe/D6F6izKhNmgqeH931MYCC2UGm\r\nrJM55Yhp+X16CBi8/Aw9ef74UaYAcQ+qUvhm3W1PcQLS80W+F2BTe0RpYmQI\r\nJmz4BxWpUc/8U6P4GURVe7zj9cGdUCeraIfmUzKOZMHSwc+pcIO5SFQHpgb8\r\nDYPJY+SMDW9daYEXyhykqk9r10ihajDD3imYOIwey0s136OY+wbG4K3ov3r2\r\nV9g8s9DHN3DtdUGllRELrdaIVXfphOsnBGoO/WoFAaGXzQC0ISuKLA+4OyGk\r\nceByn2Uur1UnpxQdqRxLRzhyPwcTYq0LkHI=\r\n=5oB0\r\n-----END PGP SIGNATURE-----\r\n","size":39129},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.19.3_1649929982470_0.07493254526967097"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-04-14T10:09:47.448Z"},"0.19.5":{"name":"unplugin-vue-components","version":"0.19.5","packageManager":"pnpm@6.32.3","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"license":"MIT","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"}},"typesVersions":{"*":{"*":["./dist/*"]}},"peerDependencies":{"@babel/parser":"^7.15.8","@babel/traverse":"^7.15.4","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@babel/traverse":{"optional":true}},"dependencies":{"@antfu/utils":"^0.5.1","@rollup/pluginutils":"^4.2.1","chokidar":"^3.5.3","debug":"^4.3.4","fast-glob":"^3.2.11","local-pkg":"^0.4.1","magic-string":"^0.26.1","minimatch":"^5.0.1","resolve":"^1.22.0","unplugin":"^0.6.3"},"devDependencies":{"@antfu/eslint-config":"^0.23.0","@babel/parser":"^7.17.10","@babel/traverse":"^7.17.10","@babel/types":"^7.17.10","@types/debug":"^4.1.7","@types/minimatch":"^3.0.5","@types/node":"^17.0.31","@types/resolve":"^1.20.2","@typescript-eslint/eslint-plugin":"^5.22.0","bumpp":"^7.1.1","compare-versions":"^4.1.3","element-plus":"^2.2.0","eslint":"^8.15.0","esno":"^0.14.1","pathe":"^0.3.0","rollup":"^2.72.1","tsup":"5.12.7","typescript":"^4.6.4","vite":"^2.9.8","vitest":"^0.12.1","vue":"3.2.33"},"engines":{"node":">=14"},"scripts":{"build":"tsup && esno scripts/postbuild.ts","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","release":"bumpp --commit --tag --push","test":"vitest","test:update":"vitest --u"},"_id":"unplugin-vue-components@0.19.5","_integrity":"sha512-cIC+PdQEXmG+B1gmZGk4hws2xP+00C6pg3FD6ixEgRyW+WF+QXQW/60pc+hUhtDYs1PFE+23K3NY7yvYTnDDTA==","_resolved":"/Users/antfu/i/unplugin-vue-components/unplugin-vue-components-0.19.5.tgz","_from":"file:unplugin-vue-components-0.19.5.tgz","_nodeVersion":"16.14.2","_npmVersion":"8.8.0","dist":{"integrity":"sha512-cIC+PdQEXmG+B1gmZGk4hws2xP+00C6pg3FD6ixEgRyW+WF+QXQW/60pc+hUhtDYs1PFE+23K3NY7yvYTnDDTA==","shasum":"ba26d741a4853f1439255c5d89898a1a9f2ea458","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.19.5.tgz","fileCount":33,"unpackedSize":172420,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCGxiGihDQ36M9dKQ2gdrteR9nlueUC8bH76tZ+ANJVPwIhAL+BmVAZ0u6AzvfdnCgR7M1KS+R7DuK+TpPVrHfxgr3f"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJieRF9ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrRkw//WSHUZd1zvlWasSc7PbsV+S8vmI0YxLqvu4C7GUB8ZU2ZJynR\r\nav7AXInWkA6icPcekNeb5PMLSMcP6PCfnY/76D4Mf0wMnWcNtdkXUK48qbzG\r\npMbsv2Woubo3ClEazCFL0mYrAacqUrYTXFau8/lLHA4GNlwtRCDIf7CzrPRX\r\nkq9ycP4rsSvnyigAUu+0wOvt9jPto2i4x9hmTd6ObAIaRBWYKHhQvllzGeUw\r\nKX9f62UxysOJY410NZMegsah87XXPYJF1dKiBGUohnvue8JcMwPWUNeeCFnu\r\n6dkHLrIkZsGgc9/FbDoKjo1vHA/ZfXJSzopIbkHrflw0xonFxsaTg3ruZS1D\r\nDHaY3cqEHYDuDldpLFCmiJULefsqvEPRf7/o8RCgU/xfbqCQPP2EK0JpCoFA\r\nkbLBfVXDv6t27kd3GxDuvgNLj3bNAeyqXknH+v0RyQ8JgZefb5qDZJbNx3oI\r\nrkYit0UI70Y+YI1j0e1S3JWrzoLjOPgWN8Sk6JUFqP6NjkCF+FsHXil+e5YM\r\nJTvNIdio+X35SDazOAeMH9C7EgKz9wciEVQ5oDXSGtnOSfAVvUJAuBFMe/Zr\r\n8aK/rwW+2pbaSvzOWkzjvtnp219aw+zBBvzDVRikgL9cnnLoUd74iriFqv1I\r\nMnXRTvIT+1/iv9Q+xHlkyejHsnaT/sN3e5o=\r\n=PKWN\r\n-----END PGP SIGNATURE-----\r\n","size":41590},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.19.5_1652101501537_0.9522872860450378"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-05-09T13:49:08.053Z"},"0.19.6":{"name":"unplugin-vue-components","version":"0.19.6","packageManager":"pnpm@7.1.5","description":"Components auto importing for Vue","homepage":"https://github.com/antfu/unplugin-vue-components","bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"license":"MIT","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"funding":"https://github.com/sponsors/antfu","main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"}},"typesVersions":{"*":{"*":["./dist/*"]}},"scripts":{"build":"tsup && esno scripts/postbuild.ts","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp --commit --tag --push","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@babel/traverse":"^7.15.4","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@babel/traverse":{"optional":true}},"dependencies":{"@antfu/utils":"^0.5.1","@rollup/pluginutils":"^4.2.1","chokidar":"^3.5.3","debug":"^4.3.4","fast-glob":"^3.2.11","local-pkg":"^0.4.1","magic-string":"^0.26.1","minimatch":"^5.0.1","resolve":"^1.22.0","unplugin":"^0.6.3"},"devDependencies":{"@antfu/eslint-config":"^0.23.0","@babel/parser":"^7.17.10","@babel/traverse":"^7.17.10","@babel/types":"^7.17.10","@types/debug":"^4.1.7","@types/minimatch":"^3.0.5","@types/node":"^17.0.31","@types/resolve":"^1.20.2","@typescript-eslint/eslint-plugin":"^5.22.0","bumpp":"^7.1.1","compare-versions":"^4.1.3","element-plus":"^2.2.0","eslint":"^8.15.0","esno":"^0.14.1","pathe":"^0.3.0","rollup":"^2.72.1","tsup":"5.12.7","typescript":"^4.6.4","vite":"^2.9.8","vitest":"^0.12.1","vue":"3.2.33"},"engines":{"node":">=14"},"gitHead":"3b0352bcd073fbe81b396b7b402876b7942d5fab","_id":"unplugin-vue-components@0.19.6","_nodeVersion":"14.19.2","_npmVersion":"6.14.17","dist":{"integrity":"sha512-APvrJ9Hpid1MLT0G4PWerMJgARhNw6dzz0pcCwCxaO2DR7VyvDacMqjOQNC6ukq7FSw3wzD8VH+9i3EFXwkGmw==","shasum":"268f6d2787d96257d5d1698908d8f34ef3ec5803","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.19.6.tgz","fileCount":33,"unpackedSize":162649,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGSMo9IqKEZmlUyNPDQCqu4w4kyU9KSQfzSiCDlTanAlAiBgr+BQybL6ZNUT5eWqiYjosU73kt3L2rvNKgi4CWX2jw=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJikF2+ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrTGQ/8Cml9XBXY9VKIVZmvzi8VUMG97hBEQx7+24tHshZcSByII99/\r\nUchUpLz2B0wmkay5qD6t9O1j9WiU0zEDftxmGlmmYgv5D1ataWG5LxQR0cJ7\r\nC2u0B3FWT65xU3QxbyZ838gPlIP3xBULAHAkAFmk3W4HaCTp/x055pI5xk5V\r\n0hAL/pAnb/iJMe2Q4xE2v233uYLrFcnj6xIiCCSAhJbcwYkAOkepCoH05Q4t\r\ng/gezqBXS3315etmkOHKx/xoPAqT5gWLPklXxo3vEq7PjMLS7TzU67hs6jTR\r\nCJEvJKZr9Q4fZkVhnFu8kuZte+M8AtHCCi4gYJTKcMeiSmOswj21qweSd1Oa\r\nJwAFu1c+O7YZNi1nTD8NTnNzpo4Gk1E3K6UAkPjLpLraKr9kBcTSzspH1IwW\r\nbywQKVo5GtFKL77pWYQPczvuoqXpVBQQ3sWINES2gT3XtP+4IlKmm3Te7PaZ\r\nmVm/kZ8mn5e5IRAuvqV8rP2z/VxrEfOI02uPw3d7dQAA6gOR4RvUzNEztWaM\r\n2kc6e0tAL6M5aljc+2h1Tzr+uZ5M48umi1xuD7dYCtSC8i0jQ2MIWu3iJU3D\r\nl/l2XU53EM2ZHg36VtqktDT7+aHBQpAh4PiLC4sg5jVVuYa+7MFtNpRWC1O6\r\nNfa8ZYAnfw2P9Q5fRDvj0/Btp7iJ06e3Lrk=\r\n=Zjeb\r\n-----END PGP SIGNATURE-----\r\n","size":40702},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.19.6_1653628350428_0.23359009540757047"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-05-27T05:21:09.870Z"},"0.20.0":{"name":"unplugin-vue-components","version":"0.20.0","packageManager":"pnpm@7.1.5","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-vue-components","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"peerDependencies":{"@babel/parser":"^7.15.8","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true}},"dependencies":{"@antfu/utils":"^0.5.2","@rollup/pluginutils":"^4.2.1","chokidar":"^3.5.3","debug":"^4.3.4","fast-glob":"^3.2.11","local-pkg":"^0.4.1","magic-string":"^0.26.2","minimatch":"^5.1.0","resolve":"^1.22.1","unplugin":"^0.7.0"},"devDependencies":{"@antfu/eslint-config":"^0.25.1","@babel/parser":"^7.18.5","@babel/types":"^7.18.4","@types/debug":"^4.1.7","@types/minimatch":"^3.0.5","@types/node":"^18.0.0","@types/resolve":"^1.20.2","@typescript-eslint/eslint-plugin":"^5.29.0","bumpp":"^8.2.1","compare-versions":"^4.1.3","element-plus":"^2.2.6","eslint":"^8.18.0","esno":"^0.16.3","estree-walker":"^3.0.1","pathe":"^0.3.0","rollup":"^2.75.7","tsup":"^6.1.2","typescript":"^4.7.4","vite":"^2.9.12","vitest":"^0.15.2","vue":"3.2.37"},"scripts":{"build":"tsup && esno scripts/postbuild.ts","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","release":"bumpp --commit --tag --push","test":"vitest","test:update":"vitest --u"},"_id":"unplugin-vue-components@0.20.0","_integrity":"sha512-8k6x3Wl5paNwhva3YsUHACwtiCrU7V6EVPM0AHuxa/i7xVKg0WUWsSjbIrbQxlJjt3JFsYOtd6i2cZ2zQNoOOA==","_resolved":"/private/var/folders/30/nymxcyb909ggq2j5lwn7b_600000gn/T/38bada784414266927066fd3093b4026/unplugin-vue-components-0.20.0.tgz","_from":"file:unplugin-vue-components-0.20.0.tgz","_nodeVersion":"16.14.2","_npmVersion":"8.8.0","dist":{"integrity":"sha512-8k6x3Wl5paNwhva3YsUHACwtiCrU7V6EVPM0AHuxa/i7xVKg0WUWsSjbIrbQxlJjt3JFsYOtd6i2cZ2zQNoOOA==","shasum":"bd2851c776ccb01022280d4704c6ed0178cfc0e3","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.20.0.tgz","fileCount":37,"unpackedSize":180645,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDcuxw5TFAqSzSSP/Btcyz+EUiVtEiGuKgMXlMnhsLCggIgaNx9GpcH6MlihoISGMl7rxIiLXfNJzUvJg5y/Lamuak="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJitEPUACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrRfg/+M3R2hlFVyx/tciuR3qWTsXNRZUDC1usr0g0t8odKUaP/RDTD\r\nX5Wu0efr7QscxBxSUUrikrnMtNccUS4z3LGH/hFg7g/WDnqYh4uUVh0eLNtH\r\nX6tXx6Uc0pnxHXWnLgeqwj7nlO3XHnvSd8A76YEk4J4dCduevlD2GjnhIRrd\r\ndItPbdEUnbV4GSDxj0Tw5WAdMtrOGlFjn9EebeD05O5HfYrwtgrnzQnlD2G0\r\nVugN0KOf5EGslrhmWUlklOsw54yoeqZBt1wIbaqCTE6MH5wialdMqWsoGXCt\r\nZDRSvnssnNmtLXwALE39d31qwcUhETpgkr9cudN2Tr6X7nFstMVxJOyD161t\r\n3d4tqsY+qygD57m+QJWPF2YO2aSJCQP5ddHL9KDL+jnZqFEatQeg4/2NHCKS\r\nCNn1ySQEg4KlgIX+erwgs5vNpQW18YVMJLSvKMgZe9WTmJhQDHb/R28KO6rU\r\nddATeYuL40b+Wzw4u7Le5ppbgJ2PwYEoxwV1GQV9vHT6rvipAQOOKNl3nza7\r\np4xIGAwlV6x9EocRCkL1vn9O11Cpc+a/VGduZYF6FlOi5DXc+aw53UFSqhLl\r\npxXDXKmbDSh9skgG3LHpHeTeZAc/OrlTXk4HIpD5QGl+1XCHFL0uM/l9B++Y\r\nMS/wVZBL5QEz15IK2QkRIJa5bkzJbMdi33Y=\r\n=am1B\r\n-----END PGP SIGNATURE-----\r\n","size":43646},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.20.0_1655981012266_0.8785707133613889"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-23T12:52:07.561Z"},"0.19.9":{"name":"unplugin-vue-components","version":"0.19.9","packageManager":"pnpm@7.1.5","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-vue-components","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"scripts":{"build":"tsup && esno scripts/postbuild.ts","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp --commit --tag --push","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@babel/traverse":"^7.15.4","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@babel/traverse":{"optional":true}},"dependencies":{"@antfu/utils":"^0.5.2","@rollup/pluginutils":"^4.2.1","chokidar":"^3.5.3","debug":"^4.3.4","fast-glob":"^3.2.11","local-pkg":"^0.4.1","magic-string":"^0.26.2","minimatch":"^5.1.0","resolve":"^1.22.0","unplugin":"^0.7.0"},"devDependencies":{"@antfu/eslint-config":"^0.25.1","@babel/parser":"^7.18.5","@babel/traverse":"^7.18.5","@babel/types":"^7.18.4","@types/debug":"^4.1.7","@types/minimatch":"^3.0.5","@types/node":"^18.0.0","@types/resolve":"^1.20.2","@typescript-eslint/eslint-plugin":"^5.28.0","bumpp":"^8.1.0","compare-versions":"^4.1.3","element-plus":"^2.2.5","eslint":"^8.17.0","esno":"^0.16.3","pathe":"^0.3.0","rollup":"^2.75.6","tsup":"^6.1.2","typescript":"^4.7.3","vite":"^2.9.12","vitest":"^0.15.1","vue":"3.2.37"},"gitHead":"92ae1f69139be9132a7c7cb902c2662e7e4d5e84","_id":"unplugin-vue-components@0.19.9","_nodeVersion":"16.14.2","_npmVersion":"8.8.0","dist":{"integrity":"sha512-i5mZtg85euPWZrGswFkoa9pf4WjKCP5qOjnwOyg3KOKVzFjnP3osCdrunQMjtoMKehTdz1vV6baZH8bZR4PNgg==","shasum":"87e913f3cf8cd1d36c6f5b597ca7a46cddb6229b","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.19.9.tgz","fileCount":33,"unpackedSize":167733,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIADIA1yezz+nmVKN0t7UO2xMzxH+TnxTIYhabwxEr/TqAiEAg5AVihB8EcrK53aHkfu4y/Sz6Q98d/pb/Y3+kLfchkM="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJitEQDACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpE/A/+Mw1+QEiy+7I+e1vHH1+9NhvvvJwHsyof4dTWu6peq4M77sXA\r\nTPrV4z8blt0h2fb0VtX4bO7t9qJYtToDWl0BrGmM2DkaHEZi39/kOCUoQjMY\r\n3nUQ5gvDCFBn5rrZSFeDf1GEuKdH+cM5shzulD2XFYADG8Bt9xE28/hl1jvJ\r\nBEc4KTH7nOEPT5Ygi9HV3K8ePzB6OQiUs4uE58WBcEBTvSsHj0Fllop7ETc0\r\nAhhTUE9L4RKnvP/bqDy0v2Y5b4tJOlm1lTCUj/9LJKZRpZ0yl53iOw/rIOgH\r\n1JhaX9qPb+4RaYvVuBAaw/gyIC3Z/AE+NWUfGHJSuTY0Zo5Rlpq6M8IghY/U\r\nwqXfCFOKwVQaJ70pQDHFYgcpVUi2B8c3suVwZFEqVkLXjHAjbKRFMNH1n1Us\r\nCAG+jmGvDmRGZMHXhKsrTOBwRK56X9cvWOjMPuhwzcMpRlTYgZtPE4hjQRGp\r\nlz9aqMe/lvW2P7g6vLivY5UWtHiTqdz9czZhEjWJ/g06XAlfOWsQIlxT1TqY\r\nLeGjcjcCtCcKQgUVXDOvmtFWk3paMFnLQkTi1NMhj+GKYmv0f4pP2Kd7Uvh6\r\nN4uV/ELsQb6jY+Gk1OV7E92s7kBGn6GU2yI8TXxuE05PQQkUi24qmUIzSq5u\r\n62b7H06mDEBcycP7h0fv3iK2TcGlpUsNqiM=\r\n=qpI1\r\n-----END PGP SIGNATURE-----\r\n","size":41362},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.19.9_1655981058817_0.19005993408572053"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-23T12:52:07.711Z"},"0.20.1":{"name":"unplugin-vue-components","version":"0.20.1","packageManager":"pnpm@7.1.5","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-vue-components","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"scripts":{"build":"tsup && esno scripts/postbuild.ts","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp && npm publish","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true}},"dependencies":{"@antfu/utils":"^0.5.2","@rollup/pluginutils":"^4.2.1","chokidar":"^3.5.3","debug":"^4.3.4","fast-glob":"^3.2.11","local-pkg":"^0.4.1","magic-string":"^0.26.2","minimatch":"^5.1.0","resolve":"^1.22.1","unplugin":"^0.7.0"},"devDependencies":{"@antfu/eslint-config":"^0.25.2","@babel/parser":"^7.18.5","@babel/types":"^7.18.4","@types/debug":"^4.1.7","@types/minimatch":"^3.0.5","@types/node":"^18.0.0","@types/resolve":"^1.20.2","@typescript-eslint/eslint-plugin":"^5.29.0","bumpp":"^8.2.1","compare-versions":"^4.1.3","element-plus":"^2.2.6","eslint":"^8.18.0","esno":"^0.16.3","estree-walker":"^3.0.1","pathe":"^0.3.0","rollup":"^2.75.7","tsup":"^6.1.2","typescript":"^4.7.4","vite":"^2.9.12","vitest":"^0.16.0","vue":"3.2.37"},"gitHead":"f5ddbb4d171dbb4985f47e46f2503553485cf869","_id":"unplugin-vue-components@0.20.1","_nodeVersion":"16.14.2","_npmVersion":"8.8.0","dist":{"integrity":"sha512-I70rKUvnJXxBvvTvKhjMV6jXh48BdiUNn2jcQiTdZjqBA3Xgkze31tdc4KBX46yryIy0y6pVaZ9gVBNPrF785g==","shasum":"a2a2f61d0d0b2f5331262a0864cf882996cecdcd","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.20.1.tgz","fileCount":37,"unpackedSize":180976,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDoa8huJEJ2KJhfKtG+gM8hY88WftncUhKrl3GsQ/c5JAIhAI8cPOx3PsEvU8G1AleJo4+yaBkACyFbYDBQqDQJHFwY"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiuGDDACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpZ3Q//Q8CMyzoTvo1QsFV7VPAI9MpDiX9AGHU4QunZlmbXTMieGySv\r\n88US1I/WDpAji4235wqkzT6Anu3lwq/QHVTY5yMfI0AhbFA+EhYC9jVJMgI5\r\npg9pui/sqwpYaQXEbs5EOhEbkt5aQKKAxh7Xnh+WidpA+hw59UXbuqX+RSBk\r\nZpZO+lZ/ms8j+MHK+gQkA6uF/ySoglnFjv5knkcqX/wdayWC0D5BAwOU7hmE\r\nD5qV/sUo6r4In//hpQD0gTpefZ6bVv9PtAyvH6T+SBwF9/BZTsQe7A53JFBK\r\nol/JG57/CjiaVMV827b7zRyXuMQZr3cF9Diy3WV5cDrQ6Y+7mtXajIse7YM/\r\nT9Y7CC6zPbt9b92ywE2YaZzE0w3z8TUHSsIK+VKBz3WTdf+vhRB4TSelQGoO\r\nt39ivdkkjyzxdROMe35SdBmOSwGAlSgMbLyaTaFCpu5+8Oad9dsQ6LjuEpj0\r\nsFp4mPihJCs1dGGwhaqESfHUzHIZELWRHWaJ77w3HjAQTvc/TnaAcuV4r3Rx\r\ntYv0znt55QPJ9NT5Cipz40rFzE/9tTRC4YcK887pG4miNTZIvrw/hmTQxEbx\r\nLwzdmYB1lXo+zAP0bkJrhL7Xd14MDVjv3NA4wLo7+IsqQeyjIKiKluOPl4d/\r\nP3ZrQt03E0ETpFpkz0qxjVIWI1Kz7J5P1hk=\r\n=8z8I\r\n-----END PGP SIGNATURE-----\r\n","size":43422},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.20.1_1656250562974_0.8199043948034161"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-26T13:36:07.975Z"},"0.21.0":{"name":"unplugin-vue-components","version":"0.21.0","packageManager":"pnpm@7.1.5","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-vue-components","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"scripts":{"build":"tsup && esno scripts/postbuild.ts","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp && npm publish","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true}},"dependencies":{"@antfu/utils":"^0.5.2","@rollup/pluginutils":"^4.2.1","chokidar":"^3.5.3","debug":"^4.3.4","fast-glob":"^3.2.11","local-pkg":"^0.4.1","magic-string":"^0.26.2","minimatch":"^5.1.0","resolve":"^1.22.1","unplugin":"^0.7.1"},"devDependencies":{"@antfu/eslint-config":"^0.25.2","@babel/parser":"^7.18.6","@babel/types":"^7.18.7","@types/debug":"^4.1.7","@types/minimatch":"^3.0.5","@types/node":"^18.0.0","@types/resolve":"^1.20.2","@typescript-eslint/eslint-plugin":"^5.30.0","bumpp":"^8.2.1","compare-versions":"^4.1.3","element-plus":"^2.2.7","eslint":"^8.18.0","esno":"^0.16.3","estree-walker":"^3.0.1","pathe":"^0.3.2","rollup":"^2.75.7","tsup":"^6.1.2","typescript":"^4.7.4","vite":"^2.9.13","vitest":"^0.16.0","vue":"3.2.37"},"gitHead":"8a94f066ff0af091f506aa4f50bcb5252df259c2","_id":"unplugin-vue-components@0.21.0","_nodeVersion":"16.14.2","_npmVersion":"8.8.0","dist":{"integrity":"sha512-U7uOMNmRJ2eAv9CNjP8QRvxs6nAe3FVQUEIUphC1FGguBp3BWSLgGAcSHaX2nQy0gFoDY2mLF2M52W/t/eDaKg==","shasum":"b0cbaee7ea54d576d0451326df4ce87068c37a4e","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.21.0.tgz","fileCount":37,"unpackedSize":186074,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICWHZHqYqE8ncDrfEMLcbfsEQU2uridSltx673soPPpxAiBitQ2L/E87PCSnvhxgqZy2RoZFmUQhkP51JDqGOAc2Ww=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJivq/UACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoEJA//YvqGmyYeNXbFxZVBSwyABJNA+zSdyigMxoFs2N2DkgREWQDR\r\ntmf9M2Ny6QtLtRHJ5l6kS7LYBNdzN0e2+Jho/uHIk3o2fd9I3i0h5T1fSjuC\r\nifE87hYKvMtKebq9+NhNfSmJtnswr7HUWDm3tdu6hlQ3qKWVdochBeXqo5rb\r\ns79sV9pRyKQlzOjH6XRJybeN0rmUsRIVKkfjkd8o2M/j5kXoysM0+qk5a6BD\r\nmCcunUuP+s3rOqCblWFh+TPlkICqsoN6ehx8R4TZuUHCSRKRXNnWd0bDF4tw\r\nGniqqWOA3xlc4UY7dl6sLLPINF8meMD6AG/Rioy0IO4yl+xPQffDfk226X1G\r\n9bSwidc0uk+Xuu5WZEKTh7ITijMzAdolFedKTMgmX0zUncGU5IIu0MgpHuof\r\nJQevZaUvOTtavGto0J56cog73VolXSSEch+CB52JKzyqk4iIzw7Fzj+uyZth\r\nhFHsxNqzCCRJmfzfTnGUqKheJKgVh3ytdv6zYSQDve9W4vDtCc6+DBXboTNS\r\nX8y1nrPUyNbewFIRGnQuAOTvbmNHTjXsQELrafi8kTovz5aQXEhonl5ppLRZ\r\njIZsizSOAmdsmUaV6OtiEpL2miimAp4eS5ZKlIxuLdZGCXjSlg9HtdHYxxz2\r\nObJ6ewBpfXm4bW2XB+VNPT06vlWEEid+E8E=\r\n=5vDU\r\n-----END PGP SIGNATURE-----\r\n","size":44417},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.21.0_1656664020008_0.5977142458737545"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-01T13:39:15.368Z"},"0.21.1":{"name":"unplugin-vue-components","version":"0.21.1","packageManager":"pnpm@7.1.5","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-vue-components","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"scripts":{"build":"tsup && esno scripts/postbuild.ts","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp && npm publish","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true}},"dependencies":{"@antfu/utils":"^0.5.2","@rollup/pluginutils":"^4.2.1","chokidar":"^3.5.3","debug":"^4.3.4","fast-glob":"^3.2.11","local-pkg":"^0.4.1","magic-string":"^0.26.2","minimatch":"^5.1.0","resolve":"^1.22.1","unplugin":"^0.7.1"},"devDependencies":{"@antfu/eslint-config":"^0.25.2","@babel/parser":"^7.18.6","@babel/types":"^7.18.7","@types/debug":"^4.1.7","@types/minimatch":"^3.0.5","@types/node":"^18.0.0","@types/resolve":"^1.20.2","@typescript-eslint/eslint-plugin":"^5.30.0","bumpp":"^8.2.1","compare-versions":"^4.1.3","element-plus":"^2.2.7","eslint":"^8.18.0","esno":"^0.16.3","estree-walker":"^3.0.1","pathe":"^0.3.2","rollup":"^2.75.7","tsup":"^6.1.2","typescript":"^4.7.4","vite":"^2.9.13","vitest":"^0.16.0","vue":"3.2.37"},"gitHead":"10b7985b61ad71fcaf5e6bbd2db2ecd0a91d2ade","_id":"unplugin-vue-components@0.21.1","_nodeVersion":"16.14.2","_npmVersion":"8.8.0","dist":{"integrity":"sha512-8MhIT323q1EUu7rz6NfQeiHqDrZKtygy6s9jzcQAuuZUM2T38SHlPT5YJjBOZmM0Bau6YuNTKfBBX4iHzeusaQ==","shasum":"8ff156da1faaef368d8fad9fa7573c80ad4ccfa0","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.21.1.tgz","fileCount":37,"unpackedSize":186305,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCMxSaJ6y0bM/enbTfPNY5HYVkG5Uc+NNDHffHSZ0VrIgIgAxBmqFmb0FCIGo1TI4gEg1fa6s8WNul9mr2KR7dCPWM="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJixQk9ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrAJQ//VHvg3G0fj9AjGQHb6ERxDU+7IUK3lT1yTcNo1Ji+wOby0hCP\r\np1TdVidesAiGlwCjYsQfJw5l0AkpFoK1iA9eRcXTbzahEdHo4Uk91mOJfQfw\r\n1/pWFSHUfBQZtuDKwy+faJ1KFclUYt3a1gRLwj0NNp96Kg9NrfvOW35HY/kf\r\n+Bn60opJVN9erGEqm25F+ZZHQ6goV1do8M86hCiiNAb9kqCFq9VcqiElmBxX\r\nK7j0/KCRO2+Ke/VARmOMjB28zvfXDBPDZYie1F87pD5JXVq8MnKKBrlSmAt6\r\nfl7dnBR3EPhkIUUPqUniO9w8GehINPta1ZkZXbv+x3WOMvHFII5EE8/Lo3hC\r\nLfp4WLeaM7G1h+sG3wJ0Vtr/zSWdYuJ0MewGwe+epTEpV9veheKCEjv5gCaz\r\n58c9sEilOnad7GV82bY5+JXxo4w8cz9oruiCG/5z9Y+hUo5T9WINADuShEyy\r\nji5cBU/piUW20dm3yRuSVXJy4bMrXbketugYTkmYtwja8bpcTbJPUiJ5NLRa\r\nTrQneVA9Yak8NoQm/SH+nYSMlaqvI2L3+hD8ZUlPZqTTK41d8cU3Vfoh0+Cz\r\nBrfGtd+ZU0gPM3PQ+Q0PqzLWH9jny+GZigJryImzoCJ5yAjMkHimsemjY67b\r\n9pSg5jig7qOyRMqYvkoPLgyxmXTrNeaFQ/o=\r\n=GNNa\r\n-----END PGP SIGNATURE-----\r\n","size":44368},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.21.1_1657080125226_0.6527270046696692"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-06T04:02:20.910Z"},"0.21.2":{"name":"unplugin-vue-components","version":"0.21.2","packageManager":"pnpm@7.1.5","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-vue-components","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"scripts":{"build":"tsup && esno scripts/postbuild.ts","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp && npm publish","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true}},"dependencies":{"@antfu/utils":"^0.5.2","@rollup/pluginutils":"^4.2.1","chokidar":"^3.5.3","debug":"^4.3.4","fast-glob":"^3.2.11","local-pkg":"^0.4.2","magic-string":"^0.26.2","minimatch":"^5.1.0","resolve":"^1.22.1","unplugin":"^0.7.2"},"devDependencies":{"@antfu/eslint-config":"^0.25.2","@babel/parser":"^7.18.9","@babel/types":"^7.18.9","@types/debug":"^4.1.7","@types/minimatch":"^3.0.5","@types/node":"^18.6.1","@types/resolve":"^1.20.2","@typescript-eslint/eslint-plugin":"^5.31.0","bumpp":"^8.2.1","compare-versions":"^4.1.3","element-plus":"^2.2.10","eslint":"^8.20.0","esno":"^0.16.3","estree-walker":"^3.0.1","pathe":"^0.3.2","rollup":"^2.77.0","tsup":"^6.2.0","typescript":"^4.7.4","vite":"^3.0.3","vitest":"^0.19.1","vue":"3.2.37"},"gitHead":"8872198dca76eccdc554109ad50beb5135f7e861","_id":"unplugin-vue-components@0.21.2","_nodeVersion":"16.14.2","_npmVersion":"8.8.0","dist":{"integrity":"sha512-HBU+EuesDj/HRs7EtYH7gBACljVhqLylltrCLModRmCToIIrrNvMh54aylUt4AD4qiwylgOx4Vgb9sBlrIcRDw==","shasum":"d5b04b05e0521aa71fdfdba0b4ca392e3caa964d","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.21.2.tgz","fileCount":37,"unpackedSize":188561,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBuGkH4uiO/TmPtURmab6rSgkksUh4COVWuE6G3BgoLuAiEAnPV7cWplXzTNoz3jROqa46c8NsDap/9EZgdVzLkMYtk="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi31+YACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrVJw/7BSa6jmQq2YwoNdkKEJvGeD9LtDyFGPtLE/Z48jHsqZgvoCQx\r\nSbPqS81+4QZxrv095miG906Te0g8oJmOJG2jwNrKA5gUVBSUgbkW/OWDEyhZ\r\n+NkKkuZAIjQUdwyl2eelQi4c6hdbTjC7wBC8vyvkeG9fPUYGwX+GKMTAQgA5\r\nhlAwsEVi/R8+jeZlU5uVxfxiL9eAP/Spo2tle7Lb6swWPrgDjeZHvLeRJ8aw\r\nzrlR8a0pdpT5HYlnLWljxAfNooi/A4o1S9DKmzC4dnihd94B/hssk7A49Po9\r\nOBoJSyZ3+ZcUtBfpUD6Y1bdSn05sfrLDVsQ2CkfZfSIZzpgKXh7sHdkkAwcj\r\nmSzAJjDNbPjbXwh0wyj4ECDgSfir36ql/HNvvZ3ufxInc/mYi6L/ByjeCON1\r\nwngQhbkDgLilgVDuz4HoTkgbmu618ijMhAA5K7sjWlhQNLaAtVmVEAvyElyW\r\nhFU1u1wRbWoTXYCDjcnBFc+ItLwoBGIq40dgf/+C3U5oxaMBsiUPKFq5Sklx\r\nGzgyd+bxfFee3siK8U74ieHXGfinb3vJ7JbAvQ1aR8wNqHs9O61Wvkn0FqgS\r\n/1gGkAJmYYsWdScu33rxfG4ufF7is8osGT9EJGBeMObCtt0+adhGhXJZREwE\r\nD/yTuBeNSALQCn/pfgL55OsKpMjqY7uukvA=\r\n=Lc6Q\r\n-----END PGP SIGNATURE-----\r\n","size":45018},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.21.2_1658806168291_0.008445168746411769"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-26T03:29:34.968Z"},"0.22.0":{"name":"unplugin-vue-components","version":"0.22.0","packageManager":"pnpm@7.1.5","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-vue-components","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"scripts":{"build":"tsup && esno scripts/postbuild.ts","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp && npm publish","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true}},"dependencies":{"@antfu/utils":"^0.5.2","@rollup/pluginutils":"^4.2.1","chokidar":"^3.5.3","debug":"^4.3.4","fast-glob":"^3.2.11","local-pkg":"^0.4.2","magic-string":"^0.26.2","minimatch":"^5.1.0","resolve":"^1.22.1","unplugin":"^0.8.1"},"devDependencies":{"@antfu/eslint-config":"^0.25.2","@babel/parser":"^7.18.10","@babel/types":"^7.18.10","@types/debug":"^4.1.7","@types/minimatch":"^3.0.5","@types/node":"^18.6.3","@types/resolve":"^1.20.2","@typescript-eslint/eslint-plugin":"^5.32.0","bumpp":"^8.2.1","compare-versions":"^4.1.3","element-plus":"^2.2.12","eslint":"^8.21.0","esno":"^0.16.3","estree-walker":"^3.0.1","pathe":"^0.3.3","rollup":"^2.77.2","tsup":"^6.2.1","typescript":"^4.7.4","vite":"^3.0.4","vitest":"^0.20.3","vue":"3.2.37"},"gitHead":"8032758a6f3a173b9c785058cdab6cb451472496","_id":"unplugin-vue-components@0.22.0","_nodeVersion":"16.14.2","_npmVersion":"8.8.0","dist":{"integrity":"sha512-MpGcrnHgFLUK94Jf46UuiMOPQ4hVAijriR6bPbCGSBygiEDJbPXqy2C1d1k6PkixESFacKkipeuPhme+8F7gHQ==","shasum":"cbfc298fb64c2f4f22bb755c18aa3e67dca24b3f","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.22.0.tgz","fileCount":37,"unpackedSize":189294,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCndXwEwRpEEwupI+zna43gh/AGk8QPdtVwUJDiZcoEZwIhANK18SfJiTE3rMDwjQTkaKF7AGtZOCkO86pLb5ybxCuS"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi62x7ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoCDQ/+On5Uv6imM3mrohRujcngmZGYdmBbnIrnkRLgB80yeljZ7Ia+\r\nKezW5m+Mv3diU0I4TyTjiiGwQMaNbNWcWgszBTgUOLP6Z4SOAdyaaMYlpHSi\r\n5YL2q6bf9jglhmpg9Wy6tKG6Ewvv7ZVC2qQ4fCWvvFMmY5QFJF/A7895bRCz\r\nmQtfqoX0QcLf2UlR8W/RJ46Tnb6fSc5U7X7brxJhcvqtpbeVKQvtNgp1xkLI\r\n7PNgPrNN/ApNnSYchtOzzm2S3vXSOOGXUX4Ojd30tzBaV0ZuadljlTrPcFH0\r\n1QfSoasFZjlFmzOuEVEbOj1brVacsPdo/eCmQVrB599uSY9IR3eukSuoEQnE\r\noMKm8LrtZtKci6Yw8iATZsZzAuhClzd2dZObFdJM/a5NqVhNzkCypuLvzesB\r\nSvvDgmkRbymGXusMk96zCsbKvz9bk9IsYqRZekFhvN3iW9Ea85MRs/buTdT9\r\nuBftAUk+MRdxulZ7H8vb50dxnRPHSM1Fi+00B5+1uu8nhtyocxZVZx4O8Rk+\r\nNPOt3Ud2P6pgjF44BqoHlRCg8HMAX7t0bfw63kasH/7lbhAb4RZ/YxhEot9h\r\nk1YtHeKzQMrIEcUiB/GClINWZv0DmpV9GDEpxot1FOFeFV6JRNzyeHmCguWL\r\nkIP7CDQwOGzmBou3B9AFT1sWwObh5PRX6wI=\r\n=jXbm\r\n-----END PGP SIGNATURE-----\r\n","size":45014},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.22.0_1659595899064_0.336933648226428"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-04T07:00:04.105Z"},"0.22.1":{"name":"unplugin-vue-components","version":"0.22.1","packageManager":"pnpm@7.1.5","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-vue-components","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"scripts":{"build":"tsup && esno scripts/postbuild.ts","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp && npm publish","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true}},"dependencies":{"@antfu/utils":"^0.5.2","@rollup/pluginutils":"^4.2.1","chokidar":"^3.5.3","debug":"^4.3.4","fast-glob":"^3.2.11","local-pkg":"^0.4.2","magic-string":"^0.26.2","minimatch":"^5.1.0","resolve":"^1.22.1","unplugin":"^0.9.0"},"devDependencies":{"@antfu/eslint-config":"^0.25.2","@babel/parser":"^7.18.11","@babel/types":"^7.18.10","@types/debug":"^4.1.7","@types/minimatch":"^3.0.5","@types/node":"^18.6.4","@types/resolve":"^1.20.2","@typescript-eslint/eslint-plugin":"^5.32.0","bumpp":"^8.2.1","compare-versions":"^4.1.3","element-plus":"^2.2.12","eslint":"^8.21.0","esno":"^0.16.3","estree-walker":"^3.0.1","pathe":"^0.3.3","rollup":"^2.77.2","tsup":"^6.2.1","typescript":"^4.7.4","vite":"^3.0.4","vitest":"^0.21.0","vue":"3.2.37"},"gitHead":"52f120ff637c27e66a932d5631be8220036be37d","_id":"unplugin-vue-components@0.22.1","_nodeVersion":"16.14.2","_npmVersion":"8.8.0","dist":{"integrity":"sha512-/uY5CLsjl5/MSjF4z3vOAetb6a4+8RFYOddyagE50hDaJu3I3jqIf4d95AcVtyKnokTmlEDR2zTmpwwef4NazQ==","shasum":"db459fcd1692ca45fa10cbb968bbaf3d0af65856","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.22.1.tgz","fileCount":37,"unpackedSize":189341,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCMnUAu+8+p3oF/kZkA2mP4kb6RuoZBQ04iGZ/NHTznEQIgZ57ps1bdg5wwmmsPmajnVIbYextsRCqwxGOlSFtfh64="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi8OMaACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmroqA//YNvHK8jahCwBYY/oIt1zrmy42dpt6jLXSqi5/fkOKpNula46\r\nOWIt7giRaFtUmwSjPP4h4ImKDCqbOptabzcOxk1DRcxJ3D3i4mB+2JxBlkAC\r\n0Np3tZtnBIkr0gXC7qxhGO66Gtlq3k18wtXn+BvDVo+3DpSS5yoNU3X2aGGy\r\nxT8vqRwTbfbvDiiA05FOBi6rWp1qWV3oahbtoNZvchrjyGybKEJOWJL9Tmuu\r\nXrLcIS+pQtdyviOh67WdnErvapobaWyWi8bqEId29ALJoPIOyVcVxtCbK0V3\r\neOhNxTgrtluz36QkCHOsbLgrYd3YHXR+wECIUWeKhRHo7gMbWHtckQpzHBhT\r\nVl8vlR8UoiB+oau6WWj0MSvAX8X2Oc1yx58i19AxrEUPx0yEVMYQ5Ntwcqm8\r\n6yv7y7KG0ZWFmrGOqaPdPUtNEuNTtFYMu+H6XyO/WyGrwKplqPwl+ZoI/tOY\r\nM1VNV1wzHvS0HuM1fz/ll4UXv0GKjzcmyiVO5JFPR+zLnWbpsem6evFPe+wd\r\n8SBwZOLcBcfySkxx1HRR1CetGx3Nx4Yzu5g8lLk9syLU7JvQRvY62ejm/jOh\r\nIquI9hkwt8FAFxn9ci7tGzQPdu6eUAH+tO6hZgB/CS/DyFDOcWALQaQTI1eV\r\nZaoerlmG9gN90JhKGzDnQgD8XjwvdL/8Kjk=\r\n=/kgJ\r\n-----END PGP SIGNATURE-----\r\n","size":45070},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.22.1_1659953946632_0.7460037983426928"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-08T10:22:11.592Z"},"0.22.2":{"name":"unplugin-vue-components","version":"0.22.2","packageManager":"pnpm@7.1.5","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-vue-components","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"scripts":{"build":"tsup && esno scripts/postbuild.ts","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp && npm publish","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true}},"dependencies":{"@antfu/utils":"^0.5.2","@rollup/pluginutils":"^4.2.1","chokidar":"^3.5.3","debug":"^4.3.4","fast-glob":"^3.2.11","local-pkg":"^0.4.2","magic-string":"^0.26.2","minimatch":"^5.1.0","resolve":"^1.22.1","unplugin":"^0.9.0"},"devDependencies":{"@antfu/eslint-config":"^0.25.2","@babel/parser":"^7.18.11","@babel/types":"^7.18.10","@types/debug":"^4.1.7","@types/minimatch":"^3.0.5","@types/node":"^18.6.4","@types/resolve":"^1.20.2","@typescript-eslint/eslint-plugin":"^5.32.0","bumpp":"^8.2.1","compare-versions":"^4.1.3","element-plus":"^2.2.12","eslint":"^8.21.0","esno":"^0.16.3","estree-walker":"^3.0.1","pathe":"^0.3.3","rollup":"^2.77.2","tsup":"^6.2.1","typescript":"^4.7.4","vite":"^3.0.4","vitest":"^0.21.0","vue":"3.2.37"},"gitHead":"99c476e0e6b6aab5dd71c328309a36b93f29848d","_id":"unplugin-vue-components@0.22.2","_nodeVersion":"16.14.2","_npmVersion":"8.8.0","dist":{"integrity":"sha512-BTkXgiyIg45zL6rjCGcI0sbfNxgp/MGhLKd8CapuWpQecuX4AlMtHGWsANVXmrDgopHxAucS9Mh2l38IYv7InQ==","shasum":"5963b460260db3ff714dd535a372364797bf59a2","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.22.2.tgz","fileCount":37,"unpackedSize":189578,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDbvS9819nTPSw+1paKVDjsoh4SmW0JX1Ackop9QmU3JgIhAMjifLP13dvRQST3XuuXq1f3BODZDj427LbBw9gOl9Kt"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi8UFqACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpwpw/+NwGPYr9G8LGcRJatOaZqDBDsLfdbR3LIHL13ERtcUlF90xSi\r\nY7wFWjJ8GwJgpQl0Rd75C95hpaxYSoiY5BC2w0XtabXeNz7mLrcOiuekSJ2L\r\nb7voOpaxoICT8K08LYF/NKeovEbPozGULUNAYQoucLIn0yC3KxfV21JdCpS2\r\nrHw4HR3TbDJGodx6ttt+wV+WdeaL3jbtXvEZuzPDvFxC//O4az9JAOipK78e\r\nx66iZ0sIfMT5dMD3cBeyKOB2dFjEhHbZzIdjCAO59FdXvSHT8cSVKq/9/RNO\r\nVn/8lFZeu17mxHjuM9QM4OXyfBCWQXP5zaHgCJ+Y5aJzdxThj7I9knbB7SeB\r\nPROIkd2VG80XkpkmM82MHrxYy3zAVpWVGjOVqnBiXmGO8IcKL6KVnBWRlIAX\r\nR/1jIm6ZM14rycg2RTRU5Kgn7m8pdTU3JVWib7XrzJWJqHxDxXPbeBncWAnD\r\nb9MfisK1Pt/umH0oQZP997J3aKA78q03YjNoReRy07Mh0DHesVgV5AqfmODn\r\nnN9GEd4C5+vtUvkQWdSEblKgZSfeFJoeFfNhauPZUgwXRbc79LjBV/rnSaCk\r\nz4fB1zqVIjo6lfMDFSAjmwR4EpIq6uf4+dq4LIPEe+1mA74XcqioNeqT2kb/\r\nHMSFrGlMNCe1iM9tI8VNM8z9hPhl1a8qbUE=\r\n=GPcm\r\n-----END PGP SIGNATURE-----\r\n","size":45096},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.22.2_1659978089685_0.04904882283225209"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-08T17:21:51.737Z"},"0.22.3":{"name":"unplugin-vue-components","version":"0.22.3","packageManager":"pnpm@7.1.5","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-vue-components","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"scripts":{"build":"tsup && esno scripts/postbuild.ts","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp && npm publish","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true}},"dependencies":{"@antfu/utils":"^0.5.2","@rollup/pluginutils":"^4.2.1","chokidar":"^3.5.3","debug":"^4.3.4","fast-glob":"^3.2.11","local-pkg":"^0.4.2","magic-string":"^0.26.2","minimatch":"^5.1.0","resolve":"^1.22.1","unplugin":"^0.9.0"},"devDependencies":{"@antfu/eslint-config":"^0.25.2","@babel/parser":"^7.18.11","@babel/types":"^7.18.10","@types/debug":"^4.1.7","@types/minimatch":"^3.0.5","@types/node":"^18.6.4","@types/resolve":"^1.20.2","@typescript-eslint/eslint-plugin":"^5.32.0","bumpp":"^8.2.1","compare-versions":"^4.1.3","element-plus":"^2.2.12","eslint":"^8.21.0","esno":"^0.16.3","estree-walker":"^3.0.1","pathe":"^0.3.3","rollup":"^2.77.2","tsup":"^6.2.1","typescript":"^4.7.4","vite":"^3.0.4","vitest":"^0.21.0","vue":"3.2.37"},"gitHead":"dffdaf91ed7eb64b2ccd21a4b15b09ddced433e9","_id":"unplugin-vue-components@0.22.3","_nodeVersion":"16.14.2","_npmVersion":"8.8.0","dist":{"integrity":"sha512-f31VCJF0K9oXCzKizJqNpmQz2XYTA0gjq+E5zM3hB8JxZ6cy5sXxO91fK2pI1TFGeM3JCe6yC9BJDymkMbXnNg==","shasum":"e799e49486476b5413d3b0983874bc8a92429ad4","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.22.3.tgz","fileCount":37,"unpackedSize":188937,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCuzS6Dqgkp2O+Zuu5WZC4Q96Jzje3vRacGHhMDdKjMGAIhAJilOrMiHdqPGIjc90XJ/S4iMHtW8Q5aZeDbrYb3aL0Q"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi8gH0ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpqsg//cK0Io/norq35J7L4p0+JIAqA5rcGhrt02jQ8jArduyLSsjPp\r\n3NS/kTK+Mp7lFZMv4GaKX2fnf8Mpy1w4YQQi+k2LgRD46tmJn1tG/otvbW1g\r\n27GTHyl7ACdo5q7dXXl8FTivkFJjQwbE59OY+y88t+aWcQ9rqdW/is/cypSl\r\nJUm3qMZ1/Sdl1FbQpphZTF/pin6mh94lwB0oxJU6DYnEy9J0KBD3Z79GlZ2o\r\npG7PyaCTtj3cNYVmsnPoj+KwD52vm7hlioyjxWeti4ZtWZQfAd6YRBZTawAn\r\nB8HqOTqLtUMHfGLN70dtbOXM5gu63xnkpxXsPFVOVmfyHIm51iPKQ6Ncmdz6\r\nC6aVYEpq54AcySkTWF5EDFOxESPfL9BT8r1XmLXu2iH4RFTBeqqixgLm3zqL\r\n6IzYWm0Zs/PS9UZ8X2K+UZr+QxmFNzh/dDbNLk2yaPZR1NTZ1wa9STi8JAKS\r\ncJVsai7vS9CfpJvWQjS6ytHzmQFhkgVT3nknpnKcblecqEuZvklvXZ6Ow9IY\r\n5w54UQ46Uc33Ps+nb9aAV6BsuDCC9Vw12tFxszY8hTUvZMJDCPdlFQGQ37Na\r\nz68BwedSfBwoo4zqYxBh6W2I6lCUX4FtdijTSdPPxzJtsUbz41qmmLTSA8qN\r\ncFc09P9DIJ3I//Sujn5OFFehOKMfR4dXnwk=\r\n=Vomy\r\n-----END PGP SIGNATURE-----\r\n","size":44955},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.22.3_1660027380392_0.16233019663561654"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-09T06:47:06.037Z"},"0.22.4":{"name":"unplugin-vue-components","version":"0.22.4","packageManager":"pnpm@7.1.5","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-vue-components","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"scripts":{"build":"tsup && esno scripts/postbuild.ts","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp && npm publish","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true}},"dependencies":{"@antfu/utils":"^0.5.2","@rollup/pluginutils":"^4.2.1","chokidar":"^3.5.3","debug":"^4.3.4","fast-glob":"^3.2.11","local-pkg":"^0.4.2","magic-string":"^0.26.2","minimatch":"^5.1.0","resolve":"^1.22.1","unplugin":"^0.9.0"},"devDependencies":{"@antfu/eslint-config":"^0.25.2","@babel/parser":"^7.18.11","@babel/types":"^7.18.10","@types/debug":"^4.1.7","@types/minimatch":"^3.0.5","@types/node":"^18.6.4","@types/resolve":"^1.20.2","@typescript-eslint/eslint-plugin":"^5.32.0","bumpp":"^8.2.1","compare-versions":"^4.1.3","element-plus":"^2.2.12","eslint":"^8.21.0","esno":"^0.16.3","estree-walker":"^3.0.1","pathe":"^0.3.3","rollup":"^2.77.2","tsup":"^6.2.1","typescript":"^4.7.4","vite":"^3.0.4","vitest":"^0.21.0","vue":"3.2.37"},"gitHead":"86d34956d7ee4ea58f2a7f6d86fb5836bea30c70","_id":"unplugin-vue-components@0.22.4","_nodeVersion":"16.14.2","_npmVersion":"8.8.0","dist":{"integrity":"sha512-2rRZcM9OnJGXnYxQNfaceEYuPeVACcWySIjy8WBwIiN3onr980TmA3XE5pRJFt8zoQrUA+c46oyIq96noLqrEQ==","shasum":"774a96339368f3b8436fa7c20e059d9fee42c983","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.22.4.tgz","fileCount":37,"unpackedSize":189123,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDlX05Ds7TXy7IF+madnd0txEbIZbjKyVsX6TOiQ5u6+QIhAKmuwZ73i9PJkXAyW+teyRqJae0NNS+aCGO4fEqilvvI"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi8puXACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqYSA/+OWrvsx86U4rriOGKQuhC1KiFGhE00YSeqOQalrIvRHXtDeq3\r\nmaYPwWdD+hvJXPlsX1wB7LJx4SV10sxMdZWIXLn5g16G29hfbOkOXpzZlrT0\r\naTX0rJlhyOfIMQEcpOzYYEyFxPn536Az3QLxGgYYUKDYRoOzppFk48pMU5HD\r\ngnIU6U1QAV6ExooLQqH5JzsbQuUfqfoaiEf98KDonMTJEMpU6PlGfpNQDTCW\r\nbvEvIKQ/1Ob7pch2+CixcFIk7S76jO1VpaLG7ZNZVBym096YxY5E+QkfzhJ0\r\nn0EPVd4DyD19xxe/g9kKFY6CHgZ6cK/p22TpeBVXVBnG8h3Y3EufHR3+SSi2\r\n1WKZU+4MLPGVyhGShoP5NrgWwwwlkX4tvUW4aFBRhF9lw/nXSM/hGteDhj1c\r\nS/cA3lsGcJYs92egG98Bor53dRthzpDSmdX1hHTvQU/uVj+PRc6473glLLOo\r\nJD06vfhMLOS04SC1H6xtkSYNYOBwBB9f80+yvhAFOtST0hfL8LogXD8PZQhH\r\nNWOLgM/pVIu5pKhPfnzp9tssVULXu3q86kUhFQM9DT8IIu/Rk6jbGHy8MrhT\r\nrPlui1deKq/onRbKxfoJfyimTDaIxvDD8qALJMZoYkRFfbu4qBoBQ7YlgwY6\r\nXDWFBLf3WXIpaxj+KXP5pLvHvJmQjS2OIio=\r\n=ThZz\r\n-----END PGP SIGNATURE-----\r\n","size":45016},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.22.4_1660066710796_0.31899504720903415"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-08-09T17:38:42.369Z"},"0.22.6":{"name":"unplugin-vue-components","version":"0.22.6","packageManager":"pnpm@7.1.5","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-vue-components","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"scripts":{"build":"tsup && esno scripts/postbuild.ts","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp && npm publish","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true}},"dependencies":{"@antfu/utils":"^0.5.2","@rollup/pluginutils":"^4.2.1","chokidar":"^3.5.3","debug":"^4.3.4","fast-glob":"^3.2.12","local-pkg":"^0.4.2","magic-string":"^0.26.3","minimatch":"^5.1.0","resolve":"^1.22.1","unplugin":"^0.9.5"},"devDependencies":{"@antfu/eslint-config":"^0.26.3","@babel/parser":"^7.19.0","@babel/types":"^7.19.0","@types/debug":"^4.1.7","@types/minimatch":"^5.1.2","@types/node":"^18.7.16","@types/resolve":"^1.20.2","@typescript-eslint/eslint-plugin":"^5.36.2","bumpp":"^8.2.1","compare-versions":"^5.0.1","element-plus":"^2.2.16","eslint":"^8.23.0","esno":"^0.16.3","estree-walker":"^3.0.1","pathe":"^0.3.7","rollup":"^2.79.0","tsup":"^6.2.3","typescript":"^4.8.3","vite":"^3.1.0","vitest":"^0.23.2","vue":"3.2.37"},"gitHead":"ef3c4c7fb613ad15c53bd746d4694f48c61f1a31","_id":"unplugin-vue-components@0.22.6","_nodeVersion":"16.14.2","_npmVersion":"8.8.0","dist":{"integrity":"sha512-QiOAjEHpAD/i4+B1nFJPhzRYMQpFJN/m/VM0zLVxGzHGtJW//2z0Iyq5eqYczZeRfj6v9pIyuVw7BdChgD4G6A==","shasum":"e6b371539b7a8eebe1cdb77a5eef1c04c2cdd704","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.22.6.tgz","fileCount":37,"unpackedSize":191554,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIB7whkDtnhHAsPugKE8WOI1HHofXeuEhFZPB6pGpQwGuAiEA446skvXwqpAVCM2vhDQagbKtOaZEqFTIFMW2y+RlyIE="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjHo+XACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoZ9A//dUM1Adz/RuQoubo7tyHjqHxpfd477aLmw7ntNyL82/0RCpK6\r\nfsUkiO/vixu4rBxJiZrFQPQK3LrztHAiha7eo5Rt6Lf+Hmz0UtlrZ+bz44YU\r\nGHL1PCttbKQJUKRbydMuaD4lvGMPH5XqjHeaAlMRJg1vZQCS8RyQk2TxaCFv\r\n5HxRtTep/1RbtUARgSH5GpfBpSIJNevmHCyESCijBXPWpHHSpNqs1t2soMu+\r\nPNH18pSEZCFgv7vLJvfE/Y2V5R52fXnFQPIeENEmK7oL4c/oIFl+8P9QcB97\r\nEujFsPT3gMAsUzfaFMpCzS0lzNXFgGM+Z6PE3EwVu/mY88nrjISHIMywjFIM\r\nRTCrLMd6Yq7PQVeiycDKHX/sq+4pnNLSVdV8c4xgryJwBPmBojFZUE8O5siP\r\ngul3mcroPBRZhb8a/zP1lOoiwj0FSFvAzIIBX5hCsL6/qLKcFHEMCedxG4lL\r\nhTH4JFSGS4RF0FbMylTiu8fkhNzW9MoxQs/614ZFVEnBz0jFrYnN0sv2aXjw\r\njGN3eq89+MI6AMNIswYW2n0rAGS8cXpNtdi8QKMF2hIJSLYpkJ3MDoGwNicL\r\nDHdT8WK5XkQ0529nVr5eoIVSOUAQNXAHsHA50YUykNP+259mVmTgnweZXCEr\r\nwNc391KSQllO1+kR1r0diJeWKUi4zb7OwUg=\r\n=P8Z+\r\n-----END PGP SIGNATURE-----\r\n","size":45039},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.22.6_1662947222805_0.4224492727308957"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-09-12T01:48:47.740Z"},"0.22.7":{"name":"unplugin-vue-components","version":"0.22.7","packageManager":"pnpm@7.1.5","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-vue-components","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"scripts":{"build":"tsup && esno scripts/postbuild.ts","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp && npm publish","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true}},"dependencies":{"@antfu/utils":"^0.5.2","@rollup/pluginutils":"^4.2.1","chokidar":"^3.5.3","debug":"^4.3.4","fast-glob":"^3.2.12","local-pkg":"^0.4.2","magic-string":"^0.26.3","minimatch":"^5.1.0","resolve":"^1.22.1","unplugin":"^0.9.5"},"devDependencies":{"@antfu/eslint-config":"^0.26.3","@babel/parser":"^7.19.0","@babel/types":"^7.19.0","@types/debug":"^4.1.7","@types/minimatch":"^5.1.2","@types/node":"^18.7.16","@types/resolve":"^1.20.2","@typescript-eslint/eslint-plugin":"^5.36.2","bumpp":"^8.2.1","compare-versions":"^5.0.1","element-plus":"^2.2.16","eslint":"^8.23.0","esno":"^0.16.3","estree-walker":"^3.0.1","pathe":"^0.3.7","rollup":"^2.79.0","tsup":"^6.2.3","typescript":"^4.8.3","vite":"^3.1.0","vitest":"^0.23.2","vue":"3.2.37"},"gitHead":"ab90643dcae0419a69f8302f57daef8c470a3b02","_id":"unplugin-vue-components@0.22.7","_nodeVersion":"16.14.2","_npmVersion":"8.8.0","dist":{"integrity":"sha512-MJEAKJF9bRykTRvJ4WXF0FNMAyt1PX3iwpu2NN+li35sAKjQv6sC1col5aZDLiwDZDo2AGwxNkzLJFKaun9qHw==","shasum":"91c7e308fec33af83729fd22d51d81f18bb558b1","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.22.7.tgz","fileCount":37,"unpackedSize":191580,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCRcF/vdoFfyYBY2/npB/O2NTh1T4j78XVIYc/TL88jvQIhAKWWh3FoOgB7hhAryIRGMagRnT9v21QBHv9LvuyOugA8"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjHrOHACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmojmhAAm+ndJrcTfS1bYjgXnbPkyt1JJB9y5TYFpeU0N+Qw+LWIlCXV\r\n/hYKknTE/ulpCl5K6AK83EUTil/5e5B/EPL6COAEORDCMm9E18U6FbeSLGZ1\r\nOi0cEOTlKx0A25I/BYacpd05JNmiVKgrGr6zMfGbEuhx6sObPJveVQ/10Cwq\r\nPRqoWk1zL7Ep0iiujjSNS2+DNPK19XCnqOG+8P6FaiERCCh1NRjE5Oyi8VX3\r\nqN9Enn6SV9zzzfkHgMEILucoeVJAbuqavuNQHeaKsdZNe4FlkBbKZ8Ir8cN3\r\nTuFisENjGXg8BizA/1VuRVaRl1JnkHGA1ZRntbvq/c4FP4epz6TJbwEEMUVA\r\nNQMz8WTg799RCRoNZZGN+dracXVhe0yyZLasKHAAmaOKNx+WEGMsVWWZbaQE\r\ndvf++YhJDNhs9P1NyryHO0Qj06xEkAQAnns4jxOB7sPTd9mWXJnzlI3Fl0P7\r\nZ4IdcJ2VQq/BTC1SNIyypaUMWICbMWt+TdTaFOUSaI5C+VQOrzvqBAzP/l3A\r\ngxYv9ME+80oNDCuCelpljXb2w4Ro3jQ2UO4zx6x2YNSGK7unYxneuKI4MuLG\r\nGPWY2gMaMW7KcMELwVlvD4M/YqBT2eIJ5vhY8nEY20Z/Onv0vSTtT2CurUAZ\r\nePtFPaH+Ztoyrvgobqod22Y2/oThQ1YVces=\r\n=ykWz\r\n-----END PGP SIGNATURE-----\r\n","size":45073},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.22.7_1662956423613_0.8523979989539092"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-09-12T04:20:28.777Z"},"0.22.8":{"name":"unplugin-vue-components","version":"0.22.8","packageManager":"pnpm@7.1.5","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-vue-components","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"scripts":{"build":"tsup && esno scripts/postbuild.ts","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp && npm publish","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true}},"dependencies":{"@antfu/utils":"^0.5.2","@rollup/pluginutils":"^4.2.1","chokidar":"^3.5.3","debug":"^4.3.4","fast-glob":"^3.2.12","local-pkg":"^0.4.2","magic-string":"^0.26.5","minimatch":"^5.1.0","resolve":"^1.22.1","unplugin":"^0.9.6"},"devDependencies":{"@antfu/eslint-config":"^0.27.0","@babel/parser":"^7.19.3","@babel/types":"^7.19.3","@types/debug":"^4.1.7","@types/minimatch":"^5.1.2","@types/node":"^18.8.2","@types/resolve":"^1.20.2","@typescript-eslint/eslint-plugin":"^5.39.0","bumpp":"^8.2.1","compare-versions":"^5.0.1","element-plus":"^2.2.17","eslint":"^8.24.0","esno":"^0.16.3","estree-walker":"^3.0.1","pathe":"^0.3.8","rollup":"^2.79.1","tsup":"^6.2.3","typescript":"^4.8.4","vite":"^3.1.4","vitest":"^0.23.4","vue":"3.2.37"},"gitHead":"99100e7b888b72b962dcebfc78a3702bc761b004","_id":"unplugin-vue-components@0.22.8","_nodeVersion":"16.14.2","_npmVersion":"8.8.0","dist":{"integrity":"sha512-Musnwdtr6uj9Zopo4oeh4lp9+fJ2ArXVDzSiZxF4YC9v+pLnasKVKEEAjdXuQQ3u3KtntVw6PCscyAt52eS75g==","shasum":"84b8158beadb0c3a77eb29ed9bdc85b3880805bc","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.22.8.tgz","fileCount":37,"unpackedSize":196093,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDMxb55IG2XFU5EBC/qf0zSE5K6jCQQewijP8rXot0kOAiEAv4Vay0qXciP2ng5Xh7ky3tOR3pVw0qT8mJKFX/dHC+w="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjPUd8ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoOMg//bSpLNnBFDjbiDcVkyA0hew5l2tfu1dtoehGq7YsQAG3pEe9r\r\nRfXfhqiLpZJWowOKvtItNFNbTcn1PRcSzlBMGFcYXPFcf5WveD0zouc+Swql\r\nKD7gyP+PKCGXB4nMw/HoYFIXXALX1ayYlhKEYZIbLVGL2X7tOTnQhk2lOhCl\r\nInEfKF5znKvhxqs5rGkuLjVz23eZDP8rG5kFGOzYajqua1+7e4MvXvRz4LrR\r\nPKHflJljFMLWS3YowdGpOBk9N6uPVYc020yIENurthnq+xcfnecLdGpUtIhB\r\npiPd0R2f50ue58R7cGLsymfMKZLut5o5jkcg2f9TfdzKC61XeOLUNkJr2W6a\r\no9pG16DdnkB+l+2879zJ9kkufs+FQ0Muijw04xpkMezLlqu4vBvfTjG9nul0\r\n4g2XTntHu24r2AzxgdlRYbygtA6/SfELRvbJ25363U8Ph5KDrEw+cBzJUm9w\r\n5QDowlNmCFBTGuKMRuR3oHQ84XQ0HtHYYjZLwx2Rkup8EszslD++Ejn7L/+D\r\nDFTMgiVBMnSJEU1LY0x+1+FnP1w+y6pgC22aW+oA5aSue6Hw7qVHO9P4IPW+\r\nA7BOuMiCII3QZDZ9G2chv2aqx5YNiSRVPqv70NypYbcj+LR35jz6NzAwLnDe\r\nlSCKBG9GPVpn9OD7+SHFJcecC0F8CE58ixw=\r\n=wjT0\r\n-----END PGP SIGNATURE-----\r\n","size":46124},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.22.8_1664960379841_0.1391525370955189"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-10-05T08:59:46.815Z"},"0.22.9":{"name":"unplugin-vue-components","version":"0.22.9","packageManager":"pnpm@7.1.5","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-vue-components","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"scripts":{"build":"tsup && esno scripts/postbuild.ts","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp && npm publish","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true}},"dependencies":{"@antfu/utils":"^0.6.0","@rollup/pluginutils":"^5.0.2","chokidar":"^3.5.3","debug":"^4.3.4","fast-glob":"^3.2.12","local-pkg":"^0.4.2","magic-string":"^0.26.7","minimatch":"^5.1.0","resolve":"^1.22.1","unplugin":"^0.10.1"},"devDependencies":{"@antfu/eslint-config":"^0.27.0","@babel/parser":"^7.19.6","@babel/types":"^7.19.3","@types/debug":"^4.1.7","@types/minimatch":"^5.1.2","@types/node":"^18.11.4","@types/resolve":"^1.20.2","@typescript-eslint/eslint-plugin":"^5.40.1","bumpp":"^8.2.1","compare-versions":"^5.0.1","element-plus":"^2.2.19","eslint":"^8.26.0","esno":"^0.16.3","estree-walker":"^3.0.1","pathe":"^0.3.9","rollup":"^3.2.3","tsup":"^6.3.0","typescript":"^4.8.4","vite":"^3.1.8","vitest":"^0.24.3","vue":"3.2.37"},"gitHead":"16091860eef4a7cbb90e0ea16f185eb7a374d172","_id":"unplugin-vue-components@0.22.9","_nodeVersion":"16.14.2","_npmVersion":"8.8.0","dist":{"integrity":"sha512-qBvooq3EgpjtYicxeccRUGUBBQCCw9rJ0kHPZPOSJd8TBZViSv86vuKLTRDHPyjWtclwOIkVStZJfPdJFhYUMw==","shasum":"68f0824a606d07b20fc2636b46ce63c1d960c1b6","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.22.9.tgz","fileCount":37,"unpackedSize":198889,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCaW8VqTgr9ysM2B3zLsIakvn7zvW6ghbaik4r1LM48cQIhAJ6yszbK76qFQ/r3znxzVw5AuYVrvzKcYqHx1KJYvNFO"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjVlZ6ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmouLw/8CMyZjX/HDU5OZnIxOFoG4B70AokjFP31mIJD0QEFU+g4PXYI\r\nEhg6V0N7LCsw6y/thZi9mOLquEK0EF1PMSup1DjPpuXQu2hjYx9cjoFeai6B\r\nhStV9L3Ix3MtneWmzH1h/WTYm/WTLACRxfKGLx8qgMVuuus6EAAdrYt8rR6W\r\ncYF7b5H8V675i5Nnw5xUd3Gc4cbPLRW/nQywM6pwbwy7VgFXshTA9y3AJ1gC\r\nJplStTJlDwHnX0hwiZnuGnM7GY/QyiAf1Fg9o0t868IoY+RawJys58rjgM+H\r\nkevFCYQQi3Uh4KPPWP1h5EX/+x+nIOwj0g4xWnl3sajXsfxPZXL71y+yRueg\r\nUpWkZJO2do0f5J7ftAds+MitCZiCWCf8obWjcB/tmNTYjfcg6A/UkPCMkM0k\r\nIt/8ztM4SfmaI89b6o5UadR/pN9FZKqFyn1pJRO67tSv5NZWDPSl3V6bqFBx\r\n16Iv+uqE991TwrEq/7Qo1TsGTz+vnNHGQd5p4s72UTHzmPC3BCMLbNqJDdFm\r\nYpmQREtSy7M0xHZYOSrfA5W2S7/3whqfHvssiCkqay7Bh7cx//u1TOph1w6U\r\nZmDacy7/6i7rbVEEm1KXEhoZ8MXDFHsr+KyxJdHPEgwm9PNNswnrA4KcmN/O\r\nJ6tPFxIyz/iUD+8aidcOTFSiLdCpzPqMyes=\r\n=7JX+\r\n-----END PGP SIGNATURE-----\r\n","size":46598},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.22.9_1666602618315_0.2609148452463632"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-10-25T02:00:07.999Z"},"0.22.11":{"name":"unplugin-vue-components","version":"0.22.11","packageManager":"pnpm@7.13.4","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-vue-components","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"scripts":{"build":"tsup && esno scripts/postbuild.ts","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp && npm publish","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true}},"dependencies":{"@antfu/utils":"^0.7.0","@rollup/pluginutils":"^5.0.2","chokidar":"^3.5.3","debug":"^4.3.4","fast-glob":"^3.2.12","local-pkg":"^0.4.2","magic-string":"^0.26.7","minimatch":"^5.1.0","resolve":"^1.22.1","unplugin":"^1.0.0"},"devDependencies":{"@antfu/eslint-config":"^0.31.0","@babel/parser":"^7.20.3","@babel/types":"^7.20.2","@types/debug":"^4.1.7","@types/minimatch":"^5.1.2","@types/node":"^18.11.9","@types/resolve":"^1.20.2","@typescript-eslint/eslint-plugin":"^5.44.0","bumpp":"^8.2.1","compare-versions":"^5.0.1","element-plus":"^2.2.22","eslint":"^8.28.0","esno":"^0.16.3","estree-walker":"^3.0.1","pathe":"^1.0.0","rollup":"^3.4.0","tsup":"^6.5.0","typescript":"^4.9.3","vite":"^3.2.4","vitest":"^0.25.2","vue":"3.2.37"},"gitHead":"90b549d0080ed2591edba477187c7171853341e9","_id":"unplugin-vue-components@0.22.11","_nodeVersion":"16.14.2","_npmVersion":"8.8.0","dist":{"integrity":"sha512-GTzqPl0Ek8fq8qMufjR6hvtnjnSwMpJ1Rg2Ez9AcKZVp1piWoU/Q4FDnI9wHVKX8eenYL0nqAF3ejYAk1TUfqQ==","shasum":"5e2f4ad776cc5540546a7cdaf6408e037b3c73b1","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.22.11.tgz","fileCount":37,"unpackedSize":201817,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCDRB6O7JgmD3JW5NjsNoylOstAwZY2OP5rBobmiNtbOQIhAOE/97czFQWs/v6kt9e0EgEyEkQaCJ+br7E5jFI27YR5"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjfKtTACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqcZA//QbxumyUiE6GaYJKW9pXqnz/1QDRjhn1bBewn7MxooN3On6gn\r\nr/077lzB8xpdLd2pDbUVZTkZ2kgcNijLI9Ri94hXCSiaciH4OQ2/u0L4ngLJ\r\nQgTi8rD01cniscVFeCcLOXQBrKlJZ4vFR7Nps4FvfYUZpTOdABbHbAAmg2cU\r\nbaK6qA/KZevDViXzhbbsli3D7TRq/wBPdDUDUcL7NBAAxYSAfOBf05aW/+Dv\r\nbaN2HwoLcbPU2f26bebUtEK88cLFcHr9kmi2BRA7MfVw65ECn2JuXTGHns6t\r\niP0cu8QHPXf2hUxCAJLVKYaE1NG8IL3Zj8gQBSkMJDleGU7d2JvhIsQTw8rI\r\nTHEyJlm/vRV0JURqucxUyyXAI3xFhcKUFhBRQgZbuBeQY8l6O2CGtwTBX1kg\r\nceqQSu15ynG8iO1tbiqUEAlYMZ+E937oG7ttw31f2xJBMWFFawno7VPYvHwR\r\nECYSoFWLmqiMeTmzoDIGj5TsvlYJrra2Djm2+eAInNEEnvxP6QMhshB1g0ZD\r\n1TqJdAKpKKE8mdnc+ube8Tlk2Le1ZQK/zEhfUkJQnv95osUSotu9fA+W1Fpn\r\nHYLkD8TfTY4HwTe6i2eU8O+GfA0gAkKx/XKu83FnskebfFJctUfcs9PLvIx7\r\ndoQ8JX1D3fS6aqdza4LYp46U+fFVQJv2YLs=\r\n=jfdh\r\n-----END PGP SIGNATURE-----\r\n","size":47286},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.22.11_1669114707667_0.5904479293883573"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-11-22T11:35:53.504Z"},"0.22.12":{"name":"unplugin-vue-components","version":"0.22.12","packageManager":"pnpm@7.13.4","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-vue-components","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"}},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"scripts":{"build":"tsup && esno scripts/postbuild.ts","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp && npm publish","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true}},"dependencies":{"@antfu/utils":"^0.7.2","@rollup/pluginutils":"^5.0.2","chokidar":"^3.5.3","debug":"^4.3.4","fast-glob":"^3.2.12","local-pkg":"^0.4.2","magic-string":"^0.27.0","minimatch":"^5.1.1","resolve":"^1.22.1","unplugin":"^1.0.1"},"devDependencies":{"@antfu/eslint-config":"^0.33.1","@babel/parser":"^7.20.5","@babel/types":"^7.20.5","@types/debug":"^4.1.7","@types/minimatch":"^5.1.2","@types/node":"^18.11.13","@types/resolve":"^1.20.2","@typescript-eslint/eslint-plugin":"^5.46.0","bumpp":"^8.2.1","compare-versions":"^5.0.1","element-plus":"^2.2.26","eslint":"^8.29.0","esno":"^0.16.3","estree-walker":"^3.0.1","pathe":"^1.0.0","rollup":"^3.7.3","tsup":"^6.5.0","typescript":"^4.9.4","vite":"^4.0.0","vitest":"^0.25.7","vue":"3.2.45"},"gitHead":"a495847dd0e7c9955bf5c756280482b007e46f49","_id":"unplugin-vue-components@0.22.12","_nodeVersion":"16.14.2","_npmVersion":"8.8.0","dist":{"integrity":"sha512-FxyzsuBvMCYPIk+8cgscGBQ345tvwVu+qY5IhE++eorkyvA4Z1TiD/HCiim+Kbqozl10i4K+z+NCa2WO2jexRA==","shasum":"39013f77be72d32df9d6ca1599e592a484015612","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.22.12.tgz","fileCount":37,"unpackedSize":203150,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD9FyCWFDlAykn/7QnquOQWg4D4R9RDa8DOADDDCtx5EAIhANVJmoh+5cMm5OSswubD4pu8jTXk7zgCIElWoKaFXIwU"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjlvONACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpJKQ//XrDARat5XKMnhYVWOkSF5jR0+rBOrqOZd97MTWj4H5PLG/GS\r\nHdhBd/Jle8wTrwWPxXlzXnVWlJxVIhD78nkwaoPtHMJPbh3zT+z55B6D51mi\r\nIwvvqQ3rG8IQhcztg4vkMpRfZZyx27R+RFpUxOc6teSfNlxehpsQ/+CXxKTc\r\nil7jb51IrINd2tMRoWKFS0nNHSY1+DVRBNs1QDpOKPnLGf+E4mNXb/NmYaSW\r\nOPhnvXoHDOkPXkVkJ3+sNGwD6TUMmqzr5fnL3L7681uKucZWZN/CUgrkjE3L\r\nez6z4B9kRcdH5Zyyo+FTR8gWprflbWfpo4uMpbBgojhDq0zF707hNkgNIIQP\r\ng7IPNN4Tzxh0z4uJRQ2MuzXgzafUxHwA0UEHGByzbuEvyeFy+4sNzIQ54O23\r\nk3QpgLx8KeFx0U7wp0WWRszhwgraIjdtabXnXQGKTvr6G7rzymVa1uk4bVxq\r\nQMFdvXwGmkYOJsZ9wK7TCPJYoCupM/lEiXoQKG+JcYZ4WgPGbmJJhAk4CvfV\r\nrbhEWodPtPOJznlTceTAsQURLqlBFKFz14FjbOpcisYnkXS5Fn/uT2ZeWDxW\r\nLd/OQ43NBOEQ62fv/jkdsKn0VZTe6bR9PrNQd2gjkLVTRlXpd0A/fqGqTBXS\r\nspAXLVH1jhz2RMNsZZi9DT+NFPzzFx6Vb1c=\r\n=7nLG\r\n-----END PGP SIGNATURE-----\r\n","size":47536},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.22.12_1670837133156_0.604774095387657"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-12-12T09:58:43.621Z"},"0.23.0":{"name":"unplugin-vue-components","version":"0.23.0","packageManager":"pnpm@7.13.4","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-vue-components","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"exports":{".":{"types":"./dist/index.d.ts","require":"./dist/index.js","import":"./dist/index.mjs"},"./nuxt":{"types":"./dist/nuxt.d.ts","require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"types":"./dist/resolvers.d.ts","require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"types":"./dist/rollup.d.ts","require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"types":"./dist/types.d.ts","require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"types":"./dist/vite.d.ts","require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"types":"./dist/webpack.d.ts","require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./esbuild":{"types":"./dist/esbuild.d.ts","require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"},"./*":"./*"},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"scripts":{"build":"tsup && esno scripts/postbuild.ts","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp && npm publish","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true}},"dependencies":{"@antfu/utils":"^0.7.2","@nuxt/kit":"^3.1.1","@rollup/pluginutils":"^5.0.2","chokidar":"^3.5.3","debug":"^4.3.4","fast-glob":"^3.2.12","local-pkg":"^0.4.3","magic-string":"^0.27.0","minimatch":"^6.1.6","resolve":"^1.22.1","unplugin":"^1.0.1"},"devDependencies":{"@antfu/eslint-config":"^0.34.1","@babel/parser":"^7.20.13","@babel/types":"^7.20.7","@nuxt/schema":"^3.1.1","@types/debug":"^4.1.7","@types/minimatch":"^5.1.2","@types/node":"^18.11.18","@types/resolve":"^1.20.2","@typescript-eslint/eslint-plugin":"^5.49.0","bumpp":"^8.2.1","compare-versions":"^5.0.3","element-plus":"^2.2.28","eslint":"^8.32.0","esno":"^0.16.3","estree-walker":"^3.0.3","pathe":"^1.1.0","rollup":"^3.12.0","tsup":"^6.5.0","typescript":"^4.9.4","vite":"^4.0.4","vitest":"^0.28.3","vue":"3.2.45"},"gitHead":"5dcf81d11d9627c8302488f6f25b5e39ffa0df90","_id":"unplugin-vue-components@0.23.0","_nodeVersion":"18.13.0","_npmVersion":"8.19.3","dist":{"integrity":"sha512-JAJ+BGvjHvi9P7lICwOzDx2Av+OcI6ZTzvySmjXDNGCNVPrt2NQQmbcp7cW027CR1mRugIX5G//awm3doHyqkg==","shasum":"f4dce2f05672ab7b24e0ba149639d1fa7d12b906","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.23.0.tgz","fileCount":37,"unpackedSize":206199,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIA4xB4VM8+m0+oh8Uq3m7RxQ1jKvY+rSzu4QZY5Bxfa5AiAxDUKVOMOT6PAR2ZH62n0cBq/gMZIBiNTO8Jz/idr1+Q=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj1Q2IACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqjdQ/7BVEsfTQR6DfwreSkWYnV9MLQLM4BCjk+ZVAEmBJ+C+wqrJjA\r\n/UtWfbPPP2wXB1qr/0kUx3UoWjQ/mWQbNMyUgJwy7pE8C6d1yN963I3Ttx2h\r\n+KFp9ogl0WXi4BzPIr0TBH6Pdiw0feImvRtkwRLrYspmxTPBMpShg/g/mfjS\r\nQIgl1MC0YV12BI7+naxC0LmUBLDzgT4RsZ7gSay3Wdgaw9huSr/WtdYjh0A1\r\nz+Oa57Bqwmt2OdpvgwKpO9ZgT7WJSEipiqDALCtGUPd6ErCAKlASihbXVfUb\r\n0TfJ3Zb4STTfLo/Sx3+88fpCkg/tcLPcAiAf34W35cew/cj7IgIuiIHfoH7y\r\nWtoXE/R4BdcLmbThZDmn3vMcuu4M0cyvC6cjifxtAKIYmadSkZnz0IJEIZiU\r\nvnVq+MpMxH3jlWIy99kwfb4JWhho1cw51ABT2kD75kuXDkcLbw+yN0ZvxFn6\r\nC78MRmnmh1QIMQybvhen+MqAdLdMJizG7JthdRfHE/2bDV7XXl16GqY/cAe6\r\ncus13nt4kBUKpdDc5zo26siQbxIjq4W8GaLaTFqREksUgBnGIbCryPqnqOAk\r\nfvrPsZp/pGhNLm7kxLDqf9ohn7UTPbMDjUIL2Ju5AQmdqUSycAiqVGjy8PB0\r\nR5cmj+FXQ15TpRBrwQAbuskSeM6Io1UowUc=\r\n=2FdB\r\n-----END PGP SIGNATURE-----\r\n","size":47985},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.23.0_1674907016297_0.7894412121941237"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-01-28T11:56:56.505Z","publish_time":1674907016505},"0.24.0":{"name":"unplugin-vue-components","version":"0.24.0","packageManager":"pnpm@7.13.4","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-vue-components","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"exports":{".":{"types":"./dist/index.d.ts","require":"./dist/index.js","import":"./dist/index.mjs"},"./nuxt":{"types":"./dist/nuxt.d.ts","require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"types":"./dist/resolvers.d.ts","require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"types":"./dist/rollup.d.ts","require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"types":"./dist/types.d.ts","require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"types":"./dist/vite.d.ts","require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"types":"./dist/webpack.d.ts","require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./esbuild":{"types":"./dist/esbuild.d.ts","require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"},"./*":"./*"},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"scripts":{"build":"tsup && esno scripts/postbuild.ts","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp && npm publish","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true}},"dependencies":{"@antfu/utils":"^0.7.2","@nuxt/kit":"^3.2.0","@rollup/pluginutils":"^5.0.2","chokidar":"^3.5.3","debug":"^4.3.4","fast-glob":"^3.2.12","local-pkg":"^0.4.3","magic-string":"^0.29.0","minimatch":"^6.2.0","resolve":"^1.22.1","unplugin":"^1.1.0"},"devDependencies":{"@antfu/eslint-config":"^0.35.2","@babel/parser":"^7.20.15","@babel/types":"^7.20.7","@nuxt/schema":"^3.2.0","@types/debug":"^4.1.7","@types/minimatch":"^5.1.2","@types/node":"^18.13.0","@types/resolve":"^1.20.2","@typescript-eslint/eslint-plugin":"^5.52.0","bumpp":"^8.2.1","compare-versions":"^5.0.3","element-plus":"^2.2.30","eslint":"^8.34.0","esno":"^0.16.3","estree-walker":"^3.0.3","pathe":"^1.1.0","rollup":"^3.15.0","tsup":"^6.6.3","typescript":"^4.9.5","vite":"^4.1.1","vitest":"^0.28.5","vue":"3.2.45"},"gitHead":"1b48deee70abef40c5786e91630d2ac05c0ecc32","_id":"unplugin-vue-components@0.24.0","_nodeVersion":"18.13.0","_npmVersion":"8.19.3","dist":{"integrity":"sha512-U+Pr5StEhlD1LzsJC63f3FoTje3IbqRuSIui9RBnOokowzMM2uK2jZkc1ccLWmhLa8P9qJwEdj93LE/NG83eiw==","shasum":"4ab6d9b47ab413b2727704ff0a65dc4db4f33248","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.24.0.tgz","fileCount":37,"unpackedSize":211739,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHPf+OrVmjRk/zW5rBGslFZV9maRotBy0+OXfa63aaOKAiEA8H3jeXg5SX23vZ6oZq5PoTgRaGnrA9sz4G8kFcHW4RU="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj7fq9ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrbIRAAjQ5A20Ey+pQT8gXUQ/fcXcqpr1A1xhnuVHFsLQkAFykCLSti\r\nO/da6AhJr9cQZYNkJDm8YsPKhmIeJcUPTjq3vUKnqnYmp5Y4ei9nYpJdefET\r\npuYXzaliCN3PouW2tyhX1Ttz8WG/Y90olKkYex/173/CCLPE7gBuEbhBNeAD\r\nq6gZg1ENNwgVtcq3CvzndDSrBd7ZXVN/arqRZD7JabkDFCB1d/F/JGJzslkP\r\nJ2NLuqhvJvI7l6cSknVUkoi08PQ2bKlZlJVfgkF3baCZJAdOkBY2ryK3my+L\r\nusxq9mOVpxRqkXRt0xoWHSaPzl3EbfzCqjjb+jS4J/gWBKKek1TcgfkyzSsf\r\nIopsk5t3rM9OVtV5VepSQEjLzQX8iMtxbIjBsDQpv/TwVcrQMP0PQaX88X6i\r\naZSFyiqOrLHRPZA9oLp2h+z4A+EbTbCOe8dz+Vjf+U1tfpvL+Gk4GbuQ++Ov\r\nd8EaPsLGTJraWskOcRTafIpMyX+SgpcOqFHwTYSIb+Erzfv2zI5++Vl4PmS2\r\nq8MEmzxmG7oJCwdUFeGm221lYpxmxwjrOiL4ob0JrN6cLF71Mx1aGqoUwn+c\r\nVg/mBuzu4Ltn+eT7+6UI81VGRKXNXvetAkblyag7KPNAyP3gX1PkX3oKJz+d\r\nwICsvCN/vXUO/uxv3/POdA9l8epbBSnB5lE=\r\n=qmL3\r\n-----END PGP SIGNATURE-----\r\n","size":48965},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.24.0_1676540605375_0.9849137959624283"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-02-16T09:43:25.569Z","publish_time":1676540605569},"0.24.1":{"name":"unplugin-vue-components","version":"0.24.1","packageManager":"pnpm@7.29.0","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-vue-components","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"exports":{".":{"types":"./dist/index.d.ts","require":"./dist/index.js","import":"./dist/index.mjs"},"./nuxt":{"types":"./dist/nuxt.d.ts","require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"types":"./dist/resolvers.d.ts","require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"types":"./dist/rollup.d.ts","require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"types":"./dist/types.d.ts","require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"types":"./dist/vite.d.ts","require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"types":"./dist/webpack.d.ts","require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./esbuild":{"types":"./dist/esbuild.d.ts","require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"},"./*":"./*"},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"scripts":{"build":"tsup && esno scripts/postbuild.ts","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp && npm publish","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","vue":"2 || 3","@nuxt/kit":"^3.2.2"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@nuxt/kit":{"optional":true}},"dependencies":{"@antfu/utils":"^0.7.2","@rollup/pluginutils":"^5.0.2","chokidar":"^3.5.3","debug":"^4.3.4","fast-glob":"^3.2.12","local-pkg":"^0.4.3","magic-string":"^0.30.0","minimatch":"^7.4.2","resolve":"^1.22.1","unplugin":"^1.1.0"},"devDependencies":{"@antfu/eslint-config":"^0.36.0","@babel/parser":"^7.21.2","@babel/types":"^7.21.2","@nuxt/kit":"^3.2.3","@types/debug":"^4.1.7","@types/minimatch":"^5.1.2","@types/node":"^18.14.6","@types/resolve":"^1.20.2","@typescript-eslint/eslint-plugin":"^5.54.1","bumpp":"^9.0.0","compare-versions":"^5.0.3","element-plus":"^2.2.34","eslint":"^8.35.0","esno":"^0.16.3","estree-walker":"^3.0.3","pathe":"^1.1.0","rollup":"^3.18.0","tsup":"^6.6.3","typescript":"^4.9.5","vite":"^4.1.4","vitest":"^0.29.2","vue":"3.2.45"},"gitHead":"81f3230b46600cfc2df2e3016fd5508c56b0eafa","_id":"unplugin-vue-components@0.24.1","_nodeVersion":"18.13.0","_npmVersion":"8.19.3","dist":{"integrity":"sha512-T3A8HkZoIE1Cja95xNqolwza0yD5IVlgZZ1PVAGvVCx8xthmjsv38xWRCtHtwl+rvZyL9uif42SRkDGw9aCfMA==","shasum":"b5c3419c30a603dd795e3a0d63c4c12f4a5d8274","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.24.1.tgz","fileCount":37,"unpackedSize":212071,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC83i0X8HRG1BKgqDGQjRitRMCcCGpGyHJT4YTpMcg4sAIhAI1h04Nfba3zpaQHN6aGmXkGn/TqBlFBW3fqeZEpO69u"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkBnV/ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrFbhAAjDQsRwnXZetYqdF6sQCWNHMsqoBagGyQEMSR4VtCksluLOtH\r\nqXLitg3dzQrAzz3EfZIKZ0u7DQ7zDfLIuYlO6ecSDShyV4Hm4k8+478ARos/\r\n7bHXKU1xy54hoeNgqyQQT4OBVvqxf8fcWMUjTO4C3ZkLSgTKZPvoJZjUf0kj\r\nsBrqSvMOsXvrtk9pomebJ7RYK8s0oUyfgTm4A2YS3GtjjFiEw7KCPs55y/v1\r\n6NEm/JSOVfDHzxXMdEtTZ83FxFxesfxLeKVrK64UPf8SKuJkxJuOoJqkUqTc\r\ndut+JVmCo2TiexoXugD0eNAsOz38hTF50ZbLcHsSvTnW14iIj7PFad55obZ3\r\neUPL2hyM+xO0DZGHjd53s+g8qrUXPNxm2g8jn1QFwgbGir1IhXaziTvn2n3B\r\n0fUokBSLC9xd4uATv0y1OdULwCw4xGFnYMc4pq3hoLgZfIzoZr9kvl4aQFQk\r\nc4XePuWlhR8Kcp9wtfAxObxLCPXKFm8Q56XU98IIOixVNSOUntPxaFINL6eH\r\n2v9To9LvERmECvKGADTum0UATLzTc/Kp+/JfB7sHiHqYr1f+Cu1mkRKdVhHI\r\nYplTgM2abTAHckumKwt6HIbdDZCz/EJ09NOFKj1yzePjmJ/cGEbyxMYRn7QS\r\n4CSshpFjSZfCUh2W6Pnb2hl8HiRWwn2PwZE=\r\n=Cna0\r\n-----END PGP SIGNATURE-----\r\n","size":49071},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.24.1_1678144895320_0.2993882251620934"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-03-06T23:21:35.491Z","publish_time":1678144895491},"0.25.0":{"name":"unplugin-vue-components","version":"0.25.0","packageManager":"pnpm@8.6.0","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-vue-components","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"exports":{".":{"types":"./dist/index.d.ts","require":"./dist/index.js","import":"./dist/index.mjs"},"./nuxt":{"types":"./dist/nuxt.d.ts","require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"types":"./dist/resolvers.d.ts","require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"types":"./dist/rollup.d.ts","require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"types":"./dist/types.d.ts","require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"types":"./dist/vite.d.ts","require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"types":"./dist/webpack.d.ts","require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./rspack":{"types":"./dist/rspack.d.ts","require":"./dist/rspack.js","import":"./dist/rspack.mjs"},"./esbuild":{"types":"./dist/esbuild.d.ts","require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"},"./*":"./*"},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"scripts":{"build":"tsup && esno scripts/postbuild.ts","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp && npm publish","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@nuxt/kit":"^3.2.2","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@nuxt/kit":{"optional":true}},"dependencies":{"@antfu/utils":"^0.7.3","@rollup/pluginutils":"^5.0.2","chokidar":"^3.5.3","debug":"^4.3.4","fast-glob":"^3.2.12","local-pkg":"^0.4.3","magic-string":"^0.30.0","minimatch":"^9.0.1","resolve":"^1.22.2","unplugin":"^1.3.1"},"devDependencies":{"@antfu/eslint-config":"^0.39.3","@babel/parser":"^7.22.4","@babel/types":"^7.22.4","@nuxt/kit":"^3.5.2","@types/debug":"^4.1.8","@types/minimatch":"^5.1.2","@types/node":"^18.16.16","@types/resolve":"^1.20.2","@typescript-eslint/eslint-plugin":"^5.59.8","bumpp":"^9.1.0","compare-versions":"^5.0.3","element-plus":"^2.3.5","eslint":"^8.41.0","esno":"^0.16.3","estree-walker":"^3.0.3","pathe":"^1.1.0","rollup":"^3.23.0","tsup":"^6.7.0","typescript":"^5.0.4","vite":"^4.3.9","vitest":"^0.31.1","vue":"3.2.45"},"gitHead":"3bbea9e0ee680d3998f981788224c8201ffeec27","_id":"unplugin-vue-components@0.25.0","_nodeVersion":"18.13.0","_npmVersion":"8.19.3","dist":{"integrity":"sha512-HxrQ4GMSS1RwVww2av3a42cABo/v5AmTRN9iARv6e/xwkrfTyHhLh84kFwXxKkXK61vxDHxaryn694mQmkiVBg==","shasum":"e95c5edd16ad69c3afde9802e0b65f080656d0dc","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.25.0.tgz","fileCount":40,"unpackedSize":212136,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDC/oQ74H/BVEow5PZyPWaODf1AVkpQXaUIpVnyCzR5BAIgPWoU0KMUmX9sPUT+XprUzwTwrxytmSFwAV69KYHa4g4="}],"size":48830},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.25.0_1685439697673_0.9500414834772588"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-05-30T09:41:37.925Z","publish_time":1685439697925,"_source_registry_name":"default"},"0.25.1":{"name":"unplugin-vue-components","version":"0.25.1","packageManager":"pnpm@8.6.0","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-vue-components","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"exports":{".":{"types":"./dist/index.d.ts","require":"./dist/index.js","import":"./dist/index.mjs"},"./nuxt":{"types":"./dist/nuxt.d.ts","require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"types":"./dist/resolvers.d.ts","require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"types":"./dist/rollup.d.ts","require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"types":"./dist/types.d.ts","require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"types":"./dist/vite.d.ts","require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"types":"./dist/webpack.d.ts","require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./rspack":{"types":"./dist/rspack.d.ts","require":"./dist/rspack.js","import":"./dist/rspack.mjs"},"./esbuild":{"types":"./dist/esbuild.d.ts","require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"},"./*":"./*"},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"scripts":{"build":"tsup && esno scripts/postbuild.ts","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp && npm publish","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@nuxt/kit":"^3.2.2","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@nuxt/kit":{"optional":true}},"dependencies":{"@antfu/utils":"^0.7.4","@rollup/pluginutils":"^5.0.2","chokidar":"^3.5.3","debug":"^4.3.4","fast-glob":"^3.2.12","local-pkg":"^0.4.3","magic-string":"^0.30.0","minimatch":"^9.0.1","resolve":"^1.22.2","unplugin":"^1.3.1"},"devDependencies":{"@antfu/eslint-config":"^0.39.5","@babel/parser":"^7.22.4","@babel/types":"^7.22.4","@nuxt/kit":"^3.5.2","@types/debug":"^4.1.8","@types/minimatch":"^5.1.2","@types/node":"^18.16.16","@types/resolve":"^1.20.2","@typescript-eslint/eslint-plugin":"^5.59.8","bumpp":"^9.1.1","compare-versions":"^5.0.3","element-plus":"^2.3.6","eslint":"^8.42.0","esno":"^0.16.3","estree-walker":"^3.0.3","pathe":"^1.1.1","rollup":"^3.23.1","tsup":"^6.7.0","typescript":"^5.1.3","vite":"^4.3.9","vitest":"^0.31.4","vue":"3.2.45"},"gitHead":"a0c56499e3f1e1a74dc66a6bb9c63bff2f8bf1da","_id":"unplugin-vue-components@0.25.1","_nodeVersion":"18.13.0","_npmVersion":"8.19.3","dist":{"integrity":"sha512-kzS2ZHVMaGU2XEO2keYQcMjNZkanDSGDdY96uQT9EPe+wqSZwwgbFfKVJ5ti0+8rGAcKHColwKUvctBhq2LJ3A==","shasum":"84e30374460e2e6e30b6c5bfa6127c11097c1065","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.25.1.tgz","fileCount":40,"unpackedSize":212052,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEa/ud3xy4PLS2w++N0Sqy93ZpOXBe0v9x8nuLXEGBvtAiEAoGD+PO0yIuLGw2FzXg/TAMAmMScNKyDHblf0duOY3GI="}],"size":48853},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.25.1_1685966882632_0.19265608736319884"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-06-05T12:08:02.881Z","publish_time":1685966882881,"_source_registry_name":"default"},"0.25.2":{"name":"unplugin-vue-components","version":"0.25.2","packageManager":"pnpm@8.6.8","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-vue-components","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/antfu/unplugin-vue-components/issues"},"exports":{".":{"types":"./dist/index.d.ts","require":"./dist/index.js","import":"./dist/index.mjs"},"./nuxt":{"types":"./dist/nuxt.d.ts","require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolvers":{"types":"./dist/resolvers.d.ts","require":"./dist/resolvers.js","import":"./dist/resolvers.mjs"},"./rollup":{"types":"./dist/rollup.d.ts","require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"types":"./dist/types.d.ts","require":"./dist/types.js","import":"./dist/types.mjs"},"./vite":{"types":"./dist/vite.d.ts","require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"types":"./dist/webpack.d.ts","require":"./dist/webpack.js","import":"./dist/webpack.mjs"},"./rspack":{"types":"./dist/rspack.d.ts","require":"./dist/rspack.js","import":"./dist/rspack.mjs"},"./esbuild":{"types":"./dist/esbuild.d.ts","require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"},"./*":"./*"},"main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"scripts":{"build":"tsup && esno scripts/postbuild.ts","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp && npm publish","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@nuxt/kit":"^3.2.2","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@nuxt/kit":{"optional":true}},"dependencies":{"@antfu/utils":"^0.7.5","@rollup/pluginutils":"^5.0.2","chokidar":"^3.5.3","debug":"^4.3.4","fast-glob":"^3.3.0","local-pkg":"^0.4.3","magic-string":"^0.30.1","minimatch":"^9.0.3","resolve":"^1.22.2","unplugin":"^1.4.0"},"devDependencies":{"@antfu/eslint-config":"^0.39.8","@babel/parser":"^7.22.7","@babel/types":"^7.22.5","@nuxt/kit":"^3.6.3","@types/debug":"^4.1.8","@types/minimatch":"^5.1.2","@types/node":"^20.4.2","@types/resolve":"^1.20.2","@typescript-eslint/eslint-plugin":"^6.1.0","bumpp":"^9.1.1","compare-versions":"^6.0.0","element-plus":"^2.3.8","eslint":"^8.45.0","esno":"^0.17.0","estree-walker":"^3.0.3","pathe":"^1.1.1","rollup":"^3.26.3","tsup":"^7.1.0","typescript":"^5.1.6","vite":"^4.4.4","vitest":"^0.33.0","vue":"3.2.45"},"gitHead":"f6b311053bc49404c86059fde7a9c11907d8bcc2","_id":"unplugin-vue-components@0.25.2","_nodeVersion":"18.17.1","_npmVersion":"9.6.7","dist":{"integrity":"sha512-OVmLFqILH6w+eM8fyt/d/eoJT9A6WO51NZLf1vC5c1FZ4rmq2bbGxTy8WP2Jm7xwFdukaIdv819+UI7RClPyCA==","shasum":"99d9d02a4066a24e720edbe74a82a4ee6ff86153","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.25.2.tgz","fileCount":49,"unpackedSize":240524,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHiwcbSXyxl6Oh7s1VA1Q6FKCOKpd5nnTEZ8kanfrVVCAiEApJqGUiU0+teMcxUH5MZBwnlFeydFNzGTYX5Mj7XK0fA="}],"size":51012},"_npmUser":{"name":"sxzz","email":"sxzz@sxzz.moe"},"directories":{},"maintainers":[{"name":"sxzz","email":"sxzz@sxzz.moe"},{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.25.2_1693404573014_0.7905202189544562"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-08-30T14:09:33.205Z","publish_time":1693404573205,"_source_registry_name":"default"},"0.26.0":{"name":"unplugin-vue-components","type":"module","version":"0.26.0","packageManager":"pnpm@8.7.5","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-vue-components#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-vue-components/issues"},"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"},"./nuxt":{"import":"./dist/nuxt.js","require":"./dist/nuxt.cjs"},"./resolvers":{"import":"./dist/resolvers.js","require":"./dist/resolvers.cjs"},"./rollup":{"import":"./dist/rollup.js","require":"./dist/rollup.cjs"},"./types":{"import":"./dist/types.js","require":"./dist/types.cjs"},"./vite":{"import":"./dist/vite.js","require":"./dist/vite.cjs"},"./webpack":{"import":"./dist/webpack.js","require":"./dist/webpack.cjs"},"./rspack":{"import":"./dist/rspack.js","require":"./dist/rspack.cjs"},"./esbuild":{"import":"./dist/esbuild.js","require":"./dist/esbuild.cjs"},"./*":"./*"},"main":"dist/index.cjs","module":"dist/index.js","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"scripts":{"build":"tsup","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp && npm publish","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@nuxt/kit":"^3.2.2","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@nuxt/kit":{"optional":true}},"dependencies":{"@antfu/utils":"^0.7.6","@rollup/pluginutils":"^5.0.4","chokidar":"^3.5.3","debug":"^4.3.4","fast-glob":"^3.3.1","local-pkg":"^0.4.3","magic-string":"^0.30.3","minimatch":"^9.0.3","resolve":"^1.22.4","unplugin":"^1.4.0"},"devDependencies":{"@antfu/eslint-config":"^0.42.0","@babel/parser":"^7.22.16","@babel/types":"^7.22.17","@nuxt/kit":"^3.7.3","@types/debug":"^4.1.8","@types/minimatch":"^5.1.2","@types/node":"^20.6.0","@types/resolve":"^1.20.2","@typescript-eslint/eslint-plugin":"^6.7.0","bumpp":"^9.2.0","compare-versions":"^6.1.0","element-plus":"^2.3.12","eslint":"^8.49.0","esno":"^0.17.0","estree-walker":"^3.0.3","pathe":"^1.1.1","rollup":"^3.29.1","tsup":"^7.2.0","typescript":"^5.2.2","vite":"^4.4.9","vitest":"^0.34.4","vue":"3.2.45"},"gitHead":"aeaf51d422da1286a204581ebd9d11d5e8c0361f","_id":"unplugin-vue-components@0.26.0","_nodeVersion":"20.4.0","_npmVersion":"9.7.2","dist":{"integrity":"sha512-s7IdPDlnOvPamjunVxw8kNgKNK8A5KM1YpK5j/p97jEKTjlPNrA0nZBiSfAKKlK1gWZuyWXlKL5dk3EDw874LQ==","shasum":"6d79caa770039a1eb3d7c09fdd28778ea20afef3","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.26.0.tgz","fileCount":49,"unpackedSize":241690,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDZumgYIloiBlL3/cMCGs0lV5n1Y+XjdOjFXYgt9vZntAIhAN2twjh99Kif6R9u9Ix0jO9VPxuAOHzSUsHvkYDV/7HU"}],"size":55258},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"userquin","email":"userquin@gmail.com"},{"name":"hannoeru","email":"me@hanlee.co"},{"name":"sxzz","email":"sxzz@sxzz.moe"},{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.26.0_1701617251090_0.7248025528694266"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-12-03T15:27:31.292Z","publish_time":1701617251292,"_source_registry_name":"default"},"0.27.0":{"name":"unplugin-vue-components","type":"module","version":"0.27.0","packageManager":"pnpm@9.0.6","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-vue-components#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-vue-components/issues"},"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"},"./nuxt":{"import":"./dist/nuxt.js","require":"./dist/nuxt.cjs"},"./resolvers":{"import":"./dist/resolvers.js","require":"./dist/resolvers.cjs"},"./rollup":{"import":"./dist/rollup.js","require":"./dist/rollup.cjs"},"./types":{"import":"./dist/types.js","require":"./dist/types.cjs"},"./vite":{"import":"./dist/vite.js","require":"./dist/vite.cjs"},"./webpack":{"import":"./dist/webpack.js","require":"./dist/webpack.cjs"},"./rspack":{"import":"./dist/rspack.js","require":"./dist/rspack.cjs"},"./esbuild":{"import":"./dist/esbuild.js","require":"./dist/esbuild.cjs"},"./*":"./*"},"main":"dist/index.cjs","module":"dist/index.js","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"scripts":{"build":"tsup","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp && npm publish","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@nuxt/kit":"^3.2.2","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@nuxt/kit":{"optional":true}},"dependencies":{"@antfu/utils":"^0.7.7","@rollup/pluginutils":"^5.1.0","chokidar":"^3.6.0","debug":"^4.3.4","fast-glob":"^3.3.2","local-pkg":"^0.5.0","magic-string":"^0.30.10","minimatch":"^9.0.4","resolve":"^1.22.8","unplugin":"^1.10.1"},"devDependencies":{"@antfu/eslint-config":"^2.16.1","@babel/parser":"^7.24.5","@babel/types":"^7.24.5","@nuxt/kit":"^3.11.2","@types/debug":"^4.1.12","@types/minimatch":"^5.1.2","@types/node":"^20.12.7","@types/resolve":"^1.20.6","bumpp":"^9.4.1","compare-versions":"^6.1.0","element-plus":"^2.7.2","eslint":"^9.1.1","eslint-plugin-format":"^0.1.1","esno":"^4.7.0","estree-walker":"^3.0.3","pathe":"^1.1.2","rollup":"^4.17.2","tsup":"^8.0.2","typescript":"^5.4.5","vite":"^5.2.10","vitest":"^1.5.3","vue":"3.2.45"},"_id":"unplugin-vue-components@0.27.0","gitHead":"a359f2d0850344a402e2f0584ad3f63acc541bb3","_nodeVersion":"20.11.1","_npmVersion":"10.2.4","dist":{"integrity":"sha512-77eTEy23sQ0UpzGWnZ9I2mY3cnmXwklz4ITcn3JfxjCoX643ghImkiZ4nFm58sxbdVcc4Fo/o4LIoFnlqEqsSg==","shasum":"f504c5d526d7f2b779003a76070b18d84e40fc54","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.27.0.tgz","fileCount":49,"unpackedSize":244734,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCmhJ9d0KZ9ZxaM4OJtZkdH/HF+A6VD9l51jsv0BBp8bQIgNARv8jMmruTMKswRvLHTwrCB2Dtg5tN1IE2eUg6YaZA="}],"size":56116},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"userquin","email":"userquin@gmail.com"},{"name":"hannoeru","email":"me@hanlee.co"},{"name":"sxzz","email":"sxzz@sxzz.moe"},{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.27.0_1714546392441_0.2683890208937021"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-05-01T06:53:12.624Z","publish_time":1714546392624,"_source_registry_name":"default"},"0.27.1":{"name":"unplugin-vue-components","type":"module","version":"0.27.1","packageManager":"pnpm@9.0.6","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-vue-components#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-vue-components/issues"},"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"},"./nuxt":{"import":"./dist/nuxt.js","require":"./dist/nuxt.cjs"},"./resolvers":{"import":"./dist/resolvers.js","require":"./dist/resolvers.cjs"},"./rollup":{"import":"./dist/rollup.js","require":"./dist/rollup.cjs"},"./types":{"import":"./dist/types.js","require":"./dist/types.cjs"},"./vite":{"import":"./dist/vite.js","require":"./dist/vite.cjs"},"./webpack":{"import":"./dist/webpack.js","require":"./dist/webpack.cjs"},"./rspack":{"import":"./dist/rspack.js","require":"./dist/rspack.cjs"},"./esbuild":{"import":"./dist/esbuild.js","require":"./dist/esbuild.cjs"},"./*":"./*"},"main":"dist/index.cjs","module":"dist/index.js","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"scripts":{"build":"tsup","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp && npm publish","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@nuxt/kit":"^3.2.2","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@nuxt/kit":{"optional":true}},"dependencies":{"@antfu/utils":"^0.7.7","@rollup/pluginutils":"^5.1.0","chokidar":"^3.6.0","debug":"^4.3.4","fast-glob":"^3.3.2","local-pkg":"^0.5.0","magic-string":"^0.30.10","minimatch":"^9.0.4","mlly":"^1.7.1","unplugin":"^1.10.1"},"devDependencies":{"@antfu/eslint-config":"^2.16.1","@babel/parser":"^7.24.5","@babel/types":"^7.24.5","@nuxt/kit":"^3.11.2","@types/debug":"^4.1.12","@types/minimatch":"^5.1.2","@types/node":"^20.12.7","bumpp":"^9.4.1","compare-versions":"^6.1.0","element-plus":"^2.7.2","eslint":"^9.1.1","eslint-plugin-format":"^0.1.1","esno":"^4.7.0","estree-walker":"^3.0.3","pathe":"^1.1.2","rollup":"^4.17.2","tsup":"^8.0.2","typescript":"^5.4.5","vite":"^5.2.10","vitest":"^1.5.3","vue":"3.2.45"},"_id":"unplugin-vue-components@0.27.1","gitHead":"d19734cc7bb4b9cc158ef990ad78c33958c4915e","_nodeVersion":"20.12.2","_npmVersion":"10.5.0","dist":{"integrity":"sha512-ximoYPwT9A5fc0ozy40IZbXR/XMRlTy69u4JfeqBMlsyuKHckQRisRqgzqve6m/ZeOh7eCHjEQP1WnBPW+YI+g==","shasum":"5f488f85e76edc51f7eff6f90d0646a4fbb1151b","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.27.1.tgz","fileCount":49,"unpackedSize":244723,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDe4hOePx8y6QLWPcXftTkQ3Z5bUvqQAuie/s6qCzqSuAiEA6MPQ4zn3JdrPDGKtyLxr5cbn97P/d0a/1NhKJ+WuJD8="}],"size":56096},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.27.1_1719304180621_0.884560646730606"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-06-25T08:29:40.800Z","publish_time":1719304180800,"_source_registry_name":"default"},"0.27.2":{"name":"unplugin-vue-components","type":"module","version":"0.27.2","packageManager":"pnpm@9.4.0","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-vue-components#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-vue-components/issues"},"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"},"./nuxt":{"import":"./dist/nuxt.js","require":"./dist/nuxt.cjs"},"./resolvers":{"import":"./dist/resolvers.js","require":"./dist/resolvers.cjs"},"./rollup":{"import":"./dist/rollup.js","require":"./dist/rollup.cjs"},"./types":{"import":"./dist/types.js","require":"./dist/types.cjs"},"./vite":{"import":"./dist/vite.js","require":"./dist/vite.cjs"},"./webpack":{"import":"./dist/webpack.js","require":"./dist/webpack.cjs"},"./rspack":{"import":"./dist/rspack.js","require":"./dist/rspack.cjs"},"./esbuild":{"import":"./dist/esbuild.js","require":"./dist/esbuild.cjs"},"./*":"./*"},"main":"dist/index.cjs","module":"dist/index.js","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"scripts":{"build":"tsup","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp && npm publish","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@nuxt/kit":"^3.2.2","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@nuxt/kit":{"optional":true}},"dependencies":{"@antfu/utils":"^0.7.10","@rollup/pluginutils":"^5.1.0","chokidar":"^3.6.0","debug":"^4.3.5","fast-glob":"^3.3.2","local-pkg":"^0.5.0","magic-string":"^0.30.10","minimatch":"^9.0.5","mlly":"^1.7.1","unplugin":"^1.10.1"},"devDependencies":{"@antfu/eslint-config":"^2.21.1","@babel/parser":"^7.24.7","@babel/types":"^7.24.7","@nuxt/kit":"^3.12.2","@types/debug":"^4.1.12","@types/minimatch":"^5.1.2","@types/node":"^20.14.9","bumpp":"^9.4.1","compare-versions":"^6.1.0","element-plus":"^2.7.6","eslint":"^9.5.0","eslint-plugin-format":"^0.1.2","esno":"^4.7.0","estree-walker":"^3.0.3","pathe":"^1.1.2","rollup":"^4.18.0","tsup":"^8.1.0","typescript":"^5.5.2","vite":"^5.3.1","vitest":"^1.6.0","vue":"3.2.45"},"_id":"unplugin-vue-components@0.27.2","gitHead":"f6d79907fdaf6a272d7a8e9b5baf0f555b382a68","_nodeVersion":"20.12.2","_npmVersion":"10.5.0","dist":{"integrity":"sha512-YifnsmslMRNt+JRQiCG4ZX1+xUQuubUZm76K7Qtg8dmchZJkHIDxZSyfZb5/jqrLWMTm/TUjGJ3ZDlzO6SFnSQ==","shasum":"bc95691b54d1cf075af468f4ec7b4b2d05dfebfa","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.27.2.tgz","fileCount":49,"unpackedSize":244575,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEHduaOr7JkmjRJhIx9edCUhN++0jext0FpXtk1vS4oCAiEAl4vkLVpMVHWQN06e8GnrppISug+QVo8BmeoJAPyNq5Q="}],"size":56130},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.27.2_1719425380415_0.27687507194986205"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-06-26T18:09:40.704Z","publish_time":1719425380704,"_source_registry_name":"default"},"0.27.3":{"name":"unplugin-vue-components","type":"module","version":"0.27.3","packageManager":"pnpm@9.5.0","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-vue-components#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-vue-components/issues"},"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"},"./nuxt":{"import":"./dist/nuxt.js","require":"./dist/nuxt.cjs"},"./resolvers":{"import":"./dist/resolvers.js","require":"./dist/resolvers.cjs"},"./rollup":{"import":"./dist/rollup.js","require":"./dist/rollup.cjs"},"./types":{"import":"./dist/types.js","require":"./dist/types.cjs"},"./vite":{"import":"./dist/vite.js","require":"./dist/vite.cjs"},"./webpack":{"import":"./dist/webpack.js","require":"./dist/webpack.cjs"},"./rspack":{"import":"./dist/rspack.js","require":"./dist/rspack.cjs"},"./esbuild":{"import":"./dist/esbuild.js","require":"./dist/esbuild.cjs"},"./*":"./*"},"main":"dist/index.cjs","module":"dist/index.js","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"scripts":{"build":"tsup","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp && npm publish","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@nuxt/kit":"^3.2.2","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@nuxt/kit":{"optional":true}},"dependencies":{"@antfu/utils":"^0.7.10","@rollup/pluginutils":"^5.1.0","chokidar":"^3.6.0","debug":"^4.3.5","fast-glob":"^3.3.2","local-pkg":"^0.5.0","magic-string":"^0.30.10","minimatch":"^9.0.5","mlly":"^1.7.1","unplugin":"^1.11.0"},"devDependencies":{"@antfu/eslint-config":"^2.22.4","@babel/parser":"^7.24.8","@babel/types":"^7.24.9","@nuxt/kit":"^3.12.3","@types/debug":"^4.1.12","@types/minimatch":"^5.1.2","@types/node":"^20.14.10","bumpp":"^9.4.1","compare-versions":"^6.1.1","element-plus":"^2.7.7","eslint":"^9.7.0","eslint-plugin-format":"^0.1.2","esno":"^4.7.0","estree-walker":"^3.0.3","pathe":"^1.1.2","rollup":"^4.18.1","tsup":"^8.1.0","typescript":"^5.5.3","vite":"^5.3.4","vitest":"^2.0.3","vue":"3.2.45"},"_id":"unplugin-vue-components@0.27.3","gitHead":"7d892959119f58d2750ef931e1b675db83c99fea","_nodeVersion":"20.12.2","_npmVersion":"10.5.0","dist":{"integrity":"sha512-5wg7lbdg5ZcrAQNzyYK+6gcg/DG8K6rO+f5YeuvqGHs/PhpapBvpA4O/0ex/pFthE5WgRk43iWuRZEMLVsdz4Q==","shasum":"e7a9980f7feb649306aa92afd61b760385479d42","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.27.3.tgz","fileCount":49,"unpackedSize":243636,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC/cFp9qObl6LCRXmvMJswmXgX7+loKIxErG0PU4k/JLQIhAI2My35wNxdXgXjVGoig4QVTo4psBbHwcQLPT+tTwqcl"}],"size":56164},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"userquin","email":"userquin@gmail.com"},{"name":"hannoeru","email":"me@hanlee.co"},{"name":"sxzz","email":"sxzz@sxzz.moe"},{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.27.3_1721134604192_0.5879747923691836"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-07-16T12:56:44.339Z","publish_time":1721134604339,"_source_registry_name":"default"},"0.27.4":{"name":"unplugin-vue-components","type":"module","version":"0.27.4","packageManager":"pnpm@9.7.0","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-vue-components#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-vue-components/issues"},"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"},"./nuxt":{"import":"./dist/nuxt.js","require":"./dist/nuxt.cjs"},"./resolvers":{"import":"./dist/resolvers.js","require":"./dist/resolvers.cjs"},"./rollup":{"import":"./dist/rollup.js","require":"./dist/rollup.cjs"},"./types":{"import":"./dist/types.js","require":"./dist/types.cjs"},"./vite":{"import":"./dist/vite.js","require":"./dist/vite.cjs"},"./webpack":{"import":"./dist/webpack.js","require":"./dist/webpack.cjs"},"./rspack":{"import":"./dist/rspack.js","require":"./dist/rspack.cjs"},"./esbuild":{"import":"./dist/esbuild.js","require":"./dist/esbuild.cjs"},"./*":"./*"},"main":"dist/index.cjs","module":"dist/index.js","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"scripts":{"build":"tsup","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp && npm publish","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@nuxt/kit":"^3.2.2","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@nuxt/kit":{"optional":true}},"dependencies":{"@antfu/utils":"^0.7.10","@rollup/pluginutils":"^5.1.0","chokidar":"^3.6.0","debug":"^4.3.6","fast-glob":"^3.3.2","local-pkg":"^0.5.0","magic-string":"^0.30.11","minimatch":"^9.0.5","mlly":"^1.7.1","unplugin":"^1.12.1"},"devDependencies":{"@antfu/eslint-config":"^2.25.1","@babel/parser":"^7.25.3","@babel/types":"^7.25.2","@nuxt/kit":"^3.12.4","@types/debug":"^4.1.12","@types/minimatch":"^5.1.2","@types/node":"^20.14.15","bumpp":"^9.5.1","compare-versions":"^6.1.1","element-plus":"^2.8.0","eslint":"^9.9.0","eslint-plugin-format":"^0.1.2","esno":"^4.7.0","estree-walker":"^3.0.3","pathe":"^1.1.2","rollup":"^4.20.0","tsup":"^8.2.4","typescript":"^5.5.4","vite":"^5.4.0","vitest":"^2.0.5","vue":"3.2.45"},"_id":"unplugin-vue-components@0.27.4","gitHead":"addd57074cd5967b402dcb5e0ff8081012e4cf03","_nodeVersion":"20.12.2","_npmVersion":"10.5.0","dist":{"integrity":"sha512-1XVl5iXG7P1UrOMnaj2ogYa5YTq8aoh5jwDPQhemwO/OrXW+lPQKDXd1hMz15qxQPxgb/XXlbgo3HQ2rLEbmXQ==","shasum":"748468b2cb6a856235bdd512c33b629c33c3d23a","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.27.4.tgz","fileCount":49,"unpackedSize":243761,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCuQ53vxUmW3vUwnl6aisNS8q1EsK7SJjpTffc/PSbBBgIhAP3FC9CdF77hkHMfPHJmhJY4nXDWnbZXi16SUimusT4s"}],"size":56174},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"userquin","email":"userquin@gmail.com"},{"name":"hannoeru","email":"me@hanlee.co"},{"name":"sxzz","email":"sxzz@sxzz.moe"},{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.27.4_1723464273507_0.9705339602577203"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-08-12T12:04:33.769Z","publish_time":1723464273769,"_source_registry_name":"default"},"0.27.5":{"name":"unplugin-vue-components","type":"module","version":"0.27.5","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-vue-components#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-vue-components/issues"},"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"},"./nuxt":{"import":"./dist/nuxt.js","require":"./dist/nuxt.cjs"},"./resolvers":{"import":"./dist/resolvers.js","require":"./dist/resolvers.cjs"},"./rollup":{"import":"./dist/rollup.js","require":"./dist/rollup.cjs"},"./types":{"import":"./dist/types.js","require":"./dist/types.cjs"},"./vite":{"import":"./dist/vite.js","require":"./dist/vite.cjs"},"./webpack":{"import":"./dist/webpack.js","require":"./dist/webpack.cjs"},"./rspack":{"import":"./dist/rspack.js","require":"./dist/rspack.cjs"},"./esbuild":{"import":"./dist/esbuild.js","require":"./dist/esbuild.cjs"},"./*":"./*"},"main":"dist/index.cjs","module":"dist/index.js","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"peerDependencies":{"@babel/parser":"^7.15.8","@nuxt/kit":"^3.2.2","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@nuxt/kit":{"optional":true}},"dependencies":{"@antfu/utils":"^0.7.10","@rollup/pluginutils":"^5.1.3","chokidar":"^3.6.0","debug":"^4.3.7","fast-glob":"^3.3.2","local-pkg":"^0.5.1","magic-string":"^0.30.14","minimatch":"^9.0.5","mlly":"^1.7.3","unplugin":"^1.16.0"},"devDependencies":{"@antfu/eslint-config":"^3.10.0","@babel/parser":"^7.26.2","@babel/types":"^7.26.0","@nuxt/kit":"^3.14.1592","@types/debug":"^4.1.12","@types/minimatch":"^5.1.2","@types/node":"^22.10.0","bumpp":"^9.8.1","compare-versions":"^6.1.1","element-plus":"^2.8.8","eslint":"^9.15.0","eslint-plugin-format":"^0.1.2","esno":"^4.8.0","estree-walker":"^3.0.3","pathe":"^1.1.2","rollup":"^4.27.4","tsup":"^8.3.5","typescript":"^5.7.2","vite":"^6.0.1","vitest":"^2.1.6","vue":"3.2.45"},"scripts":{"build":"tsup","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","release":"bumpp && npm publish","test":"vitest","test:update":"vitest --u"},"_id":"unplugin-vue-components@0.27.5","_integrity":"sha512-m9j4goBeNwXyNN8oZHHxvIIYiG8FQ9UfmKWeNllpDvhU7btKNNELGPt+o3mckQKuPwrE7e0PvCsx+IWuDSD9Vg==","_resolved":"/private/var/folders/30/nymxcyb909ggq2j5lwn7b_600000gn/T/171e7f276fd33d0bb7736c212a9579b0/unplugin-vue-components-0.27.5.tgz","_from":"file:unplugin-vue-components-0.27.5.tgz","_nodeVersion":"20.18.0","_npmVersion":"10.8.2","dist":{"integrity":"sha512-m9j4goBeNwXyNN8oZHHxvIIYiG8FQ9UfmKWeNllpDvhU7btKNNELGPt+o3mckQKuPwrE7e0PvCsx+IWuDSD9Vg==","shasum":"81b8460c5183146c084c09fae5ec9db7afd45c4b","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.27.5.tgz","fileCount":49,"unpackedSize":244307,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCtlFaMol+jxtasfYDXTBG59luQi33xu9txUhtNxWGuSgIhAKG8FgNX30O4DFezTQNQAcXbIFEcqDf9tI4jjQBIRX+H"}],"size":56583},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"userquin","email":"userquin@gmail.com"},{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"sxzz","email":"sxzz@sxzz.moe"},{"name":"hannoeru","email":"me@hanlee.co"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-vue-components_0.27.5_1732704258854_0.06526147555054962"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-11-27T10:44:19.102Z","publish_time":1732704259102,"_source_registry_name":"default"},"0.28.0":{"name":"unplugin-vue-components","type":"module","version":"0.28.0","packageManager":"pnpm@9.15.0","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-vue-components#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-vue-components/issues"},"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"},"./nuxt":{"import":"./dist/nuxt.js","require":"./dist/nuxt.cjs"},"./resolvers":{"import":"./dist/resolvers.js","require":"./dist/resolvers.cjs"},"./rollup":{"import":"./dist/rollup.js","require":"./dist/rollup.cjs"},"./types":{"import":"./dist/types.js","require":"./dist/types.cjs"},"./vite":{"import":"./dist/vite.js","require":"./dist/vite.cjs"},"./webpack":{"import":"./dist/webpack.js","require":"./dist/webpack.cjs"},"./rspack":{"import":"./dist/rspack.js","require":"./dist/rspack.cjs"},"./esbuild":{"import":"./dist/esbuild.js","require":"./dist/esbuild.cjs"},"./*":"./*"},"main":"dist/index.cjs","module":"dist/index.js","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"scripts":{"build":"tsup","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp && npm publish","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@nuxt/kit":"^3.2.2","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@nuxt/kit":{"optional":true}},"dependencies":{"@antfu/utils":"^0.7.10","@rollup/pluginutils":"^5.1.4","chokidar":"^3.6.0","debug":"^4.4.0","fast-glob":"^3.3.2","local-pkg":"^0.5.1","magic-string":"^0.30.15","minimatch":"^9.0.5","mlly":"^1.7.3","unplugin":"^2.1.0"},"devDependencies":{"@antfu/eslint-config":"^3.12.0","@babel/parser":"^7.26.3","@babel/types":"^7.26.3","@nuxt/kit":"^3.14.1592","@types/debug":"^4.1.12","@types/minimatch":"^5.1.2","@types/node":"^22.10.2","bumpp":"^9.9.1","compare-versions":"^6.1.1","element-plus":"^2.9.1","eslint":"^9.17.0","eslint-plugin-format":"^0.1.3","esno":"^4.8.0","estree-walker":"^3.0.3","pathe":"^1.1.2","rollup":"^4.28.1","tsup":"^8.3.5","typescript":"~5.6.3","vite":"^6.0.3","vitest":"^2.1.8","vue":"3.2.45"},"_id":"unplugin-vue-components@0.28.0","gitHead":"a4c0b89a51b4a011c69b420da2d1aab30d68df80","_nodeVersion":"20.18.0","_npmVersion":"10.8.2","dist":{"integrity":"sha512-jiTGtJ3JsRFBjgvyilfrX7yUoGKScFgbdNw+6p6kEXU+Spf/rhxzgvdfuMcvhCcLmflB/dY3pGQshYBVGOUx7Q==","shasum":"36108e4808c6e6bb36403613d3084338e2f6a4c0","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-0.28.0.tgz","fileCount":49,"unpackedSize":244478,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIB3R/PdX9vS/jWxGgFLGnJOzDJOO5c9JSDM+SHDubMXTAiBfEhOqIc67eAehn1TH3qPfUiFFbVbhd8tVaGNnevBR+w=="}],"size":56459},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"userquin","email":"userquin@gmail.com"},{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"sxzz","email":"sxzz@sxzz.moe"},{"name":"hannoeru","email":"me@hanlee.co"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/unplugin-vue-components_0.28.0_1734328559387_0.23907346797543805"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-12-16T05:55:59.581Z","publish_time":1734328559581,"_source_registry_name":"default"},"28.0.0":{"name":"unplugin-vue-components","type":"module","version":"28.0.0","packageManager":"pnpm@9.15.3","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-vue-components#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-vue-components/issues"},"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"},"./nuxt":{"import":"./dist/nuxt.js","require":"./dist/nuxt.cjs"},"./resolvers":{"import":"./dist/resolvers.js","require":"./dist/resolvers.cjs"},"./rollup":{"import":"./dist/rollup.js","require":"./dist/rollup.cjs"},"./types":{"import":"./dist/types.js","require":"./dist/types.cjs"},"./vite":{"import":"./dist/vite.js","require":"./dist/vite.cjs"},"./webpack":{"import":"./dist/webpack.js","require":"./dist/webpack.cjs"},"./rspack":{"import":"./dist/rspack.js","require":"./dist/rspack.cjs"},"./esbuild":{"import":"./dist/esbuild.js","require":"./dist/esbuild.cjs"},"./*":"./*"},"main":"dist/index.cjs","module":"dist/index.js","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"scripts":{"build":"tsup","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp && npm publish","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@nuxt/kit":"^3.2.2","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@nuxt/kit":{"optional":true}},"dependencies":{"@antfu/utils":"^0.7.10","@rollup/pluginutils":"^5.1.4","chokidar":"^3.6.0","debug":"^4.4.0","fast-glob":"^3.3.3","local-pkg":"^0.5.1","magic-string":"^0.30.17","minimatch":"^9.0.5","mlly":"^1.7.3","unplugin":"^2.1.2"},"devDependencies":{"@antfu/eslint-config":"^3.12.1","@babel/parser":"^7.26.3","@babel/types":"^7.26.3","@nuxt/kit":"^3.15.1","@types/debug":"^4.1.12","@types/minimatch":"^5.1.2","@types/node":"^22.10.5","bumpp":"^9.9.3","compare-versions":"^6.1.1","element-plus":"^2.9.2","eslint":"^9.17.0","eslint-plugin-format":"^0.1.3","esno":"^4.8.0","estree-walker":"^3.0.3","pathe":"^2.0.0","rollup":"^4.30.1","tsup":"^8.3.5","typescript":"^5.7.2","vite":"^6.0.7","vitest":"^2.1.8","vue":"3.2.45","vue-tsc":"^2.2.0"},"_id":"unplugin-vue-components@28.0.0","gitHead":"2efdaac67970c4a0582ef475cd583e30e42791e4","_nodeVersion":"22.12.0","_npmVersion":"10.9.0","dist":{"integrity":"sha512-vYe0wSyqTVhyNFIad1iiGyQGhG++tDOMgohqenMDOAooMJP9vvzCdXTqCVx20A0rCQXFNjgoRbSeDAioLPH36Q==","shasum":"02ec18e505feca09a2cb47e2a03b57cb3148f59c","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-28.0.0.tgz","fileCount":49,"unpackedSize":244500,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDLgxhQVFrFNt/uC2NruAidUlLOQRig040licDhtq1XzAIgcI3vq/9ZuWvS6MzpDcyYB9vgA6y86uoTTyEKIux93/Y="}],"size":56467},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"userquin","email":"userquin@gmail.com"},{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"sxzz","email":"sxzz@sxzz.moe"},{"name":"hannoeru","email":"me@hanlee.co"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/unplugin-vue-components_28.0.0_1736315559514_0.718253865068806"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-01-08T05:52:39.678Z","publish_time":1736315559678,"_source_registry_name":"default"},"28.1.0":{"name":"unplugin-vue-components","type":"module","version":"28.1.0","packageManager":"pnpm@10.4.0","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-vue-components#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-vue-components/issues"},"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"},"./nuxt":{"import":"./dist/nuxt.js","require":"./dist/nuxt.cjs"},"./resolvers":{"import":"./dist/resolvers.js","require":"./dist/resolvers.cjs"},"./rollup":{"import":"./dist/rollup.js","require":"./dist/rollup.cjs"},"./types":{"import":"./dist/types.js","require":"./dist/types.cjs"},"./vite":{"import":"./dist/vite.js","require":"./dist/vite.cjs"},"./webpack":{"import":"./dist/webpack.js","require":"./dist/webpack.cjs"},"./rspack":{"import":"./dist/rspack.js","require":"./dist/rspack.cjs"},"./esbuild":{"import":"./dist/esbuild.js","require":"./dist/esbuild.cjs"},"./*":"./*"},"main":"dist/index.cjs","module":"dist/index.js","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"scripts":{"build":"tsup","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp && npm publish","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@nuxt/kit":"^3.2.2","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@nuxt/kit":{"optional":true}},"dependencies":{"chokidar":"^3.6.0","debug":"^4.4.0","local-pkg":"^1.0.0","magic-string":"^0.30.17","mlly":"^1.7.4","tinyglobby":"^0.2.10","unplugin":"^2.2.0","unplugin-utils":"^0.2.4"},"devDependencies":{"@antfu/eslint-config":"^4.2.0","@antfu/utils":"^9.0.0","@babel/parser":"^7.26.9","@babel/types":"^7.26.9","@nuxt/kit":"^3.15.4","@nuxt/schema":"^3.15.4","@types/debug":"^4.1.12","@types/minimatch":"^5.1.2","@types/node":"^22.13.4","bumpp":"^10.0.3","compare-versions":"^6.1.1","element-plus":"^2.9.4","eslint":"^9.20.1","eslint-plugin-format":"^1.0.1","esno":"^4.8.0","estree-walker":"^3.0.3","minimatch":"^10.0.1","pathe":"^2.0.3","rollup":"^4.34.7","tsup":"^8.3.6","typescript":"^5.7.3","vite":"^6.1.0","vitest":"^3.0.5","vue":"3.2.45","vue-tsc":"^2.2.0"},"_id":"unplugin-vue-components@28.1.0","gitHead":"0bc1b13f46ea611f2097c9674396a95c50856cb1","_nodeVersion":"22.13.1","_npmVersion":"10.9.2","dist":{"integrity":"sha512-ScHoDBTf7NVxM+YzzV1b1YNHU1rRnLWIG5hhD8D3hKjgYLd6FNJife0zQhUafv3NKuGLdujRgoqy2vcdt7a55g==","shasum":"7bada39a29e2c02ed08b2f9a16643c6ac27cfe71","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-28.1.0.tgz","fileCount":49,"unpackedSize":352994,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIQC+u5dMm/kNMyARqV71kyluJcziksnQ3g7fn0d38pafXgIgRcOzymppWzZmRxa5pvF50YRWfQdb0LFb4l6Av5ysrBQ="}],"size":84400},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"userquin","email":"userquin@gmail.com"},{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"sxzz","email":"sxzz@sxzz.moe"},{"name":"hannoeru","email":"me@hanlee.co"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/unplugin-vue-components_28.1.0_1739608208900_0.10593576226480406"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-02-15T08:30:09.168Z","publish_time":1739608209168,"_source_registry_name":"default"},"28.2.0":{"name":"unplugin-vue-components","type":"module","version":"28.2.0","packageManager":"pnpm@10.4.0","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-vue-components#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-vue-components/issues"},"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"},"./nuxt":{"import":"./dist/nuxt.js","require":"./dist/nuxt.cjs"},"./resolvers":{"import":"./dist/resolvers.js","require":"./dist/resolvers.cjs"},"./rollup":{"import":"./dist/rollup.js","require":"./dist/rollup.cjs"},"./types":{"import":"./dist/types.js","require":"./dist/types.cjs"},"./vite":{"import":"./dist/vite.js","require":"./dist/vite.cjs"},"./webpack":{"import":"./dist/webpack.js","require":"./dist/webpack.cjs"},"./rspack":{"import":"./dist/rspack.js","require":"./dist/rspack.cjs"},"./esbuild":{"import":"./dist/esbuild.js","require":"./dist/esbuild.cjs"},"./*":"./*"},"main":"dist/index.cjs","module":"dist/index.js","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"scripts":{"build":"tsup","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp && npm publish","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@nuxt/kit":"^3.2.2","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@nuxt/kit":{"optional":true}},"dependencies":{"chokidar":"^3.6.0","debug":"^4.4.0","local-pkg":"^1.0.0","magic-string":"^0.30.17","mlly":"^1.7.4","tinyglobby":"^0.2.10","unplugin":"^2.2.0","unplugin-utils":"^0.2.4"},"devDependencies":{"@antfu/eslint-config":"^4.2.0","@antfu/utils":"^9.0.0","@babel/parser":"^7.26.9","@babel/types":"^7.26.9","@nuxt/kit":"^3.15.4","@nuxt/schema":"^3.15.4","@types/debug":"^4.1.12","@types/minimatch":"^5.1.2","@types/node":"^22.13.4","bumpp":"^10.0.3","compare-versions":"^6.1.1","element-plus":"^2.9.4","eslint":"^9.20.1","eslint-plugin-format":"^1.0.1","esno":"^4.8.0","estree-walker":"^3.0.3","minimatch":"^10.0.1","pathe":"^2.0.3","rollup":"^4.34.7","tsup":"^8.3.6","typescript":"^5.7.3","vite":"^6.1.0","vitest":"^3.0.5","vue":"3.2.45","vue-tsc":"^2.2.0"},"_id":"unplugin-vue-components@28.2.0","gitHead":"1d2bb38eac669905d36ed945251006482c35376c","_nodeVersion":"22.13.1","_npmVersion":"10.9.2","dist":{"integrity":"sha512-FMncMZRnOcVs81BligpZL4tPFHE+VX1P1SYgzzl4D6ZgLiJHoZWNx743z+Vfyz701GsZ8WX/ENvYrIZ4mvJPeA==","shasum":"ebb2c9dfbbaed15b26b5f6f472f88515d30bb089","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-28.2.0.tgz","fileCount":49,"unpackedSize":353372,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQDDOloSwwi97U4XDGG88LZV2b5EjvgvwnDqQ2ZdYHJn9AIhALq352GITxpi9Q/nVgo1+aeO7zm6931MjWZuFuSGl3O9"}],"size":84472},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"userquin","email":"userquin@gmail.com"},{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"sxzz","email":"sxzz@sxzz.moe"},{"name":"hannoeru","email":"me@hanlee.co"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/unplugin-vue-components_28.2.0_1739854389369_0.06217826635574464"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-02-18T04:53:09.568Z","publish_time":1739854389568,"_source_registry_name":"default"},"28.3.0":{"name":"unplugin-vue-components","type":"module","version":"28.3.0","packageManager":"pnpm@10.4.0","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-vue-components#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-vue-components/issues"},"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"},"./nuxt":{"import":"./dist/nuxt.js","require":"./dist/nuxt.cjs"},"./resolvers":{"import":"./dist/resolvers.js","require":"./dist/resolvers.cjs"},"./rollup":{"import":"./dist/rollup.js","require":"./dist/rollup.cjs"},"./types":{"import":"./dist/types.js","require":"./dist/types.cjs"},"./vite":{"import":"./dist/vite.js","require":"./dist/vite.cjs"},"./webpack":{"import":"./dist/webpack.js","require":"./dist/webpack.cjs"},"./rspack":{"import":"./dist/rspack.js","require":"./dist/rspack.cjs"},"./esbuild":{"import":"./dist/esbuild.js","require":"./dist/esbuild.cjs"},"./*":"./*"},"main":"dist/index.cjs","module":"dist/index.js","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"scripts":{"build":"tsup","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp && npm publish","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@nuxt/kit":"^3.2.2","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@nuxt/kit":{"optional":true}},"dependencies":{"chokidar":"^3.6.0","debug":"^4.4.0","local-pkg":"^1.0.0","magic-string":"^0.30.17","mlly":"^1.7.4","tinyglobby":"^0.2.10","unplugin":"^2.2.0","unplugin-utils":"^0.2.4"},"devDependencies":{"@antfu/eslint-config":"^4.2.0","@antfu/utils":"^9.0.0","@babel/parser":"^7.26.9","@babel/types":"^7.26.9","@nuxt/kit":"^3.15.4","@nuxt/schema":"^3.15.4","@types/debug":"^4.1.12","@types/minimatch":"^5.1.2","@types/node":"^22.13.4","bumpp":"^10.0.3","compare-versions":"^6.1.1","element-plus":"^2.9.4","eslint":"^9.20.1","eslint-plugin-format":"^1.0.1","esno":"^4.8.0","estree-walker":"^3.0.3","minimatch":"^10.0.1","pathe":"^2.0.3","rollup":"^4.34.7","tsup":"^8.3.6","typescript":"^5.7.3","vite":"^6.1.0","vitest":"^3.0.5","vue":"3.2.45","vue-tsc":"^2.2.0"},"_id":"unplugin-vue-components@28.3.0","gitHead":"5591658092d0aec6932b3613343c80af0686623d","_nodeVersion":"22.13.1","_npmVersion":"10.9.2","dist":{"integrity":"sha512-VzMLEK0kFWnI7wVicYEM1MrCkRF7XsIbVit84X6z8jOMBE3BK2I7cAPdGZ1wu6+8EK5n8QxBppKxYUvcHnF9Tw==","shasum":"2e395d939da2421fb867a7c942c360f5fc68cab2","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-28.3.0.tgz","fileCount":49,"unpackedSize":354656,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIQDCjKT9vicPqRbnLudZXnySacpRC3c1SLDNbP0C4NIyfwIgQg3ZMhPI2pv+0cutFY79qjwC6ufw4ElpQYgY0A/y+mk="}],"size":84692},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"userquin","email":"userquin@gmail.com"},{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"sxzz","email":"sxzz@sxzz.moe"},{"name":"hannoeru","email":"me@hanlee.co"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/unplugin-vue-components_28.3.0_1739942249196_0.18990303728205782"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-02-19T05:17:29.390Z","publish_time":1739942249390,"_source_registry_name":"default"},"28.4.0":{"name":"unplugin-vue-components","type":"module","version":"28.4.0","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-vue-components#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-vue-components/issues"},"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"},"./nuxt":{"import":"./dist/nuxt.js","require":"./dist/nuxt.cjs"},"./resolvers":{"import":"./dist/resolvers.js","require":"./dist/resolvers.cjs"},"./rollup":{"import":"./dist/rollup.js","require":"./dist/rollup.cjs"},"./types":{"import":"./dist/types.js","require":"./dist/types.cjs"},"./vite":{"import":"./dist/vite.js","require":"./dist/vite.cjs"},"./webpack":{"import":"./dist/webpack.js","require":"./dist/webpack.cjs"},"./rspack":{"import":"./dist/rspack.js","require":"./dist/rspack.cjs"},"./esbuild":{"import":"./dist/esbuild.js","require":"./dist/esbuild.cjs"},"./*":"./*"},"main":"dist/index.cjs","module":"dist/index.js","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"peerDependencies":{"@babel/parser":"^7.15.8","@nuxt/kit":"^3.2.2","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@nuxt/kit":{"optional":true}},"dependencies":{"chokidar":"^3.6.0","debug":"^4.4.0","local-pkg":"^1.0.0","magic-string":"^0.30.17","mlly":"^1.7.4","tinyglobby":"^0.2.10","unplugin":"^2.2.0","unplugin-utils":"^0.2.4"},"devDependencies":{"@antfu/eslint-config":"^4.2.0","@antfu/utils":"^9.0.0","@babel/parser":"^7.26.9","@babel/types":"^7.26.9","@nuxt/kit":"^3.15.4","@nuxt/schema":"^3.15.4","@types/debug":"^4.1.12","@types/minimatch":"^5.1.2","@types/node":"^22.13.4","bumpp":"^10.0.3","compare-versions":"^6.1.1","element-plus":"^2.9.4","eslint":"^9.20.1","eslint-plugin-format":"^1.0.1","esno":"^4.8.0","estree-walker":"^3.0.3","minimatch":"^10.0.1","pathe":"^2.0.3","rollup":"^4.34.7","tsup":"^8.3.6","typescript":"^5.7.3","vite":"^6.1.0","vitest":"^3.0.5","vue":"3.2.45","vue-tsc":"^2.2.0"},"scripts":{"build":"tsup","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","release":"bumpp && npm publish","test":"vitest","test:update":"vitest --u"},"_id":"unplugin-vue-components@28.4.0","_integrity":"sha512-fnamX2RiKM30nPK4tihEas+bHnbLICo6MmOiP4jGg7fAlgNEuaLvN9yx96JwZDOYfLQcrNzikDdPhZ8k6pkhMg==","_resolved":"/private/var/folders/30/nymxcyb909ggq2j5lwn7b_600000gn/T/a8a85a48cb37b17662f5d7c185c5674c/unplugin-vue-components-28.4.0.tgz","_from":"file:unplugin-vue-components-28.4.0.tgz","_nodeVersion":"22.13.1","_npmVersion":"10.9.2","dist":{"integrity":"sha512-fnamX2RiKM30nPK4tihEas+bHnbLICo6MmOiP4jGg7fAlgNEuaLvN9yx96JwZDOYfLQcrNzikDdPhZ8k6pkhMg==","shasum":"fbc5ff7605fea90aeb72d1090cf2e70fb2348876","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-28.4.0.tgz","fileCount":49,"unpackedSize":356287,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIBEkv9ZYIzUtEo2bn8KzISoAFBeBWVwqsu5qVUJjKvxrAiEAtC55scdljvgZriwgOjCeI+N8VLV58TdpPl5tqhWw/dY="}],"size":85542},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"userquin","email":"userquin@gmail.com"},{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"sxzz","email":"sxzz@sxzz.moe"},{"name":"hannoeru","email":"me@hanlee.co"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/unplugin-vue-components_28.4.0_1739944748598_0.3091041857056631"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-02-19T05:59:08.835Z","publish_time":1739944748835,"_source_registry_name":"default"},"28.4.1":{"name":"unplugin-vue-components","type":"module","version":"28.4.1","packageManager":"pnpm@10.5.2","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-vue-components#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-vue-components/issues"},"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"},"./nuxt":{"import":"./dist/nuxt.js","require":"./dist/nuxt.cjs"},"./resolvers":{"import":"./dist/resolvers.js","require":"./dist/resolvers.cjs"},"./rollup":{"import":"./dist/rollup.js","require":"./dist/rollup.cjs"},"./types":{"import":"./dist/types.js","require":"./dist/types.cjs"},"./vite":{"import":"./dist/vite.js","require":"./dist/vite.cjs"},"./webpack":{"import":"./dist/webpack.js","require":"./dist/webpack.cjs"},"./rspack":{"import":"./dist/rspack.js","require":"./dist/rspack.cjs"},"./esbuild":{"import":"./dist/esbuild.js","require":"./dist/esbuild.cjs"},"./*":"./*"},"main":"dist/index.cjs","module":"dist/index.js","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"scripts":{"build":"tsup","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp && npm publish","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@nuxt/kit":"^3.2.2","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@nuxt/kit":{"optional":true}},"dependencies":{"chokidar":"^3.6.0","debug":"^4.4.0","local-pkg":"^1.0.0","magic-string":"^0.30.17","mlly":"^1.7.4","tinyglobby":"^0.2.12","unplugin":"^2.2.0","unplugin-utils":"^0.2.4"},"devDependencies":{"@antfu/eslint-config":"^4.3.0","@antfu/utils":"^9.1.0","@babel/parser":"^7.26.9","@babel/types":"^7.26.9","@nuxt/kit":"^3.15.4","@nuxt/schema":"^3.15.4","@types/debug":"^4.1.12","@types/minimatch":"^5.1.2","@types/node":"^22.13.5","bumpp":"^10.0.3","compare-versions":"^6.1.1","element-plus":"^2.9.5","eslint":"^9.21.0","eslint-plugin-format":"^1.0.1","esno":"^4.8.0","estree-walker":"^3.0.3","minimatch":"^10.0.1","pathe":"^2.0.3","rollup":"^4.34.8","tsup":"^8.4.0","typescript":"^5.7.3","vite":"^6.2.0","vitest":"^3.0.7","vue":"3.2.45","vue-tsc":"^2.2.4"},"_id":"unplugin-vue-components@28.4.1","gitHead":"f5a9e0cd7c98d546b6ebafaf3ee6cc5e96faa9f1","_nodeVersion":"22.14.0","_npmVersion":"10.9.2","dist":{"integrity":"sha512-niGSc0vJD9ueAnsqcfAldmtpkppZ09B6p2G1dL7X5S8KPdgbk1P+txPwaaDCe7N+eZh2VG1aAypLXkuJs3OSUg==","shasum":"9d6d9555bbe98ea41d673b886e1e638f36200501","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-28.4.1.tgz","fileCount":49,"unpackedSize":356432,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIQD0eQFn4Hmb4SY7qxhguIRcZqUp+q5/2nW/tSRcm3hDnAIgPySajn9BV88trgHTVR39b6xQbFUOpW65QAz4MOeBg0U="}],"size":85117},"_npmUser":{"name":"sxzz","email":"sxzz@sxzz.moe"},"directories":{},"maintainers":[{"name":"userquin","email":"userquin@gmail.com"},{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"sxzz","email":"sxzz@sxzz.moe"},{"name":"hannoeru","email":"me@hanlee.co"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/unplugin-vue-components_28.4.1_1740626376697_0.8894089723770913"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-02-27T03:19:36.869Z","publish_time":1740626376869,"_source_registry_name":"default"},"28.5.0":{"name":"unplugin-vue-components","type":"module","version":"28.5.0","packageManager":"pnpm@10.8.0","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-vue-components#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-vue-components/issues"},"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"},"./nuxt":{"import":"./dist/nuxt.js","require":"./dist/nuxt.cjs"},"./resolvers":{"import":"./dist/resolvers.js","require":"./dist/resolvers.cjs"},"./rollup":{"import":"./dist/rollup.js","require":"./dist/rollup.cjs"},"./types":{"import":"./dist/types.js","require":"./dist/types.cjs"},"./vite":{"import":"./dist/vite.js","require":"./dist/vite.cjs"},"./webpack":{"import":"./dist/webpack.js","require":"./dist/webpack.cjs"},"./rspack":{"import":"./dist/rspack.js","require":"./dist/rspack.cjs"},"./esbuild":{"import":"./dist/esbuild.js","require":"./dist/esbuild.cjs"},"./*":"./*"},"main":"dist/index.cjs","module":"dist/index.js","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"scripts":{"build":"tsup","dev":"tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp && npm publish","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@nuxt/kit":"^3.2.2","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@nuxt/kit":{"optional":true}},"dependencies":{"chokidar":"^3.6.0","debug":"^4.4.0","local-pkg":"^1.1.1","magic-string":"^0.30.17","mlly":"^1.7.4","tinyglobby":"^0.2.12","unplugin":"^2.3.2","unplugin-utils":"^0.2.4"},"devDependencies":{"@antfu/eslint-config":"^4.12.0","@antfu/utils":"^9.2.0","@babel/parser":"^7.27.0","@babel/types":"^7.27.0","@nuxt/kit":"^3.16.2","@nuxt/schema":"^3.16.2","@types/debug":"^4.1.12","@types/minimatch":"^5.1.2","@types/node":"^22.14.1","bumpp":"^10.1.0","compare-versions":"^6.1.1","element-plus":"^2.9.7","eslint":"^9.24.0","eslint-plugin-format":"^1.0.1","esno":"^4.8.0","estree-walker":"^3.0.3","minimatch":"^10.0.1","pathe":"^2.0.3","rollup":"^4.40.0","tsup":"^8.4.0","typescript":"^5.8.3","vite":"^6.2.6","vitest":"^3.1.1","vue":"3.2.45","vue-tsc":"^2.2.8"},"_id":"unplugin-vue-components@28.5.0","gitHead":"63d5c7e499eaa47cdb880f754f4314bec7c762e9","_nodeVersion":"22.13.1","_npmVersion":"10.9.2","dist":{"integrity":"sha512-o7fMKU/uI8NiP+E0W62zoduuguWqB0obTfHFtbr1AP2uo2lhUPnPttWUE92yesdiYfo9/0hxIrj38FMc1eaySg==","shasum":"33585a24c98939d1abe56bd69217bc7187ba329f","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-28.5.0.tgz","fileCount":49,"unpackedSize":360353,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIA5HcU8ELkkGLBjhFxJzgTe61pE4/a49ohw72ENPjvpuAiEAtJ/BZ7EGZc+RQ8h66aZTB6TVck6lxzHG5FLle0uZ04s="}],"size":86130},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"userquin","email":"userquin@gmail.com"},{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"sxzz","email":"sxzz@sxzz.moe"},{"name":"hannoeru","email":"me@hanlee.co"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/unplugin-vue-components_28.5.0_1744613022451_0.5795482259058478"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-04-14T06:43:42.625Z","publish_time":1744613022625,"_source_registry_name":"default"},"28.6.0":{"name":"unplugin-vue-components","type":"module","version":"28.6.0","packageManager":"pnpm@10.11.0","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-vue-components#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-vue-components/issues"},"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"},"./nuxt":{"import":"./dist/nuxt.js","require":"./dist/nuxt.cjs"},"./resolvers":{"import":"./dist/resolvers.js","require":"./dist/resolvers.cjs"},"./rollup":{"import":"./dist/rollup.js","require":"./dist/rollup.cjs"},"./types":{"import":"./dist/types.js","require":"./dist/types.cjs"},"./vite":{"import":"./dist/vite.js","require":"./dist/vite.cjs"},"./webpack":{"import":"./dist/webpack.js","require":"./dist/webpack.cjs"},"./rspack":{"import":"./dist/rspack.js","require":"./dist/rspack.cjs"},"./esbuild":{"import":"./dist/esbuild.js","require":"./dist/esbuild.cjs"},"./*":"./*"},"main":"dist/index.cjs","module":"dist/index.js","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"scripts":{"build":"tsdown","dev":"tsdown -w","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp && npm publish","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@nuxt/kit":"^3.2.2","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@nuxt/kit":{"optional":true}},"dependencies":{"chokidar":"^3.6.0","debug":"^4.4.1","local-pkg":"^1.1.1","magic-string":"^0.30.17","mlly":"^1.7.4","tinyglobby":"^0.2.14","unplugin":"^2.3.4","unplugin-utils":"^0.2.4"},"devDependencies":{"@antfu/eslint-config":"^4.13.2","@antfu/utils":"^9.2.0","@babel/parser":"^7.27.2","@babel/types":"^7.27.1","@nuxt/kit":"^3.17.4","@nuxt/schema":"^3.17.4","@types/debug":"^4.1.12","@types/minimatch":"^5.1.2","@types/node":"^22.15.21","bumpp":"^10.1.1","compare-versions":"^6.1.1","element-plus":"^2.9.11","eslint":"^9.27.0","eslint-plugin-format":"^1.0.1","esno":"^4.8.0","estree-walker":"^3.0.3","minimatch":"^10.0.1","pathe":"^2.0.3","rollup":"^4.41.1","tsdown":"^0.12.3","typescript":"^5.8.3","vite":"^6.3.5","vitest":"^3.1.4","vue":"3.2.45","vue-tsc":"^2.2.10"},"_id":"unplugin-vue-components@28.6.0","gitHead":"24f5c90dbcf01d71d7ddaf5b3744e9a1e6f0b435","_nodeVersion":"22.13.1","_npmVersion":"10.9.2","dist":{"integrity":"sha512-jUDV9g1xSeDQJBvaJkPCJnk+Gv9sF1FHiWLK2HfbDeWNmDY6x3fFxE83S2Lsz8AGnBSfBqOZk13/NgNcE7oDXg==","shasum":"40032a8338d300f3249d768ab67ef4da207907fc","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-28.6.0.tgz","fileCount":49,"unpackedSize":345551,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIHp1McaY0+skxBfEs/MXeISU64QnIx/76RrF2rT9HtzDAiEAkGpBAgKuxjeR5oojCsVqXln92cThMfeLM1XUbqqrV4M="}],"size":86946},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"userquin","email":"userquin@gmail.com"},{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"sxzz","email":"sxzz@sxzz.moe"},{"name":"hannoeru","email":"me@hanlee.co"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/unplugin-vue-components_28.6.0_1748235363126_0.7254597336358448"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-05-26T04:56:03.281Z","publish_time":1748235363281,"_source_registry_name":"default"},"28.7.0":{"name":"unplugin-vue-components","type":"module","version":"28.7.0","packageManager":"pnpm@10.11.0","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-vue-components#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-vue-components/issues"},"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"},"./nuxt":{"import":"./dist/nuxt.js","require":"./dist/nuxt.cjs"},"./resolvers":{"import":"./dist/resolvers.js","require":"./dist/resolvers.cjs"},"./rollup":{"import":"./dist/rollup.js","require":"./dist/rollup.cjs"},"./types":{"import":"./dist/types.js","require":"./dist/types.cjs"},"./vite":{"import":"./dist/vite.js","require":"./dist/vite.cjs"},"./webpack":{"import":"./dist/webpack.js","require":"./dist/webpack.cjs"},"./rspack":{"import":"./dist/rspack.js","require":"./dist/rspack.cjs"},"./esbuild":{"import":"./dist/esbuild.js","require":"./dist/esbuild.cjs"},"./*":"./*"},"main":"dist/index.cjs","module":"dist/index.js","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"scripts":{"build":"tsdown","dev":"tsdown -w","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","release":"bumpp && npm publish","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@nuxt/kit":"^3.2.2","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@nuxt/kit":{"optional":true}},"dependencies":{"chokidar":"^3.6.0","debug":"^4.4.1","local-pkg":"^1.1.1","magic-string":"^0.30.17","mlly":"^1.7.4","tinyglobby":"^0.2.14","unplugin":"^2.3.4","unplugin-utils":"^0.2.4"},"devDependencies":{"@antfu/eslint-config":"^4.13.2","@antfu/utils":"^9.2.0","@babel/parser":"^7.27.2","@babel/types":"^7.27.1","@nuxt/kit":"^3.17.4","@nuxt/schema":"^3.17.4","@types/debug":"^4.1.12","@types/minimatch":"^5.1.2","@types/node":"^22.15.21","bumpp":"^10.1.1","compare-versions":"^6.1.1","element-plus":"^2.9.11","eslint":"^9.27.0","eslint-plugin-format":"^1.0.1","esno":"^4.8.0","estree-walker":"^3.0.3","minimatch":"^10.0.1","pathe":"^2.0.3","rollup":"^4.41.1","tsdown":"^0.12.3","typescript":"^5.8.3","vite":"^6.3.5","vitest":"^3.1.4","vue":"3.2.45","vue-tsc":"^2.2.10"},"_id":"unplugin-vue-components@28.7.0","gitHead":"d542b307888b242566a5b00e1ee1c5b8dc8a916f","_nodeVersion":"22.13.1","_npmVersion":"10.9.2","dist":{"integrity":"sha512-3SuWAHlTjOiZckqRBGXRdN/k6IMmKyt2Ch5/+DKwYaT321H0ItdZDvW4r8/YkEKQpN9TN3F/SZ0W342gQROC3Q==","shasum":"e61e5a267a951fbace3190e0dfc61268a00f1b3a","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-28.7.0.tgz","fileCount":49,"unpackedSize":345575,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCID6HOq1v46UXssJRp8qYGC4q1ofz/1g3hlmzUBo+HUDxAiEA/MxOBNsoqWdUleBxk2RKmL6pcXaTiMI2cWsdcwm1jMA="}],"size":86953},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"userquin","email":"userquin@gmail.com"},{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"sxzz","email":"sxzz@sxzz.moe"},{"name":"hannoeru","email":"me@hanlee.co"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/unplugin-vue-components_28.7.0_1748235637262_0.9948291071253386"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-05-26T05:00:37.477Z","publish_time":1748235637477,"_source_registry_name":"default"},"28.8.0":{"name":"unplugin-vue-components","type":"module","version":"28.8.0","packageManager":"pnpm@10.12.4","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-vue-components#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-vue-components/issues"},"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"},"./nuxt":{"import":"./dist/nuxt.js","require":"./dist/nuxt.cjs"},"./resolvers":{"import":"./dist/resolvers.js","require":"./dist/resolvers.cjs"},"./rollup":{"import":"./dist/rollup.js","require":"./dist/rollup.cjs"},"./types":{"import":"./dist/types.js","require":"./dist/types.cjs"},"./vite":{"import":"./dist/vite.js","require":"./dist/vite.cjs"},"./webpack":{"import":"./dist/webpack.js","require":"./dist/webpack.cjs"},"./rspack":{"import":"./dist/rspack.js","require":"./dist/rspack.cjs"},"./esbuild":{"import":"./dist/esbuild.js","require":"./dist/esbuild.cjs"},"./*":"./*"},"main":"dist/index.cjs","module":"dist/index.js","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"scripts":{"build":"tsdown","dev":"tsdown -w","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","typecheck":"tsc","release":"bumpp && npm publish","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@nuxt/kit":"^3.2.2 || ^4.0.0","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@nuxt/kit":{"optional":true}},"dependencies":{"chokidar":"^3.6.0","debug":"^4.4.1","local-pkg":"^1.1.1","magic-string":"^0.30.17","mlly":"^1.7.4","tinyglobby":"^0.2.14","unplugin":"^2.3.5","unplugin-utils":"^0.2.4"},"devDependencies":{"@antfu/eslint-config":"^4.16.1","@antfu/utils":"^9.2.0","@babel/parser":"^7.27.7","@babel/types":"^7.27.7","@nuxt/kit":"^3.17.5","@nuxt/schema":"^3.17.5","@types/debug":"^4.1.12","@types/minimatch":"^5.1.2","@types/node":"^24.0.7","bumpp":"^10.2.0","compare-versions":"^6.1.1","element-plus":"^2.10.2","eslint":"^9.30.0","eslint-plugin-format":"^1.0.1","esno":"^4.8.0","estree-walker":"^3.0.3","minimatch":"^10.0.3","pathe":"^2.0.3","rollup":"^4.44.1","tsdown":"^0.12.9","typescript":"^5.8.3","vite":"^7.0.0","vitest":"^3.2.4","vue":"3.2.45","vue-tsc":"^2.2.10"},"_id":"unplugin-vue-components@28.8.0","gitHead":"881f82d607c36ece57e0edc77f84200451e2a839","_nodeVersion":"22.13.1","_npmVersion":"10.9.2","dist":{"integrity":"sha512-2Q6ZongpoQzuXDK0ZsVzMoshH0MWZQ1pzVL538G7oIDKRTVzHjppBDS8aB99SADGHN3lpGU7frraCG6yWNoL5Q==","shasum":"3ccabfee1f4d2bdec38ef76634b6924001a5b671","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-28.8.0.tgz","fileCount":49,"unpackedSize":346836,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQDbOSlRfBlUyWxBBlXeaikUc/EteViDiPCH6oDGZyo0pAIhAJA6CBTFGGIGtEduHPPyaq8OgWg+xxCmaiP6Zayp0Ci9"}],"size":87409},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com","actor":{"name":"antfu","email":"anthonyfu117@hotmail.com","type":"user"}},"directories":{},"maintainers":[{"name":"userquin","email":"userquin@gmail.com"},{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"sxzz","email":"sxzz@sxzz.moe"},{"name":"hannoeru","email":"me@hanlee.co"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/unplugin-vue-components_28.8.0_1751162074716_0.7390264195502656"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-06-29T01:54:34.874Z","publish_time":1751162074874,"_source_registry_name":"default"},"29.0.0":{"name":"unplugin-vue-components","type":"module","version":"29.0.0","packageManager":"pnpm@10.14.0","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-vue-components#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-vue-components/issues"},"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"},"./nuxt":{"import":"./dist/nuxt.js","require":"./dist/nuxt.cjs"},"./resolvers":{"import":"./dist/resolvers.js","require":"./dist/resolvers.cjs"},"./rollup":{"import":"./dist/rollup.js","require":"./dist/rollup.cjs"},"./types":{"import":"./dist/types.js","require":"./dist/types.cjs"},"./vite":{"import":"./dist/vite.js","require":"./dist/vite.cjs"},"./webpack":{"import":"./dist/webpack.js","require":"./dist/webpack.cjs"},"./rspack":{"import":"./dist/rspack.js","require":"./dist/rspack.cjs"},"./esbuild":{"import":"./dist/esbuild.js","require":"./dist/esbuild.cjs"},"./*":"./*"},"main":"dist/index.cjs","module":"dist/index.js","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"scripts":{"build":"tsdown","dev":"tsdown -w","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","prepublishOnly":"npm run build","lint":"eslint .","typecheck":"tsc","release":"bumpp && npm publish","test":"vitest","test:update":"vitest --u"},"peerDependencies":{"@babel/parser":"^7.15.8","@nuxt/kit":"^3.2.2 || ^4.0.0","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@nuxt/kit":{"optional":true}},"dependencies":{"chokidar":"^3.6.0","debug":"^4.4.1","local-pkg":"^1.1.1","magic-string":"^0.30.17","mlly":"^1.7.4","tinyglobby":"^0.2.14","unplugin":"^2.3.5","unplugin-utils":"^0.2.4"},"devDependencies":{"@antfu/eslint-config":"^5.1.0","@antfu/utils":"^9.2.0","@babel/parser":"^7.28.0","@babel/types":"^7.28.2","@nuxt/kit":"^4.0.3","@nuxt/schema":"^4.0.3","@types/debug":"^4.1.12","@types/minimatch":"^6.0.0","@types/node":"^24.2.0","bumpp":"^10.2.2","compare-versions":"^6.1.1","element-plus":"^2.10.5","eslint":"^9.32.0","eslint-plugin-format":"^1.0.1","esno":"^4.8.0","estree-walker":"^3.0.3","minimatch":"^10.0.3","pathe":"^2.0.3","rollup":"^4.46.2","tsdown":"^0.13.3","typescript":"^5.8.3","vite":"^7.0.6","vitest":"^3.2.4","vue":"3.2.45","vue-tsc":"^3.0.5"},"_id":"unplugin-vue-components@29.0.0","gitHead":"cb1802d223cd521aa277b91b535c99060a572af8","_nodeVersion":"22.16.0","_npmVersion":"10.9.2","dist":{"integrity":"sha512-M2DX44g4/jvBkB0V6uwqTbkTd5DMRHpeGoi/cIKwGG4HPuNxLbe8zoTStB2n12hoDiWc9I1PIRQruRWExNXHlQ==","shasum":"dae0354d11ceeef5a873119b7d570df4c84e0f8d","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-29.0.0.tgz","fileCount":49,"unpackedSize":347822,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIHeoT50CM4FjzNfTMdOstimLtONh8C92OoyIHHZ89qJbAiEArOZ3/c2WFv9Nomu0chPps8LUcRucj4ZL6eeWyhC7BRg="}],"size":87613},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"userquin","email":"userquin@gmail.com"},{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"sxzz","email":"sxzz@sxzz.moe"},{"name":"hannoeru","email":"me@hanlee.co"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/unplugin-vue-components_29.0.0_1754457363381_0.31396033498944154"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-08-06T05:16:03.701Z","publish_time":1754457363701,"_source_registry_name":"default"},"29.1.0":{"name":"unplugin-vue-components","type":"module","version":"29.1.0","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-vue-components#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-vue-components/issues"},"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"},"./nuxt":{"import":"./dist/nuxt.js","require":"./dist/nuxt.cjs"},"./resolvers":{"import":"./dist/resolvers.js","require":"./dist/resolvers.cjs"},"./rollup":{"import":"./dist/rollup.js","require":"./dist/rollup.cjs"},"./rolldown":{"import":"./dist/rolldown.js","require":"./dist/rolldown.cjs"},"./types":{"import":"./dist/types.js","require":"./dist/types.cjs"},"./vite":{"import":"./dist/vite.js","require":"./dist/vite.cjs"},"./webpack":{"import":"./dist/webpack.js","require":"./dist/webpack.cjs"},"./rspack":{"import":"./dist/rspack.js","require":"./dist/rspack.cjs"},"./esbuild":{"import":"./dist/esbuild.js","require":"./dist/esbuild.cjs"},"./*":"./*"},"main":"dist/index.cjs","module":"dist/index.js","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"peerDependencies":{"@babel/parser":"^7.15.8","@nuxt/kit":"^3.2.2 || ^4.0.0","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@nuxt/kit":{"optional":true}},"dependencies":{"chokidar":"^3.6.0","debug":"^4.4.3","local-pkg":"^1.1.2","magic-string":"^0.30.19","mlly":"^1.8.0","tinyglobby":"^0.2.15","unplugin":"^2.3.10","unplugin-utils":"^0.3.0"},"devDependencies":{"@antfu/eslint-config":"^5.4.1","@antfu/utils":"^9.2.1","@babel/parser":"^7.28.4","@babel/types":"^7.28.4","@nuxt/kit":"^4.1.2","@nuxt/schema":"^4.1.2","@types/debug":"^4.1.12","@types/minimatch":"^6.0.0","@types/node":"^24.5.2","bumpp":"^10.2.3","compare-versions":"^6.1.1","element-plus":"^2.11.3","eslint":"^9.36.0","eslint-plugin-format":"^1.0.2","esno":"^4.8.0","estree-walker":"^3.0.3","minimatch":"^10.0.3","pathe":"^2.0.3","rolldown":"^1.0.0-beta.38","rollup":"^4.52.0","tsdown":"^0.13.5","typescript":"^5.9.2","vite":"^7.1.6","vitest":"^3.2.4","vue":"3.2.45","vue-tsc":"^3.0.7"},"scripts":{"build":"tsdown","dev":"tsdown -w","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","typecheck":"tsc","release":"bumpp","test":"vitest","test:update":"vitest -u"},"_id":"unplugin-vue-components@29.1.0","_integrity":"sha512-z/9ACPXth199s9aCTCdKZAhe5QGOpvzJYP+Hkd0GN1/PpAmsu+W3UlRY3BJAewPqQxh5xi56+Og6mfiCV1Jzpg==","_resolved":"/tmp/f0dca4b9e07d8c1250d1feb66a36f153/unplugin-vue-components-29.1.0.tgz","_from":"file:unplugin-vue-components-29.1.0.tgz","_nodeVersion":"22.19.0","_npmVersion":"11.6.0","dist":{"integrity":"sha512-z/9ACPXth199s9aCTCdKZAhe5QGOpvzJYP+Hkd0GN1/PpAmsu+W3UlRY3BJAewPqQxh5xi56+Og6mfiCV1Jzpg==","shasum":"6064dfd43ebfc2d54fc04d6c391d30c9f66d3360","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-29.1.0.tgz","fileCount":53,"unpackedSize":351759,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/unplugin-vue-components@29.1.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEQCIEKwyW+Cu02THr0eqV7HlYDIALBKANBa+AHkRAmZg1OOAiAvFdh5Xrhh1c9BLsWGCp6g6yCEVYxWVy99tkDOvp2/FA=="}],"size":88828},"_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:3883cae6-a310-467c-bc7c-eb2fa5534bb7"}},"directories":{},"maintainers":[{"name":"userquin","email":"userquin@gmail.com"},{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"sxzz","email":"sxzz@sxzz.moe"},{"name":"hannoeru","email":"me@hanlee.co"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/unplugin-vue-components_29.1.0_1758406410760_0.3411850344591074"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-09-20T22:13:30.934Z","publish_time":1758406410934,"_source_registry_name":"default"},"29.2.0":{"name":"unplugin-vue-components","type":"module","version":"29.2.0","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-vue-components#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-vue-components/issues"},"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"},"./nuxt":{"import":"./dist/nuxt.js","require":"./dist/nuxt.cjs"},"./resolvers":{"import":"./dist/resolvers.js","require":"./dist/resolvers.cjs"},"./rollup":{"import":"./dist/rollup.js","require":"./dist/rollup.cjs"},"./rolldown":{"import":"./dist/rolldown.js","require":"./dist/rolldown.cjs"},"./types":{"import":"./dist/types.js","require":"./dist/types.cjs"},"./vite":{"import":"./dist/vite.js","require":"./dist/vite.cjs"},"./webpack":{"import":"./dist/webpack.js","require":"./dist/webpack.cjs"},"./rspack":{"import":"./dist/rspack.js","require":"./dist/rspack.cjs"},"./esbuild":{"import":"./dist/esbuild.js","require":"./dist/esbuild.cjs"},"./*":"./*"},"main":"dist/index.cjs","module":"dist/index.js","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"peerDependencies":{"@babel/parser":"^7.15.8","@nuxt/kit":"^3.2.2 || ^4.0.0","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@nuxt/kit":{"optional":true}},"dependencies":{"chokidar":"^3.6.0","debug":"^4.4.3","local-pkg":"^1.1.2","magic-string":"^0.30.19","mlly":"^1.8.0","tinyglobby":"^0.2.15","unplugin":"^2.3.10","unplugin-utils":"^0.3.1"},"devDependencies":{"@antfu/eslint-config":"^6.0.0","@antfu/utils":"^9.3.0","@babel/parser":"^7.28.4","@babel/types":"^7.28.4","@nuxt/kit":"^4.1.3","@nuxt/schema":"^4.1.3","@types/debug":"^4.1.12","@types/minimatch":"^6.0.0","@types/node":"^24.8.1","bumpp":"^10.3.1","compare-versions":"^6.1.1","element-plus":"^2.11.5","eslint":"^9.38.0","eslint-plugin-format":"^1.0.2","esno":"^4.8.0","estree-walker":"^3.0.3","minimatch":"^10.0.3","pathe":"^2.0.3","rolldown":"^1.0.0-beta.43","rollup":"^4.52.5","tsdown":"^0.15.8","typescript":"^5.9.3","vite":"^7.1.10","vitest":"^3.2.4","vue":"3.2.45","vue-tsc":"^3.1.1"},"scripts":{"build":"tsdown","dev":"tsdown -w","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","typecheck":"tsc","release":"bumpp","test":"vitest","test:update":"vitest -u"},"_id":"unplugin-vue-components@29.2.0","_integrity":"sha512-QxBeBdmEflgtJRgMQMc/z/JVV5lcwXN5nOy5ehX6CKDGylIu6Qn4Goy8X95S0qOxF7EdI+uNhdBd4v5i0bvzCw==","_resolved":"/tmp/03cb7c0215ac01bc5068626ec5cd0139/unplugin-vue-components-29.2.0.tgz","_from":"file:unplugin-vue-components-29.2.0.tgz","_nodeVersion":"22.20.0","_npmVersion":"11.6.2","dist":{"integrity":"sha512-QxBeBdmEflgtJRgMQMc/z/JVV5lcwXN5nOy5ehX6CKDGylIu6Qn4Goy8X95S0qOxF7EdI+uNhdBd4v5i0bvzCw==","shasum":"5cf1aace82f6e7481fb068e6d23f33ef1ef849d6","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-29.2.0.tgz","fileCount":53,"unpackedSize":352716,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/unplugin-vue-components@29.2.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIQCHUGFpJ+dGMtg/6rpp9NoivMhWU6Hif92hQ5v5OyHD+QIgZuZ13iMtuRtD7lVeqg0c3d8KPlxKzUvYnaHrDBcbiho="}],"size":88982},"_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:3883cae6-a310-467c-bc7c-eb2fa5534bb7"}},"directories":{},"maintainers":[{"name":"userquin","email":"userquin@gmail.com"},{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"sxzz","email":"sxzz@sxzz.moe"},{"name":"hannoeru","email":"me@hanlee.co"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/unplugin-vue-components_29.2.0_1760915479080_0.9287627186811918"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-10-19T23:11:19.289Z","publish_time":1760915479289,"_source_registry_name":"default"},"30.0.0":{"name":"unplugin-vue-components","type":"module","version":"30.0.0","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-vue-components#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-vue-components/issues"},"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"},"./nuxt":{"import":"./dist/nuxt.js","require":"./dist/nuxt.cjs"},"./resolvers":{"import":"./dist/resolvers.js","require":"./dist/resolvers.cjs"},"./rollup":{"import":"./dist/rollup.js","require":"./dist/rollup.cjs"},"./rolldown":{"import":"./dist/rolldown.js","require":"./dist/rolldown.cjs"},"./types":{"import":"./dist/types.js","require":"./dist/types.cjs"},"./vite":{"import":"./dist/vite.js","require":"./dist/vite.cjs"},"./webpack":{"import":"./dist/webpack.js","require":"./dist/webpack.cjs"},"./rspack":{"import":"./dist/rspack.js","require":"./dist/rspack.cjs"},"./esbuild":{"import":"./dist/esbuild.js","require":"./dist/esbuild.cjs"},"./*":"./*"},"main":"dist/index.cjs","module":"dist/index.js","types":"index.d.ts","typesVersions":{"*":{"*":["./dist/*"]}},"engines":{"node":">=14"},"peerDependencies":{"@babel/parser":"^7.15.8","@nuxt/kit":"^3.2.2 || ^4.0.0","vue":"2 || 3"},"peerDependenciesMeta":{"@babel/parser":{"optional":true},"@nuxt/kit":{"optional":true}},"dependencies":{"chokidar":"^4.0.3","debug":"^4.4.3","local-pkg":"^1.1.2","magic-string":"^0.30.19","mlly":"^1.8.0","tinyglobby":"^0.2.15","unplugin":"^2.3.10","unplugin-utils":"^0.3.1"},"devDependencies":{"@antfu/eslint-config":"^6.0.0","@antfu/utils":"^9.3.0","@babel/parser":"^7.28.4","@babel/types":"^7.28.4","@nuxt/kit":"^4.1.3","@nuxt/schema":"^4.1.3","@types/debug":"^4.1.12","@types/node":"^24.8.1","bumpp":"^10.3.1","compare-versions":"^6.1.1","element-plus":"^2.11.5","eslint":"^9.38.0","eslint-plugin-format":"^1.0.2","esno":"^4.8.0","estree-walker":"^3.0.3","minimatch":"^10.0.3","pathe":"^2.0.3","rolldown":"^1.0.0-beta.43","rollup":"^4.52.5","tsdown":"^0.15.8","typescript":"^5.9.3","vite":"^7.1.10","vitest":"^3.2.4","vue":"3.2.45","vue-tsc":"^3.1.1"},"scripts":{"build":"tsdown","dev":"tsdown -w","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","typecheck":"tsc","release":"bumpp","test":"vitest","test:update":"vitest -u"},"_id":"unplugin-vue-components@30.0.0","_integrity":"sha512-4qVE/lwCgmdPTp6h0qsRN2u642tt4boBQtcpn4wQcWZAsr8TQwq+SPT3NDu/6kBFxzo/sSEK4ioXhOOBrXc3iw==","_resolved":"/tmp/2894b81dd6da911bbe0c6b9387b46cb5/unplugin-vue-components-30.0.0.tgz","_from":"file:unplugin-vue-components-30.0.0.tgz","_nodeVersion":"22.20.0","_npmVersion":"11.6.2","dist":{"integrity":"sha512-4qVE/lwCgmdPTp6h0qsRN2u642tt4boBQtcpn4wQcWZAsr8TQwq+SPT3NDu/6kBFxzo/sSEK4ioXhOOBrXc3iw==","shasum":"c0972272364f4a58a7904c54e5d262b75cefd008","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-30.0.0.tgz","fileCount":53,"unpackedSize":352822,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/unplugin-vue-components@30.0.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIEaS4aCAHdYHroQMWI6e82N4ko7I5cyanW4FNeelnxvEAiEA3I3asl3kzf5et9YIFHz0+OJfoxzzwXttPnj9aGiLkBA="}],"size":89014},"_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:3883cae6-a310-467c-bc7c-eb2fa5534bb7"}},"directories":{},"maintainers":[{"name":"userquin","email":"userquin@gmail.com"},{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"sxzz","email":"sxzz@sxzz.moe"},{"name":"hannoeru","email":"me@hanlee.co"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/unplugin-vue-components_30.0.0_1760915785400_0.6504732115002241"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-10-19T23:16:25.639Z","publish_time":1760915785639,"_source_registry_name":"default"},"31.0.0":{"name":"unplugin-vue-components","type":"module","version":"31.0.0","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-vue-components#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-vue-components/issues"},"exports":{".":"./dist/index.mjs","./esbuild":"./dist/esbuild.mjs","./nuxt":"./dist/nuxt.mjs","./resolvers":"./dist/resolvers.mjs","./rolldown":"./dist/rolldown.mjs","./rollup":"./dist/rollup.mjs","./rspack":"./dist/rspack.mjs","./types":"./dist/types.mjs","./vite":"./dist/vite.mjs","./webpack":"./dist/webpack.mjs","./package.json":"./package.json"},"types":"./dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*.d.mts","./*"]}},"engines":{"node":">=20.19.0"},"peerDependencies":{"@nuxt/kit":"^3.2.2 || ^4.0.0","vue":"^3.0.0"},"peerDependenciesMeta":{"@nuxt/kit":{"optional":true}},"dependencies":{"chokidar":"^5.0.0","local-pkg":"^1.1.2","magic-string":"^0.30.21","mlly":"^1.8.0","obug":"^2.1.1","picomatch":"^4.0.3","tinyglobby":"^0.2.15","unplugin":"^2.3.11","unplugin-utils":"^0.3.1"},"devDependencies":{"@antfu/eslint-config":"^7.0.0","@antfu/utils":"^9.3.0","@nuxt/kit":"^4.2.2","@nuxt/schema":"^4.2.2","@types/node":"^25.0.8","@types/picomatch":"^4.0.2","@typescript/native-preview":"7.0.0-dev.20260114.1","bumpp":"^10.4.0","compare-versions":"^6.1.1","element-plus":"^2.13.1","eslint":"^9.39.2","eslint-plugin-format":"^1.3.1","pathe":"^2.0.3","rolldown":"^1.0.0-beta.60","rollup":"^4.55.1","tsdown":"^0.20.0-beta.3","typescript":"^5.9.3","vite":"^7.3.1","vitest":"^4.0.17","vue":"3.2.45","vue-tsc":"^3.2.2","webpack":"^5.104.1"},"scripts":{"build":"tsdown","dev":"tsdown -w","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","typecheck":"tsgo","release":"bumpp","test":"vitest","test:update":"vitest -u"},"_id":"unplugin-vue-components@31.0.0","_integrity":"sha512-4ULwfTZTLuWJ7+S9P7TrcStYLsSRkk6vy2jt/WTfgUEUb0nW9//xxmrfhyHUEVpZ2UKRRwfRb8Yy15PDbVZf+Q==","_resolved":"/tmp/249c9b9854973e8f01a2ddfd7515354d/unplugin-vue-components-31.0.0.tgz","_from":"file:unplugin-vue-components-31.0.0.tgz","_nodeVersion":"24.12.0","_npmVersion":"11.6.2","dist":{"integrity":"sha512-4ULwfTZTLuWJ7+S9P7TrcStYLsSRkk6vy2jt/WTfgUEUb0nW9//xxmrfhyHUEVpZ2UKRRwfRb8Yy15PDbVZf+Q==","shasum":"fa31b8884ac76e78696e3a41f46e5b58a4539b60","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-31.0.0.tgz","fileCount":27,"unpackedSize":127430,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/unplugin-vue-components@31.0.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIC2/LL+6zk4aS2O3dkhXRNbF8WSaoQFtLJ5bpS0FfGVaAiEAk6TD5qLTd+CwuqpGLTQ4BbjI13f2iEIStF4o5aNmCac="}],"size":33417},"_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:3883cae6-a310-467c-bc7c-eb2fa5534bb7"}},"directories":{},"maintainers":[{"name":"userquin","email":"userquin@gmail.com"},{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"sxzz","email":"sxzz@sxzz.moe"},{"name":"hannoeru","email":"me@hanlee.co"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/unplugin-vue-components_31.0.0_1768433078658_0.031346440958646804"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2026-01-14T23:24:38.799Z","publish_time":1768433078799,"_source_registry_name":"default"},"31.1.0":{"name":"unplugin-vue-components","type":"module","version":"31.1.0","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-vue-components#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-vue-components/issues"},"exports":{".":"./dist/index.mjs","./esbuild":"./dist/esbuild.mjs","./nuxt":"./dist/nuxt.mjs","./resolvers":"./dist/resolvers.mjs","./rolldown":"./dist/rolldown.mjs","./rollup":"./dist/rollup.mjs","./rspack":"./dist/rspack.mjs","./types":"./dist/types.mjs","./vite":"./dist/vite.mjs","./webpack":"./dist/webpack.mjs","./package.json":"./package.json"},"types":"./dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*.d.mts","./*"]}},"engines":{"node":">=20.19.0"},"peerDependencies":{"@nuxt/kit":"^3.2.2 || ^4.0.0","vue":"^3.0.0"},"peerDependenciesMeta":{"@nuxt/kit":{"optional":true}},"dependencies":{"chokidar":"^5.0.0","local-pkg":"^1.1.2","magic-string":"^0.30.21","mlly":"^1.8.2","obug":"^2.1.1","picomatch":"^4.0.3","tinyglobby":"^0.2.15","unplugin":"^2.3.11","unplugin-utils":"^0.3.1"},"devDependencies":{"@antfu/eslint-config":"^7.7.3","@antfu/utils":"^9.3.0","@nuxt/kit":"^4.4.2","@nuxt/schema":"^4.4.2","@types/node":"^25.5.0","@types/picomatch":"^4.0.2","@typescript/native-preview":"7.0.0-dev.20260114.1","bumpp":"^11.0.1","compare-versions":"^6.1.1","element-plus":"^2.13.6","eslint":"^10.1.0","eslint-plugin-format":"^2.0.1","pathe":"^2.0.3","rolldown":"^1.0.0-rc.10","rollup":"^4.60.0","tsdown":"^0.21.4","typescript":"^5.9.3","vite":"^8.0.1","vitest":"^4.1.0","vue":"3.2.45","vue-tsc":"^3.2.6","webpack":"^5.105.4"},"inlinedDependencies":{"@antfu/utils":"9.3.0","compare-versions":"6.1.1"},"scripts":{"build":"tsdown","dev":"tsdown -w","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","typecheck":"tsgo","release":"bumpp","test":"vitest","test:update":"vitest -u"},"_id":"unplugin-vue-components@31.1.0","_integrity":"sha512-9EbV5ark21A4BOBt6RJGJXCVD2I1eoxTZL1TAvNgYTokcrFIiuxpufb8owyWn7n+z2x8daz/ltZq6IRRKL3ydQ==","_resolved":"/tmp/fdf8a2836af6a7b1a87dfd8269df9c64/unplugin-vue-components-31.1.0.tgz","_from":"file:unplugin-vue-components-31.1.0.tgz","_nodeVersion":"24.14.0","_npmVersion":"11.9.0","dist":{"integrity":"sha512-9EbV5ark21A4BOBt6RJGJXCVD2I1eoxTZL1TAvNgYTokcrFIiuxpufb8owyWn7n+z2x8daz/ltZq6IRRKL3ydQ==","shasum":"ea0b149d9b99aca02603ab88d773259916900847","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-31.1.0.tgz","fileCount":26,"unpackedSize":126421,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/unplugin-vue-components@31.1.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIE302DXN3MhcQ37pQNP+vPzh2WvOwSj5ZYB5YLSg+0TEAiEA2mh6twxeJBJ1j/5UlXdNP9If/JEKoZt7T5hHAnk4ynA="}],"size":33299},"_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:3883cae6-a310-467c-bc7c-eb2fa5534bb7"}},"directories":{},"maintainers":[{"name":"userquin","email":"userquin@gmail.com"},{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"sxzz","email":"npm@sxzz.moe"},{"name":"hannoeru","email":"me@hanlee.co"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/unplugin-vue-components_31.1.0_1774256143026_0.33705516359514265"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2026-03-23T08:55:43.159Z","publish_time":1774256143159,"_source_registry_name":"default"},"32.0.0":{"name":"unplugin-vue-components","type":"module","version":"32.0.0","description":"Components auto importing for Vue","author":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-vue-components#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-vue-components.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-vue-components/issues"},"exports":{".":"./dist/index.mjs","./esbuild":"./dist/esbuild.mjs","./nuxt":"./dist/nuxt.mjs","./resolvers":"./dist/resolvers.mjs","./rolldown":"./dist/rolldown.mjs","./rollup":"./dist/rollup.mjs","./rspack":"./dist/rspack.mjs","./types":"./dist/types.mjs","./vite":"./dist/vite.mjs","./webpack":"./dist/webpack.mjs","./package.json":"./package.json"},"types":"./dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*.d.mts","./*"]}},"engines":{"node":">=20.19.0"},"peerDependencies":{"@nuxt/kit":"^3.2.2 || ^4.0.0","vue":"^3.0.0"},"peerDependenciesMeta":{"@nuxt/kit":{"optional":true}},"dependencies":{"chokidar":"^5.0.0","local-pkg":"^1.1.2","magic-string":"^0.30.21","mlly":"^1.8.2","obug":"^2.1.1","picomatch":"^4.0.3","tinyglobby":"^0.2.15","unplugin":"^3.0.0","unplugin-utils":"^0.3.1"},"devDependencies":{"@antfu/eslint-config":"^7.7.3","@antfu/utils":"^9.3.0","@nuxt/kit":"^4.4.2","@nuxt/schema":"^4.4.2","@types/node":"^25.5.0","@types/picomatch":"^4.0.2","@typescript/native-preview":"7.0.0-dev.20260114.1","bumpp":"^11.0.1","compare-versions":"^6.1.1","element-plus":"^2.13.6","eslint":"^10.1.0","eslint-plugin-format":"^2.0.1","pathe":"^2.0.3","rolldown":"^1.0.0-rc.10","rollup":"^4.60.0","tsdown":"^0.21.4","typescript":"^5.9.3","vite":"^8.0.1","vitest":"^4.1.0","vue":"3.2.45","vue-tsc":"^3.2.6","webpack":"^5.105.4"},"inlinedDependencies":{"@antfu/utils":"9.3.0","compare-versions":"6.1.1"},"scripts":{"build":"tsdown","dev":"tsdown -w","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","typecheck":"tsgo","release":"bumpp","test":"vitest","test:update":"vitest -u"},"_id":"unplugin-vue-components@32.0.0","_integrity":"sha512-uLdccgS7mf3pv1bCCP20y/hm+u1eOjAmygVkh+Oa70MPkzgl1eQv1L0CwdHNM3gscO8/GDMGIET98Ja47CBbZg==","_resolved":"/tmp/e043b85de953c223b03c6c0b96690ca1/unplugin-vue-components-32.0.0.tgz","_from":"file:unplugin-vue-components-32.0.0.tgz","_nodeVersion":"24.14.0","_npmVersion":"11.9.0","dist":{"integrity":"sha512-uLdccgS7mf3pv1bCCP20y/hm+u1eOjAmygVkh+Oa70MPkzgl1eQv1L0CwdHNM3gscO8/GDMGIET98Ja47CBbZg==","shasum":"7ad8ac7cc196b0c44c8366533cb8c924bf82d503","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-32.0.0.tgz","fileCount":26,"unpackedSize":126420,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/unplugin-vue-components@32.0.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQCCmfJpozJ+JTFaitnmlyhB4nrGhtrs1YPcp9seK1dTLQIhAP88+1fpY+tXRWPJCxKP3vMWEWv40imU9hnWmmpo6Egs"}],"size":33297},"_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:3883cae6-a310-467c-bc7c-eb2fa5534bb7"}},"directories":{},"maintainers":[{"name":"userquin","email":"userquin@gmail.com"},{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"sxzz","email":"npm@sxzz.moe"},{"name":"hannoeru","email":"me@hanlee.co"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/unplugin-vue-components_32.0.0_1774256186633_0.3392191888299565"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2026-03-23T08:56:26.781Z","publish_time":1774256186781,"_source_registry_name":"default"},"32.1.0":{"name":"unplugin-vue-components","type":"module","version":"32.1.0","description":"Components auto importing for Vue","author":"antfu <anthonyfu117@hotmail.com>","license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-vue-components#readme","repository":{"type":"git","url":"https://github.com/unplugin/unplugin-vue-components.git"},"bugs":"https://github.com/unplugin/unplugin-vue-components/issues","exports":{".":"./dist/index.mjs","./esbuild":"./dist/esbuild.mjs","./nuxt":"./dist/nuxt.mjs","./resolvers":"./dist/resolvers.mjs","./rolldown":"./dist/rolldown.mjs","./rollup":"./dist/rollup.mjs","./rspack":"./dist/rspack.mjs","./types":"./dist/types.mjs","./vite":"./dist/vite.mjs","./webpack":"./dist/webpack.mjs","./package.json":"./package.json"},"types":"./dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*.d.mts","./*"]}},"engines":{"node":">=20.19.0"},"peerDependencies":{"@nuxt/kit":"^3.2.2 || ^4.0.0","vue":"^3.0.0"},"peerDependenciesMeta":{"@nuxt/kit":{"optional":true}},"dependencies":{"chokidar":"^5.0.0","local-pkg":"^1.2.0","magic-string":"^0.30.21","mlly":"^1.8.2","obug":"^2.1.1","picomatch":"^4.0.4","tinyglobby":"^0.2.16","unplugin":"^3.0.0","unplugin-utils":"^0.3.1"},"devDependencies":{"@antfu/eslint-config":"^9.0.0","@antfu/utils":"^9.3.0","@nuxt/kit":"^4.4.6","@nuxt/schema":"^4.4.6","@types/node":"^25.9.1","@types/picomatch":"^4.0.3","@typescript/native-preview":"7.0.0-dev.20260114.1","bumpp":"^11.1.0","compare-versions":"^6.1.1","element-plus":"^2.14.0","eslint":"^10.4.0","eslint-plugin-format":"^2.0.1","pathe":"^2.0.3","rolldown":"^1.0.1","rollup":"^4.60.4","tsdown":"^0.22.0","typescript":"^6.0.3","vite":"^8.0.13","vitest":"^4.1.6","vue":"3.2.45","vue-tsc":"^3.3.1","webpack":"^5.106.2"},"inlinedDependencies":{"@antfu/utils":"9.3.0","compare-versions":"6.1.1"},"scripts":{"build":"tsdown","dev":"tsdown -w","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","typecheck":"tsgo","release":"bumpp","test":"vitest","test:update":"vitest -u"},"_nodeVersion":"26.0.0","_id":"unplugin-vue-components@32.1.0","dist":{"integrity":"sha512-YiUkSxuRjab18XFOrX5VsIxXzccrfmHVGsGeJgSgklb829DQmCy9E4vvDUE4tuvZZdxyFJZX0Oc4TPnnxiiMyg==","shasum":"6381802ff55b72b4664f575e926765f454255b8d","tarball":"https://registry.npmmirror.com/unplugin-vue-components/-/unplugin-vue-components-32.1.0.tgz","fileCount":26,"unpackedSize":126295,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/unplugin-vue-components@32.1.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQCjtPc4smkxxw0OUD3V2pFY73t8eu/9aTvzqVz6062XUAIhALrLSYYwulWS7Kb3Z8JMIf9MBJRj5O6Z0QBmr1KGOoOx"}],"size":33294},"_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:3883cae6-a310-467c-bc7c-eb2fa5534bb7"}},"directories":{},"maintainers":[{"name":"userquin","email":"userquin@gmail.com"},{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"sxzz","email":"npm@sxzz.moe"},{"name":"hannoeru","email":"me@hanlee.co"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/unplugin-vue-components_32.1.0_1779251916977_0.971111913700367"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2026-05-20T04:38:37.140Z","publish_time":1779251917140,"_source_registry_name":"default"}},"bugs":"https://github.com/unplugin/unplugin-vue-components/issues","homepage":"https://github.com/unplugin/unplugin-vue-components#readme","repository":{"type":"git","url":"https://github.com/unplugin/unplugin-vue-components.git"},"_source_registry_name":"default"}