{"_attachments":{},"_id":"unplugin-icons","_rev":"1554452-61f34981177ca1a13484341e","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"description":"Access thousands of icons as components on-demand universally","dist-tags":{"latest":"23.0.1"},"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-icons","readme":"# unplugin-icons\n\n[![NPM version](https://img.shields.io/npm/v/unplugin-icons?color=a1b858&label=)](https://www.npmjs.com/package/unplugin-icons)\n\nAccess thousands of icons as components **on-demand** universally.\n\n### Features\n\n- 🌏 Universal\n  - 🤹 **Any** icon sets - ~150 popular sets with over 200,000 icons, logos, emojis, etc. Powered by [Iconify](https://github.com/iconify/iconify).\n  - 📦 **Major** build tools - Vite, Webpack, Rollup, Nuxt, Rspack, etc. Powered by [unplugin](https://github.com/unjs/unplugin).\n  - 🚀 **Major** frameworks - Vanilla, Web Components, React, Vue 3, Solid, Svelte, and more. [Contribute](./src/core/compilers).\n  - 🍱 **Any** combinations of them!\n- ☁️ On-demand - Only bundle the icons you really use, while having all the options.\n- 🖨 SSR / SSG friendly - Ship the icons with your page, no more FOUC.\n- 🌈 Stylable - Change size, color, or even add animations as you would with styles and classes.\n- 📥 [Custom icons](#custom-icons) - load your custom icons to get universal integrations at ease.\n- 📲 [Auto Importing](#auto-importing) - Use icons as components directly in your template.\n- 🦾 TypeScript support.\n- 🔍 [Browse Icons](https://icones.js.org/)\n\n<table><tr><td><br>\n\n&nbsp;&nbsp;&nbsp;💡 **Story behind this tool**: [Journey with Icons Continues](https://antfu.me/posts/journey-with-icons-continues) - a blog post by Anthony&nbsp;&nbsp;&nbsp;\n\n</td></tr></table>\n\n> **`vite-plugin-icons` has been renamed to `unplugin-icons`**, see the [migration guide](#migration-from-vite-plugin-icons)\n\n## Quick Start\n\n### Basic Usage\n\nImport icons using the convention `~icons/{collection}/{icon}` and use them as components. [Auto importing](#auto-importing) is also supported.\n\n**React Example:**\n\n```jsx\nimport IconAccessibility from '~icons/carbon/accessibility'\nimport IconAccountBox from '~icons/mdi/account-box'\n\nfunction App() {\n  return (\n    <div>\n      <IconAccessibility />\n      <IconAccountBox style={{ fontSize: '2em', color: 'red' }} />\n    </div>\n  )\n}\n```\n\n**Vue Example:**\n\n```vue\n<script setup>\nimport IconAccessibility from '~icons/carbon/accessibility'\nimport IconAccountBox from '~icons/mdi/account-box'\n</script>\n\n<template>\n  <icon-accessibility />\n  <icon-account-box style=\"font-size: 2em; color: red\" />\n</template>\n```\n\n## Installation\n\n> **Note**: This package is ESM-only. Make sure your project uses ES modules (`\"type\": \"module\"` in `package.json` or `.mjs` file extensions).\n\n### Step 1: Install the Plugin\n\n```bash\nnpm i -D unplugin-icons\n```\n\n### Step 2: Install Icon Data\n\nWe use [Iconify](https://iconify.design/) as the icons data source (supports 100+ icon sets).\n\n> [!TIP]\n> ✨ **VS Code Users**: Install the [Iconify IntelliSense](https://marketplace.visualstudio.com/items?itemName=antfu.iconify) extension for inlay preview, auto-completion, and hover information.\n\n**Option A: Install Full Collection** (Recommended for flexibility)\n\n```bash\nnpm i -D @iconify/json\n```\n\nThis installs all icon sets (~120MB). Only icons you actually use will be bundled in production.\n\n**Option B: Install Individual Icon Sets**\n\nInstall only the icon sets you need:\n\n```bash\nnpm i -D @iconify-json/mdi @iconify-json/carbon\n```\n\n**Option C: Auto Install** (Experimental)\n\nLet `unplugin-icons` automatically install icon sets when you import them:\n\n```ts\nIcons({\n  autoInstall: true, // Auto-detects npm/yarn/pnpm\n})\n```\n\n## Examples\n\nCheck out the [playgrounds page](./examples/README.md) to try examples online in StackBlitz.\n\nAvailable examples:\n- [Vite + Vue 3](examples/vite-vue3)\n- [Vite + React](examples/vite-react)\n- [Next.js](examples/next)\n- [Nuxt 4](examples/nuxt4)\n- [SvelteKit](examples/sveltekit)\n- [Astro](examples/astro)\n- And more...\n\n## Configuration\n\nThis section covers how to configure `unplugin-icons` for different build tools and frameworks.\n\n### Build Tools\n\n<details>\n<summary>Vite</summary><br>\n\n```ts\n// vite.config.ts\nimport Icons from 'unplugin-icons/vite'\n\nexport default defineConfig({\n  plugins: [\n    Icons({ /* options */ }),\n  ],\n})\n```\n\n<br></details>\n\n<details>\n<summary>Rollup</summary><br>\n\n```ts\n// rollup.config.js\nimport Icons from 'unplugin-icons/rollup'\n\nexport default {\n  plugins: [\n    Icons({ /* options */ }),\n  ],\n}\n```\n\n<br></details>\n\n<details>\n<summary>Webpack</summary><br>\n\n```ts\n// webpack.config.mjs\nimport Icons from 'unplugin-icons/webpack'\n\nexport default {\n  /* ... */\n  plugins: [\n    Icons({ /* options */ }),\n  ],\n}\n```\n\n<br></details>\n\n<details>\n<summary>Nuxt</summary><br>\n\nNuxt 2 and [Nuxt Bridge](https://github.com/nuxt/bridge)\n\n```ts\n// nuxt.config.ts\nexport default {\n  buildModules: [\n    ['unplugin-icons/nuxt', { /* options */ }],\n  ],\n}\n```\n\nNuxt 3/4\n\n```ts\n// nuxt.config.ts\nexport default defineNuxtConfig({\n  modules: [\n    ['unplugin-icons/nuxt', { /* options */ }]\n  ],\n})\n```\n\nOr work with [unplugin-vue-components](https://github.com/unplugin/unplugin-vue-components) resolvers\n\n```ts\nimport IconsResolver from 'unplugin-icons/resolver'\nimport ViteComponents from 'unplugin-vue-components/vite'\n\n// nuxt.config.ts\nexport default defineNuxtConfig({\n  modules: [\n    'unplugin-icons/nuxt',\n  ],\n  vite: {\n    plugins: [\n      ViteComponents({\n        resolvers: [\n          IconsResolver({/* options */}),\n        ],\n      }),\n    ],\n  },\n})\n```\n\nSee [the Nuxt example](examples/nuxt4) for a working example project.\n\n<br></details>\n\n<details>\n<summary>Rspack</summary>\n\n```ts\nimport Icons from 'unplugin-icons/rspack'\n\n// rspack.config.mjs\nexport default defineConfig({\n  plugins: [\n    // ...\n    Icons({/* options */}),\n  ]\n})\n```\n</details>\n\n<details>\n<summary>Vue CLI</summary><br>\n\n> **Note**: This package is ESM-only. You need to use `vue.config.mjs` with ES module syntax (requires `@vue/cli-service ^5.0.8`).\n\n```ts\n// vue.config.mjs\nimport Icons from 'unplugin-icons/webpack'\n\nexport default {\n  configureWebpack: {\n    plugins: [\n      Icons({ /* options */ }),\n    ],\n  },\n}\n```\n\n<br></details>\n\n<details>\n<summary>SvelteKit</summary><br>\n\nAdd to your `vite.config.ts`:\n\n```ts\nimport { sveltekit } from '@sveltejs/kit/vite'\nimport Icons from 'unplugin-icons/vite'\nimport { defineConfig } from 'vite'\n\nexport default defineConfig({\n  plugins: [\n    sveltekit(),\n    Icons({\n      compiler: 'svelte',\n    })\n  ]\n})\n```\n\nCheck instructions in the `Frameworks -> Svelte` section below if you faced module import errors.\n\nSee [the SvelteKit example](examples/sveltekit) for a working example project.\n\n<br></details>\n\n<details>\n<summary>Svelte + Vite</summary><br>\n\nSvelte support requires the `@sveltejs/vite-plugin-svelte` plugin:\n```shell\nnpm i -D @sveltejs/vite-plugin-svelte\n```\n\nAdd to your `vite.config.ts`:\n\n```ts\nimport { svelte } from '@sveltejs/vite-plugin-svelte'\nimport Icons from 'unplugin-icons/vite'\nimport { defineConfig } from 'vite'\n\nexport default defineConfig({\n  plugins: [\n    svelte(),\n    Icons({\n      compiler: 'svelte',\n    }),\n  ],\n})\n```\n\nCheck instructions in the `Frameworks -> Svelte` section below if you faced module import errors.\n\nSee [the Svelte + Vite example](examples/vite-svelte) for a working example project.\n\n<br></details>\n\n<details>\n<summary>Next.js</summary><br>\n\n> **Note**: This package is ESM-only. You need to use `next.config.mjs` with ES module syntax.\n\nAdd to your `next.config.mjs`:\n\n```ts\n// next.config.mjs\nimport Icons from 'unplugin-icons/webpack'\n\n/** @type {import('next').NextConfig} */\nexport default {\n  reactStrictMode: true,\n  webpack(config) {\n    config.plugins.push(\n      Icons({\n        compiler: 'jsx',\n        jsx: 'react'\n      })\n    )\n\n    return config\n  }\n}\n```\n\nCheck instructions in the `Frameworks -> React` section below if you faced module import errors.\n\n⚠️ **Warning:** to import an icon is necessary to explicitly add the `.jsx` extension to the import path, so that Next.js knows how to load it, by example:\n\n<!-- eslint-skip -->\n\n```ts\nimport IconArrowRight from '~icons/dashicons/arrow-right.jsx';\n                                                     // ^-- write `.jsx` to avoid\n                                                     // https://github.com/antfu/unplugin-icons/issues/103\n// ...some code later\n<IconArrowRight />\n```\n\nSee [the Next.js example](examples/next) for a working example project.\n\n<br></details>\n\n<details>\n<summary>esbuild</summary><br>\n\n```ts\n// esbuild.config.js\nimport { build } from 'esbuild'\nimport Icons from 'unplugin-icons/esbuild'\n\nbuild({\n  /* ... */\n  plugins: [\n    Icons({\n      /* options */\n    }),\n  ],\n})\n```\n\n<br></details>\n\n<details>\n<summary>Astro</summary><br>\n\n```ts\n// astro.config.mjs\nimport { defineConfig } from 'astro/config'\nimport Icons from 'unplugin-icons/vite'\n\n// https://astro.build/config\nexport default defineConfig({\n  vite: {\n    plugins: [\n      Icons({\n        compiler: 'astro',\n      }),\n    ],\n  },\n})\n```\n\nSee [the Astro example](examples/astro) for a working example project.\n\n<br></details>\n\n<details>\n<summary>Astro + Vue</summary><br>\n\nRequired [@astrojs/vue](https://docs.astro.build/es/guides/integrations-guide/vue/) installed.\n\n```ts\nimport Vue from '@astrojs/vue'\n// astro.config.mjs\nimport { defineConfig } from 'astro/config'\nimport Icons from 'unplugin-icons/vite'\n\n// https://astro.build/config\nexport default defineConfig({\n  integrations: [\n    Vue(),\n  ],\n  vite: {\n    plugins: [\n      Icons({\n        compiler: 'vue3',\n      }),\n    ],\n  },\n})\n```\n\nSee [the Astro + Vue example](examples/astro-vue) for a working example project.\n\n<br></details>\n\n### Frameworks\n\nConfigure the `compiler` option based on your framework. Some frameworks may require additional peer dependencies.\n\n<details>\n<summary>Vue 3</summary><br>\n\n**Configuration:**\n\n```ts\nIcons({ compiler: 'vue3' })\n```\n\n**Peer Dependency:**\n\n> **Note**: As of Vue 3.2.13+, `@vue/compiler-sfc` is included in the main `vue` package, so no additional installation is needed.\n\nIf you're using an older version:\n\n```bash\nnpm i -D @vue/compiler-sfc\n```\n\n**TypeScript Support:**\n\nAdd to your `tsconfig.json`:\n\n```jsonc\n{\n  \"compilerOptions\": {\n    \"types\": [\n      \"unplugin-icons/types/vue\"\n    ]\n  }\n}\n```\n\nSee [the Vue 3 example](examples/vite-vue3) for a complete setup.\n\n<br></details>\n\n<details>\n<summary>React</summary><br>\n\n**Configuration:**\n\n```ts\nIcons({ compiler: 'jsx', jsx: 'react' })\n```\n\n**Peer Dependencies:**\n\n```bash\nnpm i -D @svgr/core @svgr/plugin-jsx\n```\n\n**TypeScript Support:**\n\nAdd to your `tsconfig.json`:\n\n```jsonc\n{\n  \"compilerOptions\": {\n    \"types\": [\n      \"unplugin-icons/types/react\"\n    ]\n  }\n}\n```\n\nSee [the React example](examples/vite-react) for a complete setup.\n\n<br></details>\n\n<details>\n<summary>Preact</summary><br>\n\n**Configuration:**\n\n```ts\nIcons({ compiler: 'jsx', jsx: 'preact' })\n```\n\n**Peer Dependencies:**\n\n```bash\nnpm i -D @svgr/core @svgr/plugin-jsx\n```\n\n**TypeScript Support:**\n\nAdd to your `tsconfig.json`:\n\n```jsonc\n{\n  \"compilerOptions\": {\n    \"types\": [\n      \"unplugin-icons/types/preact\"\n    ]\n  }\n}\n```\n\nSee [the Preact example](examples/vite-preact) for a complete setup.\n\n<br></details>\n\n<details>\n<summary>Solid</summary><br>\n\n**Configuration:**\n\n```ts\nIcons({ compiler: 'solid' })\n```\n\n**TypeScript Support:**\n\nAdd to your `tsconfig.json`:\n\n```jsonc\n{\n  \"compilerOptions\": {\n    \"types\": [\n      \"unplugin-icons/types/solid\"\n    ]\n  }\n}\n```\n\nSee [the Solid example](examples/vite-solid) for a complete setup.\n\n<br></details>\n\n<details>\n<summary>Svelte</summary><br>\n\n**Configuration:**\n\n```ts\nIcons({ compiler: 'svelte' })\n```\n\n**TypeScript Support:**\n\n**For SvelteKit**, add to `src/app.d.ts`:\n\n```ts\nimport 'unplugin-icons/types/svelte'\n```\n\n**For Svelte + Vite**, add to `src/vite-env.d.ts`:\n\n```ts\n/// <reference types=\"svelte\" />\n/// <reference types=\"vite/client\" />\n/// <reference types=\"unplugin-icons/types/svelte\" />\n```\n\n**For Svelte 4**, use:\n\n```ts\n/// <reference types=\"unplugin-icons/types/svelte4\" />\n```\n\n**For Svelte 3**, use:\n\n```ts\n/// <reference types=\"unplugin-icons/types/svelte3\" />\n```\n\nSee [the Svelte example](examples/vite-svelte) for a complete setup.\n\n<br></details>\n\n<details>\n<summary>Astro</summary><br>\n\n**Configuration:**\n\n```ts\nIcons({ compiler: 'astro' })\n```\n\n**TypeScript Support:**\n\nAdd to your `tsconfig.json`:\n\n```jsonc\n{\n  \"compilerOptions\": {\n    \"types\": [\n      \"unplugin-icons/types/astro\"\n    ]\n  }\n}\n```\n\nSee [the Astro example](examples/astro) for a complete setup.\n\n<br></details>\n\n<details>\n<summary>Astro + Vue</summary><br>\n\n**Configuration:**\n\n```ts\nIcons({ compiler: 'vue3' })\n```\n\n**Requirements:**\n\nRequires [@astrojs/vue](https://docs.astro.build/es/guides/integrations-guide/vue/) to be installed.\n\n**TypeScript Support:**\n\nAdd to your `tsconfig.json`:\n\n```jsonc\n{\n  \"compilerOptions\": {\n    \"types\": [\n      \"unplugin-icons/types/vue\"\n    ]\n  }\n}\n```\n\nSee [the Astro + Vue example](examples/astro-vue) for a complete setup.\n\n<br></details>\n\n<details>\n<summary>Qwik</summary><br>\n\n**Option 1: Native Qwik Compiler** (Recommended)\n\n**Configuration:**\n\n```ts\nIcons({ compiler: 'qwik' })\n```\n\n**Peer Dependency:**\n\n```bash\nnpm i -D @svgx/core\n```\n\n**Option 2: JSX Compiler**\n\n**Configuration:**\n\n```ts\nIcons({ compiler: 'jsx', jsx: 'qwik' })\n```\n\n**Peer Dependencies:**\n\n```bash\nnpm i -D @svgr/core @svgr/plugin-jsx\n```\n\n**TypeScript Support:**\n\nAdd to your `tsconfig.json`:\n\n```jsonc\n{\n  \"compilerOptions\": {\n    \"types\": [\n      \"unplugin-icons/types/qwik\"\n    ]\n  }\n}\n```\n\nSee [the Qwik example](examples/vite-qwik) for a complete setup.\n\n<br></details>\n\n<details>\n<summary>Ember</summary><br>\n\n**Configuration:**\n\n```ts\nIcons({ compiler: 'ember' })\n```\n\n**Build Tool Support:**\n\nEmber works with either Webpack or Vite.\n\n**For Vite applications**, add to `vite.config.mjs`:\n\n```ts\nimport { ember, extensions } from '@embroider/vite'\nimport { babel } from '@rollup/plugin-babel'\nimport Icons from 'unplugin-icons/vite'\nimport { defineConfig } from 'vite'\n\nexport default defineConfig({\n  plugins: [\n    ember(),\n    Icons({\n      compiler: 'ember',\n    }),\n    babel({\n      babelHelpers: 'runtime',\n      extensions,\n    }),\n  ],\n})\n```\n\n**TypeScript Support:**\n\nAdd to your `tsconfig.json`:\n\n```jsonc\n{\n  \"compilerOptions\": {\n    \"types\": [\n      \"unplugin-icons/types/ember\"\n    ]\n  }\n}\n```\n\n<details><summary>Ember + Webpack</summary>\n\nAssuming your app was generated with `--embroider`, or manually migrated to embroider following the instructions on [the old embroider readme](https://github.com/embroider-build/embroider/tree/stable?tab=readme-ov-file#how-to-try-it)\n\nAdd the Icon plugin to the webpack plugins array in `ember-cli-build.js`:\n\n<!-- eslint-skip -->\n\n```ts\nimport { compatBuild } from '@embroider/compat'\nimport Icons from 'unplugin-icons/webpack'\n\nreturn compatBuild(app, Webpack, {\n    packagerOptions: {\n      webpackConfig: {\n        plugins: [\n          Icons({\n            compiler: 'ember',\n          }),\n        ],\n      },\n    },\n    // ...other options\n```\n\n</details>\n\nSee the [Ember (with Webpack)](examples/webpack-ember) or [Ember vite example](examples/vite-ember) for a working example project.\n\n<br></details>\n\n## Raw SVG Import\n\n> Available from `v0.13.2+`\n\nImport icons as raw SVG strings by adding `?raw` to the import path. Useful for embedding SVG directly in HTML templates.\n\n**Example (Vue 3):**\n\n```vue\n<script setup lang='ts'>\nimport RawMdiAlarmOff from '~icons/mdi/alarm-off?raw&width=4em&height=4em'\nimport RawMdiAlarmOff2 from '~icons/mdi/alarm-off?raw&width=1em&height=1em'\n</script>\n\n<template>\n  <!-- raw example -->\n  <pre>\n    import RawMdiAlarmOff from '~icons/mdi/alarm-off?raw&width=4em&height=4em'\n    {{ RawMdiAlarmOff }}\n    import RawMdiAlarmOff2 from '~icons/mdi/alarm-off?raw&width=1em&height=1em'\n    {{ RawMdiAlarmOff2 }}\n  </pre>\n  <!-- svg example -->\n  <span v-html=\"RawMdiAlarmOff\" />\n  <span v-html=\"RawMdiAlarmOff2\" />\n</template>\n```\n\n## Custom Icons\n\nLoad your own custom icons and use them with the same universal API.\n\n```ts\nimport { promises as fs } from 'node:fs'\n\n// loader helpers\nimport { FileSystemIconLoader } from 'unplugin-icons/loaders'\n\nIcons({\n  customCollections: {\n    // key as the collection name\n    'my-icons': {\n      account: '<svg><!-- ... --></svg>',\n      // load your custom icon lazily\n      settings: () => fs.readFile('./path/to/my-icon.svg', 'utf-8'),\n      /* ... */\n    },\n    'my-other-icons': async (iconName) => {\n      // your custom loader here. Do whatever you want.\n      // for example, fetch from a remote server:\n      return await fetch(`https://example.com/icons/${iconName}.svg`).then(res => res.text())\n    },\n    // a helper to load icons from the file system\n    // files under `./assets/icons` with `.svg` extension will be loaded as it's file name\n    // you can also provide a transform callback to change each icon (optional)\n    'my-yet-other-icons': FileSystemIconLoader(\n      './assets/icons',\n      svg => svg.replace(/^<svg /, '<svg fill=\"currentColor\" '),\n    ),\n  },\n})\n```\n\nThen use as\n\n```ts\nimport IconAccount from '~icons/my-icons/account'\nimport IconFoo from '~icons/my-other-icons/foo'\nimport IconBar from '~icons/my-yet-other-icons/bar'\n```\n\n> 💡 SVG Authoring Tips:\n> - To make your icons color adaptable, set `fill=\"currentColor\"` or `stroke=\"currentColor\"` in your SVG.\n> - Leave the `height` and `width` unspecified, we will set them for you.\n\n### Auto-Import with Resolver\n\nWhen using [auto-importing](#auto-importing), register your custom collection names:\n\n```ts\nIconResolver({\n  customCollections: [\n    'my-icons',\n    'my-other-icons',\n    'my-yet-other-icons',\n  ],\n})\n```\n\nSee the [Vue 3 example](examples/vite-vue3) for a complete setup.\n\n### External Collection Packages\n\nLoad icons from third-party packages that follow the Iconify format.\n\n**Requirements:**\n\nExternal packages must include an `icons.json` file in `IconifyJSON` format. See [Exporting icon set as JSON package](https://iconify.design/docs/libraries/tools/export/json-package.html) for details.\n\nFor example, you can use `an-awesome-collection` or `@my-awesome-collections/some-collection` to load your custom or third party icons:\n```ts\n// loader helpers\nimport { ExternalPackageIconLoader } from 'unplugin-icons/loaders'\n\nIcons({ customCollections: ExternalPackageIconLoader('my-awesome-collection') })\n```\n\nWhen using with resolvers for auto-importing, remember you will need to tell it your custom collection names:\n```ts\nIconResolver({\n  customCollections: [\n    'my-awesome-collection',\n  ],\n})\n```\n\nYou can also combine it with `FileSystemIconLoader` or with other custom icon loaders:\n```ts\n// loader helpers\nimport { ExternalPackageIconLoader, FileSystemIconLoader } from 'unplugin-icons/loaders'\n\nIcons({\n  customCollections: {\n    ...ExternalPackageIconLoader('an-awesome-collection'),\n    ...ExternalPackageIconLoader('@my-awesome-collections/some-collection'),\n    ...ExternalPackageIconLoader('@my-awesome-collections/some-other-collection'),\n    'my-yet-other-icons': FileSystemIconLoader(\n      './assets/icons',\n      svg => svg.replace(/^<svg /, '<svg fill=\"currentColor\" '),\n    ),\n  },\n})\n```\n\nSee the [Vue 3 example](examples/vite-vue3) for a complete setup.\n\n## Icon Customization\n\nCustomize individual icons or entire collections using `iconCustomizer` in your config or query parameters when importing.\n\n**Precedence:** Query params > `iconCustomizer` > default configuration\n\nWorks with all icon sources: custom loaders, inlined collections, and Iconify collections.\n\nFor example, you can configure `iconCustomizer` to change all icons for a collection or individual icons on a collection:\n\n```ts\nimport { promises as fs } from 'node:fs'\n\n// loader helpers\nimport { FileSystemIconLoader } from 'unplugin-icons/loaders'\n\nIcons({\n  customCollections: {\n    // key as the collection name\n    'my-icons': {\n      account: '<svg><!-- ... --></svg>',\n      // load your custom icon lazily\n      settings: () => fs.readFile('./path/to/my-icon.svg', 'utf-8'),\n      /* ... */\n    },\n    'my-other-icons': async (iconName) => {\n      // your custom loader here. Do whatever you want.\n      // for example, fetch from a remote server:\n      return await fetch(`https://example.com/icons/${iconName}.svg`).then(res => res.text())\n    },\n    // a helper to load icons from the file system\n    // files under `./assets/icons` with `.svg` extension will be loaded as it's file name\n    // you can also provide a transform callback to change each icon (optional)\n    'my-yet-other-icons': FileSystemIconLoader(\n      './assets/icons',\n      svg => svg.replace(/^<svg /, '<svg fill=\"currentColor\" '),\n    ),\n  },\n  iconCustomizer(collection, icon, props) {\n    // customize all icons in this collection\n    if (collection === 'my-other-icons') {\n      props.width = '4em'\n      props.height = '4em'\n    }\n    // customize this icon in this collection\n    if (collection === 'my-icons' && icon === 'account') {\n      props.width = '6em'\n      props.height = '6em'\n    }\n    // customize this @iconify icon in this collection\n    if (collection === 'mdi' && icon === 'account') {\n      props.width = '2em'\n      props.height = '2em'\n    }\n  },\n})\n```\n\nor you can use `query` params to apply to individual icons:\n\n<!-- eslint-skip -->\n\n```vue\n<script setup lang='ts'>\nimport MdiAlarmOff from 'virtual:icons/mdi/alarm-off?width=4em&height=4em'\nimport MdiAlarmOff2 from 'virtual:icons/mdi/alarm-off?width=1em&height=1em'\n</script>\n\n<template>\n  <!-- width=4em and height=4em -->\n  <mdi-alarm-off />\n  <!-- width=4em and height=4em -->\n  <MdiAlarmOff />\n  <!-- width=1em and height=1em -->\n  <MdiAlarmOff2 />\n</template>\n```\n\nSee the [Vue 3 example](examples/vite-vue3) for a complete implementation.\n\n## Global Icon Transformation\n\nApply transformations to all custom icons during loading. Useful for adding default attributes like `fill=\"currentColor\"`.\n```ts\nIcons({\n  customCollections: {\n    // key as the collection name\n    'my-icons': {\n      account: '<svg><!-- ... --></svg>',\n      /* ... */\n    },\n  },\n  transform(svg, collection, icon) {\n    // apply fill to this icon on this collection\n    if (collection === 'my-icons' && icon === 'account')\n      return svg.replace(/^<svg /, '<svg fill=\"currentColor\" ')\n\n    return svg\n  },\n})\n```\n\n## Advanced Custom Icon Set Cleanup\n\nWhen using this plugin with your custom icons, consider using a cleanup process similar to that done by [Iconify](https://iconify.design/) for any icons sets. All the tools you need are available in [Iconify Tools](https://docs.iconify.design/tools/tools2/).\n\nYou can check this repo, using `unplugin-icons` on a `SvelteKit` project: https://github.com/iconify/tools/tree/main/%40iconify-demo/unplugin-svelte.\n\nRead [Cleaning up icons](https://docs.iconify.design/articles/cleaning-up-icons/) article from [Iconify](https://iconify.design/) for more details.\n\n## Migration from `vite-plugin-icons`\n\nIf you're upgrading from `vite-plugin-icons`, follow these steps:\n\n**1. Update `package.json`:**\n\n```diff\n{\n  \"devDependencies\": {\n-   \"vite-plugin-icons\": \"*\",\n+   \"unplugin-icons\": \"^0.7.0\",\n  }\n}\n```\n\n**2. Update your config file:**\n\n```diff\nimport Components from 'unplugin-vue-components/vite'\n- import Icons, { ViteIconsResolver } from 'vite-plugin-icons'\n+ import Icons from 'unplugin-icons/vite'\n+ import IconsResolver from 'unplugin-icons/resolver'\n\nexport default {\n  plugins: [\n    Vue(),\n    Components({\n      resolvers: [\n        IconsResolver()\n      ],\n    }),\n    Icons(),\n  ],\n}\n```\n\n**3. Update import paths:**\n\n```diff\n- import IconComponent from 'virtual:vite-icons/collection/name'\n+ import IconComponent from '~icons/collection/name'\n```\n\n> **Note**: The `virtual:icons` prefix still works in Vite, but `~icons` is recommended for consistency across all build tools.\n\n## Options\n\nConfigure default styling and behavior for all icons:\n\n```ts\nIcons({\n  // Icon sizing\n  scale: 1.2,              // Scale factor relative to 1em (default: 1.2)\n  \n  // Default styling\n  defaultStyle: '',        // CSS styles applied to all icons\n  defaultClass: '',       // CSS classes applied to all icons\n  \n  // Compiler configuration\n  compiler: null,         // Framework compiler: 'vue3', 'jsx', 'svelte', 'solid', etc.\n  jsx: 'react',           // JSX framework: 'react' or 'preact' (when compiler: 'jsx')\n  \n  // Custom collections\n  customCollections: {},  // See [Custom Icons](#custom-icons)\n  \n  // Advanced\n  iconCustomizer: () => {}, // See [Icon Customization](#icon-customization)\n  transform: undefined,   // See [Global Icon Transformation](#global-icon-transformation)\n  autoInstall: false,    // Auto-install icon sets on import\n})\n```\n\n## Auto Importing\n\n<details>\n<summary>Vue 3</summary><br>\n\nUse with [`unplugin-vue-components`](https://github.com/antfu/unplugin-vue-components)\n\nFor example in Vite:\n\n```ts\n// vite.config.ts\nimport Vue from '@vitejs/plugin-vue'\nimport IconsResolver from 'unplugin-icons/resolver'\nimport Icons from 'unplugin-icons/vite'\nimport Components from 'unplugin-vue-components/vite'\n\nexport default {\n  plugins: [\n    Vue(),\n    Components({\n      resolvers: [\n        IconsResolver(),\n      ],\n    }),\n    Icons(),\n  ],\n}\n```\n\nThen you can use any icons as you want without explicit importing. Only the used icons will be bundled.\n\n```html\n<template>\n  <i-carbon-accessibility/>\n  <i-mdi-account-box style=\"font-size: 2em; color: red\"/>\n</template>\n```\n\n</details>\n\n<details>\n<summary>React & Solid</summary><br>\n\nUse with [`unplugin-auto-import`](https://github.com/antfu/unplugin-auto-import)\n\nFor example in Vite:\n\n```ts\n// vite.config.ts\nimport AutoImport from 'unplugin-auto-import/vite'\nimport IconsResolver from 'unplugin-icons/resolver'\nimport Icons from 'unplugin-icons/vite'\n\nexport default {\n  plugins: [\n    AutoImport({\n      resolvers: [\n        IconsResolver({\n          prefix: 'Icon',\n          extension: 'jsx',\n        }),\n      ],\n    }),\n    Icons({\n      compiler: 'jsx', // or 'solid'\n    }),\n  ],\n}\n```\n\nThen you can use any icons with the prefix `Icon` as you want without explicit importing. Type declarations will be generated on the fly.\n\n<!-- eslint-disable react/jsx-no-undef -->\n\n```js\nexport function Component() {\n  return (\n    <div>\n      <IconCarbonApps />\n      <IconMdiAccountBox style=\"font-size: 2em; color: red\" />\n    </div>\n  )\n}\n```\n\n</details>\n\n### Component Naming\n\nIcons are auto-imported following this naming pattern:\n\n```\n{prefix}-{collection}-{icon}\n```\n\n- `prefix`: Component name prefix (default: `i`)\n- `collection`: Iconify collection ID (e.g., `mdi`, `carbon`, `fa-solid`)\n- `icon`: Icon name (kebab-case)\n\n**Custom Prefix:**\n\n```ts\nIconsResolver({\n  prefix: 'icon', // Use 'icon' instead of 'i'\n})\n```\n\n```vue\n<template>\n  <icon-mdi-account />\n</template>\n```\n\n**No Prefix:**\n\n```ts\nIconsResolver({\n  prefix: false,\n  enabledCollections: ['mdi'], // Optional: limit to specific collections\n})\n```\n\n```vue\n<template>\n  <mdi-account />\n</template>\n```\n\n### Collection Aliases\n\nCreate shorter aliases for long collection names:\n\n```ts\nIconsResolver({\n  alias: {\n    park: 'icon-park',  // Use <icon-park-* /> instead of <icon-icon-park-* />\n    fas: 'fa-solid',    // Use <icon-fas-* /> instead of <icon-fa-solid-* />\n  }\n})\n```\n\nBoth the alias and full collection name work:\n\n```vue\n<template>\n  <icon-park-abnormal />      <!-- Using alias -->\n  <icon-icon-park-abnormal /> <!-- Using full name -->\n</template>\n```\n\n## Sponsors\n\nThis project is part of my <a href='https://github.com/antfu-sponsors'>Sponsor Program</a>\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'/>\n  </a>\n</p>\n\n## License\n\n[MIT](./LICENSE) License © 2020-PRESENT [Anthony Fu](https://github.com/antfu)\n","time":{"created":"2022-01-28T01:40:17.928Z","modified":"2026-01-14T10:53:38.036Z","0.12.23":"2021-12-08T20:30:44.772Z","0.12.22":"2021-11-30T14:53:00.447Z","0.12.21":"2021-11-30T07:17:27.207Z","0.12.20":"2021-11-25T01:47:13.408Z","0.12.19":"2021-11-24T09:43:07.112Z","0.12.18":"2021-11-03T17:16:28.806Z","0.12.17":"2021-10-25T13:48:30.070Z","0.12.16":"2021-10-16T05:11:18.839Z","0.12.15":"2021-10-13T14:07:30.575Z","0.12.14":"2021-10-12T18:46:48.680Z","0.12.13":"2021-10-11T07:10:57.511Z","0.12.12":"2021-10-07T10:20:28.742Z","0.12.10":"2021-10-06T02:57:14.491Z","0.12.9":"2021-10-05T05:53:04.250Z","0.12.8":"2021-10-05T00:14:47.020Z","0.12.7":"2021-10-02T02:43:38.411Z","0.12.6":"2021-10-02T01:14:35.930Z","0.12.5":"2021-10-02T00:55:13.266Z","0.12.4":"2021-10-02T00:36:53.884Z","0.12.3":"2021-10-01T23:27:22.909Z","0.12.2":"2021-10-01T23:20:27.192Z","0.12.1":"2021-10-01T22:34:41.408Z","0.12.0":"2021-10-01T22:26:31.913Z","0.11.4":"2021-09-25T03:44:45.886Z","0.11.3":"2021-09-15T21:28:06.658Z","0.11.2":"2021-09-15T11:01:30.344Z","0.11.1":"2021-09-14T12:37:19.799Z","0.11.0":"2021-09-14T12:32:02.743Z","0.10.0":"2021-09-14T02:24:39.906Z","0.9.0":"2021-09-13T06:08:02.201Z","0.8.1":"2021-09-11T22:43:02.044Z","0.8.0":"2021-09-11T20:22:14.470Z","0.7.6":"2021-09-06T13:37:49.530Z","0.7.5":"2021-09-02T00:41:25.525Z","0.7.4":"2021-08-30T23:49:59.276Z","0.7.3":"2021-08-30T08:22:33.283Z","0.7.2":"2021-08-30T02:06:13.574Z","0.7.1":"2021-08-29T06:09:57.644Z","0.7.0":"2021-08-29T05:56:45.246Z","0.1.1":"2021-08-29T05:26:42.863Z","0.1.0":"2021-08-28T14:09:56.344Z","0.0.0":"2021-08-27T21:18:36.676Z","0.13.0":"2021-12-26T05:02:28.033Z","0.13.1":"2022-02-08T12:36:02.810Z","0.13.2":"2022-02-18T08:34:41.736Z","0.13.3":"2022-03-07T08:05:58.339Z","0.13.4":"2022-03-13T22:37:46.406Z","0.14.0":"2022-03-20T13:26:07.086Z","0.14.1":"2022-03-23T08:22:20.995Z","0.14.2":"2022-05-02T20:41:29.874Z","0.14.3":"2022-05-03T06:17:27.174Z","0.14.4":"2022-06-16T03:02:17.815Z","0.14.5":"2022-06-18T05:34:26.608Z","0.14.6":"2022-06-27T13:57:54.425Z","0.14.7":"2022-06-30T13:21:08.602Z","0.14.8":"2022-07-29T14:59:37.418Z","0.14.9":"2022-09-02T10:35:33.254Z","0.14.10":"2022-09-18T04:00:54.629Z","0.14.11":"2022-09-29T09:45:31.229Z","0.14.12":"2022-10-16T07:39:42.748Z","0.14.13":"2022-11-01T07:05:04.416Z","0.14.14":"2022-11-22T10:51:59.683Z","0.14.15":"2022-12-12T08:58:36.334Z","0.15.0":"2023-01-03T16:52:42.373Z","0.15.1":"2023-01-06T09:41:25.663Z","0.15.2":"2023-01-28T03:13:50.656Z","0.15.3":"2023-02-14T11:03:45.864Z","0.16.0":"2023-03-27T09:56:25.254Z","0.16.1":"2023-03-29T09:14:51.678Z","0.16.2":"2023-06-01T14:55:14.927Z","0.16.3":"2023-06-07T15:49:09.551Z","0.16.4":"2023-07-12T10:17:14.548Z","0.16.5":"2023-07-12T12:06:33.604Z","0.16.6":"2023-08-28T03:27:38.175Z","0.17.0":"2023-09-02T21:04:40.989Z","0.17.1":"2023-10-19T13:11:35.708Z","0.17.3":"2023-11-02T15:18:21.557Z","0.17.4":"2023-11-13T09:56:32.178Z","0.18.0":"2023-11-29T12:37:08.569Z","0.18.1":"2023-12-03T13:37:38.963Z","0.18.2":"2024-01-08T15:26:34.927Z","0.18.3":"2024-01-26T21:30:49.369Z","0.18.4":"2024-02-04T10:48:49.205Z","0.18.5":"2024-02-04T19:05:59.183Z","0.19.0":"2024-05-01T07:07:41.260Z","0.19.1":"2024-07-29T12:36:05.955Z","0.19.2":"2024-08-07T06:47:51.810Z","0.19.3":"2024-09-04T20:28:50.302Z","0.20.0":"2024-10-30T17:19:15.626Z","0.20.1":"2024-11-06T09:41:30.144Z","0.20.2":"2024-11-27T10:19:53.758Z","0.21.0":"2024-12-03T08:05:29.684Z","0.22.0":"2024-12-16T09:24:19.720Z","22.0.0":"2025-01-08T05:48:50.426Z","22.1.0":"2025-02-18T11:20:21.834Z","22.2.0":"2025-07-29T05:43:10.341Z","22.3.0":"2025-09-12T01:30:13.131Z","22.4.0":"2025-10-01T06:33:12.908Z","22.4.1":"2025-10-01T06:35:08.460Z","22.4.2":"2025-10-02T02:34:15.560Z","22.5.0":"2025-10-19T22:11:04.083Z","23.0.0":"2026-01-14T03:24:40.709Z","23.0.1":"2026-01-14T10:53:22.330Z"},"versions":{"0.12.23":{"name":"unplugin-icons","version":"0.12.23","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./loaders":{"require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./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 && 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 --ext .ts,.js,.vue","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish","test":"jest"},"dependencies":{"@antfu/install-pkg":"^0.1.0","@antfu/utils":"^0.3.0","@iconify/utils":"^1.0.20","debug":"^4.3.3","kolorist":"^1.5.0","local-pkg":"^0.4.0","unplugin":"^0.2.21"},"devDependencies":{"@antfu/eslint-config":"^0.11.1","@iconify/json":"^2.0.3","@iconify/types":"^1.0.12","@svgr/core":"^6.0.0","@types/debug":"^4.1.7","@types/jest":"^27.0.3","@types/node":"^16.11.11","@typescript-eslint/eslint-plugin":"^5.5.0","@vue/compiler-sfc":"^3.2.23","bumpp":"^7.1.1","cross-env":"^7.0.3","eslint":"^8.3.0","eslint-plugin-jest":"^25.3.0","esno":"^0.12.1","jest":"^27.4.0","rollup":"^2.60.2","ts-jest":"^27.0.7","tsup":"^5.10.0","typescript":"^4.5.2","vite":"^2.6.14"},"peerDependencies":{"@svgr/core":"^5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"gitHead":"cceb9d263e36daf967e911017cb1a28bfc317ca7","_id":"unplugin-icons@0.12.23","_nodeVersion":"16.13.0","_npmVersion":"8.1.0","dist":{"integrity":"sha512-jhCogt+/3WEdPrfHkUGwiLnNJAOrE469J/Zlsh57KAaeEDxrw+PMqXDXRFA/fZjtal/btGPFcDOeQPPHGW6JHg==","shasum":"c54c83bed6ad46632b26cd864d4d3a0c085641cf","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.12.23.tgz","fileCount":51,"unpackedSize":67463,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhsRX0CRA9TVsSAnZWagAAZB0P/igqmSfqvbNoqxrERYf0\naro8hRbZ/sZKqDAikkKj5E0f8eVWt3OSVqbHhmLy+LhXiSWFnOJllXHsQ5VK\nuNP996ESR1fmcgQ0zkkTzKpobarvzcVYHgT/khmH+kxexvkZRhrKRV9+C0LI\n4kE04IOZyUrotyEdZMu+w5ZzGuuBJJJCdYzOYvn0+G88Yxu/mzTfdIUhVAQQ\nCPp5QC12ub20c+3M+s1vLCstPfX/3HojoUR8oYrReMVbvant7kZbLRfc9tj/\nlgZtmIxV0DV2o+QRabjJtkScQTTXIM0rnoOhiG3ZeaHI/RQuXcNzUWXZnio5\nsJCHh5igrvVc0a8mRwKK7DndYRpfRzYDzf7GsJwgSdQ9nsGWH2eqgMafx2p4\nt2tNGe3xFvAPtpDmXps8UmVXUmm2YagIvyG7mlDH+QBEojHihAJNGlqi2aN6\nipDZGTQZHDENsHW+62bD6EQx+kk38Q0dC0L+HQw/Mptt7WWkKaz8E9g7DyCz\n+3SeHMCyWUiSOidcNPjw7s6dCr3tJXTUKaNwv1+ZOabblMXPWLAookeWylSB\nktmYfwHcGG6ncbWlUIdXZljPl3zpUMJpOzmoWY+vLmgpvBelaCI5f87B6a5a\nn60QA23n0aRnxyWDTmzpQbm8Y99KbB7NiCoM0nNRKBjuiUCbZAQFVW1XSjET\nGg+7\r\n=b2ZG\r\n-----END PGP SIGNATURE-----\r\n","size":20611,"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-icons_0.12.23_1638995444627_0.012602065131881002"},"_hasShrinkwrap":false,"publish_time":1638995444772,"_cnpm_publish_time":1638995444772,"_cnpmcore_publish_time":"2021-12-18T03:40:02.226Z"},"0.12.22":{"name":"unplugin-icons","version":"0.12.22","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./loaders":{"require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.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 && 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 --ext .ts,.js,.vue","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish","test":"jest"},"dependencies":{"@antfu/install-pkg":"^0.1.0","@antfu/utils":"^0.3.0","@iconify/utils":"^1.0.20","debug":"^4.3.3","kolorist":"^1.5.0","local-pkg":"^0.4.0","unplugin":"^0.2.21"},"devDependencies":{"@antfu/eslint-config":"^0.11.1","@iconify/json":"^2.0.3","@iconify/types":"^1.0.12","@svgr/core":"^6.0.0","@types/debug":"^4.1.7","@types/jest":"^27.0.3","@types/node":"^16.11.11","@typescript-eslint/eslint-plugin":"^5.5.0","@vue/compiler-sfc":"^3.2.23","bumpp":"^7.1.1","cross-env":"^7.0.3","eslint":"^8.3.0","eslint-plugin-jest":"^25.3.0","esno":"^0.12.1","jest":"^27.4.0","rollup":"^2.60.2","ts-jest":"^27.0.7","tsup":"^5.10.0","typescript":"^4.5.2","vite":"^2.6.14"},"peerDependencies":{"@svgr/core":"^5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"gitHead":"ebc2ffea9636453a32d71134c009f7e12bd84ab1","_id":"unplugin-icons@0.12.22","_nodeVersion":"16.13.0","_npmVersion":"8.1.0","dist":{"integrity":"sha512-GG6WAK1jqc50NXqoc3dYW9ui9k2UK0eOvilwr0MQ79iGvBtATbHoDyLTgSRsuous7Qfq8n+odL8TJgELaqvNCA==","shasum":"544b8f9f53919fa819f8b45c8d26ffcd95926b66","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.12.22.tgz","fileCount":51,"unpackedSize":66923,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhpjrMCRA9TVsSAnZWagAAcXUQAIsAjcsDA6+c//wiU4mt\n74H+LR4pTy9l5P+rst98pUS4XtsFe0cJAWhaB4pvLUS0tSli20S4dtHEZ5Hn\nDm8wScHBUqbErDeWsVzIgEU/TIwbRYagE57Vg3byZUMccGIZeGhHaDwCU8g4\n4zGRP9tcCyTLDNMPbEyqOhxm7yxmhescX7SWME1NIvvumGEcSWOsQnOUVAt4\n3aVvSIu23b5FZQibWeyRzbcFlU6NI7Q3397svuf2ybKlOvwhxIeMlJgn+DTI\npsGjdekXZb/IUDIQfldwcpCpwzU8X/nCTMoew0tTFfMa7Gd+N8sRp4FuVcIK\nabgM2Fg5ktj19NZYfAznS0VsbyqfzpEokZprrqTspbCru5PoozCl4GHPwzyt\nlRdaOkqspZ66MmJWQDxAigz5SgRP45Pd0r8uEV5eqhX6hsX2kk9MuKPMkvDR\nIDtPamPvYE5zXsvMvNGtMJC55ONm4BWk6wqF9hyUoOZ2nv8CfLgIU8DVFo1+\nS3Ry83tl3QcAsrPJRscCQFxHsCcuowsyQcbxj3GMx3JLNBCpbqK3aMg3uaEY\nYsFa6H7rl0mBjF9kSBaV9rQRdaKIpm9Qy2m67nzqSV4fVcqGWJwIyOI1cPdE\nSQc08YVP1CBA913LDWftP9N+XUuHsvWIChov5k31Y8XCw+vnu310GV0NRCQF\n2EBm\r\n=Lo73\r\n-----END PGP SIGNATURE-----\r\n","size":20535,"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-icons_0.12.22_1638283980288_0.31274496212921665"},"_hasShrinkwrap":false,"publish_time":1638283980447,"_cnpm_publish_time":1638283980447,"_cnpmcore_publish_time":"2021-12-18T03:40:02.567Z"},"0.12.21":{"name":"unplugin-icons","version":"0.12.21","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./loaders":{"require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.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 && 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 --ext .ts,.js,.vue","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish","test":"jest"},"dependencies":{"@antfu/install-pkg":"^0.1.0","@antfu/utils":"^0.3.0","@iconify/utils":"^1.0.20","debug":"^4.3.3","kolorist":"^1.5.0","local-pkg":"^0.4.0","unplugin":"^0.2.21"},"devDependencies":{"@antfu/eslint-config":"^0.11.1","@iconify/json":"^2.0.3","@iconify/types":"^1.0.12","@svgr/core":"^6.0.0","@types/debug":"^4.1.7","@types/jest":"^27.0.3","@types/node":"^16.11.11","@typescript-eslint/eslint-plugin":"^5.5.0","@vue/compiler-sfc":"^3.2.23","bumpp":"^7.1.1","cross-env":"^7.0.3","eslint":"^8.3.0","eslint-plugin-jest":"^25.3.0","esno":"^0.12.1","jest":"^27.4.0","rollup":"^2.60.2","ts-jest":"^27.0.7","tsup":"^5.10.0","typescript":"^4.5.2","vite":"^2.6.14"},"peerDependencies":{"@svgr/core":"^5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"gitHead":"7509caaec3ece2408d6a87001c1dee62751cdfd9","_id":"unplugin-icons@0.12.21","_nodeVersion":"16.13.0","_npmVersion":"8.1.0","dist":{"integrity":"sha512-YLTHlf2lcBcBctRkQZTb4N5PBaw59xnrJ9SO7hoWmPF/ExnqW3VaHNOakncW50oxxeGFmDsw0kL9Hd5Qa2FzuQ==","shasum":"50a9a4d573228f2a22ce95e73f09c8992b276c24","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.12.21.tgz","fileCount":51,"unpackedSize":66626,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhpdAHCRA9TVsSAnZWagAAu1sP/1z9xvpz1XVODCQdIO+a\nd1x0tb7XeJmxX59PnUHqWZ5LTVLYW02iiMHVn6OmR1wlLLQzmpulJmvIHdSH\nDYPW1ZpL5v0OqJSbNkF1+fyktlT4J00iWHgItIyMhad5ny7UXrROPhTLkkX4\nynJS+LBuop9eB5epHk2E54fq+xNC9F6/4dIkoIGsSq4XFeDScRy1PF5zKTm1\ndavrf9caTsWxDCQU63BccVzz9v63YD1Y6kzxLW4GfWxvR0VcIdMj1N4qhS0t\n6crFzQahQgTeo7SP4Xr/ONzf7TUyjgwzvQuh+QG8I1wKoihm7UUDEAFXdAIS\nKfe9pQ+cyeDJkFqDdXxCjE3tDxm3w1EEjwnTe2KV0f5oysftxYWLEVi3+riD\nY1EYHZzKiRMZIf66IRMv0kpQL2lCuYPoj6BHFvi94Fc0obeqr71bZ8OPZo7n\nTU1nJZEhFQ/wLoosUhaLd9pxjtkEgp+aPDUkeEhN+CLvsUNR82P3/Q7ZLOi+\nwYi8czUXvQlcZ7UBwsQzkkQQGnpeB1OFBxcnarkHHqwNxoxp7Dl+lJfWw53J\nCb95nbS+fkvMa15YEJ38kBMnlwrev/C1dfi4tNYunW8FVINXl1d4UUhJS+eP\nW4Z/dXtV0S4qROpWzSTqsdqYWBgGW01aT1upWLKXFFZzCNuaRu5Rm/jY1TWb\nfRuw\r\n=j90N\r\n-----END PGP SIGNATURE-----\r\n","size":20448,"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-icons_0.12.21_1638256647062_0.7785762485245098"},"_hasShrinkwrap":false,"publish_time":1638256647207,"_cnpm_publish_time":1638256647207,"_cnpmcore_publish_time":"2021-12-18T03:40:02.845Z"},"0.12.20":{"name":"unplugin-icons","version":"0.12.20","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./loaders":{"require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.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 && 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 --ext .ts,.js,.vue","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish","test":"jest"},"dependencies":{"@antfu/install-pkg":"^0.1.0","@antfu/utils":"^0.3.0","@iconify/utils":"^1.0.18","debug":"^4.3.2","kolorist":"^1.5.0","local-pkg":"^0.4.0","unplugin":"^0.2.18"},"devDependencies":{"@antfu/eslint-config":"^0.10.0","@iconify/json":"^1.1.419","@iconify/types":"^1.0.10","@svgr/core":"^5.5.0","@types/debug":"^4.1.7","@types/jest":"^27.0.2","@types/node":"^16.11.4","@typescript-eslint/eslint-plugin":"^5.1.0","@vue/compiler-sfc":"^3.2.20","bumpp":"^7.1.1","cross-env":"^7.0.3","eslint":"^8.1.0","eslint-plugin-jest":"^25.2.2","esno":"^0.10.1","jest":"^27.3.1","rollup":"^2.58.2","ts-jest":"^27.0.7","tsup":"^5.5.0","typescript":"^4.4.4","vite":"^2.6.11"},"peerDependencies":{"@svgr/core":"^5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"gitHead":"4d4fb8c119c80426feb9e4f55bd0aeff936ed59a","_id":"unplugin-icons@0.12.20","_nodeVersion":"16.13.0","_npmVersion":"8.1.0","dist":{"integrity":"sha512-7gHxygp1iRbh85/43yqSbzImo5Y7KmVZFV8k79XL/SYNuIPsn19A10Mn2X1YUWm/uQWu/0J9ouq/083Mo4gyPg==","shasum":"3d6cb308eb31ab322e6c6c1c71f96ee9d8df0a05","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.12.20.tgz","fileCount":51,"unpackedSize":66413,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhnushCRA9TVsSAnZWagAAQD0P/0X0zWNON+I1joaHghIp\nCPK0nrNRtBx00TjgPLPPOJSGNg716g/dLR/Y6UYGp0KtglCFUbosys4xbSv2\n41d9lpkUfueSGlCfEs6L5a50hbc2tVy01CoZk+N/GH8wpmeyGn1AtSEjPH+r\nz0IsE57YSXECWCZ/AszM9Lvx8BknJ7oiHyZKS6AMQAGkc5zH0Q4bLW2qJFH6\njEniAyaC0q1z+ciaApzJag02+yox97fJgK3JdfaTBiUhdB82I4dOtYgScUp+\nqlZNBmZNdJ4un+W2muiE60SRrfiYeG0jrwcYYIzW6bktbzx8OxlXGgSVxP5k\n+SZhg8ElYnNHIrwZM50TNdVgFXuWsJ4nto/wLCJE/gpGRtG6nPi11OJUgXFp\nySgzPxijEH5Qy84YSsZsdoJCMYbg+k4OfhxnUYDdmGBHcB9EFexEfB/xRC5M\n1tUv1nAIeVQL058oJTwN2Z6eJWasWHewWMbxtW0yElIAKkyW5LRND0hBJzyR\nxM9Kl0tmMBOCfGibjMMOJiZRmOrIPmYltO9VxSHoqIyyDD6TALEglm+qbj/j\nv4vXe5DezGzkMT+2Y2nFznzuMrOgyhvkZfKKCzBojrLn97PskUGRZQO8SKEi\n2q+JxzdqgteS7FXdpnI3w6ZrgP6panBe8RtWnQYWQiBHRuFQ6CLfMmUu7Mqf\n0LlK\r\n=18dD\r\n-----END PGP SIGNATURE-----\r\n","size":20372,"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-icons_0.12.20_1637804832828_0.10794327579948115"},"_hasShrinkwrap":false,"publish_time":1637804833408,"_cnpm_publish_time":1637804833408,"_cnpmcore_publish_time":"2021-12-18T03:40:03.028Z"},"0.12.19":{"name":"unplugin-icons","version":"0.12.19","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./loaders":{"require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.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 && 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 --ext .ts,.js,.vue","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish","test":"jest"},"dependencies":{"@antfu/install-pkg":"^0.1.0","@antfu/utils":"^0.3.0","@iconify/utils":"^1.0.18","debug":"^4.3.2","kolorist":"^1.5.0","local-pkg":"^0.4.0","unplugin":"^0.2.18"},"devDependencies":{"@antfu/eslint-config":"^0.10.0","@iconify/json":"^1.1.419","@iconify/types":"^1.0.10","@svgr/core":"^5.5.0","@types/debug":"^4.1.7","@types/jest":"^27.0.2","@types/node":"^16.11.4","@typescript-eslint/eslint-plugin":"^5.1.0","@vue/compiler-sfc":"^3.2.20","bumpp":"^7.1.1","cross-env":"^7.0.3","eslint":"^8.1.0","eslint-plugin-jest":"^25.2.2","esno":"^0.10.1","jest":"^27.3.1","rollup":"^2.58.2","ts-jest":"^27.0.7","tsup":"^5.5.0","typescript":"^4.4.4","vite":"^2.6.11"},"peerDependencies":{"@svgr/core":"^5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"gitHead":"f4e8e95542c7e306ae185c12f7ffdb93a610ad01","_id":"unplugin-icons@0.12.19","_nodeVersion":"15.11.0","_npmVersion":"7.6.0","dist":{"integrity":"sha512-ynBPod89ggUKElWFGIvoGg9MnNuVpH0TzO9sU3txhpTb20bezJKCj8i7+9TGWgYfNkEdUKWQE3+xqHsDePhS1w==","shasum":"62d8c67487a69295cceb2452ba8098226897e589","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.12.19.tgz","fileCount":51,"unpackedSize":67419,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhngkrCRA9TVsSAnZWagAAOjgP/jt1+NkbU9u3SnvEKBDm\nDcj65DT4CxMf0mvaM03QvoFlZeshan2OhlJrU5QDT0MWUju7dSn9c4MmofE/\nliZFpWmbVXbGCJMxIV+4tVI9+qeL3Z97n3Zuy2N5lD7+8NOrLUYOb2oYWvbd\njskwQuZ2aL2lzugHdHcCqGheiAqftM8ZC0a+xWAtSjDMj3WuNJJ6/LngvBhL\nD6Itax6qQ8QSZZQMxCbl+BubC212S/+JuJe3/qiU/n62YtlXyz81ifQjO5aZ\nEDLcqbyQ3Bodou/3sGweuXEHIOvt+S4Bb0P7BA0niqpz/quR9EPgjYjNTZkY\nKL9kZT9iyN1Bj8kgjoDpFT1F98fV0QLDTqx41PrNPgsJvHGQQHJe3KPQ5CjW\nCqzaAw8XPhkelHoyWrExbibBYXv4A8F8/2hY2mEj1Sh8hF4GMFyZHSuE9VlN\n/ZW8ikrfjt19JwWl41X2epbDzBfYeG1EWRZeW8Z2/im+YjKLQJEr03Foh8ed\nK7nd34f21Bh2FunyluHnix95sdlWSKlsVr/Qs5sKbtv93LgRuMtTZCiS2u75\nfQprQGkCsZBg04m0xC546EGWx+dh3iWbA5Uh1Js7ykyzYL+F4m/CXA7DOkvo\ncZm3Lce2AkaWqyhhPpYKcBFhGW7twXTsdrYWs64ZfbjtdVbtJVNt1/oSbp4o\nNqm5\r\n=zeJm\r\n-----END PGP SIGNATURE-----\r\n","size":20653,"noattachment":false},"_npmUser":{"name":"userquin","email":"userquin@gmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"},{"name":"userquin","email":"userquin@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-icons_0.12.19_1637746986983_0.19025550664322322"},"_hasShrinkwrap":false,"publish_time":1637746987112,"_cnpm_publish_time":1637746987112,"_cnpmcore_publish_time":"2021-12-18T03:40:03.227Z"},"0.12.18":{"name":"unplugin-icons","version":"0.12.18","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./loaders":{"require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.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 && 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 --ext .ts,.js,.vue","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish","test":"jest"},"dependencies":{"@antfu/install-pkg":"^0.1.0","@antfu/utils":"^0.3.0","@iconify/utils":"^1.0.18","debug":"^4.3.2","kolorist":"^1.5.0","local-pkg":"^0.4.0","unplugin":"^0.2.18"},"devDependencies":{"@antfu/eslint-config":"^0.10.0","@iconify/json":"^1.1.419","@iconify/types":"^1.0.10","@svgr/core":"^5.5.0","@types/debug":"^4.1.7","@types/jest":"^27.0.2","@types/node":"^16.11.4","@typescript-eslint/eslint-plugin":"^5.1.0","@vue/compiler-sfc":"^3.2.20","bumpp":"^7.1.1","cross-env":"^7.0.3","eslint":"^8.1.0","eslint-plugin-jest":"^25.2.2","esno":"^0.10.1","jest":"^27.3.1","rollup":"^2.58.2","ts-jest":"^27.0.7","tsup":"^5.5.0","typescript":"^4.4.4","vite":"^2.6.11"},"peerDependencies":{"@svgr/core":"^5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"gitHead":"105844848602fbda841259a4404731856c6ca7f5","_id":"unplugin-icons@0.12.18","_nodeVersion":"16.11.1","_npmVersion":"8.0.0","dist":{"shasum":"0156258c8e40f90d4a7ba0970ee5167cc96318ac","size":20960,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.12.18.tgz","integrity":"sha512-o2nc6AGGk4StTx5xMTndVBylszRg/hJvHMO1eEFfrfw9yh+eedre2S4F8EHltn3FjADL2a17GpXcvCAwmONgXA=="},"_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-icons_0.12.18_1635959788648_0.13706016830359102"},"_hasShrinkwrap":false,"publish_time":1635959788806,"_cnpm_publish_time":1635959788806,"_cnpmcore_publish_time":"2021-12-18T03:40:03.525Z"},"0.12.17":{"name":"unplugin-icons","version":"0.12.17","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./loaders":{"require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.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 && 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 --ext .ts,.js,.vue","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish","test":"jest"},"dependencies":{"@antfu/install-pkg":"^0.1.0","@antfu/utils":"^0.3.0","@iconify/utils":"^1.0.18","debug":"^4.3.2","kolorist":"^1.5.0","local-pkg":"^0.4.0","unplugin":"^0.2.18"},"devDependencies":{"@antfu/eslint-config":"^0.10.0","@iconify/json":"^1.1.419","@iconify/types":"^1.0.10","@svgr/core":"^5.5.0","@types/debug":"^4.1.7","@types/jest":"^27.0.2","@types/node":"^16.11.4","@typescript-eslint/eslint-plugin":"^5.1.0","@vue/compiler-sfc":"^3.2.20","bumpp":"^7.1.1","cross-env":"^7.0.3","eslint":"^8.1.0","eslint-plugin-jest":"^25.2.2","esno":"^0.10.1","jest":"^27.3.1","rollup":"^2.58.2","ts-jest":"^27.0.7","tsup":"^5.5.0","typescript":"^4.4.4","vite":"^2.6.11"},"peerDependencies":{"@svgr/core":"^5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"gitHead":"8031f4da6b1d0373a3505ab2368d45623226296c","_id":"unplugin-icons@0.12.17","_nodeVersion":"16.11.1","_npmVersion":"8.0.0","dist":{"shasum":"309fc513d7799a2f9ea509a1f38a01dedf229f34","size":20910,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.12.17.tgz","integrity":"sha512-y6KNKlwcLXlbfpZY48lO0blsH/uwHbvxD2sgCaw1AhgFk9Bjw7hA1kQxhUWPAIRySeobve2YP7HGKLHoIctXPA=="},"_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-icons_0.12.17_1635169709742_0.7704800415336599"},"_hasShrinkwrap":false,"publish_time":1635169710070,"_cnpm_publish_time":1635169710070,"_cnpmcore_publish_time":"2021-12-18T03:40:03.801Z"},"0.12.16":{"name":"unplugin-icons","version":"0.12.16","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./loaders":{"require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.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 && 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 --ext .ts,.js,.vue","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish","test":"jest"},"dependencies":{"@antfu/install-pkg":"^0.1.0","@antfu/utils":"^0.3.0","@iconify/utils":"^1.0.14","debug":"^4.3.2","kolorist":"^1.5.0","local-pkg":"^0.4.0","unplugin":"^0.2.16"},"devDependencies":{"@antfu/eslint-config":"^0.9.0","@iconify/json":"^1.1.413","@iconify/types":"^1.0.10","@svgr/core":"^5.5.0","@types/debug":"^4.1.7","@types/jest":"^27.0.2","@types/node":"^16.10.3","@typescript-eslint/eslint-plugin":"^4.33.0","@vue/compiler-sfc":"^3.2.20","bumpp":"^7.1.1","cross-env":"^7.0.3","eslint":"^7.32.0","eslint-plugin-jest":"^24.7.0","esno":"^0.10.1","jest":"^27.2.5","rollup":"^2.58.0","ts-jest":"^27.0.5","tsup":"^5.4.0","typescript":"^4.4.3","vite":"^2.6.7"},"peerDependencies":{"@svgr/core":"^5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"gitHead":"6714ce4c218177e48319c812f7bf696ef9c196ff","_id":"unplugin-icons@0.12.16","_nodeVersion":"16.6.2","_npmVersion":"7.20.3","dist":{"shasum":"ad52886b77134173b4864c70175add471d603a55","size":21080,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.12.16.tgz","integrity":"sha512-eGxlLrf/aExIgfRTqv9ALFZSyurYUxPHYb7lDFBc1KfhVhnvq7TdLE3d5AUJgiNh7QxcO0ezsBQ8mQNlCH/+Og=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-icons_0.12.16_1634361078639_0.542374867120283"},"_hasShrinkwrap":false,"publish_time":1634361078839,"_cnpm_publish_time":1634361078839,"_cnpmcore_publish_time":"2021-12-18T03:40:04.059Z"},"0.12.15":{"name":"unplugin-icons","version":"0.12.15","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./loaders":{"require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.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 && 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 --ext .ts,.js,.vue","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish","test":"jest"},"dependencies":{"@antfu/install-pkg":"^0.1.0","@antfu/utils":"^0.3.0","@iconify/utils":"^1.0.14","debug":"^4.3.2","kolorist":"^1.5.0","local-pkg":"^0.4.0","unplugin":"^0.2.16"},"devDependencies":{"@antfu/eslint-config":"^0.9.0","@iconify/json":"^1.1.413","@iconify/types":"^1.0.10","@svgr/core":"^5.5.0","@types/debug":"^4.1.7","@types/jest":"^27.0.2","@types/node":"^16.10.3","@typescript-eslint/eslint-plugin":"^4.33.0","@vue/compiler-sfc":"^3.2.20","bumpp":"^7.1.1","cross-env":"^7.0.3","eslint":"^7.32.0","eslint-plugin-jest":"^24.7.0","esno":"^0.10.1","jest":"^27.2.5","rollup":"^2.58.0","ts-jest":"^27.0.5","tsup":"^5.4.0","typescript":"^4.4.3","vite":"^2.6.7"},"peerDependencies":{"@svgr/core":"^5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"gitHead":"64d60a907b4403622f57aba939cb7d96ddd18fc9","_id":"unplugin-icons@0.12.15","_nodeVersion":"16.6.2","_npmVersion":"7.20.3","dist":{"shasum":"39e1fa7ed4d6e556dc5fbd254c0d5c1318d3c584","size":20770,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.12.15.tgz","integrity":"sha512-irLvZ09zfhBczb4D6ZJgns4rgYwxkJjdrFi62Iql7iFIrJsP6FmrrRJ0C+iWWo1XHSF+tFWugoL7Wye9yVy+dA=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-icons_0.12.15_1634134050410_0.12687255732146352"},"_hasShrinkwrap":false,"publish_time":1634134050575,"_cnpm_publish_time":1634134050575,"_cnpmcore_publish_time":"2021-12-18T03:40:04.356Z"},"0.12.14":{"name":"unplugin-icons","version":"0.12.14","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./loaders":{"require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.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 && 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 --ext .ts,.js,.vue","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish","test":"jest"},"dependencies":{"@antfu/install-pkg":"^0.1.0","@antfu/utils":"^0.3.0","@iconify/utils":"^1.0.14","debug":"^4.3.2","kolorist":"^1.5.0","local-pkg":"^0.3.0","unplugin":"^0.2.16"},"devDependencies":{"@antfu/eslint-config":"^0.9.0","@iconify/json":"^1.1.413","@iconify/types":"^1.0.10","@svgr/core":"^5.5.0","@types/debug":"^4.1.7","@types/jest":"^27.0.2","@types/node":"^16.10.3","@typescript-eslint/eslint-plugin":"^4.33.0","@vue/compiler-sfc":"^3.2.20","bumpp":"^7.1.1","cross-env":"^7.0.3","eslint":"^7.32.0","eslint-plugin-jest":"^24.7.0","esno":"^0.10.1","jest":"^27.2.5","rollup":"^2.58.0","ts-jest":"^27.0.5","tsup":"^5.4.0","typescript":"^4.4.3","vite":"^2.6.7"},"peerDependencies":{"@svgr/core":"^5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"gitHead":"c0497e1d6e7cec1dd042fe7e66d610798141a6f9","_id":"unplugin-icons@0.12.14","_nodeVersion":"16.6.2","_npmVersion":"7.20.3","dist":{"shasum":"b78864f16d93ae771c0d066caa9a79a4817f26ae","size":20767,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.12.14.tgz","integrity":"sha512-RluQyQa7b0qMlkKa6HPD27K/Vd6u+gjIZvqfM8gcU6eIfWKhDOZvukpUpHUqPtzpy+ANUJzlfAL59h+5CCeaBA=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-icons_0.12.14_1634064408539_0.5719174312122892"},"_hasShrinkwrap":false,"publish_time":1634064408680,"_cnpm_publish_time":1634064408680,"_cnpmcore_publish_time":"2021-12-18T03:40:04.569Z"},"0.12.13":{"name":"unplugin-icons","version":"0.12.13","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./loaders":{"require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.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 && 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 --ext .ts,.js,.vue","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish","test":"jest"},"dependencies":{"@antfu/install-pkg":"^0.1.0","@antfu/utils":"^0.3.0","@iconify/json-tools":"^1.0.10","@iconify/utils":"^1.0.10","debug":"^4.3.2","kolorist":"^1.5.0","local-pkg":"^0.3.0","unplugin":"^0.2.16"},"devDependencies":{"@antfu/eslint-config":"^0.9.0","@iconify/types":"^1.0.9","@svgr/core":"^5.5.0","@types/debug":"^4.1.7","@types/jest":"^27.0.2","@types/node":"^16.10.2","@typescript-eslint/eslint-plugin":"^4.32.0","@vue/compiler-sfc":"^3.2.19","bumpp":"^7.1.1","cross-env":"^7.0.3","eslint":"^7.32.0","eslint-plugin-jest":"^24.5.2","esno":"^0.10.0","jest":"^27.2.4","rollup":"^2.58.0","ts-jest":"^27.0.5","tsup":"^5.2.1","typescript":"^4.4.3","vite":"^2.6.2"},"peerDependencies":{"@svgr/core":"^5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"gitHead":"4eb969fe39f5b2f3a8cb30ccd8c7b0ab14545558","_id":"unplugin-icons@0.12.13","_nodeVersion":"16.6.2","_npmVersion":"7.20.3","dist":{"shasum":"6b22f517b6ef0698fe79aa225a0f51194d5c5e54","size":21369,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.12.13.tgz","integrity":"sha512-5wAnY1qwa1ENeBdnNxKBd8VVbfz5KkjFa6X33Ynoz381J03ZUHwumvcbSQVgmQDwY1eOmM51lFmdwqQA/8pkRw=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-icons_0.12.13_1633936257343_0.522948922753715"},"_hasShrinkwrap":false,"publish_time":1633936257511,"_cnpm_publish_time":1633936257511,"_cnpmcore_publish_time":"2021-12-18T03:40:04.800Z"},"0.12.12":{"name":"unplugin-icons","version":"0.12.12","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./loaders":{"require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.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 && 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 --ext .ts,.js,.vue","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish","test":"jest"},"dependencies":{"@antfu/install-pkg":"^0.1.0","@antfu/utils":"^0.3.0","@iconify/json-tools":"^1.0.10","@iconify/utils":"^1.0.10","debug":"^4.3.2","kolorist":"^1.5.0","local-pkg":"^0.3.0","unplugin":"^0.2.16"},"devDependencies":{"@antfu/eslint-config":"^0.9.0","@iconify/types":"^1.0.9","@svgr/core":"^5.5.0","@types/debug":"^4.1.7","@types/jest":"^27.0.2","@types/node":"^16.10.2","@typescript-eslint/eslint-plugin":"^4.32.0","@vue/compiler-sfc":"^3.2.19","bumpp":"^7.1.1","cross-env":"^7.0.3","eslint":"^7.32.0","eslint-plugin-jest":"^24.5.2","esno":"^0.10.0","jest":"^27.2.4","rollup":"^2.58.0","ts-jest":"^27.0.5","tsup":"^5.2.1","typescript":"^4.4.3","vite":"^2.6.2"},"peerDependencies":{"@svgr/core":"^5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"gitHead":"6263342bdd0b71bb2c0794cd7fe78b0edee62877","_id":"unplugin-icons@0.12.12","_nodeVersion":"16.6.2","_npmVersion":"7.20.3","dist":{"shasum":"cce35af9a9d3080ea8acdd321a074917d2b55169","size":21445,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.12.12.tgz","integrity":"sha512-WyV6462k424TC4K1AsPLtGkgORG6fYuyItBNWwsrEy265T9P7LCtUeZkIdPU3PkLgXZturT0GLWWxsRP3yYMVA=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-icons_0.12.12_1633602028562_0.6661303680661075"},"_hasShrinkwrap":false,"publish_time":1633602028742,"_cnpm_publish_time":1633602028742,"_cnpmcore_publish_time":"2021-12-18T03:40:05.056Z"},"0.12.10":{"name":"unplugin-icons","version":"0.12.10","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./loaders":{"require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.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 && 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 --ext .ts,.js,.vue","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish","test":"jest"},"dependencies":{"@antfu/install-pkg":"^0.1.0","@antfu/utils":"^0.3.0","@iconify/json-tools":"^1.0.10","@iconify/utils":"^1.0.10","debug":"^4.3.2","kolorist":"^1.5.0","local-pkg":"^0.3.0","unplugin":"^0.2.16"},"devDependencies":{"@antfu/eslint-config":"^0.9.0","@iconify/types":"^1.0.9","@svgr/core":"^5.5.0","@types/debug":"^4.1.7","@types/jest":"^27.0.2","@types/node":"^16.10.2","@typescript-eslint/eslint-plugin":"^4.32.0","@vue/compiler-sfc":"^3.2.19","bumpp":"^7.1.1","cross-env":"^7.0.3","eslint":"^7.32.0","eslint-plugin-jest":"^24.5.2","esno":"^0.10.0","jest":"^27.2.4","rollup":"^2.58.0","ts-jest":"^27.0.5","tsup":"^5.2.1","typescript":"^4.4.3","vite":"^2.6.2"},"peerDependencies":{"@svgr/core":"^5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"gitHead":"b567a71d35e0c3415e20f3c90a1d56ddaa6efd75","_id":"unplugin-icons@0.12.10","_nodeVersion":"16.6.2","_npmVersion":"7.20.3","dist":{"shasum":"6bb775c303141dc9b762870ea8525aa6ee49c8de","size":21439,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.12.10.tgz","integrity":"sha512-lOgHtTx620UstuMYa9T8jkDVF2iVwyfEEYp2QL6rBdBsvIUZ+L6/Bd9WQTGyW/hAiTPv7P0ow2QtFRdEtUnXkg=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-icons_0.12.10_1633489034324_0.13210442023829394"},"_hasShrinkwrap":false,"publish_time":1633489034491,"_cnpm_publish_time":1633489034491,"_cnpmcore_publish_time":"2021-12-18T03:40:05.286Z"},"0.12.9":{"name":"unplugin-icons","version":"0.12.9","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./loaders":{"require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.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 && 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 --ext .ts,.js,.vue","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish","test":"jest"},"dependencies":{"@antfu/install-pkg":"^0.1.0","@antfu/utils":"^0.3.0","@iconify/json-tools":"^1.0.10","@iconify/utils":"^1.0.10","debug":"^4.3.2","local-pkg":"^0.3.0","nanocolors":"^0.2.12","unplugin":"^0.2.16"},"devDependencies":{"@antfu/eslint-config":"^0.9.0","@iconify/types":"^1.0.9","@svgr/core":"^5.5.0","@types/debug":"^4.1.7","@types/jest":"^27.0.2","@types/node":"^16.10.2","@typescript-eslint/eslint-plugin":"^4.32.0","@vue/compiler-sfc":"^3.2.19","bumpp":"^7.1.1","cross-env":"^7.0.3","eslint":"^7.32.0","eslint-plugin-jest":"^24.5.2","esno":"^0.10.0","jest":"^27.2.4","rollup":"^2.58.0","ts-jest":"^27.0.5","tsup":"^5.2.1","typescript":"^4.4.3","vite":"^2.6.2"},"peerDependencies":{"@svgr/core":"^5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"gitHead":"33a0cdfb2cc48832763797890c7fbe408078f8a2","_id":"unplugin-icons@0.12.9","_nodeVersion":"16.6.2","_npmVersion":"7.20.3","dist":{"shasum":"ade7837930a9ea0304ce49ebdd277d117b2092aa","size":21450,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.12.9.tgz","integrity":"sha512-SsuSqFAsbaRNweEI7W1uDinD/XfXNrAUQOaC+35XB3YRZleBjlr2XxW3J4Z0YmMkI0JXRwqalWh6xOds2jXKww=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-icons_0.12.9_1633413184067_0.52408088296794"},"_hasShrinkwrap":false,"publish_time":1633413184250,"_cnpm_publish_time":1633413184250,"_cnpmcore_publish_time":"2021-12-18T03:40:05.704Z"},"0.12.8":{"name":"unplugin-icons","version":"0.12.8","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./loaders":{"require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.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 && 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 --ext .ts,.js,.vue","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish"},"dependencies":{"@antfu/install-pkg":"^0.1.0","@antfu/utils":"^0.3.0","@iconify/json-tools":"^1.0.10","@iconify/utils":"^1.0.10","debug":"^4.3.2","local-pkg":"^0.3.0","nanocolors":"^0.2.12","unplugin":"^0.2.16"},"devDependencies":{"@antfu/eslint-config":"^0.9.0","@iconify/types":"^1.0.9","@svgr/core":"^5.5.0","@types/debug":"^4.1.7","@types/node":"^16.10.2","@typescript-eslint/eslint-plugin":"^4.32.0","@vue/compiler-sfc":"^3.2.19","bumpp":"^7.1.1","cross-env":"^7.0.3","eslint":"^7.32.0","esno":"^0.10.0","rollup":"^2.58.0","tsup":"^5.2.1","typescript":"^4.4.3","vite":"^2.6.2"},"peerDependencies":{"@svgr/core":"^5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"gitHead":"7e0012eeb7bc602326be96abd861e005bede6270","_id":"unplugin-icons@0.12.8","_nodeVersion":"16.6.2","_npmVersion":"7.20.3","dist":{"shasum":"51eb20111d864bd0b655e7eb871258f58a674e93","size":20756,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.12.8.tgz","integrity":"sha512-LUYU3EHd82L5v6GpZKBYCRyZJz8d5iyf8DQc1gf2uT5PYj11PtX7Gmd7ocaKsG3bdf/UEwlZ1X0ouLxr3FCTcg=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-icons_0.12.8_1633392886868_0.7648788090183143"},"_hasShrinkwrap":false,"publish_time":1633392887020,"_cnpm_publish_time":1633392887020,"_cnpmcore_publish_time":"2021-12-18T03:40:05.975Z"},"0.12.7":{"name":"unplugin-icons","version":"0.12.7","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./loaders":{"require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.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 && 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 --ext .ts,.js,.vue","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish"},"dependencies":{"@antfu/install-pkg":"^0.1.0","@antfu/utils":"^0.3.0","@iconify/json-tools":"^1.0.10","@iconify/utils":"^1.0.10","chalk":"^4.1.2","debug":"^4.3.2","local-pkg":"^0.3.0","unplugin":"^0.2.16"},"devDependencies":{"@antfu/eslint-config":"^0.9.0","@iconify/types":"^1.0.9","@svgr/core":"^5.5.0","@types/debug":"^4.1.7","@types/node":"^16.10.2","@typescript-eslint/eslint-plugin":"^4.32.0","@vue/compiler-sfc":"^3.2.19","bumpp":"^7.1.1","cross-env":"^7.0.3","eslint":"^7.32.0","esno":"^0.10.0","rollup":"^2.58.0","tsup":"^5.2.1","typescript":"^4.4.3","vite":"^2.6.2"},"peerDependencies":{"@svgr/core":"^5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"gitHead":"8876cf2f74e571872919893dd2b554cd1021d64d","_id":"unplugin-icons@0.12.7","_nodeVersion":"16.6.2","_npmVersion":"7.20.3","dist":{"shasum":"3f3b0324fcac932dfa1e1e09f305564aeb88d103","size":20737,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.12.7.tgz","integrity":"sha512-KyG+RPS+8yy4pNwxEnz3M2uC6xJBpXtx8nvlyOzYxwVuI0deSOu5Km7gFvu2+0tYKXKkriCVEXAxmoJ5H8pO5w=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-icons_0.12.7_1633142618251_0.8369468728120666"},"_hasShrinkwrap":false,"publish_time":1633142618411,"_cnpm_publish_time":1633142618411,"_cnpmcore_publish_time":"2021-12-18T03:40:06.248Z"},"0.12.6":{"name":"unplugin-icons","version":"0.12.6","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./loaders":{"require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.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 && 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 --ext .ts,.js,.vue","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish"},"dependencies":{"@antfu/install-pkg":"^0.1.0","@antfu/utils":"^0.3.0","@iconify/json-tools":"^1.0.10","@iconify/utils":"^1.0.10","chalk":"^4.1.2","debug":"^4.3.2","local-pkg":"^0.3.0","unplugin":"^0.2.16"},"devDependencies":{"@antfu/eslint-config":"^0.9.0","@iconify/types":"^1.0.9","@svgr/core":"^5.5.0","@types/debug":"^4.1.7","@types/node":"^16.10.2","@typescript-eslint/eslint-plugin":"^4.32.0","@vue/compiler-sfc":"^3.2.19","bumpp":"^7.1.1","cross-env":"^7.0.3","eslint":"^7.32.0","esno":"^0.10.0","rollup":"^2.58.0","tsup":"^5.2.1","typescript":"^4.4.3","vite":"^2.6.2"},"peerDependencies":{"@svgr/core":"^5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"gitHead":"1c525a63bd3976d134ed0536e74899834ed73fec","_id":"unplugin-icons@0.12.6","_nodeVersion":"16.6.2","_npmVersion":"7.20.3","dist":{"shasum":"0df61a34a590b1906ed6d53d99a1a34e9fdbc30a","size":20724,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.12.6.tgz","integrity":"sha512-vMW3OwcJhy3ixyyN7Pk4hhKTXpRbFzN3u6Nsab2Q2qrpxUrjlmYi2pBQKcctIBD6bkwOfZHV7dEt5YHo8GQlEA=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-icons_0.12.6_1633137275793_0.5651951117668694"},"_hasShrinkwrap":false,"publish_time":1633137275930,"_cnpm_publish_time":1633137275930,"_cnpmcore_publish_time":"2021-12-18T03:40:06.496Z"},"0.12.5":{"name":"unplugin-icons","version":"0.12.5","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./loaders":{"require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.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 && 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 --ext .ts,.js,.vue","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish"},"dependencies":{"@antfu/install-pkg":"^0.0.0","@antfu/utils":"^0.3.0","@iconify/json-tools":"^1.0.10","@iconify/utils":"^1.0.10","chalk":"^4.1.2","debug":"^4.3.2","local-pkg":"^0.2.0","unplugin":"^0.2.16"},"devDependencies":{"@antfu/eslint-config":"^0.9.0","@iconify/types":"^1.0.9","@svgr/core":"^5.5.0","@types/debug":"^4.1.7","@types/node":"^16.10.2","@typescript-eslint/eslint-plugin":"^4.32.0","@vue/compiler-sfc":"^3.2.19","bumpp":"^7.1.1","cross-env":"^7.0.3","eslint":"^7.32.0","esno":"^0.10.0","rollup":"^2.58.0","tsup":"^5.2.1","typescript":"^4.4.3","vite":"^2.6.2"},"peerDependencies":{"@svgr/core":"^5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"gitHead":"a02085f2c45f2f3f1988b6f9467636a9d74b58fc","_id":"unplugin-icons@0.12.5","_nodeVersion":"16.6.2","_npmVersion":"7.20.3","dist":{"shasum":"8038934f4dca25136af94c29a48fcae84ba21113","size":20309,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.12.5.tgz","integrity":"sha512-dvJl3g8dsM0IWanvLYZS77zG5XQmjKfw1xa282wxkgo+3CnB8r3ae7NL6unyEUr7qJWbINMghMRtATfw9AFL4w=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-icons_0.12.5_1633136113114_0.10669546768466587"},"_hasShrinkwrap":false,"publish_time":1633136113266,"_cnpm_publish_time":1633136113266,"_cnpmcore_publish_time":"2021-12-18T03:40:06.724Z"},"0.12.4":{"name":"unplugin-icons","version":"0.12.4","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./loaders":{"require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.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 && 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 --ext .ts,.js,.vue","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish"},"dependencies":{"@antfu/install-pkg":"^0.0.0","@antfu/utils":"^0.3.0","@iconify/json-tools":"^1.0.10","@iconify/utils":"^1.0.10","chalk":"^4.1.2","debug":"^4.3.2","local-pkg":"^0.2.0","unplugin":"^0.2.16"},"devDependencies":{"@antfu/eslint-config":"^0.9.0","@iconify/types":"^1.0.9","@svgr/core":"^5.5.0","@types/debug":"^4.1.7","@types/node":"^16.10.2","@typescript-eslint/eslint-plugin":"^4.32.0","@vue/compiler-sfc":"^3.2.19","bumpp":"^7.1.1","cross-env":"^7.0.3","eslint":"^7.32.0","esno":"^0.10.0","rollup":"^2.58.0","tsup":"^5.2.1","typescript":"^4.4.3","vite":"^2.6.2"},"peerDependencies":{"@iconify/json":"*","@svgr/core":"^5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@iconify/json":{"optional":true},"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"gitHead":"e0cb01043b6eb462f4ea42b9b054382874495285","_id":"unplugin-icons@0.12.4","_nodeVersion":"16.6.2","_npmVersion":"7.20.3","dist":{"shasum":"47cebe3428bf38eb8389582ce82756a849b3c885","size":20636,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.12.4.tgz","integrity":"sha512-u0+zjAySgCgsRdOsEGCxY7FILiju3pqvN6tKyap2CMjX1wyJD7CMdGz61QwxIZGcqjQn6bAh7ulPj0XEOxZTqw=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-icons_0.12.4_1633135013682_0.2697224620876941"},"_hasShrinkwrap":false,"publish_time":1633135013884,"_cnpm_publish_time":1633135013884,"_cnpmcore_publish_time":"2021-12-18T03:40:06.939Z"},"0.12.3":{"name":"unplugin-icons","version":"0.12.3","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./loaders":{"require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.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 && 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 --ext .ts,.js,.vue","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish"},"dependencies":{"@antfu/install-pkg":"^0.0.0","@antfu/utils":"^0.3.0","@iconify/json-tools":"^1.0.10","@iconify/utils":"^1.0.10","chalk":"^4.1.2","debug":"^4.3.2","local-pkg":"^0.2.0","unplugin":"^0.2.16"},"devDependencies":{"@antfu/eslint-config":"^0.9.0","@iconify/types":"^1.0.9","@svgr/core":"^5.5.0","@types/debug":"^4.1.7","@types/node":"^16.10.2","@typescript-eslint/eslint-plugin":"^4.32.0","@vue/compiler-sfc":"^3.2.19","bumpp":"^7.1.1","cross-env":"^7.0.3","eslint":"^7.32.0","esno":"^0.10.0","rollup":"^2.58.0","tsup":"^5.2.1","typescript":"^4.4.3","vite":"^2.6.2"},"peerDependencies":{"@iconify/json":"*","@svgr/core":"^5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@iconify/json":{"optional":true},"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"gitHead":"73a3b2f3e5f194bd9365c27930613abcf44bf410","_id":"unplugin-icons@0.12.3","_nodeVersion":"16.6.2","_npmVersion":"7.20.3","dist":{"shasum":"4a29b54fe9f2ba6cebafb56ad38195f9bc0a727d","size":20610,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.12.3.tgz","integrity":"sha512-KhIKQK2CKQFiTQmqIr3jTQ/Kkpj68D9c4xHHWYgg3G1HCI4RY2Cgew3abx2iQK281tKdOtUfHOMaEj9FA4FIuw=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-icons_0.12.3_1633130842721_0.05540062990821837"},"_hasShrinkwrap":false,"publish_time":1633130842909,"_cnpm_publish_time":1633130842909,"_cnpmcore_publish_time":"2021-12-18T03:40:07.154Z"},"0.12.2":{"name":"unplugin-icons","version":"0.12.2","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./loaders":{"require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.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 && 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 --ext .ts,.js,.vue","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish"},"dependencies":{"@antfu/install-pkg":"^0.0.0","@antfu/utils":"^0.3.0","@iconify/json-tools":"^1.0.10","@iconify/utils":"^1.0.10","chalk":"^4.1.2","debug":"^4.3.2","local-pkg":"^0.2.0","unplugin":"^0.2.16"},"devDependencies":{"@antfu/eslint-config":"^0.9.0","@iconify/types":"^1.0.9","@svgr/core":"^5.5.0","@types/debug":"^4.1.7","@types/node":"^16.10.2","@typescript-eslint/eslint-plugin":"^4.32.0","@vue/compiler-sfc":"^3.2.19","bumpp":"^7.1.1","cross-env":"^7.0.3","eslint":"^7.32.0","esno":"^0.10.0","rollup":"^2.58.0","tsup":"^5.2.1","typescript":"^4.4.3","vite":"^2.6.2"},"peerDependencies":{"@iconify/json":"*","@svgr/core":"^5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@iconify/json":{"optional":true},"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"gitHead":"e7d22c7ad6cd499909a6ca88d5f6b76e432db11a","_id":"unplugin-icons@0.12.2","_nodeVersion":"16.6.2","_npmVersion":"7.20.3","dist":{"shasum":"7945a29bcd781ce26f4d693f8de315494c8cf7d5","size":20534,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.12.2.tgz","integrity":"sha512-Lb4OcFzhjIncKbL361AxqPS9kvoTtreY7i5rASs8OYVgAbUtW9W1mYUvNhSwb795Z4eGVukWC8+sVoXOHjiN7Q=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-icons_0.12.2_1633130426817_0.17149564022252584"},"_hasShrinkwrap":false,"publish_time":1633130427192,"_cnpm_publish_time":1633130427192,"_cnpmcore_publish_time":"2021-12-18T03:40:07.359Z"},"0.12.1":{"name":"unplugin-icons","version":"0.12.1","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./loaders":{"require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.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 && 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 --ext .ts,.js,.vue","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish"},"dependencies":{"@antfu/install-pkg":"^0.0.0","@antfu/utils":"^0.3.0","@iconify/json-tools":"^1.0.10","@iconify/utils":"^1.0.10","debug":"^4.3.2","local-pkg":"^0.1.0","unplugin":"^0.2.16"},"devDependencies":{"@antfu/eslint-config":"^0.9.0","@iconify/types":"^1.0.9","@svgr/core":"^5.5.0","@types/debug":"^4.1.7","@types/node":"^16.10.2","@typescript-eslint/eslint-plugin":"^4.32.0","@vue/compiler-sfc":"^3.2.19","bumpp":"^7.1.1","cross-env":"^7.0.3","eslint":"^7.32.0","esno":"^0.10.0","rollup":"^2.58.0","tsup":"^5.2.1","typescript":"^4.4.3","vite":"^2.6.2"},"peerDependencies":{"@iconify/json":"*","@svgr/core":"^5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@iconify/json":{"optional":true},"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"gitHead":"39a6cc35c580a473ae9d6bd13aaa0632c7541201","_id":"unplugin-icons@0.12.1","_nodeVersion":"16.6.2","_npmVersion":"7.20.3","dist":{"shasum":"f8cda397e281617e1e9e16ac0e7ae2ddc0bb1531","size":20297,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.12.1.tgz","integrity":"sha512-DQwyfncEHuhtqWvv51G0NepRyqYbVxIFYGKouANfTv3YHZ1xXPxYH1l8bX42ZMcFoE8epfqk4O4ni/ZANJZxeg=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-icons_0.12.1_1633127681248_0.20658947160975827"},"_hasShrinkwrap":false,"publish_time":1633127681408,"_cnpm_publish_time":1633127681408,"_cnpmcore_publish_time":"2021-12-18T03:40:07.596Z"},"0.12.0":{"name":"unplugin-icons","version":"0.12.0","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./loaders":{"require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.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 && 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 --ext .ts,.js,.vue","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish"},"dependencies":{"@antfu/install-pkg":"^0.0.0","@antfu/utils":"^0.3.0","@iconify/json-tools":"^1.0.10","@iconify/utils":"^1.0.10","debug":"^4.3.2","local-pkg":"^0.1.0","unplugin":"^0.2.16"},"devDependencies":{"@antfu/eslint-config":"^0.9.0","@iconify/types":"^1.0.9","@svgr/core":"^5.5.0","@types/debug":"^4.1.7","@types/node":"^16.10.2","@typescript-eslint/eslint-plugin":"^4.32.0","@vue/compiler-sfc":"^3.2.19","bumpp":"^7.1.1","cross-env":"^7.0.3","eslint":"^7.32.0","esno":"^0.10.0","rollup":"^2.58.0","tsup":"^5.2.1","typescript":"^4.4.3","vite":"^2.6.2"},"peerDependencies":{"@iconify/json":"*","@svgr/core":"^5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@iconify/json":{"optional":true},"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"gitHead":"e37c8c2e31099b8cfcddf59b255330b99f5c816a","_id":"unplugin-icons@0.12.0","_nodeVersion":"16.6.2","_npmVersion":"7.20.3","dist":{"shasum":"b09d971228e452726e8a7ef5b316f8024a2a08c0","size":20030,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.12.0.tgz","integrity":"sha512-V/mwM/KJ6Z+JGWvF86InKY2O8Qy2lKdqmKNxsP+euaqgDQaJ/wyKFHJX3qzU9kL3Z9U9ezeGnyuGJLcLg3pKgg=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-icons_0.12.0_1633127191736_0.08787731111333286"},"_hasShrinkwrap":false,"publish_time":1633127191913,"_cnpm_publish_time":1633127191913,"_cnpmcore_publish_time":"2021-12-18T03:40:07.805Z"},"0.11.4":{"name":"unplugin-icons","version":"0.11.4","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./loaders":{"require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.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 --clean --format cjs,esm --dts --external vue && esno scripts/postbuild.ts","dev":"tsup src/*.ts --clean --format cjs,esm --dts --watch src --external vue","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint --ext .ts,.js,.vue","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish"},"dependencies":{"@antfu/utils":"^0.3.0","@iconify/json-tools":"^1.0.10","has-pkg":"^0.0.1","unplugin":"^0.2.11"},"devDependencies":{"@antfu/eslint-config":"^0.9.0","@svgr/core":"^5.5.0","@types/node":"^16.9.1","@typescript-eslint/eslint-plugin":"^4.31.1","@vue/compiler-sfc":"^3.2.11","bumpp":"^7.1.1","eslint":"^7.32.0","esno":"^0.9.1","rollup":"^2.56.3","tsup":"^4.14.0","typescript":"^4.4.3","vite":"^2.5.7"},"peerDependencies":{"@iconify/json":"*","@svgr/core":"^5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"gitHead":"e2a0bd699d1898eb61059fdf783af4d14731f819","_id":"unplugin-icons@0.11.4","_nodeVersion":"16.6.2","_npmVersion":"7.20.3","dist":{"shasum":"e11b826619b325b99d1e15b2cae19581f41300b6","size":16014,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.11.4.tgz","integrity":"sha512-vmUqYCf+uFZF33GyL5/1X3LqNJrn6RfI8K85EPs8PzTTqMF6lGnO9wERSo2yKt2wzkCye10urZFdaYrReheA8A=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-icons_0.11.4_1632541485618_0.5878628663484959"},"_hasShrinkwrap":false,"publish_time":1632541485886,"_cnpm_publish_time":1632541485886,"_cnpmcore_publish_time":"2021-12-18T03:40:08.050Z"},"0.11.3":{"name":"unplugin-icons","version":"0.11.3","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./loaders":{"require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.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 --clean --format cjs,esm --dts --external vue && esno scripts/postbuild.ts","dev":"tsup src/*.ts --clean --format cjs,esm --dts --watch src --external vue","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint --ext .ts,.js,.vue","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish"},"dependencies":{"@antfu/utils":"^0.3.0","@iconify/json-tools":"^1.0.10","has-pkg":"^0.0.1","unplugin":"^0.2.9"},"devDependencies":{"@antfu/eslint-config":"^0.9.0","@svgr/core":"^5.5.0","@types/node":"^16.9.1","@typescript-eslint/eslint-plugin":"^4.31.1","@vue/compiler-sfc":"^3.2.11","bumpp":"^7.1.1","eslint":"^7.32.0","esno":"^0.9.1","rollup":"^2.56.3","tsup":"^4.14.0","typescript":"^4.4.3","vite":"^2.5.7"},"peerDependencies":{"@iconify/json":"*","@svgr/core":"^5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"gitHead":"038cf0e5431ff0f4889f5f150b18e74f19ebdced","_id":"unplugin-icons@0.11.3","_nodeVersion":"16.6.2","_npmVersion":"7.20.3","dist":{"shasum":"ac129d23ed5d81696f7e0555c9703ab9b45882a7","size":16455,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.11.3.tgz","integrity":"sha512-qJMi1YBv6QN2R6lu+l7dR+W3LXmen09/h2OzD9324YOvRM6ElsmaCWvc5uuvAVUSpSuuAKfb+Ay1lCIfpb34RA=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-icons_0.11.3_1631741286477_0.43805055222143974"},"_hasShrinkwrap":false,"publish_time":1631741286658,"_cnpm_publish_time":1631741286658,"_cnpmcore_publish_time":"2021-12-18T03:40:08.290Z"},"0.11.2":{"name":"unplugin-icons","version":"0.11.2","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./loaders":{"require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.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 --clean --format cjs,esm --dts --external vue && esno scripts/postbuild.ts","dev":"tsup src/*.ts --clean --format cjs,esm --dts --watch src --external vue","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint --ext .ts,.js,.vue","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish"},"dependencies":{"@antfu/utils":"^0.3.0","@iconify/json-tools":"^1.0.10","has-pkg":"^0.0.1","unplugin":"^0.2.9"},"devDependencies":{"@antfu/eslint-config":"^0.9.0","@svgr/core":"^5.5.0","@types/node":"^16.9.1","@typescript-eslint/eslint-plugin":"^4.31.1","@vue/compiler-sfc":"^3.2.11","bumpp":"^7.1.1","eslint":"^7.32.0","esno":"^0.9.1","rollup":"^2.56.3","tsup":"^4.14.0","typescript":"^4.4.3","vite":"^2.5.7"},"peerDependencies":{"@iconify/json":"*","@svgr/core":"^5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"gitHead":"a41ee89b7d31a716780c92371c0c2874e687ac0e","_id":"unplugin-icons@0.11.2","_nodeVersion":"16.6.2","_npmVersion":"7.20.3","dist":{"shasum":"bc716782f862ea0c69eee44c90951480a32b54ba","size":15316,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.11.2.tgz","integrity":"sha512-ON2mTud2oQNPN/lPdXGqfiXIJOtBuyHsto3FdvOcUuyTEGeYpbNjPPiKIsTEIdICm0EaTSgExLFkQxuK1fZGgg=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-icons_0.11.2_1631703690217_0.5087061384910132"},"_hasShrinkwrap":false,"publish_time":1631703690344,"_cnpm_publish_time":1631703690344,"_cnpmcore_publish_time":"2021-12-18T03:40:08.547Z"},"0.11.1":{"name":"unplugin-icons","version":"0.11.1","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./loaders":{"require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.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 --clean --format cjs,esm --dts --external vue && esno scripts/postbuild.ts","dev":"tsup src/*.ts --clean --format cjs,esm --dts --watch src --external vue","example:build":"npm -C examples/vue3 run build","example:dev":"npm -C examples/vue3 run dev","lint":"eslint --ext .ts,.js,.vue","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish"},"dependencies":{"@antfu/utils":"^0.3.0","@iconify/json-tools":"^1.0.10","has-pkg":"^0.0.1","unplugin":"^0.2.9"},"devDependencies":{"@antfu/eslint-config":"^0.9.0","@svgr/core":"^5.5.0","@types/node":"^16.9.1","@typescript-eslint/eslint-plugin":"^4.31.1","@vue/compiler-sfc":"^3.2.11","bumpp":"^7.1.1","eslint":"^7.32.0","esno":"^0.9.1","rollup":"^2.56.3","tsup":"^4.14.0","typescript":"^4.4.3","vite":"^2.5.7"},"peerDependencies":{"@iconify/json":"*","@svgr/core":"^5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"gitHead":"6d23ef5fb7f3f4a06495b983fee8b2d2e62f6d7b","_id":"unplugin-icons@0.11.1","_nodeVersion":"16.6.2","_npmVersion":"7.20.3","dist":{"shasum":"9e87512a5cddcb1d113ec0fa37ec6d951fc84bc5","size":14881,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.11.1.tgz","integrity":"sha512-GRp/KN4GzAFNQLZgzLOZjHLFuLwG8cYByELOtfOvneM8S0p2z0V1J83R1uzQ4UItl6ciQIdCO8c2Gz9FHJicsw=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-icons_0.11.1_1631623039683_0.6946604053890053"},"_hasShrinkwrap":false,"publish_time":1631623039799,"_cnpm_publish_time":1631623039799,"_cnpmcore_publish_time":"2021-12-18T03:40:08.756Z"},"0.11.0":{"name":"unplugin-icons","version":"0.11.0","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./loaders":{"require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.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 --clean --format cjs,esm --dts --external vue && esno scripts/postbuild.ts","dev":"tsup src/*.ts --clean --format cjs,esm --dts --watch src --external vue","example:build":"npm -C examples/vue3 run build","example:dev":"npm -C examples/vue3 run dev","lint":"eslint --ext .ts,.js,.vue","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag && npm publish && git push"},"dependencies":{"@antfu/utils":"^0.3.0","@iconify/json-tools":"^1.0.10","has-pkg":"^0.0.1","unplugin":"^0.2.9"},"devDependencies":{"@antfu/eslint-config":"^0.9.0","@svgr/core":"^5.5.0","@types/node":"^16.9.1","@typescript-eslint/eslint-plugin":"^4.31.1","@vue/compiler-sfc":"^3.2.11","bumpp":"^7.1.1","eslint":"^7.32.0","esno":"^0.9.1","rollup":"^2.56.3","tsup":"^4.14.0","typescript":"^4.4.3","vite":"^2.5.7"},"peerDependencies":{"@iconify/json":"*","@svgr/core":"^5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"gitHead":"c8dfc69616a867b309f7e27383d593591480db1d","_id":"unplugin-icons@0.11.0","_nodeVersion":"16.6.2","_npmVersion":"7.20.3","dist":{"shasum":"e1dc149709cd5f47c1131154aa4a0a7d316b7d7f","size":14882,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.11.0.tgz","integrity":"sha512-wltpZP65pB1Os2H6PmcF+i3hwDZswtpgwn7chs3RAPP7KkgOajNPWGbR4zt+Zct9VAzX8gGvFh85oC1N2vcKgQ=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-icons_0.11.0_1631622722574_0.5487236859371643"},"_hasShrinkwrap":false,"publish_time":1631622722743,"_cnpm_publish_time":1631622722743,"_cnpmcore_publish_time":"2021-12-18T03:40:09.040Z"},"0.10.0":{"name":"unplugin-icons","version":"0.10.0","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.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 --external vue && esno scripts/postbuild.ts","dev":"tsup src/*.ts --format cjs,esm --watch src --external vue","example:build":"npm -C examples/vue3 run build","example:dev":"npm -C examples/vue3 run dev","lint":"eslint --ext .ts,.js,.vue","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag && npm publish && git push"},"dependencies":{"@iconify/json-tools":"^1.0.10","has-pkg":"^0.0.1","unplugin":"^0.2.9"},"devDependencies":{"@antfu/eslint-config":"^0.9.0","@svgr/core":"^5.5.0","@types/node":"^16.9.1","@typescript-eslint/eslint-plugin":"^4.31.1","@vue/compiler-sfc":"^3.2.11","bumpp":"^7.1.1","eslint":"^7.32.0","esno":"^0.9.1","rollup":"^2.56.3","tsup":"^4.14.0","typescript":"^4.4.3","vite":"^2.5.7"},"peerDependencies":{"@iconify/json":"*","@svgr/core":"^5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"gitHead":"cfd4f977b98eda10ab6dbf986107bed87f15eb13","_id":"unplugin-icons@0.10.0","_nodeVersion":"16.6.2","_npmVersion":"7.20.3","dist":{"shasum":"bb82e86c2e587599d52df0f0d07ce307b22f8eae","size":12778,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.10.0.tgz","integrity":"sha512-whRPcFmE38KoYkifEmJFLA1s67YutQ6Q75CmydqGETqbbUUaJkqNG22qz4gvogn7fFlzV5kmbQogJ7MmOvYdtA=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-icons_0.10.0_1631586279778_0.44814356844682535"},"_hasShrinkwrap":false,"publish_time":1631586279906,"_cnpm_publish_time":1631586279906,"_cnpmcore_publish_time":"2021-12-18T03:40:09.275Z"},"0.9.0":{"name":"unplugin-icons","version":"0.9.0","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.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 --external vue && esno scripts/postbuild.ts","dev":"tsup src/*.ts --format cjs,esm --watch src --external vue","example:build":"npm -C examples/vue3 run build","example:dev":"npm -C examples/vue3 run dev","lint":"eslint --ext .ts,.js,.vue","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag && npm publish && git push"},"dependencies":{"@iconify/json-tools":"^1.0.10","has-pkg":"^0.0.1","unplugin":"^0.2.9"},"devDependencies":{"@antfu/eslint-config":"^0.8.2","@svgr/core":"^5.5.0","@types/node":"^16.9.1","@typescript-eslint/eslint-plugin":"^4.31.0","@vue/compiler-sfc":"^3.2.11","bumpp":"^7.1.1","eslint":"^7.32.0","esno":"^0.9.1","rollup":"^2.56.3","tsup":"^4.14.0","typescript":"^4.4.3","vite":"^2.5.6"},"peerDependencies":{"@iconify/json":"*","@svgr/core":"^5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"gitHead":"c244de5abdc2bdbe17dacd7e7ec5ec8cea80447a","_id":"unplugin-icons@0.9.0","_nodeVersion":"16.6.2","_npmVersion":"7.20.3","dist":{"shasum":"7fb0d4a7934748cf02f4faec5eaf5dbbc79f044a","size":11174,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.9.0.tgz","integrity":"sha512-BbJLvxC83IshbCMdk+1Fl7Sm03l6xe0/iu7bQrbQE0NwEuDkf4NJMnv7rRX0joOzY2hOpzS8O9fMzar06/py4w=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-icons_0.9.0_1631513282070_0.25229848221444784"},"_hasShrinkwrap":false,"publish_time":1631513282201,"_cnpm_publish_time":1631513282201,"_cnpmcore_publish_time":"2021-12-18T03:40:09.490Z"},"0.8.1":{"name":"unplugin-icons","version":"0.8.1","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.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 --external vue && esno scripts/postbuild.ts","dev":"tsup 'src/*.ts' --format cjs,esm --watch src --external vue","example:build":"npm -C examples/vue3 run build","example:dev":"npm -C examples/vue3 run dev","lint":"eslint --ext .ts,.js,.vue","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag && npm publish && git push"},"dependencies":{"@iconify/json-tools":"^1.0.10","has-pkg":"^0.0.1","unplugin":"^0.2.8"},"devDependencies":{"@antfu/eslint-config":"^0.8.1","@svgr/core":"^5.5.0","@types/node":"^16.9.1","@typescript-eslint/eslint-plugin":"^4.31.0","@vue/compiler-sfc":"^3.2.11","bumpp":"^7.1.1","eslint":"^7.32.0","rollup":"^2.56.3","tsup":"^4.14.0","typescript":"^4.4.3","vite":"^2.5.6"},"peerDependencies":{"@iconify/json":"*","@svgr/core":"^5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"gitHead":"adb1499ebbee3bc4bc4f876995870a7c4515180d","_id":"unplugin-icons@0.8.1","_nodeVersion":"16.6.2","_npmVersion":"7.20.3","dist":{"shasum":"0b0e0fe4229b95f207920dec230807d874cf60ed","size":10667,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.8.1.tgz","integrity":"sha512-/loYUI0Z4PW0PeRorCOI8x91mhzfkpyhQp9i8QnTuxX9flyC+gR26doqEeNa3UWsDSN7MB2duLK3vSPr81PciQ=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-icons_0.8.1_1631400181870_0.8800978811718385"},"_hasShrinkwrap":false,"publish_time":1631400182044,"_cnpm_publish_time":1631400182044,"_cnpmcore_publish_time":"2021-12-18T03:40:09.755Z"},"0.8.0":{"name":"unplugin-icons","version":"0.8.0","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.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 --external vue && esno scripts/postbuild.ts","dev":"tsup 'src/*.ts' --format cjs,esm --watch src --external vue","example:build":"npm -C examples/vue3 run build","example:dev":"npm -C examples/vue3 run dev","lint":"eslint --ext .ts,.js,.vue","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag && npm publish && git push"},"dependencies":{"@iconify/json-tools":"^1.0.10","has-pkg":"^0.0.1","unplugin":"^0.2.8"},"devDependencies":{"@antfu/eslint-config":"^0.8.1","@svgr/core":"^5.5.0","@types/node":"^16.9.1","@typescript-eslint/eslint-plugin":"^4.31.0","@vue/compiler-sfc":"^3.2.11","bumpp":"^7.1.1","eslint":"^7.32.0","rollup":"^2.56.3","tsup":"^4.14.0","typescript":"^4.4.3","vite":"^2.5.6"},"peerDependencies":{"@iconify/json":"*","@svgr/core":"^5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"gitHead":"a941835739dba4ba5691c0d3b5c99041dca97ac6","_id":"unplugin-icons@0.8.0","_nodeVersion":"16.6.2","_npmVersion":"7.20.3","dist":{"shasum":"ddc553ddf336db3157b25de75579c4b218bb0b49","size":10663,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.8.0.tgz","integrity":"sha512-GhKsxer6SxGyIQ8CFS5qLmNLqgRanigeriNdQF8+MbYTCZBRWSsulaycswocGjlt2PfgsxQrCg2FVW8h4qu+cQ=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-icons_0.8.0_1631391734315_0.8526534038733651"},"_hasShrinkwrap":false,"publish_time":1631391734470,"_cnpm_publish_time":1631391734470,"_cnpmcore_publish_time":"2021-12-18T03:40:09.952Z"},"0.7.6":{"name":"unplugin-icons","version":"0.7.6","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.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 --external vue && esno scripts/postbuild.ts","dev":"tsup 'src/*.ts' --format cjs,esm --watch src --external vue","example:build":"npm -C examples/vue3 run build","example:dev":"npm -C examples/vue3 run dev","prepublishOnly":"npm run build","lint":"eslint --ext .ts,.js,.vue","release":"npx bumpp --commit --tag && npm publish && git push"},"dependencies":{"@iconify/json-tools":"^1.0.10","has-pkg":"^0.0.1","unplugin":"^0.2.3"},"devDependencies":{"@antfu/eslint-config":"^0.7.0","@svgr/core":"^5.5.0","@types/node":"^16.7.4","@typescript-eslint/eslint-plugin":"^4.29.3","@vue/compiler-sfc":"^3.2.6","eslint":"^7.32.0","rollup":"^2.56.3","tsup":"^4.14.0","typescript":"^4.4.2","vite":"^2.5.1"},"peerDependencies":{"@iconify/json":"*","@svgr/core":"^5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true},"@svgr/core":{"optional":true}},"gitHead":"6a98fa057fedab7f0354c6f9bc603061eb1bd204","_id":"unplugin-icons@0.7.6","_nodeVersion":"16.6.2","_npmVersion":"7.20.3","dist":{"shasum":"08b61cf9bda2989c8a7dc6d4ea8052b65bb090a0","size":10352,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.7.6.tgz","integrity":"sha512-P9Uvto2ImdIYovkk13YBkr/o5GRyYsjaVerrcP2AnAewqxcEh20IB71ZkTWog9ywTnGgv0sfeIlOQplbbaCzbw=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-icons_0.7.6_1630935469370_0.7794176097657917"},"_hasShrinkwrap":false,"publish_time":1630935469530,"_cnpm_publish_time":1630935469530,"_cnpmcore_publish_time":"2021-12-18T03:40:10.177Z"},"0.7.5":{"name":"unplugin-icons","version":"0.7.5","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.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 --external vue && esno scripts/postbuild.ts","dev":"tsup 'src/*.ts' --format cjs,esm --watch src --external vue","example:build":"npm -C examples/vue3 run build","example:dev":"npm -C examples/vue3 run dev","prepublishOnly":"npm run build","lint":"eslint --ext .ts,.js,.vue","release":"npx bumpp --commit --tag && npm publish && git push"},"dependencies":{"@iconify/json-tools":"^1.0.10","has-pkg":"^0.0.1","unplugin":"^0.2.3"},"devDependencies":{"@antfu/eslint-config":"^0.7.0","@svgr/core":"^5.5.0","@types/node":"^16.7.4","@typescript-eslint/eslint-plugin":"^4.29.3","@vue/compiler-sfc":"^3.2.6","eslint":"^7.32.0","rollup":"^2.56.3","tsup":"^4.14.0","typescript":"^4.4.2","vite":"^2.5.1"},"peerDependencies":{"@iconify/json":"*","@svgr/core":"^5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true},"@svgr/core":{"optional":true}},"gitHead":"6fd4e129d182fd27fa739db43857c6ff9b78d860","_id":"unplugin-icons@0.7.5","_nodeVersion":"16.6.2","_npmVersion":"7.20.3","dist":{"shasum":"4bc8055d4f96a6b3a21368ff09cc4320db999dfd","size":8979,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.7.5.tgz","integrity":"sha512-5IY6hpmKdAPUHyJU3u9bzFw2gOGK1hBW+TSNHt8CuhrdM1wgBZRCgfum9OjDuRgM4nDZiECrsHwGeJvBIvnJVw=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-icons_0.7.5_1630543285323_0.5674765191942235"},"_hasShrinkwrap":false,"publish_time":1630543285525,"_cnpm_publish_time":1630543285525,"_cnpmcore_publish_time":"2021-12-18T03:40:10.368Z"},"0.7.4":{"name":"unplugin-icons","version":"0.7.4","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.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 --external vue && esno scripts/postbuild.ts","dev":"tsup 'src/*.ts' --format cjs,esm --watch src --external vue","example:build":"npm -C examples/vue3 run build","example:dev":"npm -C examples/vue3 run dev","prepublishOnly":"npm run build","lint":"eslint --ext .ts,.js,.vue","release":"npx bumpp --commit --tag && npm publish && git push"},"dependencies":{"@iconify/json-tools":"^1.0.10","has-pkg":"^0.0.1","unplugin":"^0.2.3"},"devDependencies":{"@antfu/eslint-config":"^0.7.0","@svgr/core":"^5.5.0","@types/node":"^16.7.4","@typescript-eslint/eslint-plugin":"^4.29.3","@vue/compiler-sfc":"^3.2.6","eslint":"^7.32.0","rollup":"^2.56.3","tsup":"^4.14.0","typescript":"^4.4.2","vite":"^2.5.1"},"peerDependencies":{"@iconify/json":"*","@svgr/core":"^5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true},"@svgr/core":{"optional":true}},"gitHead":"2cc3d2ce08f4d553613afd404a84402c83d43d4d","_id":"unplugin-icons@0.7.4","_nodeVersion":"16.6.2","_npmVersion":"7.20.3","dist":{"shasum":"a94fc8bfcfee5562f85d7535475eca0b70285440","size":8974,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.7.4.tgz","integrity":"sha512-XuV+fQ0NKzXiIF2uq7Dp5I+R07KZoFrCu8ISQinuCxLG9npdW/ukD8ASrc2JKX6TQs22PoYF4YVJvlWhz+9qBw=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-icons_0.7.4_1630367399107_0.649661536243678"},"_hasShrinkwrap":false,"publish_time":1630367399276,"_cnpm_publish_time":1630367399276,"_cnpmcore_publish_time":"2021-12-18T03:40:10.576Z"},"0.7.3":{"name":"unplugin-icons","version":"0.7.3","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.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 --external vue && esno scripts/postbuild.ts","dev":"tsup 'src/*.ts' --format cjs,esm --watch src --external vue","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 && npm publish && git push"},"dependencies":{"@iconify/json-tools":"^1.0.10","has-pkg":"^0.0.1","unplugin":"^0.2.3"},"devDependencies":{"@antfu/eslint-config":"^0.7.0","@svgr/core":"^5.5.0","@types/node":"^16.7.4","@typescript-eslint/eslint-plugin":"^4.29.3","@vue/compiler-sfc":"^3.2.6","eslint":"^7.32.0","rollup":"^2.56.3","tsup":"^4.14.0","typescript":"^4.4.2","vite":"^2.5.1"},"peerDependencies":{"@iconify/json":"*","@svgr/core":"^5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true},"@svgr/core":{"optional":true}},"gitHead":"3432ba120093ae0fe63a5f8e9af9759cea4ebd28","_id":"unplugin-icons@0.7.3","_nodeVersion":"16.6.2","_npmVersion":"7.20.3","dist":{"shasum":"95fdb77471f9ff122cc2420f5076b4b53f907cdc","size":9496,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.7.3.tgz","integrity":"sha512-3jhQ8gaXm05tlsWjSXTRiFEuetumw+qTEc021rUZhAg6Y8cxPZQp5RooyS+fTWaDlJFRnpfl9oweCycV8XLWlg=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-icons_0.7.3_1630311753138_0.21755871694542672"},"_hasShrinkwrap":false,"publish_time":1630311753283,"_cnpm_publish_time":1630311753283,"_cnpmcore_publish_time":"2021-12-18T03:40:10.804Z"},"0.7.2":{"name":"unplugin-icons","version":"0.7.2","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.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 --external vue && esno scripts/postbuild.ts","dev":"tsup 'src/*.ts' --format cjs,esm --watch src --external vue","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 && npm publish && git push"},"dependencies":{"@iconify/json-tools":"^1.0.10","has-pkg":"^0.0.1","unplugin":"^0.2.3"},"devDependencies":{"@antfu/eslint-config":"^0.7.0","@svgr/core":"^5.5.0","@types/node":"^16.7.4","@typescript-eslint/eslint-plugin":"^4.29.3","@vue/compiler-sfc":"^3.2.6","eslint":"^7.32.0","rollup":"^2.56.3","tsup":"^4.14.0","typescript":"^4.4.2","vite":"^2.5.1"},"peerDependencies":{"@iconify/json":"*","@svgr/core":"^5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true},"@svgr/core":{"optional":true}},"gitHead":"5709110d8ea8bf220ab18f1b93c3a17b37086b58","_id":"unplugin-icons@0.7.2","_nodeVersion":"16.6.2","_npmVersion":"7.20.3","dist":{"shasum":"39d613daa681514e480a8ba55587fdd520333873","size":8357,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.7.2.tgz","integrity":"sha512-IFygK57JjB54lhnEGk8klIWAXX3esitt116s/EuzuRgdKB/Fyo+D3g8pRx+7/+zk9Vvqbr2j9yPWV9mT265k9w=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-icons_0.7.2_1630289173359_0.04516959787697661"},"_hasShrinkwrap":false,"publish_time":1630289173574,"_cnpm_publish_time":1630289173574,"_cnpmcore_publish_time":"2021-12-18T03:40:11.020Z"},"0.7.1":{"name":"unplugin-icons","version":"0.7.1","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.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 --external vue && esno scripts/postbuild.ts","dev":"tsup 'src/*.ts' --format cjs,esm --watch src --external vue","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 && npm publish && git push"},"dependencies":{"@iconify/json-tools":"^1.0.10","has-pkg":"^0.0.1","unplugin":"^0.2.3"},"devDependencies":{"@antfu/eslint-config":"^0.7.0","@svgr/core":"^5.5.0","@types/node":"^16.7.4","@typescript-eslint/eslint-plugin":"^4.29.3","@vue/compiler-sfc":"^3.2.6","eslint":"^7.32.0","rollup":"^2.56.3","tsup":"^4.14.0","typescript":"^4.4.2","vite":"^2.5.1"},"peerDependencies":{"@iconify/json":"*","@svgr/core":"^5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true},"@svgr/core":{"optional":true}},"gitHead":"2562951f50dfde40fc64736333b8c34c8f4b1a07","_id":"unplugin-icons@0.7.1","_nodeVersion":"16.6.2","_npmVersion":"7.20.3","dist":{"shasum":"417b004a7afaaf91af34a6753b924cd2e4b4d7e4","size":8657,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.7.1.tgz","integrity":"sha512-ZSl3qeynCF7KEvnLLjUB+MlrIVUxNGogf5fiwyo98QdVX/HEEYc5JMsew9yEgRBnP8dOU4tl5vHsqVddqaWE3Q=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-icons_0.7.1_1630217397496_0.7064537753432218"},"_hasShrinkwrap":false,"publish_time":1630217397644,"_cnpm_publish_time":1630217397644,"_cnpmcore_publish_time":"2021-12-18T03:40:11.208Z"},"0.7.0":{"name":"unplugin-icons","version":"0.7.0","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.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 --external vue && esno scripts/postbuild.ts","dev":"tsup 'src/*.ts' --format cjs,esm --watch src --external vue","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 && npm publish && git push"},"dependencies":{"@iconify/json-tools":"^1.0.10","has-pkg":"^0.0.1","unplugin":"^0.2.3"},"devDependencies":{"@antfu/eslint-config":"^0.7.0","@svgr/core":"^5.5.0","@types/node":"^16.7.4","@typescript-eslint/eslint-plugin":"^4.29.3","@vue/compiler-sfc":"^3.2.6","eslint":"^7.32.0","rollup":"^2.56.3","tsup":"^4.14.0","typescript":"^4.4.2","vite":"^2.5.1"},"peerDependencies":{"@iconify/json":"*","@svgr/core":"^5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true},"@svgr/core":{"optional":true}},"gitHead":"a79f6887a6ddbbcc5306c092d532ab45c1f342f6","_id":"unplugin-icons@0.7.0","_nodeVersion":"16.6.2","_npmVersion":"7.20.3","dist":{"shasum":"c81b7589d9d93f0eeaf9122775ca5ca3170cff2f","size":8763,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.7.0.tgz","integrity":"sha512-Lqou3BC97biOrOkdJrIJdjB2WRLWaL11uqbFEp8MN8yE0LQV4/PDgeThHUl5rwc9rbTcyrZXkPWYdb6CAl2zrw=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-icons_0.7.0_1630216605098_0.9518820306465887"},"_hasShrinkwrap":false,"publish_time":1630216605246,"_cnpm_publish_time":1630216605246,"_cnpmcore_publish_time":"2021-12-18T03:40:11.436Z"},"0.1.1":{"name":"unplugin-icons","version":"0.1.1","description":"Access thousands of icons as components on-demand","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.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 --external vue && esno scripts/postbuild.ts","dev":"tsup 'src/*.ts' --format cjs,esm --watch src --external vue","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 && npm publish && git push"},"dependencies":{"@iconify/json-tools":"^1.0.10","has-pkg":"^0.0.1","unplugin":"^0.2.3"},"devDependencies":{"@antfu/eslint-config":"^0.7.0","@svgr/core":"^5.5.0","@types/node":"^16.7.4","@typescript-eslint/eslint-plugin":"^4.29.3","@vue/compiler-sfc":"^3.2.6","eslint":"^7.32.0","rollup":"^2.56.3","tsup":"^4.14.0","typescript":"^4.4.2","vite":"^2.5.1"},"peerDependencies":{"@iconify/json":"*","@svgr/core":"^5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true},"@svgr/core":{"optional":true}},"gitHead":"ed0890dfdbfeb31a2d6302ef22a8201d130918a6","_id":"unplugin-icons@0.1.1","_nodeVersion":"16.6.2","_npmVersion":"7.20.3","dist":{"shasum":"6b74d58f8359190214a87bc6830b021ba1b4bf38","size":8802,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.1.1.tgz","integrity":"sha512-ozKwK579Bt50EMmN60GuEbaBwC0Zw0TXuWCec3qQmTwjeFYu4pqmUZbxlHOwdh8tnRuaIrOCgUvftkIQo05Gtg=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-icons_0.1.1_1630214802662_0.026836397628896336"},"_hasShrinkwrap":false,"publish_time":1630214802863,"_cnpm_publish_time":1630214802863,"_cnpmcore_publish_time":"2021-12-18T03:40:11.646Z"},"0.1.0":{"name":"unplugin-icons","version":"0.1.0","description":"Access thousands of icons as components on-demand","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./jest":{"require":"./jest.js"},"./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.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 --external vue && esno scripts/postbuild.ts","dev":"tsup 'src/*.ts' --format cjs,esm --watch src --external vue","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 && npm publish && git push"},"dependencies":{"@iconify/json-tools":"^1.0.10","unplugin":"^0.2.3"},"devDependencies":{"@antfu/eslint-config":"^0.7.0","@svgr/core":"^5.5.0","@types/node":"^16.7.4","@typescript-eslint/eslint-plugin":"^4.29.3","@vue/compiler-sfc":"^3.2.6","eslint":"^7.32.0","rollup":"^2.56.3","tsup":"^4.14.0","typescript":"^4.4.2","vite":"^2.5.1"},"peerDependencies":{"@iconify/json":"*","@svgr/core":"^5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true},"@svgr/core":{"optional":true}},"gitHead":"9ef46ffb62c680d068ebab3fcb379c9286d5d1f3","_id":"unplugin-icons@0.1.0","_nodeVersion":"16.6.2","_npmVersion":"7.20.3","dist":{"shasum":"8b3913c64925ee89a04d689113d7974922cb2ffd","size":8568,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.1.0.tgz","integrity":"sha512-m5pP9EviopCxv7gf9riVBALjYFlgb+NUNZ0iMoQK+/ubG/zgAma01zu4tvBNl9s1vLuK/hw/Avp7iHaxllPW9w=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-icons_0.1.0_1630159796212_0.6195632072675692"},"_hasShrinkwrap":false,"publish_time":1630159796344,"_cnpm_publish_time":1630159796344,"_cnpmcore_publish_time":"2021-12-18T03:40:11.901Z"},"0.0.0":{"name":"unplugin-icons","version":"0.0.0","description":"Access thousands of icons as components on-demand","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./jest":{"require":"./jest.js"},"./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.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 --external vue && esno scripts/postbuild.ts","dev":"tsup 'src/*.ts' --format cjs,esm --watch src --external vue","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 && npm publish && git push"},"dependencies":{"@iconify/json-tools":"^1.0.10","unplugin":"^0.2.2"},"devDependencies":{"@antfu/eslint-config":"^0.7.0","@types/node":"^16.7.4","@typescript-eslint/eslint-plugin":"^4.29.3","@vue/compiler-sfc":"^3.2.6","eslint":"^7.32.0","rollup":"^2.56.3","tsup":"^4.14.0","typescript":"^4.4.2","vite":"^2.5.1"},"peerDependencies":{"@iconify/json":"*","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.1"},"peerDependenciesMeta":{"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"gitHead":"a8e2a0dffd1fdd10d466f1b5f38eb435b8081ade","_id":"unplugin-icons@0.0.0","_nodeVersion":"16.6.2","_npmVersion":"7.20.3","dist":{"shasum":"72c5452956f16f21bcb476e7bfe0a8ad5f38ee16","size":7251,"noattachment":false,"tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.0.0.tgz","integrity":"sha512-v1P2d8x0mjBIqOEHG1yTv2gUytQte3zLFr/i46xJUCSxShhe/ydbWe8PWG5K0dgUViEPKiUDASdMCDPBpDIL4w=="},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"antfu","email":"anthonyfu117@hotmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/unplugin-icons_0.0.0_1630099116523_0.19675025675597535"},"_hasShrinkwrap":false,"publish_time":1630099116676,"_cnpm_publish_time":1630099116676,"_cnpmcore_publish_time":"2021-12-18T03:40:12.076Z"},"0.13.0":{"name":"unplugin-icons","version":"0.13.0","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./loaders":{"require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./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 && 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 --ext .ts,.js,.vue .","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish","test":"vitest"},"dependencies":{"@antfu/install-pkg":"^0.1.0","@antfu/utils":"^0.4.0","@iconify/utils":"^1.0.20","debug":"^4.3.3","kolorist":"^1.5.1","local-pkg":"^0.4.0","unplugin":"^0.2.21"},"devDependencies":{"@antfu/eslint-config":"^0.14.0","@iconify/json":"^2.0.15","@iconify/types":"^1.0.12","@svgr/core":"^6.1.2","@types/debug":"^4.1.7","@types/node":"^17.0.4","@typescript-eslint/eslint-plugin":"^5.8.0","@vue/compiler-sfc":"^3.2.26","bumpp":"^7.1.1","cross-env":"^7.0.3","eslint":"^8.5.0","esno":"^0.13.0","rollup":"^2.62.0","tsup":"^5.11.9","typescript":"^4.5.4","vite":"^2.7.6","vitest":"^0.0.113"},"peerDependencies":{"@svgr/core":"^5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"gitHead":"7ff78cfd628609cd3d7c6034b354e33f0a7cb321","_id":"unplugin-icons@0.13.0","_nodeVersion":"16.13.0","_npmVersion":"8.1.0","dist":{"integrity":"sha512-CyAl0HV3bZUGT7ut9agpPRhEYXCvufr80Fh72yrkD57BVCTZ7ze10Rt63ZrvPXiJQpd+aI/Bizm2aqOf3WPSfg==","shasum":"9bb2e75c61609dae86938044186288590bb990ba","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.13.0.tgz","fileCount":49,"unpackedSize":72002,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhx/dkCRA9TVsSAnZWagAAv70P/jMu4JrpBRyGqyhRiYyh\nmRZqjHfp2sm47+hkx0ygCUNYGtw2S8ZcwEgJZ0+Jwx0pNdii0tP7DdHq4Hs3\nIcnYa8BEIQoj6i4Zs+H2Xsu0AKaKh0RG5zf7wP7IMXd6WB+NexDV3GhNYRcX\nOlIHq40TjymNyWt50+SMc5Yx3x04jUM5gnB3/LSQO0MeFBIOBH2o+OLI8EI4\nnUUqKWnD5CEA721HjzbvqeYRpHEsXQktvGD6aplJbdbgOwH6QRr5/jrungAG\nPKuy7+jhLShXryGdj20WrLSyV1zF/aBogzpXbVjHvUGl+2Xo24wHBFDQSx7g\nMzn4mG93edTOnHyMAHJE7KRa/BzP3pkYQ6qQtrICFp4MYKaK/YZhy2hr1Zvx\naYDttXzBUpD7GVwl7T0FhMWFtGlMHLYaRrOJYOSez6MYZRv5jzoKHHWjgPJy\nd/DKa50ukPtxtTVeBM9IYqsJEC8UOKcKxNkwVlrvAIOhGTN1TQPDJk4n5CjY\n852wylI38ZhS3DIfA+rWVNxbOZlcBAYyiQ4IM3mo80o9LQUfbBP27NZuemch\nFUT4t79Y13sChZas93sl6ONwKfCiXXQDkWGws0zl9B0MzURPYQ5Jlm2SJe0a\n5ExIgrnN87M+lU4rBcFIGQqtW97bD1K6kM9TL2VnGz0VrcY2zK//Vjs8Td0e\nTGzi\r\n=AuWY\r\n-----END PGP SIGNATURE-----\r\n","size":21531},"_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-icons_0.13.0_1640494947850_0.21534769777544382"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2021-12-27T20:02:05.899Z"},"0.13.1":{"name":"unplugin-icons","version":"0.13.1","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./loaders":{"require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./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 && 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 --ext .ts,.js,.vue .","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish","test":"vitest"},"dependencies":{"@antfu/install-pkg":"^0.1.0","@antfu/utils":"^0.5.0","@iconify/utils":"^1.0.23","debug":"^4.3.3","kolorist":"^1.5.1","local-pkg":"^0.4.1","unplugin":"^0.3.2"},"devDependencies":{"@antfu/eslint-config":"^0.16.1","@iconify/json":"^2.0.34","@iconify/types":"^1.0.12","@svgr/core":"^6.2.1","@types/debug":"^4.1.7","@types/node":"^17.0.16","@typescript-eslint/eslint-plugin":"^5.11.0","@vue/compiler-sfc":"^3.2.30","bumpp":"^7.1.1","cross-env":"^7.0.3","eslint":"^8.8.0","esno":"^0.14.1","rollup":"^2.67.1","tsup":"^5.11.13","typescript":"^4.5.5","vite":"^2.7.13","vitest":"^0.2.8"},"peerDependencies":{"@svgr/core":">=5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"gitHead":"d30d1730c0622f876d1ce1bdb939194b1b935756","_id":"unplugin-icons@0.13.1","_nodeVersion":"16.13.0","_npmVersion":"8.1.0","dist":{"integrity":"sha512-Y7ZOjTUvLdY4qUQNDo4OmkxjCh2coNbcAeWfFW66EZW7cJiBI6vU8j4cBAsyqUEwMdFL3q/kwowCRgD6BAaRyQ==","shasum":"962286ee3ec78a4ac3d8c050229b1009e9a021bd","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.13.1.tgz","fileCount":49,"unpackedSize":73076,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiAmOyCRA9TVsSAnZWagAAhioP/iFbSGSmPd6211fWAVyy\ndoWJBAv8x7CDDNNvQTDkeraBMt2RPEltm2Ir66CZLIsyRTNSoKAirmEVYAvM\ncarQCnnZ2iRAen/H0wcXd1pryZjo3bza3avOGBby79CnfScRBK+gZtOZdL83\nynFxqjd5Otp7r9m0UTNVjLjowlPbsQivv5cLWxOrxeSrHcdfyIrxNMcXl0VT\nnkhqEEUnDppn8/bVDu0b3AjeJBCNfjBZ1eQJH3s7xCjG0uwuRJYswOLYDp3F\nFSFO00SigSTaf5M4gfBTjkeavG7PCTVog9jzlzM9bbSU5zX6biGzMSLwaS56\nECOqnpdmUz0Req6rcdcc/3l6kgUnLuqLWRHJikbrKRNYnwDz3YmRV9lOCb+X\ntTtfi64k8jbuJWy0890wX1IeR02BjXWbCj3FGmRVY/sRpbN8DIHs0rQpe/ID\nV7RjlgVQa5hTj3sDvyJY8pYw/F3PdRRhmZuJhC5X3t5mNfKUWjGDAoqI9jOS\nJPIma31ervAZmCwEDiq0xusiqzEFjmbqT34zD4a+vf2w4uTKO3+lOsw6uhar\n8fWnqXj/uF5Xc7ptQjTe5jMjazlzPu6qMFV7jdMakEA8NZ1Fs1iAnRqLtwzn\ngqXK3vf/RDo59KYdX+B7b2I0D+7u3zGHmvVam9Ti0UyrK5qnpHrLX09Yo4zx\n31y9\r\n=xClg\r\n-----END PGP SIGNATURE-----\r\n","size":21807},"_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-icons_0.13.1_1644323762680_0.10042753269343052"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-02-08T12:37:59.982Z"},"0.13.2":{"name":"unplugin-icons","version":"0.13.2","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./loaders":{"require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./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 && 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 --ext .ts,.js,.vue .","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish","test":"vitest"},"dependencies":{"@antfu/install-pkg":"^0.1.0","@antfu/utils":"^0.5.0","@iconify/utils":"^1.0.23","debug":"^4.3.3","kolorist":"^1.5.1","local-pkg":"^0.4.1","unplugin":"^0.3.2"},"devDependencies":{"@antfu/eslint-config":"^0.16.1","@iconify/json":"^2.1.2","@iconify/types":"^1.0.12","@svgr/core":"^6.2.1","@types/debug":"^4.1.7","@types/node":"^17.0.18","@typescript-eslint/eslint-plugin":"^5.12.0","@vue/compiler-sfc":"^3.2.31","bumpp":"^7.1.1","cross-env":"^7.0.3","eslint":"^8.9.0","esno":"^0.14.1","rollup":"^2.67.3","tsup":"^5.11.13","typescript":"^4.5.5","vite":"^2.8.4","vitest":"^0.4.0"},"peerDependencies":{"@svgr/core":">=5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"gitHead":"989751f09c76d8a5dc4c7675970ff213349eb269","_id":"unplugin-icons@0.13.2","_nodeVersion":"16.13.0","_npmVersion":"8.1.0","dist":{"integrity":"sha512-Dwfn5DkKrp/BpZV0R/2wgU39j+kjkeuIQ54PmJ9LhXNpNAS+Huf6Fl/PUmUrlWOvMAz0uPo3y/5lQKZUBjBkBQ==","shasum":"c85fb6e68c0d041099a1534dca204f99943c8d7d","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.13.2.tgz","fileCount":49,"unpackedSize":74873,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiD1ohACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq6rg/+IShqidohzXEbTNxTb2hkjeVjwRdL/gIhwpk5YIgeQKtsng7N\r\nPfrQtMNSib1dc96ybl2UdEmubdQPyiiJ4TiLsrBqwceTYtCTez2bPzGoeOSb\r\nvt+ZzOKfobWh/E+JC+tR0kVaHxOxNepcnAUuxsTiXLHwmg+k6l/ZABem6Cbi\r\nC6+vPWj/l/iLX8tpwiVDBc1+ZE8c5O+AlFduoM8ycoVrrjqmM4npxmJpIR29\r\nx4PoAF9NFta5sgZxaj4ER8YoS3VvWFvhMlwTce0Eo1FiCuG5f5au055uJGwq\r\nmMaGDVQenVmQUVIsC7vhCU5rk5tVg2oKuUp9UCJxe5eqRK14hjE8hiYOKnTF\r\nC/HIXH0xOCkCNDZsBUyJXuVEJCHBDVJZQ4WA6TtzX4HR1Ts7gGNJcu0+XKhO\r\nO6L69cl39lro+hMlVlrL0psGSVZzOByMT2j0GlvRIZXYRQEN9x3xwDjdEe0j\r\noBzB/8Col2/shCD16JKOaEM58s+6FtDJooj1M/MbHtAzWPVqJBvC5RpuyT2i\r\n8CH7AKKJZBeKGlalVjmbItrLEMAhuC7cscMwmOTUnYD6UeICYDTdwmgrJpZ+\r\n5LCVIil0d4D1SmAkTls+9IUfUVCUNs6Dz7y7uxNsJBAmb9XFPlXBXqPZPCXv\r\naFPwHYsoUJ+cM+rDzvz3oe8UvNsaPzOWoUs=\r\n=HSvF\r\n-----END PGP SIGNATURE-----\r\n","size":22266},"_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-icons_0.13.2_1645173281561_0.45272561569347314"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-02-18T08:34:53.543Z"},"0.13.3":{"name":"unplugin-icons","version":"0.13.3","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"},"./loaders":{"require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./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 && 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 --ext .ts,.js,.vue .","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish","test":"vitest"},"dependencies":{"@antfu/install-pkg":"^0.1.0","@antfu/utils":"^0.5.0","@iconify/utils":"^1.0.23","debug":"^4.3.3","kolorist":"^1.5.1","local-pkg":"^0.4.1","unplugin":"^0.3.3"},"devDependencies":{"@antfu/eslint-config":"^0.16.1","@iconify/json":"^2.1.12","@iconify/types":"^1.0.12","@svgr/core":"^6.2.1","@types/debug":"^4.1.7","@types/node":"^17.0.21","@typescript-eslint/eslint-plugin":"^5.13.0","@vue/compiler-sfc":"^3.2.31","bumpp":"^7.1.1","cross-env":"^7.0.3","eslint":"^8.10.0","esno":"^0.14.1","rollup":"^2.70.0","tsup":"^5.11.13","typescript":"^4.6.2","vite":"^2.8.6","vitest":"^0.5.9"},"peerDependencies":{"@svgr/core":">=5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"gitHead":"b25e736770aa0de1cbe2990356c7ef7d548c2bb8","_id":"unplugin-icons@0.13.3","_nodeVersion":"16.13.0","_npmVersion":"8.1.0","dist":{"integrity":"sha512-HkNCexbEYNkvZkCH+ytUUXgxvLsd/cTCzNQCsBjpJrZ9bhNVxosf9sYGxJdc2BbdEhnaKYNNrwaP11EzmiW6gQ==","shasum":"02e2ce8212d4b55450c0f5ae356c50a0bbf7e5d2","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.13.3.tgz","fileCount":53,"unpackedSize":76046,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiJbzmACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr20A/+IxGTrRnDfC9VuXj52jCidBZVOVc1v6poO8AgamVdYk8w1TK8\r\nTvbnGLUdhJoVOg1/Z1VKTGciFxbnFEGFLe4UxpNEs33ZraEliK3R6IZpZMeE\r\nch0drWZoanu4/3lajRRgUCban5+fJXlqhDo98KLnLG1a7drywA3VPNJdFBBN\r\n0AML8L1eW7Bct5D7Tbyb5IXLbrMPX1BnopDK7TpCE78Ri90+awMqGlmrIXVF\r\n1QWiXgTkreVxT7jJSHPO29GNHusES4dTymK6MbZXHLNCKz1hY7MzeWUZviTB\r\nDiV2FwDR5BMy30hK/nPzrmKF6UirH26/fSPocly2+/KKdtJOVNd4j57QMk/a\r\ntOTTDsozw0/ejfdQu0uoZE1Kwb8GZDLuNMqAXAGvr6h5YWXsAC4D91PLvToW\r\nw5nZCiiA3hmsvbvZvwCsLlryXL4S4SCiOM00dI849w7b0fDTXZX3Uc2Ndapu\r\nAMiuBT9Sd7gFCrFeVS1RfG8oPnRzzxK5yPDjVB5bRgkHeylkoO6DIq773HoS\r\nP8pIzThQ7QpZy/gcnAmTMi4Z3qnaJco+JlC2MiUzsy9rRHj3i31C+fIVlfH7\r\nXW3SGHwi3H+0O8XlOsOs8LDQ2qViD+j+E/2CDQeNdCFwsB446dRKVJwFR6dS\r\n9RDVEk3OIMEULXqwcAbCDpMx0/rLiS9qH3s=\r\n=1L+n\r\n-----END PGP SIGNATURE-----\r\n","size":22487},"_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-icons_0.13.3_1646640358180_0.7899260897198648"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-07T08:09:51.119Z"},"0.13.4":{"name":"unplugin-icons","version":"0.13.4","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"},"./loaders":{"require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"}},"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 .","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish","test":"vitest"},"peerDependencies":{"@svgr/core":">=5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.1.0","@antfu/utils":"^0.5.0","@iconify/utils":"^1.0.23","debug":"^4.3.3","kolorist":"^1.5.1","local-pkg":"^0.4.1","unplugin":"^0.4.0"},"devDependencies":{"@antfu/eslint-config":"^0.18.8","@iconify/json":"^2.1.14","@iconify/types":"^1.0.12","@svgr/core":"^6.2.1","@types/debug":"^4.1.7","@types/node":"^17.0.21","@typescript-eslint/eslint-plugin":"^5.14.0","@vue/compiler-sfc":"^3.2.31","bumpp":"^7.1.1","cross-env":"^7.0.3","eslint":"^8.11.0","esno":"^0.14.1","rollup":"^2.70.0","tsup":"^5.12.1","typescript":"^4.6.2","vite":"^2.8.6","vitest":"^0.6.0"},"gitHead":"995c0d251bdf4d0e061de54116a15343aff125bb","_id":"unplugin-icons@0.13.4","_nodeVersion":"16.13.0","_npmVersion":"8.1.0","dist":{"integrity":"sha512-gyp5H4WADnXEE1uk8+NW6gnnALOlSpU8M5GwzNCYbUgjM4QudjcFbacHKuuqETk4VeSJyzM9Z2ufbuZFMuxvuQ==","shasum":"dbf036e7af78495ebb8fb8bbc448b653c8441e39","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.13.4.tgz","fileCount":53,"unpackedSize":76059,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiLnI6ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoBBRAAhcutqRK71M7DNrWtgPFPxpnsIz0avCoojCZjBRQChHWe7fF7\r\nzF0c4XjcLrC1D1RuBUanANRuZcNYR0gVVBgseCB0AgwLrO/KRNzXGu7wmD2H\r\nFwTPmYb50d8qMuKa9N7pWIQNcxOR5rqpHbh4GJF2bKJFevgniXgc7pXhNeRS\r\nGlS0QV6XP5svSdfL5lY3oHYnDYJD6aXLTNzBrwZXDse5BohtQy/RqYFKp7mq\r\nBAI9+Mc2hUwIKNWYLjJQsDiItMDUCPvh+HGo8u+mLsbaft1JsmGoXTgCobYU\r\nrgRBKtSNRLv+xUnxKOyKsWKgXTKKFATXRBEIejMXCPOKbtQpp+tWwjlSoNsk\r\nkpgvBMzEzQcDPC7A2wvBsCS4Je8w3zfBS4B6yUmguV+8CCG5psXfhct10IDu\r\nYOiSUpA5erIA0SE8l1kUqocmqZRQRiBY2NExxC8DJ7dpR2HAGW7+RKQ0F3yy\r\nW10d6//Z8lVYO//hbOcI1JkskT4knCPIG7nDwLG/wVp8TPz/gQJmUsQiKoaM\r\nluBUpFYnhBuNf+6KdLZnNvZN/EkpJSu6jGCGxfbfE5YDHBZRKFpDrXoC5O8N\r\nhHXA0VdDWCC+8JRQheN2ggox8fH/3nkS7HkJmyYuJ//CFAIwA7N4t6FrfMYX\r\n/tAw7OjjJeOLVTIHFlGERG3JPq3dIn/CN+E=\r\n=9ZdW\r\n-----END PGP SIGNATURE-----\r\n","size":22481},"_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-icons_0.13.4_1647211066206_0.46933719445597655"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-13T22:37:51.680Z"},"0.14.0":{"name":"unplugin-icons","version":"0.14.0","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"},"./loaders":{"require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"}},"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 .","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish","test":"vitest"},"peerDependencies":{"@svgr/core":">=5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.1.0","@antfu/utils":"^0.5.0","@iconify/utils":"^1.0.26","debug":"^4.3.4","kolorist":"^1.5.1","local-pkg":"^0.4.1","unplugin":"^0.5.2"},"devDependencies":{"@antfu/eslint-config":"^0.18.9","@iconify/json":"^2.1.17","@iconify/types":"^1.0.13","@svgr/core":"^6.2.1","@types/debug":"^4.1.7","@types/node":"^17.0.21","@typescript-eslint/eslint-plugin":"^5.15.0","@vue/compiler-sfc":"^3.2.31","bumpp":"^7.1.1","cross-env":"^7.0.3","eslint":"^8.11.0","esno":"^0.14.1","rollup":"^2.70.1","tsup":"^5.12.1","typescript":"^4.6.2","vite":"^2.8.6","vitest":"^0.7.6"},"gitHead":"cf7fff04360a38b45e2a3a559210fd8259a52e65","_id":"unplugin-icons@0.14.0","_nodeVersion":"16.13.0","_npmVersion":"8.1.0","dist":{"integrity":"sha512-VznBG8Jl9D4jtsAIY8hycyQZEDB8KVjnk19MzMlifLLs4QoIUPx8TILDoy6U46yDeYViqZu4hvb5fYI5OarekQ==","shasum":"d61ce520396cc41d5c98679a06eb24e20b68a914","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.14.0.tgz","fileCount":51,"unpackedSize":61799,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiNytvACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoVGBAAhJ+PUROz/IalUYxoqpSbjhCacoaiAbYMXd4nLfalRhsI7OfK\r\n6qFgD564hQXhn0rBW5hGYvE0tFY2CMi+3OOGipwAqReYZPYqo12XRJjoo3oO\r\nWuLn7YGO//zMAyWMgZWp9cXJ88B0w7xBGvVKmeuKeWKsqBTTtAjiPtWzIzlw\r\n/j72DOmdkLRKhQB06eCZa6CK7sICtHBhTvG2HmCYzxSoAaGqfsUwyqxNfNcP\r\nEbfGiZlMZDkfuu7li//sjFvezDtYI+IVUjbI5YrufR7DAD3NVbzm6SNF325n\r\nxlFeB0AsAxrfqxSZUh+UqcHLE16whYzUXa43qVec8QRxIxllL7XNuxeW9+j8\r\nudx14NQu1VwmIqLPUFhB1IyT6VadXTRhXA0Zj5wetEtnDCFB8K1MXVjws2Vd\r\nWRA4CDCd6I6IQm3AT28YMLK1a6L1sJtZ/PJ8HXGa+v9ahkj95MK1lQhcg2YR\r\n075GuQE/4BuB3ZInpjQCQl1pfhHnZkRvCAdd8hdSboNeQIgWgDdO9mBo5FmF\r\neVuZcDNML/lRBeIMYSSfZX8T0XAMq3OsKpcWwh+WewcQuEwKaBUR1kMWcnjP\r\nwE0+9di9OFvL0w3CRR7QnxMx5HBvOaLmO1BkIYtwO+xVrJBnybFSDsx4jUpj\r\ntTcfQmdMY4XMggHBDv4T1kXwJP6UyssnvKo=\r\n=7bJk\r\n-----END PGP SIGNATURE-----\r\n","size":18688},"_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-icons_0.14.0_1647782766897_0.481970975660571"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-20T13:26:13.988Z"},"0.14.1":{"name":"unplugin-icons","version":"0.14.1","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"funding":"https://github.com/sponsors/antfu","main":"dist/index.js","module":"dist/index.mjs","types":"index.d.ts","exports":{".":{"require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"},"./loaders":{"require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.mjs"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs"}},"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 .","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish","test":"vitest"},"peerDependencies":{"@svgr/core":">=5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.1.0","@antfu/utils":"^0.5.0","@iconify/utils":"^1.0.30","debug":"^4.3.4","kolorist":"^1.5.1","local-pkg":"^0.4.1","unplugin":"^0.5.2"},"devDependencies":{"@antfu/eslint-config":"^0.18.9","@iconify/json":"^2.1.17","@iconify/types":"^1.0.13","@svgr/core":"^6.2.1","@types/debug":"^4.1.7","@types/node":"^17.0.21","@typescript-eslint/eslint-plugin":"^5.15.0","@vue/compiler-sfc":"^3.2.31","bumpp":"^7.1.1","cross-env":"^7.0.3","eslint":"^8.11.0","esno":"^0.14.1","rollup":"^2.70.1","tsup":"^5.12.1","typescript":"^4.6.2","vite":"^2.8.6","vitest":"^0.7.6"},"gitHead":"0b0859978c170708e9f1b6f4259487068c328fd8","_id":"unplugin-icons@0.14.1","_nodeVersion":"16.14.2","_npmVersion":"8.5.0","dist":{"integrity":"sha512-drZFbMctvT3ZJPfdCgBv5+LKO8hGbZApRCoBRAUhQFRJQVNGUhGThrOKs+CvWq3XDBPptGNBmst8WyObbr4xiQ==","shasum":"38fe72e91df3c66ab9dbd4e99af94da7d558c04f","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.14.1.tgz","fileCount":51,"unpackedSize":61799,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiOti8ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqk4g//Yjdy0po0zf1TIY3ie29JkWHzp6yJYMndS0Pn9Scm3m9nNXd0\r\nIbcfoJElopNIfnyO/3IxM/ep8T6YG0ogxRkHMSasIvNWnF514Fw0hOAnKyjo\r\nE4r8149nlqXlk8Rk3p6FoOWy5py/hHZ4RV4yxDEOdhbq8etwGhdzjzVNcukR\r\nMDrVIY0QxJ25ZY8W/VjrsL8FjBJwZ5uyb5BkvEsktPl8gp8JnYonOIWZCnYA\r\nUqxeWYOn9XlAxqG6pXnxxFzlBuPaO0caoeMKuMIDk/BlJanXO6MhUICzjzKQ\r\nrsgRK5E1FNF72w4+HZ8phrUnwUA6OQIs7hI0qgfx5XblJw+6YohbR2ND2wLY\r\nl4AQfQlSlgDAyev4pS7utXiLHiKZIau267aV7IBW7u++mBn8d9cKwAWsttnW\r\nDP+CQfNSpfeUXpAhghYHQ78wGE0xlDHdkRwzcdsm9U3M+9LT5rBmLkHEOMAY\r\njmo6wkGtIB7Ulr2GszUtuT99BF5AVVVVNdeAUgM3P+Icir2d18GYEwaOtAxj\r\nc1d2Bq4/B0Lv19R6dVNJzJeqzJdCieN+nGlAgBoedlLP1F68KhBxbU/rtkE5\r\nZD+QSdpIosRn6B1pYXd193HI0NOwid9aV2TcsJp7/O/8olHY/qI6iu8QAyzR\r\nnMuMOYYi94Vln8HlOWMVCIrKmoqmztDcUKM=\r\n=LBO/\r\n-----END PGP SIGNATURE-----\r\n","size":18692},"_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-icons_0.14.1_1648023740850_0.5833572221645675"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-03-23T08:25:13.074Z"},"0.14.2":{"name":"unplugin-icons","version":"0.14.2","packageManager":"pnpm@7.0.0","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.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","types":"./dist/index.d.ts"},"./*":"./*","./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs","types":"./dist/esbuild.d.ts"},"./loaders":{"require":"./dist/loaders.js","import":"./dist/loaders.mjs","types":"./dist/loaders.d.ts"},"./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs","types":"./dist/nuxt.d.ts"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.mjs","types":"./dist/resolver.d.ts"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs","types":"./dist/rollup.d.ts"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs","types":"./dist/types.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs","types":"./dist/vite.d.ts"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs","types":"./dist/webpack.d.ts"}},"typesVersions":{"*":{"*":["./dist/index.d.ts","./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","lint":"eslint .","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish","test":"vitest"},"peerDependencies":{"@svgr/core":">=5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.1.0","@antfu/utils":"^0.5.1","@iconify/utils":"^1.0.32","debug":"^4.3.4","kolorist":"^1.5.1","local-pkg":"^0.4.1","unplugin":"^0.6.2"},"devDependencies":{"@antfu/eslint-config":"^0.22.0","@iconify/json":"^2.1.35","@iconify/types":"^1.1.0","@svgr/core":"^6.2.1","@types/debug":"^4.1.7","@types/node":"^17.0.31","@typescript-eslint/eslint-plugin":"^5.22.0","@vue/compiler-sfc":"^3.2.33","bumpp":"^7.1.1","cross-env":"^7.0.3","eslint":"^8.14.0","esno":"^0.14.1","rollup":"^2.71.1","tsup":"^5.12.6","typescript":"^4.6.4","vite":"^2.9.7","vitest":"^0.10.1"},"gitHead":"05fb6c62490039ec465f15a2cd06bf97530634dd","_id":"unplugin-icons@0.14.2","_nodeVersion":"16.14.2","_npmVersion":"6.14.16","dist":{"integrity":"sha512-uHnO68JPEk6W0UshE+Zyw3rGo1YF4sJ07m3o/f4aav/qYiCi4h/yYqYBKw9Uy4WSAXrzYOSiDK8y6UM17w7k7A==","shasum":"153c003fa65c51190b9a76e1920f610ce46081de","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.14.2.tgz","fileCount":43,"unpackedSize":63863,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCd0LaJPzy9RiwJZTiPh8WlSGrX/Qana64dyt0NCMatbQIgGjabNd9UjjwO/SZxmSKNGCWEFI5ddzn2chqsh/xOl5Y="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJicEH5ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq3Eg/9E+/XEUPhdefmC3ZBpdvKfU2gihoFje0OPTZ6o6r689ac2uhd\r\naY7NBEO3SwBp4LIng8JB14fZqjH2TZEJwNZUq/a6ir1kDTQsrvNu/D74eYZk\r\ncY/IhSXfN7bYK1Nck3j4LlIQc+f7vU+iiICkmNhkgU355woRBDQfpN0xSb5w\r\n8uiRQiQ36Xd6hWM3kp2gZR3vLKi2QWnTGC0pNpv2zRwTCujwoSJ1BAA0rOEn\r\nqu8nAvFoXGMsipolFk8WGCVIuebfSa1x5L+7i9nyN2RKd6HJoca1lrHCCHp9\r\nXVha16tiGFthrYTChFmwYv2owD/NIlOIUh2781R1jnJs7vUFHvF9Vo+HpLkV\r\nRr/Ya4jrzE+dRgtYlyfRJLyj7lGYiqCxqBYFFnrufCG04ANDf7pAMzybPJZR\r\ncrvG2wfqAigKCqWVna89BwnntWhHiD7jL/7+Ix+vQu3zQFlTk/SkphvHu5QI\r\nBlNPagfwhYXa825pEKwjOaObdKIA0e0UnTOgyFO1AU7/s3CDst8opnbza8YX\r\ng4zbjIz6/zKN2GonJnUMLQtDDlfKfneSbtTv/YKyOG6aA674uVhkGXAwI/UC\r\nrTLDGH+Zrzi9jUhkB/qNTW4pauGMrGCxbFQ1E8cps7clanXmxYKt5AKVViIw\r\ncxqHrD7iqN+CGbSS9U5Ne2TRgHaDwE+wjQg=\r\n=3Jtp\r\n-----END PGP SIGNATURE-----\r\n","size":19136},"_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-icons_0.14.2_1651524089685_0.08135201062802766"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-05-02T20:41:39.620Z"},"0.14.3":{"name":"unplugin-icons","version":"0.14.3","packageManager":"pnpm@7.0.0","description":"Access thousands of icons as components on-demand universally","homepage":"https://github.com/antfu/unplugin-icons","bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"license":"MIT","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.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","types":"./dist/index.d.ts"},"./*":"./*","./esbuild":{"require":"./dist/esbuild.js","import":"./dist/esbuild.mjs","types":"./dist/esbuild.d.ts"},"./loaders":{"require":"./dist/loaders.js","import":"./dist/loaders.mjs","types":"./dist/loaders.d.ts"},"./nuxt":{"require":"./dist/nuxt.js","import":"./dist/nuxt.mjs","types":"./dist/nuxt.d.ts"},"./resolver":{"require":"./dist/resolver.js","import":"./dist/resolver.mjs","types":"./dist/resolver.d.ts"},"./rollup":{"require":"./dist/rollup.js","import":"./dist/rollup.mjs","types":"./dist/rollup.d.ts"},"./types":{"require":"./dist/types.js","import":"./dist/types.mjs","types":"./dist/types.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./vite":{"require":"./dist/vite.js","import":"./dist/vite.mjs","types":"./dist/vite.d.ts"},"./webpack":{"require":"./dist/webpack.js","import":"./dist/webpack.mjs","types":"./dist/webpack.d.ts"}},"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","lint":"eslint .","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish","test":"vitest"},"peerDependencies":{"@svgr/core":">=5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.1.0","@antfu/utils":"^0.5.1","@iconify/utils":"^1.0.32","debug":"^4.3.4","kolorist":"^1.5.1","local-pkg":"^0.4.1","unplugin":"^0.6.2"},"devDependencies":{"@antfu/eslint-config":"^0.22.0","@iconify/json":"^2.1.35","@iconify/types":"^1.1.0","@svgr/core":"^6.2.1","@types/debug":"^4.1.7","@types/node":"^17.0.31","@typescript-eslint/eslint-plugin":"^5.22.0","@vue/compiler-sfc":"^3.2.33","bumpp":"^7.1.1","cross-env":"^7.0.3","eslint":"^8.14.0","esno":"^0.14.1","rollup":"^2.71.1","tsup":"^5.12.6","typescript":"^4.6.4","vite":"^2.9.7","vitest":"^0.10.1"},"gitHead":"81c1e63d96ac43256090096bfdb206f5ff51de5a","_id":"unplugin-icons@0.14.3","_nodeVersion":"16.14.2","_npmVersion":"6.14.16","dist":{"integrity":"sha512-PyyNMACpZ/EAiG3B6K1wPGZ151VGdlHIEx8/utgP546yVmPpV/xC1k1V2eEebf71fGm3WD6gzPrERNsbMgIVgg==","shasum":"11c49bfbc2f6e34c8b20523af61279ff71090a9c","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.14.3.tgz","fileCount":43,"unpackedSize":63834,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBGt0YoYmxAVhMRfmRChG8HnagiDom9fM9pltGARCz9yAiEAr8p1AVAzIVv/DkZZzvsa+rRgURMRSnaGJvgxMQttBwY="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJicMj3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqZbQ//QoJUyg1LHxDoAOEh2DH2Rsz2LYikegQXGliAkvUMYKctkSR4\r\nZdl3FxsJ1vUvXSdW3gzZWvuLWV6R6hSUkb0VAwhs/TI5UiXe23FOb4RdAkVV\r\nbe0bLuBHqTHllwg+cFTJeelB3yvWPVehZ1iuOljcXUt1BDbwB0YqzZEW4Dv9\r\net5ql4FW3cRpfIQSO4XNfPecmz53cQygMZ7MGeEHN9a8jZUySZo3Xo3qqIvg\r\nhXh5P6M4/LkPMSujj+UATp0X6WAhuRitFh3bfdxMQxtCdRL8Zz/x9G83vjfJ\r\nEZexI3ZaFnfWKAjaXi+tFjBHjFUPkOQNheToHQFWRhJLc7+OCXv5y9ifrECC\r\nIIHTim2xxeYabvV56G7eoedbWmuUTbMoJcsYEEfWdC/rLypG8Bgdj2aVj2iH\r\nWWkVtvJa/r6RzgD2Z14+JBJtLx5sobvEYdqzmMbnCI9HCzX22fNrkvOrz1UY\r\nWM5OL6oQFudEQeA3dgqYxXQNDjme/UiYdGzAEgrky4BDRfbik5/uEPfFvr7j\r\nGXD/uPSdImMXPGuZeQs50WOJNyYEMdkXx72HxkxerHYZMrrGCbY6U/wxtOC8\r\n3hotOGcQf9CUkrPSJkre8VeAPw8NgtlSV6AxOCkdaWmJuKSYHFrsdaNTQtW7\r\nueI8TvyGSQ0DJmAXBxYHD/OpRHV+YDGzJbs=\r\n=sPhL\r\n-----END PGP SIGNATURE-----\r\n","size":19108},"_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-icons_0.14.3_1651558647026_0.5700724805300692"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-05-03T06:17:31.702Z"},"0.14.4":{"name":"unplugin-icons","version":"0.14.4","packageManager":"pnpm@7.2.1","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-icons","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"exports":{".":{"types":"./dist/index.d.ts","require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./esbuild":{"types":"./dist/esbuild.d.ts","require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"},"./loaders":{"types":"./dist/loaders.d.ts","require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"types":"./dist/nuxt.d.ts","require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"types":"./dist/resolver.d.ts","require":"./dist/resolver.js","import":"./dist/resolver.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"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./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"}},"main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","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","lint":"eslint .","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish","test":"vitest"},"peerDependencies":{"@svgr/core":">=5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.1.0","@antfu/utils":"^0.5.2","@iconify/utils":"^1.0.32","debug":"^4.3.4","kolorist":"^1.5.1","local-pkg":"^0.4.1","unplugin":"^0.7.0"},"devDependencies":{"@antfu/eslint-config":"^0.25.1","@iconify/json":"^2.1.62","@iconify/types":"^1.1.0","@svgr/core":"^6.2.1","@types/debug":"^4.1.7","@types/node":"^18.0.0","@vue/compiler-sfc":"^3.2.37","bumpp":"^8.1.0","cross-env":"^7.0.3","eslint":"^8.17.0","esno":"^0.16.3","rollup":"^2.75.6","tsup":"^6.1.2","typescript":"^4.7.3","vite":"^2.9.12","vitest":"^0.15.1"},"gitHead":"9564b0b5ef685424b4f4515ffcc795960a4831b6","_id":"unplugin-icons@0.14.4","_nodeVersion":"16.14.2","_npmVersion":"8.8.0","dist":{"integrity":"sha512-+5+U5MV/d1HU3rW9bHqPLCC+rikt6OCXwjW9gSbryE2qyezzOyJ7ZNnwWLksxf5A+cVj1D6pcAbpmSjojN8zCg==","shasum":"7e29037c1722212c2301c8037d002a0d659968ce","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.14.4.tgz","fileCount":43,"unpackedSize":64267,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEbLaRDoSExaQv6XYK3VT3HVPsq+MF5SsxD2Wi8F0HXNAiEAlWGdKIHp2JWFc02fQyOFxTr0t41EvttM3Js86YCaLrA="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiqp05ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmryaw//RchunDsoyiMoUZ5Mm4fDNkzOODlaSzct2KYuwnc9xp/eLJZi\r\nA6TY3ibPuEoTVI6LLZLRledQMBMAPd681GmOdk8UI00mSMun0YpGp8GC8gEz\r\nenfPBczOieJM8Z5uoWLJ3v6awN6ZwwlxcgFCXpOYbSOLkx9SOHI+V4H5w+II\r\nTAPiJiwYz+buryQlYu/RDbOTWoZdsIOhsg3IZeQ+O5NoRmIuJZVhecv4YlYR\r\n8wAVDGSWxAmJR4upKTb77NM3rbdNB6+dS6L/nL7k5uQwR+IiJTQnaQ0fo2Gf\r\nzwilufhr1HKOD8hrYBXni3Q2tVuOG3lQpgRxZ+sKe10QrZ10Yki75kxOeBrV\r\nuauS/Gx2bGHhtj1MSvcqZtC/LCwIg21Y9ll5XI5bXmH30CqeITZ6JwsP1AGn\r\n6J9dH+jSSIS48IHiE15wgEXa801hC6WMkTHwbBi/Sz6LxgKPhBD9Db1cuJcf\r\nb2bB9xsmbsb8fJXLXIHIeVjZUWnR3v1A84tYv6cG6ICy38jSaLS4Pdb0Amfd\r\nt6LrS0aPfuAShB2BuQijgI8XUnstZyAOflWfp0DhBC7a5/3XlnHQaw2ceBAC\r\nWkoyzW6+o4vDMmbafUEL3qz/IeSpFTrdsHHhSEJ5wrBDIr+AFlwqu8gwolZ3\r\np6KBx3BHbd76ffGK5eMH1K+vbrCRO5wX1+c=\r\n=KoPh\r\n-----END PGP SIGNATURE-----\r\n","size":19115},"_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-icons_0.14.4_1655348537614_0.8279223780406268"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-16T03:13:48.981Z"},"0.14.5":{"name":"unplugin-icons","version":"0.14.5","packageManager":"pnpm@7.2.1","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-icons","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"exports":{".":{"types":"./dist/index.d.ts","require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./esbuild":{"types":"./dist/esbuild.d.ts","require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"},"./loaders":{"types":"./dist/loaders.d.ts","require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"types":"./dist/nuxt.d.ts","require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"types":"./dist/resolver.d.ts","require":"./dist/resolver.js","import":"./dist/resolver.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"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./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"}},"main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","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","lint":"eslint .","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish","test":"vitest"},"peerDependencies":{"@svgr/core":">=5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.1.0","@antfu/utils":"^0.5.2","@iconify/utils":"^1.0.33","debug":"^4.3.4","kolorist":"^1.5.1","local-pkg":"^0.4.1","unplugin":"^0.7.0"},"devDependencies":{"@antfu/eslint-config":"^0.25.1","@iconify/json":"^2.1.63","@iconify/types":"^1.1.0","@svgr/core":"^6.2.1","@types/debug":"^4.1.7","@types/node":"^18.0.0","@vue/compiler-sfc":"^3.2.37","bumpp":"^8.2.0","cross-env":"^7.0.3","eslint":"^8.18.0","esno":"^0.16.3","rollup":"^2.75.6","tsup":"^6.1.2","typescript":"^4.7.4","vite":"^2.9.12","vitest":"^0.15.1"},"gitHead":"0b90940ea05b01d2ac4e1830e8aab1f39196ba29","_id":"unplugin-icons@0.14.5","_nodeVersion":"16.14.2","_npmVersion":"8.8.0","dist":{"integrity":"sha512-fxi/fuBZXtZu64L8iAPj+ecu/rnSvTbfR14RO44xIWdsI/Ohpzs9Gve7+nHIgD6JFrdtCfzGnXWBEVPbMGWX3A==","shasum":"baaeff3cb0c63ec53c770385e48bf3a77d8d18e8","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.14.5.tgz","fileCount":43,"unpackedSize":64267,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDufHjt/u06OsO7lOMgmlWXmY23BblW+UULfhtt4vbNxQIhAM8L9BQm2wiNX1qc0b039nDQuCoHEQwjbEpAAlYu+ZST"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJirWPiACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpSIQ//UoP42d0bepC0ht8U4yNQuxR0G8xNGhIhJLiwwrIEZc+VxNTd\r\ns1wTP3oq7t8o3P3PvYO/TC5gkaQ/EU2JSCWcgk/AubHdF7Io3K/Nts6qkz32\r\nhjkmavyjosrg6BLsYF/CA/9CgTtXgjMGV6nqEMjqTf3UbkMx7Jf6TUgx5NXU\r\nAaRB9UdYFjnPfMYDWpGqMXhjUdeG++cWFGnY/08qtYnkRG7XPiR/Ce5Xb+EJ\r\nLZXuZXF7Cf0foWl2MRZQ5cQa43EpqSDdkPe0faT8sVSuRN+tOiLe+8XYxAoK\r\nHLdQOsboL4n5wqpmb2/j1/2DZQ+J0TL82ruGgNLEyCRTGoYIkQ18Hrfg0pQh\r\n4usfHJDzAVdBaRbFnciIrS5KUtyAycTo8tnFndmpdKaR/AMpqVsQkqjGyTYG\r\nEIPmTRIfyWfNM3pkfvd8Pm9t9N3EM9VFdSwaTkIyE9jc8NHoj+6d49VKEkgM\r\nQHdlWELJjK18APLGEc3ujWY72xRhY8pHF+w5WbXWGiMyjgsbwUp8fZ0hXOF0\r\nvuCj2rcMw1uwYUc58MnHMFfT66ubs1QzVX5BY+1f+MoHf8IHRZdhiME4nDML\r\n+pae/duNokuFlt9Yiw6Tc/3EBaXU7FadfarWixak+cUi0V7dXBVXML2+v6NH\r\nML+yfM3ZvU2AVSfjeFzb4Prny516Con1XHo=\r\n=c/k8\r\n-----END PGP SIGNATURE-----\r\n","size":19117},"_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-icons_0.14.5_1655530466408_0.9555177458042108"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-18T06:30:24.320Z"},"0.14.6":{"name":"unplugin-icons","version":"0.14.6","packageManager":"pnpm@7.2.1","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-icons","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"exports":{".":{"types":"./dist/index.d.ts","require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./esbuild":{"types":"./dist/esbuild.d.ts","require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"},"./loaders":{"types":"./dist/loaders.d.ts","require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"types":"./dist/nuxt.d.ts","require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"types":"./dist/resolver.d.ts","require":"./dist/resolver.js","import":"./dist/resolver.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"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./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"}},"main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","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","lint":"eslint .","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish","test":"vitest"},"peerDependencies":{"@svgr/core":">=5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.1.0","@antfu/utils":"^0.5.2","@iconify/utils":"^1.0.33","debug":"^4.3.4","kolorist":"^1.5.1","local-pkg":"^0.4.1","unplugin":"^0.7.0"},"devDependencies":{"@antfu/eslint-config":"^0.25.2","@iconify/json":"^2.1.68","@iconify/types":"^1.1.0","@svgr/core":"^6.2.1","@types/debug":"^4.1.7","@types/node":"^18.0.0","@vue/compiler-sfc":"^3.2.37","bumpp":"^8.2.1","cross-env":"^7.0.3","eslint":"^8.18.0","esno":"^0.16.3","rollup":"^2.75.7","tsup":"^6.1.2","typescript":"^4.7.4","vite":"^2.9.13","vitest":"^0.16.0"},"gitHead":"b143a93566db1d55162a7f1b08910d106ef2889a","_id":"unplugin-icons@0.14.6","_nodeVersion":"16.14.2","_npmVersion":"8.8.0","dist":{"integrity":"sha512-8sxDiL4l+TV4zufZfrskgHZZSDFoGOCBgYsefRMM4inQ3Z6KhgMSuNyew7U7D/xG//rwxgD7bN+Dv+YAZEEfEw==","shasum":"578e0a4253d212fa044623d85251c442086075fe","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.14.6.tgz","fileCount":43,"unpackedSize":64327,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDE3/i2aaLc+rFK1rSbC+y2qvMWQR6+GgW1ytSM6u4TQgIgb9Sh29Phuiku8lAgP+fBnYSoVV4lo5rGz8NIqJFtqeU="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiubdiACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpmhg/+LjH6EQ5T8zwIp2W8NuAQfHqwat1dxE0B278sF6/jhF0AHq2f\r\nsq51llOiZVh8felHKu9XnQ0kLfl0UIvCjsEO86+bSj5fAhWf5lueKiZqHejr\r\nHi+qEBzgX8zlZDCKl35uz2JDPBaXj7OjUQ3cLaXgCxMZda/rTjT5+q5ByWSU\r\nKbPzi+1F8aK74DYnHZEzFkjxtN9gMTkPNMaJ71mIEX10a3xW1sKy2jbKCEXM\r\nkTfxrWaNqtnuIE/91XkBHQHbl/PKpqVVC0RT1m4610jTRppsIX2CfKsu2yut\r\nhCYdcBJIRHgsuE7BtoydAeWYaSOUmehhdPmiXPcMI6PY2EBROncImquBTU90\r\njTF1EIaTmbJXrG0cquIwWxxI5Ud8fEL8u1aJbnOjuDXK060SoqeTQf6WQAjw\r\nF3iKx4dsoNW+K3NHytzr08xkiquU5ADMt4H1h+riV0tGpDp2Q2HYncH70DRU\r\nwkOm9uZeTHshogYHUA75rq8Gb+cRznDZDJ04V9EVCorT2t+WrGRLacms/aIh\r\ny+3MSD7yf0gpi/N4odKawhClICiJQUul/V1Jn0t3fb5htW+ZPfmQLQKsxWKE\r\n9I3Qdzo5RjsjYRYdxirI8GFYfOw1wnZpruvkE46pFCtuhtIBfGiDsvZQV7Tm\r\nu4pnGHYhhtxvhJljxKJrrlDMNUdyLWJUpy0=\r\n=G4pE\r\n-----END PGP SIGNATURE-----\r\n","size":19120},"_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-icons_0.14.6_1656338274193_0.6854163093877075"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-27T14:22:26.998Z"},"0.14.7":{"name":"unplugin-icons","version":"0.14.7","packageManager":"pnpm@7.2.1","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-icons","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"exports":{".":{"types":"./dist/index.d.ts","require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./esbuild":{"types":"./dist/esbuild.d.ts","require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"},"./loaders":{"types":"./dist/loaders.d.ts","require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"types":"./dist/nuxt.d.ts","require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"types":"./dist/resolver.d.ts","require":"./dist/resolver.js","import":"./dist/resolver.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"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./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"}},"main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"scripts":{"build":"esno scripts/prebuild.ts && tsup && esno scripts/postbuild.ts","dev":"esno scripts/prebuild.ts && tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish","test":"vitest"},"peerDependencies":{"@svgr/core":">=5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.1.0","@antfu/utils":"^0.5.2","@iconify/utils":"^1.0.33","debug":"^4.3.4","kolorist":"^1.5.1","local-pkg":"^0.4.1","unplugin":"^0.7.0"},"devDependencies":{"@antfu/eslint-config":"^0.25.2","@iconify/json":"^2.1.68","@iconify/types":"^1.1.0","@svgr/core":"^6.2.1","@types/debug":"^4.1.7","@types/node":"^18.0.0","@vue/compiler-sfc":"^3.2.37","bumpp":"^8.2.1","cross-env":"^7.0.3","eslint":"^8.18.0","esno":"^0.16.3","rollup":"^2.75.7","tsup":"^6.1.2","typescript":"^4.7.4","vite":"^2.9.13","vitest":"^0.16.0"},"gitHead":"8353b872cf350203f156730844892ccd5350a2b5","_id":"unplugin-icons@0.14.7","_nodeVersion":"16.14.2","_npmVersion":"8.8.0","dist":{"integrity":"sha512-TrNnEdpaXMdiG5BsCgvU6cv/gSLYvIk1f8wGCGZmOo4wmi3nqYBuqIEuiXhmmyXdDZuRRpCaOzCnCYYZ5H7U8g==","shasum":"b10e47a4643a4511d72cfaef8b0842b357898d1a","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.14.7.tgz","fileCount":43,"unpackedSize":65379,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCvcMHR8clYIvEtssvwQhCu+Pad5aLidH/MOS0Idlb+TwIgLY6w6hkX++BHF2F/IfVE14McGLl8JkY0MAikPle8NIs="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJivaNEACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmplkA//e06re8FgLOV+1hlSjTlQv2iQPA3PWPrIDRQbEbEpnAoVcudR\r\nPleJ9MRpkNfeZ43lMcTEpp6wcD+LbbmCuWq9K7keETzgqn4goeF1n8O8SkLs\r\nyiZcRAlyPyK47Ang5ANeI/4p81bcXahDct8mQUrT9iaUl47XKjhTZIVtOTFd\r\n92Y3q8gkhVhQSeDiymYANykL29SJODiEMG/W3cpMIlrgAZ2YwNIx1IdC8/a/\r\nJIFRu4ZGx+Qg0Zg66MubYtfsL1dAuC1QQZwp1BTwEiy1cgLXYpd+mMKa5Jz/\r\nCg6FqkG1D+NiiGReZ9+03vbFFGYtpDpHb47sFHY7AXG6G68azC7lhdFScliP\r\n7Q4UTSwZ01P3qAXDWi1TINyPJWTKC656MWaa3AuSrFFMybZm1KBBxL+0B09D\r\nDut1Xfd9WfhcPDQwmzSm+2AQRwWKwIwyFAnMC9hlxsIn8ukNv9X5X9gvvjda\r\nGtXpr5cPUSA3Pc6TYKiTouI4ah319XeXPYafgfkjEWh2ENfm6ObyUc+NJgiP\r\nN7Oidr1LkKL9HqrcZWT5LycJZC/FyByReLwslPdsvqbD0Q3Pm8h6KzeFxfd8\r\naABge1W9VeXszyiqCUNGUk30sYyDnxsRqPbydE9E206vngHCXEb5otp11VnG\r\nRXE7woo30UAUjrkp5Dm40GCRGNmoMs1y5bM=\r\n=VD1J\r\n-----END PGP SIGNATURE-----\r\n","size":19308},"_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-icons_0.14.7_1656595268431_0.20631881079883385"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-30T21:48:12.560Z"},"0.14.8":{"name":"unplugin-icons","version":"0.14.8","packageManager":"pnpm@7.2.1","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-icons","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"exports":{".":{"types":"./dist/index.d.ts","require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./esbuild":{"types":"./dist/esbuild.d.ts","require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"},"./loaders":{"types":"./dist/loaders.d.ts","require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"types":"./dist/nuxt.d.ts","require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"types":"./dist/resolver.d.ts","require":"./dist/resolver.js","import":"./dist/resolver.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"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./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"}},"main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"scripts":{"build":"esno scripts/prebuild.ts && tsup && esno scripts/postbuild.ts","dev":"esno scripts/prebuild.ts && tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish","test":"vitest"},"peerDependencies":{"@svgr/core":">=5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.1.0","@antfu/utils":"^0.5.2","@iconify/utils":"^1.0.33","debug":"^4.3.4","kolorist":"^1.5.1","local-pkg":"^0.4.2","unplugin":"^0.8.0"},"devDependencies":{"@antfu/eslint-config":"^0.25.2","@iconify/json":"^2.1.85","@iconify/types":"^1.1.0","@svgr/core":"^6.3.1","@types/debug":"^4.1.7","@types/node":"^18.6.2","@vue/compiler-sfc":"^3.2.37","bumpp":"^8.2.1","cross-env":"^7.0.3","eslint":"^8.20.0","esno":"^0.16.3","rollup":"^2.77.2","tsup":"^6.2.0","typescript":"^4.7.4","vite":"^3.0.4","vitest":"^0.19.1"},"gitHead":"8aee2faf56d480b819f117791ce8da3d9846fcc4","_id":"unplugin-icons@0.14.8","_nodeVersion":"16.14.2","_npmVersion":"8.8.0","dist":{"integrity":"sha512-YxLC0Uxec+ayl8ju3CXmRX4Jg7IF8Tu2cRyq/okXwMK6fM140SPae332ByTlul1E/I7I0PXYSVVn8SlGunM/2g==","shasum":"0711f4a941fd6fc1308b8ddd33e316c3cd1f2546","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.14.8.tgz","fileCount":43,"unpackedSize":65416,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDCSBbaiKNediUOMPjQvkTG9nKaf9YZAwCIWms23drcKAIgfpoRvry8ydVFJJtaxz44ByRUvb/MCzdNt7FSjhNknYs="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi4/XZACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqiyA/+NQTkQxxBNHlKVdWpQmNMJc8mFQk7TUtXfla/Naa5wf+kaFg1\r\nQyPJiZfBbZcTNOtMlT18NX6Am1gQP0nSoGNcLUtNViEB9TP7/BbDLryhwJD/\r\nfU66n2D3ge4kcV/GbSpKHPg97gW6AgHApzRrrkYoompY5kptqg2mOXtvKreP\r\n9+mRn98cV+KbM9/ecnu8/9i9XumR/2emvomROHrR9fu3mbvilOEoOAz/TCnF\r\nSnazmD08liQ9W1DCHmhBz9rr2j9a4IXt0l1D8YmqWMF6R1Xh2csx+mwvMaUN\r\nIF7vJDbxU4cZqmVMV4JiJ3KdA/P9cr4b4OauM7P2xOIWoBsCcE6rJ1vXiFEQ\r\nUPkiv2V6EoZjeHN7UQnuu+yLhoXgnqV3/ZYA5IuGMbqjzNqR4Qc/5ozRW+21\r\nBFV+7cmhgxsCSk3UKj5j0ia8QT4RtprQz20rEdWlyHc1TY2/c0D3qzjnGvho\r\nAMWKsO/VGH8guKvBN625tIR5jufROscpxf5ANl41sm/q8kkKsHrdoFOcia8i\r\nqoaaFG6jDVqF8o/Ul1I7hkhrL7C3q5gDbjOYkpxqQ7zYokB3QFm/ceLu/8Ju\r\nfjp/0+LeywVuMhmUWOnbqvXxXCcG3Yyplm3d65JqhqtEch59ktKoRS5bAOP8\r\naXOk0y28B+4mQR05ATu3HgqPSCY975S0i44=\r\n=ETzy\r\n-----END PGP SIGNATURE-----\r\n","size":19340},"_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-icons_0.14.8_1659106777113_0.15826590233247018"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-07-29T15:02:58.259Z"},"0.14.9":{"name":"unplugin-icons","version":"0.14.9","packageManager":"pnpm@7.2.1","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-icons","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"exports":{".":{"types":"./dist/index.d.ts","require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./esbuild":{"types":"./dist/esbuild.d.ts","require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"},"./loaders":{"types":"./dist/loaders.d.ts","require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"types":"./dist/nuxt.d.ts","require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"types":"./dist/resolver.d.ts","require":"./dist/resolver.js","import":"./dist/resolver.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"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./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"}},"main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"scripts":{"build":"esno scripts/prebuild.ts && tsup && esno scripts/postbuild.ts","dev":"esno scripts/prebuild.ts && tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish","test":"vitest"},"peerDependencies":{"@svgr/core":">=5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.1.0","@antfu/utils":"^0.5.2","@iconify/utils":"^1.0.33","debug":"^4.3.4","kolorist":"^1.5.1","local-pkg":"^0.4.2","unplugin":"^0.9.5"},"devDependencies":{"@antfu/eslint-config":"^0.25.2","@iconify/json":"^2.1.85","@iconify/types":"^1.1.0","@svgr/core":"^6.3.1","@types/debug":"^4.1.7","@types/node":"^18.6.2","@vue/compiler-sfc":"^3.2.37","bumpp":"^8.2.1","cross-env":"^7.0.3","eslint":"^8.20.0","esno":"^0.16.3","rollup":"^2.77.2","tsup":"^6.2.0","typescript":"^4.7.4","vite":"^3.0.4","vitest":"^0.19.1"},"gitHead":"d8ce1df14fe588af8d464bd50ac2f49acdf1429a","_id":"unplugin-icons@0.14.9","_nodeVersion":"16.14.2","_npmVersion":"8.8.0","dist":{"integrity":"sha512-vPyVfNREH88dP6gszdaoGkAEFPpiScXj1A8eWN905jQgT53A3tsiPEiqJjCHOUVcsUaREt2JSudzumFOsCA78A==","shasum":"8ab967996032ad1bf8d99974340c850f09ff86a5","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.14.9.tgz","fileCount":43,"unpackedSize":65416,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDXNK89OdGshXIuPk6l+ZxWeU398mTebTOFAyHrX1tvWAiAsVe6mWG3fx63mIUX0qbCUTioGqlyueGv4EWWqGQXKJg=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjEdx1ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoAtA//X/6LPwrHeGnGR9YUU0TlSQPPwP6qMfv4O6zXEsJmR5IeG1Kc\r\n9hQMGK0kojG6xIShaaoI9kwrqmfCrnOMBjHOgmsdSm+6aof1HekQaxBq55v2\r\nUsYref67o3IASOlnejloNl9WkEqfrQXaAQVCE7Y95ELGA77aXY2vc20zU2SS\r\nZYIvLA0nzY4hb2OxWeTZj8KLGTgC8j8c523Z7utFr5IHyh8IPSJly3EOzTc3\r\nzuh/w9ynURmtxK/XLsxVOoFVnHLWqhSz6mTZnzARpU0fvo1EyRBhhyuP/XC/\r\n5g53yeXsSB8vau7Y9atqehZVe+VtGRaVBf/LyEcWamng/hfDZuS1Dn+SygDS\r\n/BykRakyLpOZ1hpx1Xm5hvn8w7U5GYQWD2ISDwRSS7lD0HXkjX4XtymniHIK\r\nBdON8eG5M6lJABycvffZHhdN3ua+vA0SZgNhQiOocZpsHfRiKq+jKqL1JHyi\r\nMJFtIbtMK4PW6pGB+zkCxniQJ4svhVTJpY/knWowKlFxrfKgTZrd2yXo59Xn\r\np1BNbNhJXG3R+/kpjuBxzsFjY9Xnz69GtS/h5mw/IfpG/nkRYVTwXeTPHzkQ\r\n6ChSyPxyDOgu4DoM5zQO5CCaF7EiAWRMOpjOTP5bv4DG/aygTJAHNSAWtEKh\r\nIfcxLTbUKmEE7wokM2f/tNzmGcM2Khix/VU=\r\n=9Fuz\r\n-----END PGP SIGNATURE-----\r\n","size":19343},"_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-icons_0.14.9_1662114933080_0.11213974641629498"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-09-02T10:48:42.620Z"},"0.14.10":{"name":"unplugin-icons","version":"0.14.10","packageManager":"pnpm@7.2.1","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-icons","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"exports":{".":{"types":"./dist/index.d.ts","require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./esbuild":{"types":"./dist/esbuild.d.ts","require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"},"./loaders":{"types":"./dist/loaders.d.ts","require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"types":"./dist/nuxt.d.ts","require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"types":"./dist/resolver.d.ts","require":"./dist/resolver.js","import":"./dist/resolver.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"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./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"}},"main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"scripts":{"build":"esno scripts/prebuild.ts && tsup && esno scripts/postbuild.ts","dev":"esno scripts/prebuild.ts && tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish","test":"vitest"},"peerDependencies":{"@svgr/core":">=5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.1.0","@antfu/utils":"^0.5.2","@iconify/utils":"^2.0.0","debug":"^4.3.4","kolorist":"^1.6.0","local-pkg":"^0.4.2","unplugin":"^0.9.5"},"devDependencies":{"@antfu/eslint-config":"^0.26.3","@iconify/json":"^2.1.108","@iconify/types":"^2.0.0","@svgr/core":"^6.3.1","@types/debug":"^4.1.7","@types/node":"^18.7.18","@vue/compiler-sfc":"^3.2.39","bumpp":"^8.2.1","cross-env":"^7.0.3","eslint":"^8.23.1","esno":"^0.16.3","rollup":"^2.79.0","tsup":"^6.2.3","typescript":"^4.8.3","vite":"^3.1.2","vitest":"^0.23.4"},"gitHead":"bf2f1a3379709a711fc2981ac4402c49a3fd64b4","_id":"unplugin-icons@0.14.10","_nodeVersion":"16.14.2","_npmVersion":"8.8.0","dist":{"integrity":"sha512-K4KTnsiBnSPDKQS4KylOxmGYp/ALPgfN520IXhOuB2OKD5Ub5N3bNmpvMZgiMK0g3kAQdZrRRNATMSM558a3Zg==","shasum":"1a88898df10844439b461e8316fe0a21f4b9dd8e","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.14.10.tgz","fileCount":43,"unpackedSize":65561,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC2veT+yn3OjeDZylfGl94THXww4iPSz5OMuZY9lar2GQIgMQRJgIxM6VTfUezKimJ//14amcJJat9Wop/t+5Xg3wc="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjJpf2ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpBxA//c9s5U5/Bdfk/+YwIBcOqjMoYua1qhaZu8nkbxTPpBwIIvAwb\r\nkd8tsgn4J4Rzr8MTaouGoFSZOWbf9f4rQ0C5vE3DSTMaUVfOoFDt7K/tJv1D\r\nOCxGXyoHKlZEfIwQInRVbnl/Q24XRoD+EHshmeSlPSTS6yuoTarFf6Gj9XJP\r\nsDn14C3iUrMrRj00WYpef/a9vsgUMcW3nlHGLrv741rY8ilbK7XW4j1/xRYt\r\naiAN9rjO0EuWanSxr7FVijVoLo6CwsrS6LV2RL3lOs20ZqwDzN+F8mUOnyz7\r\nx4R8+ZExv+x+fu0SF+vz2XY3TdcFLuVBQNW7SfNr+7GJg2d0YWJo88eufhIp\r\nRCLZVtGcwuR6eNFUfRLxRZwHmoul6Y4UbnShGmxNeVjrxBzFzMT+RrSf9KaI\r\nVxBpz2MzKgv/hPtbz56fzj7hTyN3oGjEtqJhxEniqlWBUhSJ5IIrqGTK2scn\r\nRoJvK8NNGX+2Xv3U4zeGYlTzLNmfv/Akevxz5TV/IAlSWbe0TCJbEckknrcp\r\nAAGv4GjQQAmcujt949ZiNRt1YEE9QSTMDTd6+GTysmekyCUoiS2aWo4N1PPL\r\nWJyuRZU1uBa+dGlMj+qhnWUo7veZ7AUMFG1X2KSCZNGneR/sbwGjm1cnmcsK\r\nnuWTjBFdof2e2DgTkQPRC0VfTT/dUZgI8SA=\r\n=PkVu\r\n-----END PGP SIGNATURE-----\r\n","size":19425},"_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-icons_0.14.10_1663473654462_0.14845553230074837"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-09-18T04:01:18.772Z"},"0.14.11":{"name":"unplugin-icons","version":"0.14.11","packageManager":"pnpm@7.2.1","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-icons","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"exports":{".":{"types":"./dist/index.d.ts","require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./esbuild":{"types":"./dist/esbuild.d.ts","require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"},"./loaders":{"types":"./dist/loaders.d.ts","require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"types":"./dist/nuxt.d.ts","require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"types":"./dist/resolver.d.ts","require":"./dist/resolver.js","import":"./dist/resolver.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"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./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"}},"main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"scripts":{"build":"esno scripts/prebuild.ts && tsup && esno scripts/postbuild.ts","dev":"esno scripts/prebuild.ts && tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish","test":"vitest"},"peerDependencies":{"@svgr/core":">=5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.1.1","@antfu/utils":"^0.5.2","@iconify/utils":"^2.0.0","debug":"^4.3.4","kolorist":"^1.6.0","local-pkg":"^0.4.2","unplugin":"^0.9.6"},"devDependencies":{"@antfu/eslint-config":"^0.27.0","@iconify/json":"^2.1.115","@iconify/types":"^2.0.0","@svgr/core":"^6.3.1","@types/debug":"^4.1.7","@types/node":"^18.7.23","@vue/compiler-sfc":"^3.2.40","bumpp":"^8.2.1","cross-env":"^7.0.3","eslint":"^8.24.0","esno":"^0.16.3","rollup":"^2.79.1","tsup":"^6.2.3","typescript":"^4.8.4","vite":"^3.1.4","vitest":"^0.23.4"},"gitHead":"30f7bfe7d7a26f5d3f4e920910ee62cb3ee2f8fb","_id":"unplugin-icons@0.14.11","_nodeVersion":"16.14.2","_npmVersion":"8.8.0","dist":{"integrity":"sha512-szr6QA1ILT4RrJCmtvW41m2KPwUCCIx8QNgwEmTehvzEkSLDrdEaBhKGMWb/qTe5/zwnfwrDGcFT/6pGOSHJcA==","shasum":"fc63a8a67b2700a0b95884a4fc7d14b8350cabd4","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.14.11.tgz","fileCount":43,"unpackedSize":65918,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIB/l1BzZivkQXp0VuFo4SZlK2XsoSx/mTos7mPTUudT3AiBYCHchcdZyRAAh/6EtgLg6gqI9EG2h6Ke0gZaAXaVScw=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjNWk7ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmonLQ//ah6d02gj8RicEak75jWmuWLAonc6D1fqGY3CUBCz1UHHExfE\r\noUGYSgUUbsWL1iG3+9WiJQ4AVG8APmWw3lHmXWjc9frWeaUhyMdV8AEymjbU\r\nFAcOlXmUlVrkWk1hIAD6Lr4XNww5swqOZ3MFDyP+sC81KFI0Jz8vcPhne/na\r\ng+F0Cca8ZbyBeSKXEgqEiZ5VY0LFHFBy50KWWdEHal6Mj3Ak4gj1DBMDQo+q\r\n0vDKVFZUerW4jicvRC0hY3iQ4Z7/UkXbIyFt6IgR0jnqbxEQbbSJmkZq2SO/\r\nfbJ5XnCIOYidkIXacrTIBHuIC5QZ24zJ5izhYYjENR08AIaZ0umKC6Lu/oSo\r\nsJx4lCERo7JJpEzCrm3Fv1H9XF/SyebixNtTPLEIYB3sStaDkZ9CCT10Y7Qe\r\nkb+HZNa/T7+gVQi+3IjlJcOAq/yvayMHB6BEAhQe13JpIr/FBtc3Oysb9Qd7\r\nsBA/5KBc42VB+VEapFBHpi8l12gTTfdtCyf4TxpWw6/7ehOFOPHLjue6HS5V\r\nj9xRfaPxWmqSFjGBO8WhDHJwv4PGSEB0qpnYb0ElxxBW9WH5XWHCzYjEagfN\r\ni+xo9KPVage9kZyruiNcLUNKFPKeVM2jBNMx2NdMDMiKUJv/WkUPo1TPu0/q\r\n3uco+3DZYBFyUNVp23uf6I+8g0uVa9W3bDc=\r\n=p9NH\r\n-----END PGP SIGNATURE-----\r\n","size":19471},"_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-icons_0.14.11_1664444731055_0.4158536873092582"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-09-29T21:00:43.892Z"},"0.14.12":{"name":"unplugin-icons","version":"0.14.12","packageManager":"pnpm@7.2.1","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-icons","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"exports":{".":{"types":"./dist/index.d.ts","require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./esbuild":{"types":"./dist/esbuild.d.ts","require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"},"./loaders":{"types":"./dist/loaders.d.ts","require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"types":"./dist/nuxt.d.ts","require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"types":"./dist/resolver.d.ts","require":"./dist/resolver.js","import":"./dist/resolver.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"},"./types/astro":{"types":"./types/astro.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./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"}},"main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"scripts":{"build":"esno scripts/prebuild.ts && tsup && esno scripts/postbuild.ts","dev":"esno scripts/prebuild.ts && tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish","test":"vitest"},"peerDependencies":{"@svgr/core":">=5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.1.1","@antfu/utils":"^0.5.2","@iconify/utils":"^2.0.1","debug":"^4.3.4","kolorist":"^1.6.0","local-pkg":"^0.4.2","unplugin":"^0.9.6"},"devDependencies":{"@antfu/eslint-config":"^0.27.0","@iconify/json":"^2.1.122","@iconify/types":"^2.0.0","@svgr/core":"^6.5.0","@types/debug":"^4.1.7","@types/node":"^18.11.0","@vue/compiler-sfc":"^3.2.41","bumpp":"^8.2.1","cross-env":"^7.0.3","eslint":"^8.25.0","esno":"^0.16.3","rollup":"^2.79.1","tsup":"^6.2.3","typescript":"^4.8.4","vite":"^3.1.8","vitest":"^0.24.3"},"gitHead":"afa1cd349985b034c3dcaae9cac4b8326b098692","_id":"unplugin-icons@0.14.12","_nodeVersion":"16.14.2","_npmVersion":"8.8.0","dist":{"integrity":"sha512-FdkjDnUnc8/75OT8Ywwm8iDyG6kO8w1uHfFbnO2Jh7JhpE0odKhCqaAOmEE/UlvYDYSm5D4X1DKdWMwpAxj07Q==","shasum":"6ebd7a79bd0b1a3d21d71a358f26ea9aac3640a7","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.14.12.tgz","fileCount":44,"unpackedSize":67621,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCrCXMm8DwNFujscOi2lnICXyj8PexmE6/RPdBT0Exv8AIhANJ5wdRRKZRzdDapNJe8tW/ZCEZqTCNETIQaQQjt0M+U"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjS7U+ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoUew/+OLLpyPNs+8R5s3vNsU43ssfdl+j9s0ca9Hq+62dtpUHCur4z\r\n1G/Z93Saegewvdvx3CG3ocUFiXTpf/PxOGFAEVHPcC/hQEl8EiZ0PsK+sQXK\r\n6wb7eBwiwykw7BgFKCuK9mOkG9AKNGANnjJhLtZmwumH8qeCA895oUcy6Whp\r\nHNnonD3bZbS3+7fkCi9w2d7B6D14As9aO9DgKgBJIPZVAL/qpwnAe6UIKxbX\r\nAL+ENY4/ZIPRTObknKStf9Cto+YqBtUhXYkGzlIYiCCQKeOfmxKnJbY6/5kl\r\n5hI/HakCHB+/pUX3luzckSi8nC1In7ejlEy/tuGPgOaBnTBHV90mVaLTRhSy\r\nv+lkR78EYq11xI80ZUlYt7QEEJ7KFh5ooP651YAnUZc6vfhF1Rx+Dq67m8BI\r\nAxpUc4L9A+zx8crvgptm51BJJFwjJGkJO2PaCWKRCK3WyNg34B2opg6XYifY\r\nNOwZmZP4pnR2uLezkPbWK1lozc81tbOa6dRBqtTbRTgs+HPm8bpDzmo9s9hr\r\nLaDq3mhY3Y5kbMbR0inigiAxHnzE3pYUQGrW0GuYpZ9dTnQZkPI9EoVCmLYz\r\n4YokpcrbqCOrFii5QyegRtDeVmQ8rzAy/JRiS9NmRgzbMUHIcWwjra79Jva9\r\ntVAAZ3wKQFPP3oKygd5kO3aXDMRuwU/Iygc=\r\n=306D\r\n-----END PGP SIGNATURE-----\r\n","size":19830},"_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-icons_0.14.12_1665905982486_0.8837798341672265"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-10-16T13:37:19.296Z"},"0.14.13":{"name":"unplugin-icons","version":"0.14.13","packageManager":"pnpm@7.2.1","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-icons","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"exports":{".":{"types":"./dist/index.d.ts","require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./esbuild":{"types":"./dist/esbuild.d.ts","require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"},"./loaders":{"types":"./dist/loaders.d.ts","require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"types":"./dist/nuxt.d.ts","require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"types":"./dist/resolver.d.ts","require":"./dist/resolver.js","import":"./dist/resolver.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"},"./types/astro":{"types":"./types/astro.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./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"}},"main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"scripts":{"build":"esno scripts/prebuild.ts && tsup && esno scripts/postbuild.ts","dev":"esno scripts/prebuild.ts && tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish","test":"vitest"},"peerDependencies":{"@svgr/core":">=5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.1.1","@antfu/utils":"^0.6.2","@iconify/utils":"^2.0.1","debug":"^4.3.4","kolorist":"^1.6.0","local-pkg":"^0.4.2","unplugin":"^0.10.2"},"devDependencies":{"@antfu/eslint-config":"^0.29.2","@iconify/json":"^2.1.131","@iconify/types":"^2.0.0","@svgr/core":"^6.5.1","@types/debug":"^4.1.7","@types/node":"^18.11.8","@vue/compiler-sfc":"^3.2.41","bumpp":"^8.2.1","cross-env":"^7.0.3","eslint":"^8.26.0","esno":"^0.16.3","rollup":"^2.79.1","tsup":"^6.3.0","typescript":"^4.8.4","vite":"^3.2.2","vitest":"^0.24.4"},"gitHead":"9d04d80b7d3a7a76eaa2cc715aa6985ccc42b3b4","_id":"unplugin-icons@0.14.13","_nodeVersion":"16.14.2","_npmVersion":"8.8.0","dist":{"integrity":"sha512-ZZCw9qZg/zNJeHWicaFYMfsfzMAXOHHnZt5tRxslhPE++/THvg5xGu5AsIRmMCtyNBCpC1Ly1MTb8CZmlqaQTA==","shasum":"6d3882a25f4614447fed4489a18b1ccde5031ea3","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.14.13.tgz","fileCount":44,"unpackedSize":67680,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDu2kHbNHCKZqw8Eug0J0Pd+Gcq0ZvgZBnmzrqFl8Wc9AIgOpn+/7J87d1pcqrZLzyhQADRzOFSU2P6bk6+7o7lLsA="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjYMUgACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqPLw//VuhtMj/Z6RCX8IvODgXmLkRc5OKw6q7fTsDly0mtO8kKIhoo\r\nrBnNzX1f0jR4yxu1h6RvfsUkEVtvbfEebkOpIYw4wStnjFRgT4lafya3IBE6\r\nWiTaLAVTbFYwlRooVb3PkWR8FpqdgbsiveEmo0Tm7NCzJtO3Ve1+9Gsvaexq\r\n5fzQYSDpjjrNoedn9QoeQJTvXSnqQSxJLZgq4EOl7NVb3oUoWVd4IOoQDJE/\r\nvpk6oVmCgeQAai335NmzXeO+dd2micNX7QJ9kOCYi9x9kYuz+Bo68vuxyzzs\r\nuCNyzJefzsQjLzOAQs0eDnpNNGuJnteg9+M2uZp3sOgu0ipC1MHxtUuwAPsC\r\nj9XaavvI6pOfGGMYWpKW3k5xY/P2FPxtxe5GffBmZEC8NModdqDl8btsgxKJ\r\nxhnNb/MN30F4tBUXZrTjaBOjSHYdQZRzFOhQZ2ok06LYPLnUEPLvwnp6FrMj\r\ngtJbgT4n4dJiViErQIzjAAIj8Lm9Ba3Chnwjm2UjJFlfMXOEN3pJ/R5VikDL\r\n4ponpyIVFaUagPgvIC5o+6ZZtctxKoPXLpf+Z7Q0YxlSp9dYY2DmChbRAtPc\r\nQYiDq9HrmH9+tzqXRWUTVEfXqNumncjood9oOq8ofGt5D6F/rN0QCN/k5+R/\r\nNHgG5eG2EMJmfgNEX1HsmtrZIc/h/tinKsc=\r\n=jAhN\r\n-----END PGP SIGNATURE-----\r\n","size":19846},"_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-icons_0.14.13_1667286304239_0.8291887749212308"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-11-01T07:05:28.830Z"},"0.14.14":{"name":"unplugin-icons","version":"0.14.14","packageManager":"pnpm@7.2.1","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-icons","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"exports":{".":{"types":"./dist/index.d.ts","require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./esbuild":{"types":"./dist/esbuild.d.ts","require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"},"./loaders":{"types":"./dist/loaders.d.ts","require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"types":"./dist/nuxt.d.ts","require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"types":"./dist/resolver.d.ts","require":"./dist/resolver.js","import":"./dist/resolver.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"},"./types/astro":{"types":"./types/astro.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./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"}},"main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"scripts":{"build":"esno scripts/prebuild.ts && tsup && esno scripts/postbuild.ts","dev":"esno scripts/prebuild.ts && tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish","test":"vitest"},"peerDependencies":{"@svgr/core":">=5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.1.1","@antfu/utils":"^0.6.3","@iconify/utils":"^2.0.2","debug":"^4.3.4","kolorist":"^1.6.0","local-pkg":"^0.4.2","unplugin":"^1.0.0"},"devDependencies":{"@antfu/eslint-config":"^0.31.0","@iconify/json":"^2.1.141","@iconify/types":"^2.0.0","@svgr/core":"^6.5.1","@types/debug":"^4.1.7","@types/node":"^18.11.9","@vue/compiler-sfc":"^3.2.45","bumpp":"^8.2.1","cross-env":"^7.0.3","eslint":"^8.28.0","esno":"^0.16.3","rollup":"^3.4.0","tsup":"^6.5.0","typescript":"^4.9.3","vite":"^3.2.4","vitest":"^0.25.2"},"gitHead":"79f3741c40af204ec02b7e07072e35813a45d009","_id":"unplugin-icons@0.14.14","_nodeVersion":"16.14.2","_npmVersion":"8.8.0","dist":{"integrity":"sha512-5apStlsB9AetB7JQ0DpHG+aFNGQOL8yrO+6XbYadywMXwCeLAPDPdSW0gWd8R3aB/rER1PM+LQikXlaakHH1Uw==","shasum":"a8eba4bab2b4357332e7023c10e6733094b273f6","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.14.14.tgz","fileCount":44,"unpackedSize":67823,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCIHi1vUGXlygGTAShdLg1KO4oDySaSyr0mUihxN9dwjQIhANlEnvZ4lYREQOa6yxozAAW8IkcHNZddfZEF6o8zK8TJ"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjfKnPACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoX4A//dUFDeRSBS0jH7MqcU8qWxHUN4Ld2Rnivv5w8DDsMUHWmvYAl\r\nQKkc11RYKADrVZ3bW8SKm4Dt/7tjZnKF4EnabrDgVg2XWQKj+n9O9ZAiZ01e\r\nvhFjFfMEORAYq71Dz1RxiJYPlDv4diBMATvmcvSzX667u2zJclB7NHJiKMG0\r\nt/NeNL8WgSsrp/xKfPHn1COvqENXASXrtSDIDQpa6/LEuMq1gVxSsqtHPeK0\r\nczJDoqdSiVScxb96wle0IqLDUYI1pAw/A1sJN761pHW1yaXffb9UNuosm+uw\r\nDn3cH+kIkBWCeTyMspftdNhb6SacjZr7w9lkssMFA5CGwf1EAMYDmn9aeThy\r\nSHbkVd4xxJDS3ecQ/Fva+08A+quCy9LO3FivrLtuyuGxG55OF2s/EtxZls6X\r\nbyyrhjrZw6m2qdRDsjl1oXgeow+HghZJ/BNom8sQsWE02XrksQA+JcfdaUWv\r\n1HE4Fphm0fmZ4iDTya04xF6Xhj6pxkSRDkdQ9/9H74pSxj/odebDnOEhOGzH\r\nao458/8JlUVrFTBAY+BTTrsID6M0vu8DgSmf+AmDdOFs958Trr/uj6XjKH8i\r\n/sn2XCS6tGJIbC/EzndEnimf51ta3GBxL1DBGLBbR2x86AjGUlfyk2Fx8FLm\r\niblsRtwtZ+lfHItUqPfcmWtwiuCMStL6nCc=\r\n=THHS\r\n-----END PGP SIGNATURE-----\r\n","size":19874},"_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-icons_0.14.14_1669114319450_0.2474795044763196"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-11-22T10:53:53.656Z"},"0.14.15":{"name":"unplugin-icons","version":"0.14.15","packageManager":"pnpm@7.13.4","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-icons","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"exports":{".":{"types":"./dist/index.d.ts","require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./esbuild":{"types":"./dist/esbuild.d.ts","require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"},"./loaders":{"types":"./dist/loaders.d.ts","require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"types":"./dist/nuxt.d.ts","require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"types":"./dist/resolver.d.ts","require":"./dist/resolver.js","import":"./dist/resolver.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"},"./types/astro":{"types":"./types/astro.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./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"}},"main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"scripts":{"build":"esno scripts/prebuild.ts && tsup && esno scripts/postbuild.ts","dev":"esno scripts/prebuild.ts && tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish","test":"vitest"},"peerDependencies":{"@svgr/core":">=5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.1.1","@antfu/utils":"^0.7.2","@iconify/utils":"^2.0.3","debug":"^4.3.4","kolorist":"^1.6.0","local-pkg":"^0.4.2","unplugin":"^1.0.1"},"devDependencies":{"@antfu/eslint-config":"^0.33.1","@iconify/json":"^2.1.151","@iconify/types":"^2.0.0","@svgr/core":"^6.5.1","@types/debug":"^4.1.7","@types/node":"^18.11.13","@vue/compiler-sfc":"^3.2.45","bumpp":"^8.2.1","cross-env":"^7.0.3","eslint":"^8.29.0","esno":"^0.16.3","rollup":"^3.7.3","tsup":"^6.5.0","typescript":"^4.9.4","vite":"^4.0.0","vitest":"^0.25.7"},"gitHead":"624c4156f9ceb49a4dc3599ed4af179d970bac09","_id":"unplugin-icons@0.14.15","_nodeVersion":"16.14.2","_npmVersion":"8.8.0","dist":{"integrity":"sha512-J6YBA+fUzVM2IZPXCK3Pnk36jYVwQ6lkjRgOnZaXNIxpMDsmwDqrE1AGJ0zUbfuEoOa90OBGc0OPfN1r+qlSIQ==","shasum":"535605e25a34c6613888dca2094caf6ce2a5907c","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.14.15.tgz","fileCount":44,"unpackedSize":67753,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBaVfJNyOAemm5KUQnuqcUconEKS6Z2d5jvBY1I4rTGmAiA5sHJGYoxWodoiz1LPFqJcTR+7PF2JNoq8JCrnOxgs+Q=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjlu08ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmraTQ//RUwaXdDdzoxpIzKFERrFBMT2BU7X609W21HqHS2xT0YW4GB6\r\n3HBSowum9WmstHEig5EaenBxzbJOt4AJTwk52QV+TQ7H8t9QQXFS5ucaygbx\r\nYmSnYC/XTM3LLFDO4zobV5a3zAxTRyGQiHJTTyFGJ+IScI8Rsm8X9eF8aEwE\r\nthekTeE7KpPgLMjOfLLHWJyNNpE11AJhB4w745JnXzKxp9jm6YvbpMqbt4xg\r\nZl+jHLgctnrQxwPZlPuanpHtyy4a6qFJfwgDk4fCrO9sZiVBJMnsK0YB7Omk\r\n9p5dyfcMrDJYi+uZigK5+XwpShdsqDDWS3aLcs2h2trn/YdyAJ0jyTj59Hp6\r\nNkhyfi264PHO7iUXVP4qKy3Kwc7PJgqKq8qv32tI5MfIlJV/4c8r1Zn/jZLj\r\nsT0NVvUNvy5mYO/qXvJ4webOxdKfOVKqh2oOaV2wNy6AOe8AJw+gmEl0E8PN\r\noYIc3anbQc9nW+C0I4bIne33+KhW9+NclCD+zmd55oKjDFTAxH1Q5NDwwlmE\r\niweBhjQptDf2zSMzs8htBIds5N6J5nZ7lwl5OtxIHhMV8xN/ID1pljmckwuM\r\nd4IA6WU6jPgKnpIbP4BTVZjhQRy+Fm10OBVVzKJY0DPvk6OU26f2EK2lIo1L\r\n1T3n3pDkitfdqPzJVsv5OECu9mhW+B9jua4=\r\n=p3wx\r\n-----END PGP SIGNATURE-----\r\n","size":19799},"_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-icons_0.14.15_1670835516191_0.14589795734798972"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-12-12T09:09:05.150Z"},"0.15.0":{"name":"unplugin-icons","version":"0.15.0","packageManager":"pnpm@7.13.4","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-icons","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"exports":{".":{"types":"./dist/index.d.ts","require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./esbuild":{"types":"./dist/esbuild.d.ts","require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"},"./loaders":{"types":"./dist/loaders.d.ts","require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"types":"./dist/nuxt.d.ts","require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"types":"./dist/resolver.d.ts","require":"./dist/resolver.js","import":"./dist/resolver.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"},"./types/astro":{"types":"./types/astro.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./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"}},"main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"scripts":{"build":"esno scripts/prebuild.ts && tsup && esno scripts/postbuild.ts","dev":"esno scripts/prebuild.ts && tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish","test":"vitest"},"peerDependencies":{"@svgr/core":">=5.5.0","@vue/compiler-sfc":"^3.0.2","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.1.1","@antfu/utils":"^0.7.2","@iconify/utils":"^2.0.3","debug":"^4.3.4","kolorist":"^1.6.0","local-pkg":"^0.4.2","unplugin":"^1.0.1"},"devDependencies":{"@antfu/eslint-config":"^0.33.1","@iconify/json":"^2.1.151","@iconify/types":"^2.0.0","@svgr/core":"^6.5.1","@types/debug":"^4.1.7","@types/node":"^18.11.13","@vue/compiler-sfc":"^3.2.45","bumpp":"^8.2.1","cross-env":"^7.0.3","eslint":"^8.29.0","esno":"^0.16.3","rollup":"^3.7.3","tsup":"^6.5.0","typescript":"^4.9.4","vite":"^4.0.0","vitest":"^0.25.7"},"gitHead":"13b58ad04e16fd5fc91780ffbc82f9b461e89280","_id":"unplugin-icons@0.15.0","_nodeVersion":"16.14.2","_npmVersion":"8.8.0","dist":{"integrity":"sha512-/BGtBL8y/2wjey4GLyb0w90mhc9d7XKlewWGMxBPROHS7mR84AV1Y0zDapYK0Q/cc/+u4WUcloreev5cABDa5w==","shasum":"ac863786f8df275367e9385a9086987975a71d56","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.15.0.tgz","fileCount":44,"unpackedSize":68272,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICC0K+8jmXnBKAgpPER2QkYzEe49Tk83AKswyBgtUgFYAiADE/IKpN7Ls0IT7ZvoaiUe+d56otBFev2xOuSQFJwX4A=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjtF1aACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpNww//VoO1sF6rvxTdlHfOTWWhLckj/8tjOWersZTb3LFV2hwBKnA+\r\n4oIfB1Q7twZg3yfK1d+vuXq2Z470S4i9FZllF6Q3k/KNVCodEZ+ikfyPwbd/\r\nUYQO51ebjMdWHN7I522vcESU8pv3TqdbU1tybFM8axxlGWq2p1OFogEBxBkQ\r\n/Cn/SldM2LoF44noxHnfSCHlk2CS2SYqbWH40R6Mt1ZOdMbejdClu7hEmGE7\r\ndztxiCvtR1ADpmCTRNrJK5pFO0ihknRYKdzecUd6t1JhO2kGNSoGE/adYHUC\r\n8Oke5EkYhMcf4Pa/ffcPbzywAOpMPcF00FvuqLP+BJkCHTu5waYL8QIN3Ksr\r\nS/EPEcT1/8+i8krYQSlX96Yyv3Mgrs6yaOjjHISxePQP5ZF8cLuTX7PaOyML\r\nmHaCsaoNgyU+8T6n/xT5BSqKbauTHJNuUTZ9BTyR1YjQJy5qjHPTVe1p7T1R\r\n9/Z06QCeJE6U/0YXDsQCJ0vet9kMz/2YIUG/V+ZTRG4ENa7hbsnmCb0Rqe4N\r\nVEg9Su8J0b2PIwdlgX6X0KMbyZ4RrtCTBr3iEVlBSmbwdODYBW0rOircXnNp\r\nL6CtggJJN5g8wKvDb1IjyIyW6m9UG2NIxGqqfM7dpZUadOSmt+e0eUSMtDVm\r\nGvGZxFOeQL4jXRdwoQCBzb1TkJSKXQkBhuc=\r\n=Gy1Z\r\n-----END PGP SIGNATURE-----\r\n","size":19956},"_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-icons_0.15.0_1672764762221_0.66333500156878"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-01-03T17:07:13.925Z"},"0.15.1":{"name":"unplugin-icons","version":"0.15.1","packageManager":"pnpm@7.13.4","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-icons","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"exports":{".":{"types":"./dist/index.d.ts","require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./esbuild":{"types":"./dist/esbuild.d.ts","require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"},"./loaders":{"types":"./dist/loaders.d.ts","require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"types":"./dist/nuxt.d.ts","require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"types":"./dist/resolver.d.ts","require":"./dist/resolver.js","import":"./dist/resolver.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"},"./types/astro":{"types":"./types/astro.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./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"}},"main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"scripts":{"build":"esno scripts/prebuild.ts && tsup && esno scripts/postbuild.ts","dev":"esno scripts/prebuild.ts && tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish","test":"vitest"},"peerDependencies":{"@svgr/core":">=5.5.0","@vue/compiler-sfc":"^3.0.2 || ^2.7.0","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.1.1","@antfu/utils":"^0.7.2","@iconify/utils":"^2.0.9","debug":"^4.3.4","kolorist":"^1.6.0","local-pkg":"^0.4.2","unplugin":"^1.0.1"},"devDependencies":{"@antfu/eslint-config":"^0.34.0","@iconify/json":"^2.2.3","@iconify/types":"^2.0.0","@svgr/core":"^6.5.1","@types/debug":"^4.1.7","@types/node":"^18.11.18","@vue/compiler-sfc":"^3.2.45","bumpp":"^8.2.1","cross-env":"^7.0.3","eslint":"^8.31.0","esno":"^0.16.3","rollup":"^3.9.1","tsup":"^6.5.0","typescript":"^4.9.4","vite":"^4.0.4","vitest":"^0.26.3"},"gitHead":"6e53b1bd602f3254e82b825b0e4776a16f4356d7","_id":"unplugin-icons@0.15.1","_nodeVersion":"16.14.2","_npmVersion":"8.8.0","dist":{"integrity":"sha512-d4Gc8A4qIJYIXKueltTwoHfR3Cxsdfnmz8lSN5dsITEyai5tdb0uWpbQkn3j9HUlLDSB1ybdQIf5CItxJT3UDw==","shasum":"816eaa67e545e31087b055d211fbf0a66f35d963","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.15.1.tgz","fileCount":44,"unpackedSize":68356,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFAOvISGvd2KLjs0AoS7hqLN4mThg8a1Hnm/YeE7jcriAiEAt/YRxvRmuwYmDIPrWxjS/r/NAiR9fZryXtJXDKQKMlA="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjt+zFACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrHOhAApRuYseTHYhejbRhSM7u3pxic9xZ5oxovU0xKhSgiySdqLY+r\r\n5n8ARaki0LQslOZU93ogygj/vVvboa1NKvax2zNBlCh+0dEkXfqzC23mk3zK\r\nSs5B6fgPB5JDV50QB0ic4g9Ujks2isa260B0zO0t0z8yxrEfd6IauvP+HYP6\r\n79JbThIlgKXqtSllqy/WHZgZyPOfVYDxZhK7zN0acf5D+s+kEfuRlFA00+Ke\r\nPUWKk4hQkxc84radHD1DtQFAeN/UUKORDjjMUt/uaTFKj7QsjFog2DnlG8Uy\r\ndb68PvUd0an6O6wRMY8na1JO+KaKhZlTQIwRP+DfOEIhpkTe7vKD0fzlw9wW\r\nj3v563P4IdmL0MeGX/8tT2+WeSc7Q1z57XwQ5TObZbgzldZtXqzfPm2qUaXY\r\nx/i3B2CrMOUbF80Eau55izpHIj4cDTCzn4dgQHb4jTXxGYasAPXYfJxmW8CR\r\n1N+MfO4KpQA3yhD7WdCVCIzCc3UjWJfcn8B0Tf7H0plf34ndVzNxHnrhNgl2\r\nel6EJt3SboJsiKInMIYeyrvAOvJDdmz/70BImYaJVy1tyM1bDB6og9ufNfd+\r\n3HDmfJULaJ+1ts4DlAls1oIy/Jt0cPQaglEcJC5nJf5q67uIO7phJB90zfGP\r\n43rFoTxL/GmQQyx4rRcybgdAvIiinoUShL0=\r\n=HQHC\r\n-----END PGP SIGNATURE-----\r\n","size":19990},"_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-icons_0.15.1_1672998085492_0.44578688337775074"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-01-06T09:46:11.741Z"},"0.15.2":{"name":"unplugin-icons","version":"0.15.2","packageManager":"pnpm@7.13.4","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-icons","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"exports":{".":{"types":"./dist/index.d.ts","require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./esbuild":{"types":"./dist/esbuild.d.ts","require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"},"./loaders":{"types":"./dist/loaders.d.ts","require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"types":"./dist/nuxt.d.ts","require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"types":"./dist/resolver.d.ts","require":"./dist/resolver.js","import":"./dist/resolver.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"},"./types/astro":{"types":"./types/astro.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./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"}},"main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"scripts":{"build":"esno scripts/prebuild.ts && tsup && esno scripts/postbuild.ts","dev":"esno scripts/prebuild.ts && tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish","test":"vitest"},"peerDependencies":{"@svgr/core":">=5.5.0","@vue/compiler-sfc":"^3.0.2 || ^2.7.0","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.1.1","@antfu/utils":"^0.7.2","@iconify/utils":"^2.1.0","debug":"^4.3.4","kolorist":"^1.6.0","local-pkg":"^0.4.2","unplugin":"^1.0.1"},"devDependencies":{"@antfu/eslint-config":"^0.34.0","@iconify/json":"^2.2.13","@iconify/types":"^2.0.0","@svgr/core":"^6.5.1","@types/debug":"^4.1.7","@types/node":"^18.11.18","@vue/compiler-sfc":"^3.2.45","bumpp":"^8.2.1","cross-env":"^7.0.3","eslint":"^8.31.0","esno":"^0.16.3","rollup":"^3.9.1","tsup":"^6.5.0","typescript":"^4.9.4","vite":"^4.0.4","vitest":"^0.26.3"},"gitHead":"54f640870c2f75c0c18ac71c67559a3188891300","_id":"unplugin-icons@0.15.2","_nodeVersion":"18.13.0","_npmVersion":"8.19.3","dist":{"integrity":"sha512-oWTTdLMuqfEYfZcko+KZHDEOIsqT4OeyJB1e4U7luCOo9gto/JLyHkqfbqjmjkjdQqA3DNHS18WOKh5esqQM5g==","shasum":"f91884f6d2f7256ee356fe0223b32149a90ed78d","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.15.2.tgz","fileCount":44,"unpackedSize":68427,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCjIylgozi22bu7K7kBDu8bJ8Ibg6fB1PA2su+uNzsMXAIgFnZJA+mE7Lqq0tA9hz78aUcJIgoU/g4gV6LHfJVMuiA="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj1JLuACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoClQ/+JlZLqpGoLP407ddM2J0JhCpnLU5D/p5dE/kx+G5hZj4umwOS\r\ny8vSR6Huso574SB/8PLDEkn7tnifHhPr/rARQZuJ1I1OfOTPaGkBwq11XUMf\r\nHWDbFSjwVNe/skqA+Qf61ehl5fcKqNCBm8E1dpKyfAXqs0fSfEuHAukA7uXD\r\n60NTzKPRuYh+Gw/tMMJCdl0e1mawIie2dpzoJJn82D/tCbgWc/i1Y+WjkKwZ\r\nflanXlOsA2jq16XlXfWGnVhyh/EnMASafY1u6zm6sRSTAiWH6H+3cyxJw8eO\r\n+m2+OLwHKAkr1V7v7DwiiFYU+ICfvAaoGoCJJ02VRyIeJjyMXMx+eQ41LNS+\r\nkGfki7fU+YqH50zH7Ro9eeuIEC7oUcOuYQXpTW2/1AOUjhEpREjhhsSTay1R\r\nkrT4tI6iLzcfRX/r9HIZHNxEJ7QykFDhD2/8Xsf6NZQmT7G3qCimUosI4bp1\r\nBACAGrKhIlWwiCT+ziFL1rpdB+FQF4DZCrUC93nFsSv38Ut/43NY3eJ4xaXM\r\nwBmkGBuP5aHJXWK4gfjw1Z/P7lxQ9qw/i/Wb8MPS/TfgKDaeu9ekgoAbaszh\r\nhsyEDR3dFKVp+SpC4UNsPUfQO6UQ6uLd41AziJwJElmpASBmYmK7sSLWBDPz\r\nvbNYyVjxiuncCjh+5ZK+8pGdcX2wa7av7yE=\r\n=UY8a\r\n-----END PGP SIGNATURE-----\r\n","size":20024},"_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-icons_0.15.2_1674875630456_0.9241249737238195"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-01-28T03:13:50.656Z","publish_time":1674875630656},"0.15.3":{"name":"unplugin-icons","version":"0.15.3","packageManager":"pnpm@7.13.4","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-icons","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"exports":{".":{"types":"./dist/index.d.ts","require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./esbuild":{"types":"./dist/esbuild.d.ts","require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"},"./loaders":{"types":"./dist/loaders.d.ts","require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"types":"./dist/nuxt.d.ts","require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"types":"./dist/resolver.d.ts","require":"./dist/resolver.js","import":"./dist/resolver.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"},"./types/astro":{"types":"./types/astro.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./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"}},"main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"scripts":{"build":"esno scripts/prebuild.ts && tsup && esno scripts/postbuild.ts","dev":"esno scripts/prebuild.ts && tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","prepublishOnly":"npm run build","release":"npx bumpp --commit --tag --push && npm publish","test":"vitest"},"peerDependencies":{"@svgr/core":">=5.5.0","@vue/compiler-sfc":"^3.0.2 || ^2.7.0","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.1.1","@antfu/utils":"^0.7.2","@iconify/utils":"^2.1.2","debug":"^4.3.4","kolorist":"^1.7.0","local-pkg":"^0.4.3","unplugin":"^1.0.1"},"devDependencies":{"@antfu/eslint-config":"^0.35.2","@iconify/json":"^2.2.21","@iconify/types":"^2.0.0","@svgr/core":"^6.5.1","@svgx/core":"^1.0.1","@types/debug":"^4.1.7","@types/node":"^18.13.0","@vue/compiler-sfc":"^3.2.47","bumpp":"^8.2.1","cross-env":"^7.0.3","eslint":"^8.34.0","esno":"^0.16.3","rollup":"^3.15.0","tsup":"^6.6.3","typescript":"^4.9.5","vite":"^4.1.1","vitest":"^0.28.5"},"gitHead":"f65a1a7f370f1f5948e0e5168ab46d83e9b7d0af","_id":"unplugin-icons@0.15.3","_nodeVersion":"18.13.0","_npmVersion":"8.19.3","dist":{"integrity":"sha512-YWgJqv5AahrokeOnta8uX/m1damZA6Rf6zPClgHg2Fa/45iyOe3Lj+Wn/Ba+CSsq9yBffn17YfKfJNyWCNZPvw==","shasum":"0d7d0cbcd6c420c2638d6a95f9929e75e66f86e6","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.15.3.tgz","fileCount":47,"unpackedSize":73528,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDpmOznWM2GiRSg70aC0Ifo4xgsf0J23TQX1Kzd4WRhoAIhAOlO51ZsZ3tNY8xRTgaBOYxsqIZ1TzWFK8qhhZdCWYxd"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj62qRACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrQXQ/9G2rHvUKRSKYw2ocG+9L7mIlY//GE8RDvECOzB94M6EbMxNGe\r\ns1O7AILQ5UKery1Lhrfsb3r39Z+sP3jHHBhVZyq1eHZkmCayfYY5zu03HDP3\r\nl9qry8POdBbNcn5/6UHTsjuhLd4P94xgTo+4uT2XYwHF+wda7/0Qc7WFGCr0\r\nyN+f/mqMkVO7pAiCCrjkGxTGeNFy08Hq+YKcqvnTSEw6MbrMvL/7eyVXHMKQ\r\n3cQx+OwEMo1nHjSjJlFdZmsTGh/34c8yVCh4GhKO4FB7BjA+DZ35j5/pyhiR\r\n2QBuMYlmZ604jMba4Qe8NbWLKYJZwo5zJMgPtLJ76wlLWBj3DsaZk4DmrhRO\r\nefMrfTihxEv49X05G6jHCs6rhzpJqLZx7J3xs7GKoJ8u3mmSvshPGivuYlKk\r\nOqDcZnQa/IVas2Ol1NxA/Bvqdv2ddqQNF3SfqAeWMgIf9yE31SBRSeiBWryw\r\nld+Su7LS8FDy3VUQO1rU3yPhJvoJQ1ixq8bBp1qGSIB6tswLsN3KnBdmqXwX\r\n+iSbXMa7yQyhOYCaCFU4Hh6NnXrcInJzY7LNXCqVzN5pa7V1EZRb2A4BzUea\r\n3EU/46Dt2yY67FAwFKG4UY4mdbk+LI+heClie3ySvlQ1bYZMm91haV1Wo5j3\r\nRTb1oCudvEWQtLWcg+W+tbnlV8mDuHgIq08=\r\n=14+Q\r\n-----END PGP SIGNATURE-----\r\n","size":21239},"_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-icons_0.15.3_1676372625701_0.5062119270206"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-02-14T11:03:45.864Z","publish_time":1676372625864},"0.16.0":{"name":"unplugin-icons","version":"0.16.0","packageManager":"pnpm@7.30.3","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-icons","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"exports":{".":{"types":"./dist/index.d.ts","require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./esbuild":{"types":"./dist/esbuild.d.ts","require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"},"./loaders":{"types":"./dist/loaders.d.ts","require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"types":"./dist/nuxt.d.ts","require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"types":"./dist/resolver.d.ts","require":"./dist/resolver.js","import":"./dist/resolver.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"},"./types/astro":{"types":"./types/astro.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./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"}},"main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"scripts":{"build":"esno scripts/prebuild.ts && tsup && esno scripts/postbuild.ts","dev":"esno scripts/prebuild.ts && tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","prepublishOnly":"npm run build","release":"bumpp && npm publish","test":"vitest"},"peerDependencies":{"@svgr/core":">=7.0.0","@vue/compiler-sfc":"^3.0.2 || ^2.7.0","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.1.1","@antfu/utils":"^0.7.2","@iconify/utils":"^2.1.5","debug":"^4.3.4","kolorist":"^1.7.0","local-pkg":"^0.4.3","unplugin":"^1.3.1"},"devDependencies":{"@antfu/eslint-config":"^0.37.0","@iconify/json":"^2.2.40","@iconify/types":"^2.0.0","@svgr/core":"^7.0.0","@svgr/plugin-jsx":"^7.0.0","@svgx/core":"^1.0.1","@types/debug":"^4.1.7","@types/node":"^18.15.10","@vue/compiler-sfc":"^3.2.47","bumpp":"^9.0.0","cross-env":"^7.0.3","eslint":"^8.36.0","esno":"^0.16.3","rollup":"^3.20.2","tsup":"^6.7.0","typescript":"^5.0.2","vite":"^4.2.1","vitest":"^0.29.7"},"gitHead":"119a4486a056ca7c6c8d06c04a43914612430b67","_id":"unplugin-icons@0.16.0","_nodeVersion":"18.13.0","_npmVersion":"8.19.3","dist":{"integrity":"sha512-1YDsaMmJDVj9JDffpDrngWvrVtZZeZDHvyDqKEx4O9aQNiS4jRlGC7B14IKy91aHtBZ8/Q3RiF2YrjsyFgGO/A==","shasum":"5c49735f3abe6ff0440eba753b291e6f2cc2f88a","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.16.0.tgz","fileCount":47,"unpackedSize":73617,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD2QAxxIiAcIJdezMp5B06trtKz0aKXLAwleTJcCF/1KQIhAIht/g6zKBWmBUtf9+JyLQXU0VRX16aDzyviX7e83A9j"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkIWhJACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoJHw/+KzBIgNq/gCwOnKjXXT58sj0Sx8usaUhQl9RzDWEjDGm3L9O7\r\n3yOjo7Dc2FRgWOeOSDBGje1c8ean87IGPgn9f846oSQs13zGtkVfD+C68VqT\r\n2m/Es1MJ53vpACy2gMlamlCfr4NmH6BRm7plrsrZTPny666wyQfxV9jfBLL3\r\nhjhNdu7fHEO7Ic0KfVtyFNZxq2RV0lMcbfn3+oVo5jnoo3y8SIByLJvkd20T\r\npeZDg274LcpsUwxS+PosPfEUSOTtv8FTV1D4FUT7KGNZe3wC9gpkZOKbs7wP\r\nVB5UgxmhOdgKcIA0ou7WDmC56EYZx+uPA+KKO00b1bx1zawHpjoZKdLqOINy\r\n3xtNiehXLt/hzIvQg8A/7gy3bKT2LiHDnyH1c6RCNOZxhPQJqSpf6tSa5iaV\r\nZAp0pGGHyqO3Yf+m9Jwlzwt1wL48S0yWfJuuvXRFr4US2/LbkYuWb9nKCmKp\r\nU5QSuq4dRdbHUuY2WAoSa+kmt8GySnIcuj+8j1JQPFm7oJKmIu9y+Rmv2kRL\r\n9nKvWB5eB3iTOpzwJdqIW+JTbMkTWcNc6bDykp9vp2X9bdPJx5StQECtM/Tc\r\nICovsm0bxperMNIfbJ6u/4UXsgOUddmaVMTMZz/QgU8Eq7KWveRLioiYn1SO\r\nbBIY01Gj32WHtHykqF2fmvoywtdEUsQCvwE=\r\n=AeVq\r\n-----END PGP SIGNATURE-----\r\n","size":21250},"_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-icons_0.16.0_1679910985134_0.6270183612978595"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-03-27T09:56:25.254Z","publish_time":1679910985254},"0.16.1":{"name":"unplugin-icons","version":"0.16.1","packageManager":"pnpm@8.0.0","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-icons","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"exports":{".":{"types":"./dist/index.d.ts","require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./esbuild":{"types":"./dist/esbuild.d.ts","require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"},"./loaders":{"types":"./dist/loaders.d.ts","require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"types":"./dist/nuxt.d.ts","require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"types":"./dist/resolver.d.ts","require":"./dist/resolver.js","import":"./dist/resolver.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"},"./types/astro":{"types":"./types/astro.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./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"}},"main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"scripts":{"build":"esno scripts/prebuild.ts && tsup && esno scripts/postbuild.ts","dev":"esno scripts/prebuild.ts && tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","prepublishOnly":"npm run build","release":"bumpp && npm publish","test":"vitest"},"peerDependencies":{"@svgr/core":">=7.0.0","@vue/compiler-sfc":"^3.0.2 || ^2.7.0","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.1.1","@antfu/utils":"^0.7.2","@iconify/utils":"^2.1.5","debug":"^4.3.4","kolorist":"^1.7.0","local-pkg":"^0.4.3","unplugin":"^1.3.1"},"devDependencies":{"@antfu/eslint-config":"^0.37.0","@iconify/json":"^2.2.41","@iconify/types":"^2.0.0","@svgr/core":"^7.0.0","@svgr/plugin-jsx":"^7.0.0","@svgx/core":"^1.0.1","@types/debug":"^4.1.7","@types/node":"^18.15.11","@vue/compiler-sfc":"^3.2.47","bumpp":"^9.0.0","cross-env":"^7.0.3","eslint":"^8.37.0","esno":"^0.16.3","rollup":"^3.20.2","tsup":"^6.7.0","typescript":"^5.0.2","vite":"^4.2.1","vitest":"^0.29.8"},"gitHead":"08b4e67af5b9e4413b6940d7fc7fa38c4c9c18e5","_id":"unplugin-icons@0.16.1","_nodeVersion":"18.13.0","_npmVersion":"8.19.3","dist":{"integrity":"sha512-qTunFUkpAyDnwzwV7YV1ZgCWRYfLuURcCurhhXOWMy2ipY88qx1pADvral2hJu4Xymh0X0t3Zcll3BIru2AVLQ==","shasum":"e341185e17f4a7a9171b6dd932b5bf26a2f31fb9","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.16.1.tgz","fileCount":47,"unpackedSize":73814,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDh7/v+4xJitfjOthUET7WTsVzuZe6N+c53yrDvbC4OHAiEA4a6eErD+6QM8Wrl0UNCl/4Z9ClS/QkxjIIl1ES//yoM="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkJAGLACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmppMg/+Mmrys5kWgZX4uqAkNseNqF4xh6TKwgxlqIQB1cQfqbSy+Kfk\r\nfka01bX65Zek4kbIN3Xof5kSjnrTtuLLWmtIK+uNaOKG/6r5cP8H0WcZ0hzQ\r\nBP0B6Gpc29PJFBJ9DDW/DbjjmkCVo5cVcSZe5BjZJRnmtOLPSK512vsNPjk0\r\ngc+69CxRlhrZgleDaEaVTCuwgX2OPj8UPQBdGmnbFWFzz446MvY+ycjqwGiM\r\nn2yG6o3VWsyGWW3PY/IFDy12tG2N7Q9VE/at6CLYPStWyophiGgbilsLCjfg\r\n9sQaPYyieZcB+ZpZKOzMhaKPylIdkcAIN8W021PkU0ryBOCmsDj+LZsc9SXc\r\nZAKRlmwxqYboJcIRhQok5V+aJiY8Dlby8D/Jvvun7IHZT9RwfPCd6xQdpUvf\r\nu8r3g10b+8j/8MoGgvPOXBR/eoNmqZ2+JdLvQ2RxzLEq0KE6co+5UEgvxZz6\r\noujLWIWuKje6iG4aCbRDx6z60qLIGS3fH6zj0bsGPw+vhCP06f/q35Yjs2zN\r\nrISchSh+g+45Eoc9V/PcUOc1tNLZi4vTIlmPcU8PcuIpvfM1aY7Q1Gvsysc1\r\nlnZ33Et12hRKe1U/PfNuVoolC9sA3E5PBCIIZJScW5eqnhQ8IS5UdS16aeeA\r\nqLc7LkfNGb7hOsUQt3gXXTK48cB0nPmG/lA=\r\n=0v5Q\r\n-----END PGP SIGNATURE-----\r\n","size":21292},"_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-icons_0.16.1_1680081291530_0.24517921973953682"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-03-29T09:14:51.678Z","publish_time":1680081291678},"0.16.2":{"name":"unplugin-icons","version":"0.16.2","packageManager":"pnpm@8.6.0","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-icons","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"exports":{".":{"types":"./dist/index.d.ts","require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./esbuild":{"types":"./dist/esbuild.d.ts","require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"},"./loaders":{"types":"./dist/loaders.d.ts","require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"types":"./dist/nuxt.d.ts","require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"types":"./dist/resolver.d.ts","require":"./dist/resolver.js","import":"./dist/resolver.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"},"./types/astro":{"types":"./types/astro.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./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"}},"main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"scripts":{"build":"esno scripts/prebuild.ts && tsup && esno scripts/postbuild.ts","dev":"esno scripts/prebuild.ts && tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","prepublishOnly":"npm run build","release":"bumpp && npm publish","test":"vitest"},"peerDependencies":{"@svgr/core":">=7.0.0","@vue/compiler-sfc":"^3.0.2 || ^2.7.0","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.1.1","@antfu/utils":"^0.7.4","@iconify/utils":"^2.1.5","debug":"^4.3.4","kolorist":"^1.8.0","local-pkg":"^0.4.3","unplugin":"^1.3.1"},"devDependencies":{"@antfu/eslint-config":"^0.39.4","@iconify/json":"^2.2.72","@iconify/types":"^2.0.0","@svgr/core":"^8.0.0","@svgr/plugin-jsx":"^8.0.1","@svgx/core":"^1.0.1","@types/debug":"^4.1.8","@types/node":"^18.16.16","@vue/compiler-sfc":"^3.3.4","bumpp":"^9.1.0","cross-env":"^7.0.3","eslint":"^8.41.0","esno":"^0.16.3","rollup":"^3.23.0","tsup":"^6.7.0","typescript":"^5.0.4","vite":"^4.2.3","vitest":"^0.31.4"},"gitHead":"e942e537e5bef69b4ee477c5c2474852b87bf1ee","_id":"unplugin-icons@0.16.2","_nodeVersion":"18.13.0","_npmVersion":"8.19.3","dist":{"integrity":"sha512-CwQS1/deta/I1GwVhcdrJBp0+Qf/XWPLoMMbuVA9ZWhdOhKF7A38zvfE2JnC99t64WfZM44ikdSKPZJzXFL3iw==","shasum":"579f1fc7f4b821854c464b7fde054fbf9d805a67","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.16.2.tgz","fileCount":47,"unpackedSize":74138,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBD327jNBtbz+uAOMAdH6IXkt8hEuoElDlr92Gx6MvgwAiEAiSPQcT8aYXIprK2J1LnoBL/FSz1Ms4HepTi4DN0VlX4="}],"size":21409},"_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-icons_0.16.2_1685631314769_0.5801020434617927"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-06-01T14:55:14.927Z","publish_time":1685631314927,"_source_registry_name":"default"},"0.16.3":{"name":"unplugin-icons","version":"0.16.3","packageManager":"pnpm@8.6.1","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-icons","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"exports":{".":{"types":"./dist/index.d.ts","require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./esbuild":{"types":"./dist/esbuild.d.ts","require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"},"./loaders":{"types":"./dist/loaders.d.ts","require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"types":"./dist/nuxt.d.ts","require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"types":"./dist/resolver.d.ts","require":"./dist/resolver.js","import":"./dist/resolver.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"},"./types/astro":{"types":"./types/astro.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./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"}},"main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"scripts":{"build":"esno scripts/prebuild.ts && tsup && esno scripts/postbuild.ts","dev":"esno scripts/prebuild.ts && tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","prepublishOnly":"npm run build","release":"bumpp && npm publish","test":"vitest"},"peerDependencies":{"@svgr/core":">=7.0.0","@vue/compiler-sfc":"^3.0.2 || ^2.7.0","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.1.1","@antfu/utils":"^0.7.4","@iconify/utils":"^2.1.6","debug":"^4.3.4","kolorist":"^1.8.0","local-pkg":"^0.4.3","unplugin":"^1.3.1"},"devDependencies":{"@antfu/eslint-config":"^0.39.5","@iconify/json":"^2.2.75","@iconify/types":"^2.0.0","@svgr/core":"^8.0.0","@svgr/plugin-jsx":"^8.0.1","@svgx/core":"^1.0.1","@types/debug":"^4.1.8","@types/node":"^18.16.16","@vue/compiler-sfc":"^3.3.4","bumpp":"^9.1.1","cross-env":"^7.0.3","eslint":"^8.42.0","esno":"^0.16.3","rollup":"^3.24.0","tsup":"^6.7.0","typescript":"^5.1.3","vite":"^4.3.9","vitest":"^0.32.0"},"gitHead":"25848d605c1cd887ed3840d97a682719cb8f6d4d","_id":"unplugin-icons@0.16.3","_nodeVersion":"18.13.0","_npmVersion":"8.19.3","dist":{"integrity":"sha512-hivVVr6++WHSj6Iz+rjTa14/ALMYT+PFd2sPtTBKlQR3cdzui1VwM72TzSu94NkDm/KVncvOIiBwoHwUPeL9bg==","shasum":"2c8e5bedcb89309970eb8a3c09f051dcc3d06cf0","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.16.3.tgz","fileCount":47,"unpackedSize":75106,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGqGDUrOxIAcDWjUUr85bApmrItiXCNaduQrKKU1C3ZJAiEAoM1bvleo+qkfYDk7Yt2DSW6eCp8ZLjyQWEkJmQ36Fso="}],"size":21648},"_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-icons_0.16.3_1686152949342_0.4483246087033943"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-06-07T15:49:09.551Z","publish_time":1686152949551,"_source_registry_name":"default"},"0.16.4":{"name":"unplugin-icons","version":"0.16.4","type":"module","packageManager":"pnpm@8.6.7","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-icons","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"exports":{".":{"types":"./dist/index.d.ts","require":"./dist/index.js","import":"./dist/index.mjs"},"./*":"./*","./esbuild":{"types":"./dist/esbuild.d.ts","require":"./dist/esbuild.js","import":"./dist/esbuild.mjs"},"./loaders":{"types":"./dist/loaders.d.ts","require":"./dist/loaders.js","import":"./dist/loaders.mjs"},"./nuxt":{"types":"./dist/nuxt.d.ts","require":"./dist/nuxt.js","import":"./dist/nuxt.mjs"},"./resolver":{"types":"./dist/resolver.d.ts","require":"./dist/resolver.js","import":"./dist/resolver.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"},"./types/astro":{"types":"./types/astro.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./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"}},"main":"dist/index.js","module":"dist/index.mjs","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"scripts":{"build":"esno scripts/prebuild.ts && tsup && esno scripts/postbuild.ts","dev":"esno scripts/prebuild.ts && tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","prepublishOnly":"npm run build","release":"bumpp && npm publish","test":"vitest"},"peerDependencies":{"@svgr/core":">=7.0.0","@svgx/core":"^1.0.1","@vue/compiler-sfc":"^3.0.2 || ^2.7.0","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@svgx/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.1.1","@antfu/utils":"^0.7.5","@iconify/utils":"^2.1.7","debug":"^4.3.4","kolorist":"^1.8.0","local-pkg":"^0.4.3","unplugin":"^1.3.2"},"devDependencies":{"@antfu/eslint-config":"^0.39.7","@iconify/json":"^2.2.89","@iconify/types":"^2.0.0","@svgr/core":"^8.0.0","@svgr/plugin-jsx":"^8.0.1","@svgx/core":"^1.0.1","@types/debug":"^4.1.8","@types/node":"^20.4.1","@vue/compiler-sfc":"^3.3.4","bumpp":"^9.1.1","cross-env":"^7.0.3","eslint":"^8.44.0","esno":"^0.16.3","fast-glob":"^3.3.0","rollup":"^3.26.2","tsup":"^7.1.0","typescript":"^5.1.6","vite":"^4.4.3","vitest":"^0.33.0"},"gitHead":"b88b49890ca79219c32219d5abdb686423714976","_id":"unplugin-icons@0.16.4","_nodeVersion":"20.4.0","_npmVersion":"9.7.2","dist":{"integrity":"sha512-EFxIA1uTv+Ml/SMvhuv2J5In8s8PsXE12a0e57qaowaxM+whGJ4xeaeQWMsdwtOlwwPHlP+Om3Di3a0dkgJn6w==","shasum":"370594248b76fb8e488d0cd25a391ab2f54c698d","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.16.4.tgz","fileCount":56,"unpackedSize":80957,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCFsFlj3JzzVAUjN8aBM542E+TcNs+z0qBfMzzbzxHXZgIhAMgmW7nRgZ5aJ/3thFyTYGnwEdz2PW2DgpGtRWqucOzr"}],"size":23221},"_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-icons_0.16.4_1689157034150_0.8686856586318816"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-07-12T10:17:14.548Z","publish_time":1689157034548,"_source_registry_name":"default"},"0.16.5":{"name":"unplugin-icons","version":"0.16.5","type":"module","packageManager":"pnpm@8.6.7","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-icons","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"exports":{".":{"types":"./dist/index.d.ts","require":"./dist/index.cjs","import":"./dist/index.mjs"},"./*":"./*","./esbuild":{"types":"./dist/esbuild.d.ts","require":"./dist/esbuild.cjs","import":"./dist/esbuild.mjs"},"./loaders":{"types":"./dist/loaders.d.ts","require":"./dist/loaders.cjs","import":"./dist/loaders.mjs"},"./nuxt":{"types":"./dist/nuxt.d.ts","require":"./dist/nuxt.cjs","import":"./dist/nuxt.mjs"},"./resolver":{"types":"./dist/resolver.d.ts","require":"./dist/resolver.cjs","import":"./dist/resolver.mjs"},"./rollup":{"types":"./dist/rollup.d.ts","require":"./dist/rollup.cjs","import":"./dist/rollup.mjs"},"./types":{"types":"./dist/types.d.ts","require":"./dist/types.cjs","import":"./dist/types.mjs"},"./types/astro":{"types":"./types/astro.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./vite":{"types":"./dist/vite.d.ts","require":"./dist/vite.cjs","import":"./dist/vite.mjs"},"./webpack":{"types":"./dist/webpack.d.ts","require":"./dist/webpack.cjs","import":"./dist/webpack.mjs"}},"main":"dist/index.cjs","module":"dist/index.mjs","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"scripts":{"build":"esno scripts/prebuild.ts && tsup && esno scripts/postbuild.ts","dev":"esno scripts/prebuild.ts && tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","prepublishOnly":"npm run build","release":"bumpp && npm publish","test":"vitest"},"peerDependencies":{"@svgr/core":">=7.0.0","@svgx/core":"^1.0.1","@vue/compiler-sfc":"^3.0.2 || ^2.7.0","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@svgx/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.1.1","@antfu/utils":"^0.7.5","@iconify/utils":"^2.1.7","debug":"^4.3.4","kolorist":"^1.8.0","local-pkg":"^0.4.3","unplugin":"^1.3.2"},"devDependencies":{"@antfu/eslint-config":"^0.39.7","@iconify/json":"^2.2.89","@iconify/types":"^2.0.0","@svgr/core":"^8.0.0","@svgr/plugin-jsx":"^8.0.1","@svgx/core":"^1.0.1","@types/debug":"^4.1.8","@types/node":"^20.4.1","@vue/compiler-sfc":"^3.3.4","bumpp":"^9.1.1","cross-env":"^7.0.3","eslint":"^8.44.0","esno":"^0.16.3","fast-glob":"^3.3.0","rollup":"^3.26.2","tsup":"^7.1.0","typescript":"^5.1.6","vite":"^4.4.3","vitest":"^0.33.0"},"gitHead":"141bc2f50cbbb2991cd4c72829e2f7424e220f1e","_id":"unplugin-icons@0.16.5","_nodeVersion":"20.4.0","_npmVersion":"9.7.2","dist":{"integrity":"sha512-laCCqMWfng1XZgB9yowGfjBdDhtmz8t8zVnhzRNEMhBNdy26QrVewVmdXk/zsiAQYnEWvIxTjvW1nQXrxdd2+w==","shasum":"1f84bc1ee0b8dabfe2728bb9e01fbc3491fe9d70","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.16.5.tgz","fileCount":56,"unpackedSize":80983,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDy6KEBnVp03dIJ8j1D7CkRwFMuquxIHZora5S9ONvEeQIgIfed72T67AF22/Jzkq5qA0eWlgqPaGeBJHRayvf6zO0="}],"size":23316},"_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-icons_0.16.5_1689163593376_0.9077536352664015"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-07-12T12:06:33.604Z","publish_time":1689163593604,"_source_registry_name":"default"},"0.16.6":{"name":"unplugin-icons","type":"module","version":"0.16.6","packageManager":"pnpm@8.7.0","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-icons","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"exports":{".":{"types":"./dist/index.d.ts","import":"./dist/index.mjs","require":"./dist/index.cjs"},"./*":"./*","./esbuild":{"types":"./dist/esbuild.d.ts","import":"./dist/esbuild.mjs","require":"./dist/esbuild.cjs"},"./loaders":{"types":"./dist/loaders.d.ts","import":"./dist/loaders.mjs","require":"./dist/loaders.cjs"},"./nuxt":{"types":"./dist/nuxt.d.ts","import":"./dist/nuxt.mjs","require":"./dist/nuxt.cjs"},"./resolver":{"types":"./dist/resolver.d.ts","import":"./dist/resolver.mjs","require":"./dist/resolver.cjs"},"./rollup":{"types":"./dist/rollup.d.ts","import":"./dist/rollup.mjs","require":"./dist/rollup.cjs"},"./types":{"types":"./dist/types.d.ts","import":"./dist/types.mjs","require":"./dist/types.cjs"},"./types/astro":{"types":"./types/astro.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./vite":{"types":"./dist/vite.d.ts","import":"./dist/vite.mjs","require":"./dist/vite.cjs"},"./webpack":{"types":"./dist/webpack.d.ts","import":"./dist/webpack.mjs","require":"./dist/webpack.cjs"}},"main":"dist/index.cjs","module":"dist/index.mjs","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"scripts":{"build":"esno scripts/prebuild.ts && tsup && esno scripts/postbuild.ts","dev":"esno scripts/prebuild.ts && tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","prepublishOnly":"npm run build","release":"bumpp && npm publish","test":"vitest","typecheck":"tsc --noEmit"},"peerDependencies":{"@svgr/core":">=7.0.0","@svgx/core":"^1.0.1","@vue/compiler-sfc":"^3.0.2 || ^2.7.0","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@svgx/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.1.1","@antfu/utils":"^0.7.6","@iconify/utils":"^2.1.9","debug":"^4.3.4","kolorist":"^1.8.0","local-pkg":"^0.4.3","unplugin":"^1.4.0"},"devDependencies":{"@antfu/eslint-config":"^0.41.0","@iconify/json":"^2.2.106","@iconify/types":"^2.0.0","@svgr/core":"^8.1.0","@svgr/plugin-jsx":"^8.1.0","@svgx/core":"^1.0.1","@types/debug":"^4.1.8","@types/node":"^20.5.7","@vue/compiler-sfc":"^3.3.4","bumpp":"^9.2.0","cross-env":"^7.0.3","eslint":"^8.48.0","esno":"^0.17.0","fast-glob":"^3.3.1","rollup":"^3.28.1","tsup":"^7.2.0","typescript":"^5.2.2","vite":"^4.4.9","vitest":"^0.34.3"},"gitHead":"0c41018ced5f1c94857f36fcb55f91437879e4cd","_id":"unplugin-icons@0.16.6","_nodeVersion":"20.4.0","_npmVersion":"9.7.2","dist":{"integrity":"sha512-jL70sAC7twp4hI/MTfm+vyvTRtHqiEIzf3XOjJz7yzhMEEQnk5Ey5YIXRAU03Mc4BF99ITvvnBzfyRZee86OeA==","shasum":"dd16bdac740408600bdc483a8d95320074d79fe9","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.16.6.tgz","fileCount":56,"unpackedSize":81114,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCIsHVsoK7b2CRFF1ftJCm2JpDKDmRech2kS6zDQaqmXAIgHClknWys6yqZdSt3/zx6WmaYJXajOtRQkljrE89UQ/o="}],"size":23380},"_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-icons_0.16.6_1693193257931_0.8753135135691952"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-08-28T03:27:38.175Z","publish_time":1693193258175,"_source_registry_name":"default"},"0.17.0":{"name":"unplugin-icons","type":"module","version":"0.17.0","packageManager":"pnpm@8.7.1","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-icons","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"exports":{".":{"types":"./dist/index.d.ts","import":"./dist/index.mjs","require":"./dist/index.cjs"},"./*":"./*","./esbuild":{"types":"./dist/esbuild.d.ts","import":"./dist/esbuild.mjs","require":"./dist/esbuild.cjs"},"./loaders":{"types":"./dist/loaders.d.ts","import":"./dist/loaders.mjs","require":"./dist/loaders.cjs"},"./nuxt":{"types":"./dist/nuxt.d.ts","import":"./dist/nuxt.mjs","require":"./dist/nuxt.cjs"},"./resolver":{"types":"./dist/resolver.d.ts","import":"./dist/resolver.mjs","require":"./dist/resolver.cjs"},"./rollup":{"types":"./dist/rollup.d.ts","import":"./dist/rollup.mjs","require":"./dist/rollup.cjs"},"./types":{"types":"./dist/types.d.ts","import":"./dist/types.mjs","require":"./dist/types.cjs"},"./types/astro":{"types":"./types/astro.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/svelte3":{"types":"./types/svelte3.d.ts"},"./types/svelte4":{"types":"./types/svelte4.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./vite":{"types":"./dist/vite.d.ts","import":"./dist/vite.mjs","require":"./dist/vite.cjs"},"./webpack":{"types":"./dist/webpack.d.ts","import":"./dist/webpack.mjs","require":"./dist/webpack.cjs"}},"main":"dist/index.cjs","module":"dist/index.mjs","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"scripts":{"build":"esno scripts/prebuild.ts && tsup && esno scripts/postbuild.ts","dev":"esno scripts/prebuild.ts && tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","prepublishOnly":"npm run build","release":"bumpp && npm publish","test":"vitest","typecheck":"tsc --noEmit"},"peerDependencies":{"@svgr/core":">=7.0.0","@svgx/core":"^1.0.1","@vue/compiler-sfc":"^3.0.2 || ^2.7.0","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@svgx/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.1.1","@antfu/utils":"^0.7.6","@iconify/utils":"^2.1.9","debug":"^4.3.4","kolorist":"^1.8.0","local-pkg":"^0.4.3","unplugin":"^1.4.0"},"devDependencies":{"@antfu/eslint-config":"^0.41.0","@iconify/json":"^2.2.110","@iconify/types":"^2.0.0","@svgr/core":"^8.1.0","@svgr/plugin-jsx":"^8.1.0","@svgx/core":"^1.0.1","@types/debug":"^4.1.8","@types/node":"^20.5.9","@vue/compiler-sfc":"^3.3.4","bumpp":"^9.2.0","cross-env":"^7.0.3","eslint":"^8.48.0","esno":"^0.17.0","fast-glob":"^3.3.1","rollup":"^3.28.1","tsup":"^7.2.0","typescript":"^5.2.2","vite":"^4.4.9","vitest":"^0.34.3"},"gitHead":"4c1c6746c08c5eb33110f761b769067eb56c0049","_id":"unplugin-icons@0.17.0","_nodeVersion":"20.4.0","_npmVersion":"9.7.2","dist":{"integrity":"sha512-gMv66eY/Hj64heM55XrfDH3LUCWI51mtkBVUPVl9VkpvLgAYhdVe9nRuzu6p+idmCLSQVq7xiPxQcD4aXCgW5A==","shasum":"790d47fe8c7704ea265bc0bb9837853128b9791c","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.17.0.tgz","fileCount":58,"unpackedSize":81919,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD43cczYL2kduQP7FQJd8H+50pvg9q1zF1sEW5A6xglZAIgKpHYdjJhu3KDw4khGJBle4ARc2nH+1rbUy2HuXhgg5o="}],"size":23526},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"hannoeru","email":"me@hanlee.co"},{"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-icons_0.17.0_1693688680799_0.6422627545620376"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-09-02T21:04:40.989Z","publish_time":1693688680989,"_source_registry_name":"default"},"0.17.1":{"name":"unplugin-icons","type":"module","version":"0.17.1","packageManager":"pnpm@8.9.2","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-icons","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"exports":{".":{"types":"./dist/index.d.ts","import":"./dist/index.mjs","require":"./dist/index.cjs"},"./*":"./*","./esbuild":{"types":"./dist/esbuild.d.ts","import":"./dist/esbuild.mjs","require":"./dist/esbuild.cjs"},"./loaders":{"types":"./dist/loaders.d.ts","import":"./dist/loaders.mjs","require":"./dist/loaders.cjs"},"./nuxt":{"types":"./dist/nuxt.d.ts","import":"./dist/nuxt.mjs","require":"./dist/nuxt.cjs"},"./resolver":{"types":"./dist/resolver.d.ts","import":"./dist/resolver.mjs","require":"./dist/resolver.cjs"},"./rollup":{"types":"./dist/rollup.d.ts","import":"./dist/rollup.mjs","require":"./dist/rollup.cjs"},"./types":{"types":"./dist/types.d.ts","import":"./dist/types.mjs","require":"./dist/types.cjs"},"./types/astro":{"types":"./types/astro.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/svelte3":{"types":"./types/svelte3.d.ts"},"./types/svelte4":{"types":"./types/svelte4.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./vite":{"types":"./dist/vite.d.ts","import":"./dist/vite.mjs","require":"./dist/vite.cjs"},"./webpack":{"types":"./dist/webpack.d.ts","import":"./dist/webpack.mjs","require":"./dist/webpack.cjs"}},"main":"dist/index.cjs","module":"dist/index.mjs","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"scripts":{"build":"esno scripts/prebuild.ts && tsup && esno scripts/postbuild.ts","dev":"esno scripts/prebuild.ts && tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","prepublishOnly":"npm run build","release":"bumpp && npm publish","test":"vitest","typecheck":"tsc --noEmit"},"peerDependencies":{"@svgr/core":">=7.0.0","@svgx/core":"^1.0.1","@vue/compiler-sfc":"^3.0.2 || ^2.7.0","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@svgx/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.1.1","@antfu/utils":"^0.7.6","@iconify/utils":"^2.1.11","debug":"^4.3.4","kolorist":"^1.8.0","local-pkg":"^0.5.0","unplugin":"^1.5.0"},"devDependencies":{"@antfu/eslint-config":"1.0.0-beta.27","@iconify/json":"^2.2.130","@iconify/types":"^2.0.0","@svgr/core":"^8.1.0","@svgr/plugin-jsx":"^8.1.0","@svgx/core":"^1.0.1","@types/debug":"^4.1.10","@types/node":"^20.8.7","@vue/compiler-sfc":"^3.3.4","bumpp":"^9.2.0","cross-env":"^7.0.3","eslint":"^8.51.0","esno":"^0.17.0","fast-glob":"^3.3.1","rollup":"^3.29.4","tsup":"^7.2.0","typescript":"^5.2.2","vite":"^4.5.0","vitest":"1.0.0-beta.2"},"gitHead":"64e7dc6a8dbec4b6e82430d942cf0e8487aa24fd","_id":"unplugin-icons@0.17.1","_nodeVersion":"20.4.0","_npmVersion":"9.7.2","dist":{"integrity":"sha512-KsWejBPCHokYCNDQUzGu6R3E3XDYH/YpewgQwrVBXgpl1iR0RdW1NEGNdjlbuapwVnZXVgA5eiDTfNaQCawSdg==","shasum":"3b5aa66adad805e8cdc6cb229dff585ba7984f23","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.17.1.tgz","fileCount":58,"unpackedSize":84390,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCEX5aI8D4QcBFsiCSk3EjGVoQBY2lUhSoFPPCra8eWAQIhAOs8YQ6jeMUyT9EdktKK+BMnV18WgXl1g+PR5ZGgiX0y"}],"size":23850},"_npmUser":{"name":"antfu","email":"anthonyfu117@hotmail.com"},"directories":{},"maintainers":[{"name":"hannoeru","email":"me@hanlee.co"},{"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-icons_0.17.1_1697721095420_0.2969360615499559"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-10-19T13:11:35.708Z","publish_time":1697721095708,"_source_registry_name":"default"},"0.17.3":{"name":"unplugin-icons","type":"module","version":"0.17.3","packageManager":"pnpm@8.9.2","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/antfu/unplugin-icons","repository":{"type":"git","url":"git+https://github.com/antfu/unplugin-icons.git"},"bugs":{"url":"https://github.com/antfu/unplugin-icons/issues"},"exports":{".":{"types":"./dist/index.d.ts","import":"./dist/index.mjs","require":"./dist/index.cjs"},"./*":"./*","./esbuild":{"types":"./dist/esbuild.d.ts","import":"./dist/esbuild.mjs","require":"./dist/esbuild.cjs"},"./loaders":{"types":"./dist/loaders.d.ts","import":"./dist/loaders.mjs","require":"./dist/loaders.cjs"},"./nuxt":{"types":"./dist/nuxt.d.ts","import":"./dist/nuxt.mjs","require":"./dist/nuxt.cjs"},"./resolver":{"types":"./dist/resolver.d.ts","import":"./dist/resolver.mjs","require":"./dist/resolver.cjs"},"./rollup":{"types":"./dist/rollup.d.ts","import":"./dist/rollup.mjs","require":"./dist/rollup.cjs"},"./types":{"types":"./dist/types.d.ts","import":"./dist/types.mjs","require":"./dist/types.cjs"},"./types/astro":{"types":"./types/astro.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/svelte3":{"types":"./types/svelte3.d.ts"},"./types/svelte4":{"types":"./types/svelte4.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./vite":{"types":"./dist/vite.d.ts","import":"./dist/vite.mjs","require":"./dist/vite.cjs"},"./webpack":{"types":"./dist/webpack.d.ts","import":"./dist/webpack.mjs","require":"./dist/webpack.cjs"}},"main":"dist/index.cjs","module":"dist/index.mjs","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"scripts":{"build":"esno scripts/prebuild.ts && tsup && esno scripts/postbuild.ts","dev":"esno scripts/prebuild.ts && tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","prepublishOnly":"npm run build","release":"bumpp && npm publish","test":"vitest","typecheck":"tsc --noEmit"},"peerDependencies":{"@svgr/core":">=7.0.0","@svgx/core":"^1.0.1","@vue/compiler-sfc":"^3.0.2 || ^2.7.0","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@svgx/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.1.1","@antfu/utils":"^0.7.6","@iconify/utils":"^2.1.11","debug":"^4.3.4","kolorist":"^1.8.0","local-pkg":"^0.5.0","unplugin":"^1.5.0"},"devDependencies":{"@antfu/eslint-config":"1.0.0-beta.27","@iconify/json":"^2.2.130","@iconify/types":"^2.0.0","@svgr/core":"^8.1.0","@svgr/plugin-jsx":"^8.1.0","@svgx/core":"^1.0.1","@types/debug":"^4.1.10","@types/node":"^20.8.7","@vue/compiler-sfc":"^3.3.4","bumpp":"^9.2.0","cross-env":"^7.0.3","eslint":"^8.51.0","esno":"^0.17.0","fast-glob":"^3.3.1","rollup":"^3.29.4","tsup":"^7.2.0","typescript":"^5.2.2","vite":"^4.5.0","vitest":"1.0.0-beta.2"},"gitHead":"86b820033871a6d47be0060ba6c6e2f925e05261","_id":"unplugin-icons@0.17.3","_nodeVersion":"18.16.0","_npmVersion":"9.5.1","dist":{"integrity":"sha512-uvopA4I6QYWYpwAyRvG/4NNvR1Cd4GnF/mtOkybgP2YPkHjRX02l/ALm20VUla31Jt9eZHxHyODtNf/Upx5uaw==","shasum":"61ec97a397b302b98d0a3d8bb65bb4c615712da4","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.17.3.tgz","fileCount":58,"unpackedSize":85295,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDPIqqCOo5fscbJ20oqzZ5JOoxDHzDGjI7hGoRG9DGgeAIhAI1soK8GgLclEd5Y3zjenbuNQmLjxQH2r7qA1qvlWijc"}],"size":23953},"_npmUser":{"name":"userquin","email":"userquin@gmail.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-icons_0.17.3_1698938301399_0.3191580664237945"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-11-02T15:18:21.557Z","publish_time":1698938301557,"_source_registry_name":"default"},"0.17.4":{"name":"unplugin-icons","type":"module","version":"0.17.4","packageManager":"pnpm@8.10.3","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-icons#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-icons.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-icons/issues"},"exports":{".":{"types":"./dist/index.d.ts","import":"./dist/index.mjs","require":"./dist/index.cjs"},"./*":"./*","./esbuild":{"types":"./dist/esbuild.d.ts","import":"./dist/esbuild.mjs","require":"./dist/esbuild.cjs"},"./loaders":{"types":"./dist/loaders.d.ts","import":"./dist/loaders.mjs","require":"./dist/loaders.cjs"},"./nuxt":{"types":"./dist/nuxt.d.ts","import":"./dist/nuxt.mjs","require":"./dist/nuxt.cjs"},"./resolver":{"types":"./dist/resolver.d.ts","import":"./dist/resolver.mjs","require":"./dist/resolver.cjs"},"./rollup":{"types":"./dist/rollup.d.ts","import":"./dist/rollup.mjs","require":"./dist/rollup.cjs"},"./types":{"types":"./dist/types.d.ts","import":"./dist/types.mjs","require":"./dist/types.cjs"},"./types/astro":{"types":"./types/astro.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/svelte3":{"types":"./types/svelte3.d.ts"},"./types/svelte4":{"types":"./types/svelte4.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./vite":{"types":"./dist/vite.d.ts","import":"./dist/vite.mjs","require":"./dist/vite.cjs"},"./webpack":{"types":"./dist/webpack.d.ts","import":"./dist/webpack.mjs","require":"./dist/webpack.cjs"}},"main":"dist/index.cjs","module":"dist/index.mjs","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"scripts":{"build":"esno scripts/prebuild.ts && tsup && esno scripts/postbuild.ts","dev":"esno scripts/prebuild.ts && tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","prepublishOnly":"npm run build","release":"bumpp && npm publish","test":"vitest","typecheck":"tsc --noEmit"},"peerDependencies":{"@svgr/core":">=7.0.0","@svgx/core":"^1.0.1","@vue/compiler-sfc":"^3.0.2 || ^2.7.0","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@svgx/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.1.1","@antfu/utils":"^0.7.6","@iconify/utils":"^2.1.11","debug":"^4.3.4","kolorist":"^1.8.0","local-pkg":"^0.5.0","unplugin":"^1.5.0"},"devDependencies":{"@antfu/eslint-config":"1.0.0-beta.27","@iconify/json":"^2.2.141","@iconify/types":"^2.0.0","@svgr/core":"^8.1.0","@svgr/plugin-jsx":"^8.1.0","@svgx/core":"^1.0.1","@types/debug":"^4.1.12","@types/node":"^20.9.0","@vue/compiler-sfc":"^3.3.8","bumpp":"^9.2.0","cross-env":"^7.0.3","eslint":"^8.53.0","esno":"^4.0.0","fast-glob":"^3.3.2","rollup":"^4.4.0","tsup":"^7.2.0","typescript":"^5.2.2","vite":"^4.5.0","vitest":"1.0.0-beta.2"},"gitHead":"ee566aae5de3d7ef5c93c52420174dd3d9b2c7b6","_id":"unplugin-icons@0.17.4","_nodeVersion":"20.4.0","_npmVersion":"9.7.2","dist":{"integrity":"sha512-PHLxjBx3ZV8RUBvfMafFl8uWH88jHeZgOijcRpkwgne7y2Ovx7WI0Ltzzw3fjZQ7dGaDhB8udyKVdm9N2S6BIw==","shasum":"a05268d44a22703876f953c26107af3cfa04a936","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.17.4.tgz","fileCount":58,"unpackedSize":84951,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC9knn7Lcnb0Z+krKZb105nb7O8TNurVTP3I2qBjww0IgIhAOxCSVOh3yPsKG1hjFLm1I5Ri9x4HeqPhrduHJdBSAxi"}],"size":24128},"_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-icons_0.17.4_1699869392044_0.0839367243262168"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-11-13T09:56:32.178Z","publish_time":1699869392178,"_source_registry_name":"default"},"0.18.0":{"name":"unplugin-icons","type":"module","version":"0.18.0","packageManager":"pnpm@8.11.0","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-icons#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-icons.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-icons/issues"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"require":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"}},"./*":"./*","./esbuild":{"import":{"types":"./dist/esbuild.d.ts","default":"./dist/esbuild.js"},"require":{"types":"./dist/esbuild.d.cts","default":"./dist/esbuild.cjs"}},"./loaders":{"import":{"types":"./dist/loaders.d.ts","default":"./dist/loaders.js"},"require":{"types":"./dist/loaders.d.cts","default":"./dist/loaders.cjs"}},"./nuxt":{"import":{"types":"./dist/nuxt.d.ts","default":"./dist/nuxt.js"},"require":{"types":"./dist/nuxt.d.cts","default":"./dist/nuxt.cjs"}},"./resolver":{"import":{"types":"./dist/resolver.d.ts","default":"./dist/resolver.js"},"require":{"types":"./dist/resolver.d.cts","default":"./dist/resolver.cjs"}},"./rollup":{"import":{"types":"./dist/rollup.d.ts","default":"./dist/rollup.js"},"require":{"types":"./dist/rollup.d.cts","default":"./dist/rollup.cjs"}},"./types":{"import":{"types":"./dist/types.d.ts","default":"./dist/types.js"},"require":{"types":"./dist/types.d.cts","default":"./dist/types.cjs"}},"./types/astro":{"types":"./types/astro.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/svelte3":{"types":"./types/svelte3.d.ts"},"./types/svelte4":{"types":"./types/svelte4.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./vite":{"import":{"types":"./dist/vite.d.ts","default":"./dist/vite.js"},"require":{"types":"./dist/vite.d.cts","default":"./dist/vite.cjs"}},"./webpack":{"import":{"types":"./dist/webpack.d.ts","default":"./dist/webpack.js"},"require":{"types":"./dist/webpack.d.cts","default":"./dist/webpack.cjs"}}},"main":"dist/index.cjs","module":"dist/index.js","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"peerDependencies":{"@svgr/core":">=7.0.0","@svgx/core":"^1.0.1","@vue/compiler-sfc":"^3.0.2 || ^2.7.0","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@svgx/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.3.0","@antfu/utils":"^0.7.6","@iconify/utils":"^2.1.12","debug":"^4.3.4","kolorist":"^1.8.0","local-pkg":"^0.5.0","unplugin":"^1.5.1"},"devDependencies":{"@antfu/eslint-config":"^2.1.1","@iconify/json":"^2.2.149","@iconify/types":"^2.0.0","@svgr/core":"^8.1.0","@svgr/plugin-jsx":"^8.1.0","@svgx/core":"^1.0.1","@types/debug":"^4.1.12","@types/node":"^20.10.0","@vue/compiler-sfc":"^3.3.9","bumpp":"^9.2.0","cross-env":"^7.0.3","eslint":"^8.54.0","esno":"^4.0.0","fast-glob":"^3.3.2","publint":"^0.2.5","rollup":"^4.6.0","tsup":"^8.0.1","typescript":"^5.3.2","vite":"^5.0.4","vitest":"1.0.0-beta.2"},"scripts":{"build":"esno scripts/prebuild.ts && tsup","dev":"esno scripts/prebuild.ts && tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","release":"bumpp && npm publish","test":"vitest","typecheck":"tsc --noEmit"},"_id":"unplugin-icons@0.18.0","_integrity":"sha512-/HEkomWitqf8QLY8FgUqNNjuM24kw+FS7YRGxHa5XyamboW+HnbvLU5ztIBOYY5rtBO1+cHPntzBsln2nX3f+A==","_resolved":"/private/var/folders/30/nymxcyb909ggq2j5lwn7b_600000gn/T/6a9769e3cb5beb92654fe6d1b3526429/unplugin-icons-0.18.0.tgz","_from":"file:unplugin-icons-0.18.0.tgz","_nodeVersion":"20.4.0","_npmVersion":"9.7.2","dist":{"integrity":"sha512-/HEkomWitqf8QLY8FgUqNNjuM24kw+FS7YRGxHa5XyamboW+HnbvLU5ztIBOYY5rtBO1+cHPntzBsln2nX3f+A==","shasum":"6f61a4d2af24cb2c6066d7470799be3f9074dcf5","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.18.0.tgz","fileCount":58,"unpackedSize":85617,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEACFazVJ1z/04KOtuB+wgLNQP3TMqjmE+kOSXjWeRRrAiEAitlVYshuaHS+4SHKXEUhOzzg5MuXfyDvrSEd3+68MZ8="}],"size":24320},"_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-icons_0.18.0_1701261428239_0.9899040417664582"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-11-29T12:37:08.569Z","publish_time":1701261428569,"_source_registry_name":"default"},"0.18.1":{"name":"unplugin-icons","type":"module","version":"0.18.1","packageManager":"pnpm@8.11.0","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-icons#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-icons.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-icons/issues"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"require":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"}},"./*":"./*","./esbuild":{"import":{"types":"./dist/esbuild.d.ts","default":"./dist/esbuild.js"},"require":{"types":"./dist/esbuild.d.cts","default":"./dist/esbuild.cjs"}},"./loaders":{"import":{"types":"./dist/loaders.d.ts","default":"./dist/loaders.js"},"require":{"types":"./dist/loaders.d.cts","default":"./dist/loaders.cjs"}},"./nuxt":{"import":{"types":"./dist/nuxt.d.ts","default":"./dist/nuxt.js"},"require":{"types":"./dist/nuxt.d.cts","default":"./dist/nuxt.cjs"}},"./resolver":{"import":{"types":"./dist/resolver.d.ts","default":"./dist/resolver.js"},"require":{"types":"./dist/resolver.d.cts","default":"./dist/resolver.cjs"}},"./rollup":{"import":{"types":"./dist/rollup.d.ts","default":"./dist/rollup.js"},"require":{"types":"./dist/rollup.d.cts","default":"./dist/rollup.cjs"}},"./types":{"import":{"types":"./dist/types.d.ts","default":"./dist/types.js"},"require":{"types":"./dist/types.d.cts","default":"./dist/types.cjs"}},"./types/astro":{"types":"./types/astro.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/svelte3":{"types":"./types/svelte3.d.ts"},"./types/svelte4":{"types":"./types/svelte4.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./vite":{"import":{"types":"./dist/vite.d.ts","default":"./dist/vite.js"},"require":{"types":"./dist/vite.d.cts","default":"./dist/vite.cjs"}},"./webpack":{"import":{"types":"./dist/webpack.d.ts","default":"./dist/webpack.js"},"require":{"types":"./dist/webpack.d.cts","default":"./dist/webpack.cjs"}}},"main":"dist/index.cjs","module":"dist/index.js","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"scripts":{"build":"esno scripts/prebuild.ts && tsup","dev":"esno scripts/prebuild.ts && tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","prepublishOnly":"npm run build","release":"bumpp && npm publish","test":"vitest","typecheck":"tsc --noEmit"},"peerDependencies":{"@svgr/core":">=7.0.0","@svgx/core":"^1.0.1","@vue/compiler-sfc":"^3.0.2 || ^2.7.0","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@svgx/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.3.0","@antfu/utils":"^0.7.6","@iconify/utils":"^2.1.12","debug":"^4.3.4","kolorist":"^1.8.0","local-pkg":"^0.5.0","unplugin":"^1.5.1"},"devDependencies":{"@antfu/eslint-config":"^2.1.1","@iconify/json":"^2.2.149","@iconify/types":"^2.0.0","@svgr/core":"^8.1.0","@svgr/plugin-jsx":"^8.1.0","@svgx/core":"^1.0.1","@types/debug":"^4.1.12","@types/node":"^20.10.0","@vue/compiler-sfc":"^3.3.9","bumpp":"^9.2.0","cross-env":"^7.0.3","eslint":"^8.54.0","esno":"^4.0.0","fast-glob":"^3.3.2","publint":"^0.2.5","rollup":"^4.6.0","tsup":"^8.0.1","typescript":"^5.3.2","vite":"^5.0.4","vitest":"1.0.0-beta.2"},"gitHead":"d21ed80a0dde00153b6218103763a551e46f0b41","_id":"unplugin-icons@0.18.1","_nodeVersion":"18.16.0","_npmVersion":"9.5.1","dist":{"integrity":"sha512-WzKu/eoq74YC7vyEAGsFebkRzsZrRkR4FUzLU6gbpfa7WRaVVpQS2n7LSxE1iRUN0scKL5b9bq+i0wucR+ttFQ==","shasum":"f193205afe4bfe73e798836680599292baa514a5","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.18.1.tgz","fileCount":58,"unpackedSize":87878,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEu2JzlRWqjjveXoxowoF6boQHp3rSrtDD3jSJDxu13YAiEAjeQSSOE5MvhoVCvasy+1bDAHHg0bJD3jjY/ZVPESQXs="}],"size":24329},"_npmUser":{"name":"userquin","email":"userquin@gmail.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-icons_0.18.1_1701610658784_0.6055472178986965"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-12-03T13:37:38.963Z","publish_time":1701610658963,"_source_registry_name":"default"},"0.18.2":{"name":"unplugin-icons","type":"module","version":"0.18.2","packageManager":"pnpm@8.11.0","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-icons#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-icons.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-icons/issues"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"require":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"}},"./*":"./*","./esbuild":{"import":{"types":"./dist/esbuild.d.ts","default":"./dist/esbuild.js"},"require":{"types":"./dist/esbuild.d.cts","default":"./dist/esbuild.cjs"}},"./loaders":{"import":{"types":"./dist/loaders.d.ts","default":"./dist/loaders.js"},"require":{"types":"./dist/loaders.d.cts","default":"./dist/loaders.cjs"}},"./nuxt":{"import":{"types":"./dist/nuxt.d.ts","default":"./dist/nuxt.js"},"require":{"types":"./dist/nuxt.d.cts","default":"./dist/nuxt.cjs"}},"./resolver":{"import":{"types":"./dist/resolver.d.ts","default":"./dist/resolver.js"},"require":{"types":"./dist/resolver.d.cts","default":"./dist/resolver.cjs"}},"./rollup":{"import":{"types":"./dist/rollup.d.ts","default":"./dist/rollup.js"},"require":{"types":"./dist/rollup.d.cts","default":"./dist/rollup.cjs"}},"./types":{"import":{"types":"./dist/types.d.ts","default":"./dist/types.js"},"require":{"types":"./dist/types.d.cts","default":"./dist/types.cjs"}},"./types/astro":{"types":"./types/astro.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/svelte3":{"types":"./types/svelte3.d.ts"},"./types/svelte4":{"types":"./types/svelte4.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./vite":{"import":{"types":"./dist/vite.d.ts","default":"./dist/vite.js"},"require":{"types":"./dist/vite.d.cts","default":"./dist/vite.cjs"}},"./webpack":{"import":{"types":"./dist/webpack.d.ts","default":"./dist/webpack.js"},"require":{"types":"./dist/webpack.d.cts","default":"./dist/webpack.cjs"}}},"main":"dist/index.cjs","module":"dist/index.js","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"scripts":{"build":"esno scripts/prebuild.ts && tsup","dev":"esno scripts/prebuild.ts && tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","prepublishOnly":"npm run build","release":"bumpp && npm publish","test":"vitest","typecheck":"tsc --noEmit"},"peerDependencies":{"@svgr/core":">=7.0.0","@svgx/core":"^1.0.1","@vue/compiler-sfc":"^3.0.2 || ^2.7.0","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@svgx/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.3.0","@antfu/utils":"^0.7.6","@iconify/utils":"^2.1.12","debug":"^4.3.4","kolorist":"^1.8.0","local-pkg":"^0.5.0","unplugin":"^1.5.1"},"devDependencies":{"@antfu/eslint-config":"^2.1.1","@iconify/json":"^2.2.149","@iconify/types":"^2.0.0","@svgr/core":"^8.1.0","@svgr/plugin-jsx":"^8.1.0","@svgx/core":"^1.0.1","@types/debug":"^4.1.12","@types/node":"^20.10.0","@vue/compiler-sfc":"^3.3.9","bumpp":"^9.2.0","cross-env":"^7.0.3","eslint":"^8.54.0","esno":"^4.0.0","fast-glob":"^3.3.2","publint":"^0.2.5","rollup":"^4.6.0","tsup":"^8.0.1","typescript":"^5.3.2","vite":"^5.0.4","vitest":"1.0.0-beta.2"},"_id":"unplugin-icons@0.18.2","gitHead":"dbb5346b853190318a178b5d231401b979cc249d","_nodeVersion":"20.10.0","_npmVersion":"10.2.3","dist":{"integrity":"sha512-OgZoIJHGubeJmc3KePMOy62ovtxPEJfNMlr5tU+1ZqHGpSXubg3fnqq28VPvLL0D5vKj2PRCJF9tVGbQ7vBXJQ==","shasum":"1be86f986a1d5a39969ada50049be96329d777ce","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.18.2.tgz","fileCount":58,"unpackedSize":87885,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFMuKGLlSetlew1NqkSI/wp90TudHg8hz0bwMwfWi54uAiBlsKgO8D+MmBCB4qWjtXZaJx5cXU7F1RqS0tJpOxVGkA=="}],"size":24435},"_npmUser":{"name":"userquin","email":"userquin@gmail.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-icons_0.18.2_1704727594754_0.9523789431623775"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-01-08T15:26:34.927Z","publish_time":1704727594927,"_source_registry_name":"default"},"0.18.3":{"name":"unplugin-icons","type":"module","version":"0.18.3","packageManager":"pnpm@8.11.0","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-icons#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-icons.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-icons/issues"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"require":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"}},"./*":"./*","./esbuild":{"import":{"types":"./dist/esbuild.d.ts","default":"./dist/esbuild.js"},"require":{"types":"./dist/esbuild.d.cts","default":"./dist/esbuild.cjs"}},"./loaders":{"import":{"types":"./dist/loaders.d.ts","default":"./dist/loaders.js"},"require":{"types":"./dist/loaders.d.cts","default":"./dist/loaders.cjs"}},"./nuxt":{"import":{"types":"./dist/nuxt.d.ts","default":"./dist/nuxt.js"},"require":{"types":"./dist/nuxt.d.cts","default":"./dist/nuxt.cjs"}},"./resolver":{"import":{"types":"./dist/resolver.d.ts","default":"./dist/resolver.js"},"require":{"types":"./dist/resolver.d.cts","default":"./dist/resolver.cjs"}},"./rollup":{"import":{"types":"./dist/rollup.d.ts","default":"./dist/rollup.js"},"require":{"types":"./dist/rollup.d.cts","default":"./dist/rollup.cjs"}},"./types":{"import":{"types":"./dist/types.d.ts","default":"./dist/types.js"},"require":{"types":"./dist/types.d.cts","default":"./dist/types.cjs"}},"./types/astro":{"types":"./types/astro.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/svelte3":{"types":"./types/svelte3.d.ts"},"./types/svelte4":{"types":"./types/svelte4.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./vite":{"import":{"types":"./dist/vite.d.ts","default":"./dist/vite.js"},"require":{"types":"./dist/vite.d.cts","default":"./dist/vite.cjs"}},"./webpack":{"import":{"types":"./dist/webpack.d.ts","default":"./dist/webpack.js"},"require":{"types":"./dist/webpack.d.cts","default":"./dist/webpack.cjs"}}},"main":"dist/index.cjs","module":"dist/index.js","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"scripts":{"build":"esno scripts/prebuild.ts && tsup","dev":"esno scripts/prebuild.ts && tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","prepublishOnly":"npm run build","release":"bumpp && npm publish","test":"vitest","typecheck":"tsc --noEmit"},"peerDependencies":{"@svgr/core":">=7.0.0","@svgx/core":"^1.0.1","@vue/compiler-sfc":"^3.0.2 || ^2.7.0","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@svgx/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.3.0","@antfu/utils":"^0.7.6","@iconify/utils":"^2.1.20","debug":"^4.3.4","kolorist":"^1.8.0","local-pkg":"^0.5.0","unplugin":"^1.5.1"},"devDependencies":{"@antfu/eslint-config":"^2.1.1","@iconify/json":"^2.2.149","@iconify/types":"^2.0.0","@svgr/core":"^8.1.0","@svgr/plugin-jsx":"^8.1.0","@svgx/core":"^1.0.1","@types/debug":"^4.1.12","@types/node":"^20.10.0","@vue/compiler-sfc":"^3.3.9","bumpp":"^9.2.0","cross-env":"^7.0.3","eslint":"^8.54.0","esno":"^4.0.0","fast-glob":"^3.3.2","publint":"^0.2.5","rollup":"^4.6.0","tsup":"^8.0.1","typescript":"^5.3.2","vite":"^5.0.4","vitest":"1.0.0-beta.2"},"_id":"unplugin-icons@0.18.3","gitHead":"68ec8987b75537b79d5fb526d58d81b910d6a77e","_nodeVersion":"20.10.0","_npmVersion":"10.2.3","dist":{"integrity":"sha512-6EHPMXOq7XL8JAULzX0o3KqOsJHhYfpDfB1WvBWwZJH/PutIkV/ahRpHytucQ1evfRFuv/DVIozEmFIhP1xRxA==","shasum":"453889922fa119e18ebccfcda9779364d02ead44","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.18.3.tgz","fileCount":58,"unpackedSize":90563,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDbLOz3PzW/b8nkF5cJntRszOq96fXxomVwc2QeYDah9wIgfUPRqoo4NU+fNz7ZH8X+s/dSSRWPBuOdxu2/jP9yxQQ="}],"size":24997},"_npmUser":{"name":"userquin","email":"userquin@gmail.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-icons_0.18.3_1706304649125_0.7287979713466113"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-01-26T21:30:49.369Z","publish_time":1706304649369,"_source_registry_name":"default"},"0.18.4":{"name":"unplugin-icons","type":"module","version":"0.18.4","packageManager":"pnpm@8.15.1","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-icons#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-icons.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-icons/issues"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"require":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"}},"./*":"./*","./esbuild":{"import":{"types":"./dist/esbuild.d.ts","default":"./dist/esbuild.js"},"require":{"types":"./dist/esbuild.d.cts","default":"./dist/esbuild.cjs"}},"./loaders":{"import":{"types":"./dist/loaders.d.ts","default":"./dist/loaders.js"},"require":{"types":"./dist/loaders.d.cts","default":"./dist/loaders.cjs"}},"./nuxt":{"import":{"types":"./dist/nuxt.d.ts","default":"./dist/nuxt.js"},"require":{"types":"./dist/nuxt.d.cts","default":"./dist/nuxt.cjs"}},"./resolver":{"import":{"types":"./dist/resolver.d.ts","default":"./dist/resolver.js"},"require":{"types":"./dist/resolver.d.cts","default":"./dist/resolver.cjs"}},"./rollup":{"import":{"types":"./dist/rollup.d.ts","default":"./dist/rollup.js"},"require":{"types":"./dist/rollup.d.cts","default":"./dist/rollup.cjs"}},"./types":{"import":{"types":"./dist/types.d.ts","default":"./dist/types.js"},"require":{"types":"./dist/types.d.cts","default":"./dist/types.cjs"}},"./types/astro":{"types":"./types/astro.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/svelte3":{"types":"./types/svelte3.d.ts"},"./types/svelte4":{"types":"./types/svelte4.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./vite":{"import":{"types":"./dist/vite.d.ts","default":"./dist/vite.js"},"require":{"types":"./dist/vite.d.cts","default":"./dist/vite.cjs"}},"./webpack":{"import":{"types":"./dist/webpack.d.ts","default":"./dist/webpack.js"},"require":{"types":"./dist/webpack.d.cts","default":"./dist/webpack.cjs"}}},"main":"dist/index.cjs","module":"dist/index.js","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"scripts":{"build":"esno scripts/prebuild.ts && tsup","dev":"esno scripts/prebuild.ts && tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","prepublishOnly":"npm run build","release":"bumpp && npm publish","test":"vitest","typecheck":"tsc --noEmit"},"peerDependencies":{"@svgr/core":">=7.0.0","@svgx/core":"^1.0.1","@vue/compiler-sfc":"^3.0.2 || ^2.7.0","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@svgx/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.3.1","@antfu/utils":"^0.7.7","@iconify/utils":"^2.1.21","debug":"^4.3.4","kolorist":"^1.8.0","local-pkg":"^0.5.0","unplugin":"^1.6.0"},"devDependencies":{"@antfu/eslint-config":"^2.6.4","@iconify/json":"^2.2.179","@iconify/types":"^2.0.0","@svgr/core":"^8.1.0","@svgr/plugin-jsx":"^8.1.0","@svgx/core":"^1.0.1","@types/debug":"^4.1.12","@types/node":"^20.11.16","@vue/compiler-sfc":"^3.4.15","bumpp":"^9.3.0","cross-env":"^7.0.3","eslint":"^8.56.0","esno":"^4.0.0","fast-glob":"^3.3.2","publint":"^0.2.7","rollup":"^4.9.6","tsup":"^8.0.1","typescript":"^5.3.3","vite":"^5.0.12","vitest":"1.0.0-beta.2"},"gitHead":"57aac44fbf3e811b02234d24bb223ee14e654c45","_id":"unplugin-icons@0.18.4","_nodeVersion":"20.4.0","_npmVersion":"9.7.2","dist":{"integrity":"sha512-89J3zPTfJLJIyka8SMk5rkwiykzAlnKYNUC58gbNbfmuA7aE3Vbh5BjDCeRS8UkTXLR72cs+ywCF/9EE9c/SoQ==","shasum":"30fb9ad57be98b1027c92a4143f78b6ecab9645e","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.18.4.tgz","fileCount":58,"unpackedSize":90210,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC/L+dGA2U4FLVTBZtbSWPRmsFlLcRMEK30DgXpJDvAaQIhAOc9NkWtOzzE2v0xlmyQfb5Y6172D5lgaLHdNYPluK3s"}],"size":24963},"_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-icons_0.18.4_1707043729040_0.46949214678432716"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-02-04T10:48:49.205Z","publish_time":1707043729205,"_source_registry_name":"default"},"0.18.5":{"name":"unplugin-icons","type":"module","version":"0.18.5","packageManager":"pnpm@8.15.1","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-icons#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-icons.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-icons/issues"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"require":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"}},"./*":"./*","./esbuild":{"import":{"types":"./dist/esbuild.d.ts","default":"./dist/esbuild.js"},"require":{"types":"./dist/esbuild.d.cts","default":"./dist/esbuild.cjs"}},"./loaders":{"import":{"types":"./dist/loaders.d.ts","default":"./dist/loaders.js"},"require":{"types":"./dist/loaders.d.cts","default":"./dist/loaders.cjs"}},"./nuxt":{"import":{"types":"./dist/nuxt.d.ts","default":"./dist/nuxt.js"},"require":{"types":"./dist/nuxt.d.cts","default":"./dist/nuxt.cjs"}},"./resolver":{"import":{"types":"./dist/resolver.d.ts","default":"./dist/resolver.js"},"require":{"types":"./dist/resolver.d.cts","default":"./dist/resolver.cjs"}},"./rollup":{"import":{"types":"./dist/rollup.d.ts","default":"./dist/rollup.js"},"require":{"types":"./dist/rollup.d.cts","default":"./dist/rollup.cjs"}},"./types":{"import":{"types":"./dist/types.d.ts","default":"./dist/types.js"},"require":{"types":"./dist/types.d.cts","default":"./dist/types.cjs"}},"./types/astro":{"types":"./types/astro.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/svelte3":{"types":"./types/svelte3.d.ts"},"./types/svelte4":{"types":"./types/svelte4.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./vite":{"import":{"types":"./dist/vite.d.ts","default":"./dist/vite.js"},"require":{"types":"./dist/vite.d.cts","default":"./dist/vite.cjs"}},"./webpack":{"import":{"types":"./dist/webpack.d.ts","default":"./dist/webpack.js"},"require":{"types":"./dist/webpack.d.cts","default":"./dist/webpack.cjs"}}},"main":"dist/index.cjs","module":"dist/index.js","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"scripts":{"build":"esno scripts/prebuild.ts && tsup","dev":"esno scripts/prebuild.ts && tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","prepublishOnly":"npm run build","release":"bumpp && npm publish","test":"vitest","typecheck":"tsc --noEmit"},"peerDependencies":{"@svgr/core":">=7.0.0","@svgx/core":"^1.0.1","@vue/compiler-sfc":"^3.0.2 || ^2.7.0","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@svgx/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.3.1","@antfu/utils":"^0.7.7","@iconify/utils":"^2.1.22","debug":"^4.3.4","kolorist":"^1.8.0","local-pkg":"^0.5.0","unplugin":"^1.6.0"},"devDependencies":{"@antfu/eslint-config":"^2.6.4","@iconify/json":"^2.2.179","@iconify/types":"^2.0.0","@svgr/core":"^8.1.0","@svgr/plugin-jsx":"^8.1.0","@svgx/core":"^1.0.1","@types/debug":"^4.1.12","@types/node":"^20.11.16","@vue/compiler-sfc":"^3.4.15","bumpp":"^9.3.0","cross-env":"^7.0.3","eslint":"^8.56.0","esno":"^4.0.0","fast-glob":"^3.3.2","publint":"^0.2.7","rollup":"^4.9.6","tsup":"^8.0.1","typescript":"^5.3.3","vite":"^5.0.12","vitest":"1.0.0-beta.2"},"gitHead":"224e1e5ff47968259bdfecded64a850fde2b705b","_id":"unplugin-icons@0.18.5","_nodeVersion":"20.4.0","_npmVersion":"9.7.2","dist":{"integrity":"sha512-KVNAohXbZ7tVcG1C3p6QaC7wU9Qrj7etv4XvsMMJAxr5LccQZ+Iuv5LOIv/7GtqXaGN1BuFCqRO1ErsHEgEXdQ==","shasum":"e43aafc3655cbec0d35a4830e058efe54d0efec6","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.18.5.tgz","fileCount":58,"unpackedSize":90210,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFPQQgP1hQtftMQUShWQnMEuui0e9ApEjwQYIkz4h+PiAiEAjiWkfDpbCWdDq51P4CH3xtsUQKDxeXlJM3bMnCyw6Oc="}],"size":24963},"_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-icons_0.18.5_1707073559030_0.6196642074515402"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-02-04T19:05:59.183Z","publish_time":1707073559183,"_source_registry_name":"default"},"0.19.0":{"name":"unplugin-icons","type":"module","version":"0.19.0","packageManager":"pnpm@9.0.6","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-icons#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-icons.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-icons/issues"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"require":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"}},"./*":"./*","./esbuild":{"import":{"types":"./dist/esbuild.d.ts","default":"./dist/esbuild.js"},"require":{"types":"./dist/esbuild.d.cts","default":"./dist/esbuild.cjs"}},"./loaders":{"import":{"types":"./dist/loaders.d.ts","default":"./dist/loaders.js"},"require":{"types":"./dist/loaders.d.cts","default":"./dist/loaders.cjs"}},"./nuxt":{"import":{"types":"./dist/nuxt.d.ts","default":"./dist/nuxt.js"},"require":{"types":"./dist/nuxt.d.cts","default":"./dist/nuxt.cjs"}},"./resolver":{"import":{"types":"./dist/resolver.d.ts","default":"./dist/resolver.js"},"require":{"types":"./dist/resolver.d.cts","default":"./dist/resolver.cjs"}},"./rollup":{"import":{"types":"./dist/rollup.d.ts","default":"./dist/rollup.js"},"require":{"types":"./dist/rollup.d.cts","default":"./dist/rollup.cjs"}},"./types":{"import":{"types":"./dist/types.d.ts","default":"./dist/types.js"},"require":{"types":"./dist/types.d.cts","default":"./dist/types.cjs"}},"./types/astro":{"types":"./types/astro.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/qwik":{"types":"./types/qwik.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/svelte3":{"types":"./types/svelte3.d.ts"},"./types/svelte4":{"types":"./types/svelte4.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./vite":{"import":{"types":"./dist/vite.d.ts","default":"./dist/vite.js"},"require":{"types":"./dist/vite.d.cts","default":"./dist/vite.cjs"}},"./webpack":{"import":{"types":"./dist/webpack.d.ts","default":"./dist/webpack.js"},"require":{"types":"./dist/webpack.d.cts","default":"./dist/webpack.cjs"}}},"main":"dist/index.cjs","module":"dist/index.js","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"scripts":{"build":"esno scripts/prebuild.ts && tsup","dev":"esno scripts/prebuild.ts && tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","prepublishOnly":"npm run build","release":"bumpp && npm publish","test":"vitest","typecheck":"tsc --noEmit"},"peerDependencies":{"@svgr/core":">=7.0.0","@svgx/core":"^1.0.1","@vue/compiler-sfc":"^3.0.2 || ^2.7.0","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@svgx/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.3.3","@antfu/utils":"^0.7.7","@iconify/utils":"^2.1.23","debug":"^4.3.4","kolorist":"^1.8.0","local-pkg":"^0.5.0","unplugin":"^1.10.1"},"devDependencies":{"@antfu/eslint-config":"^2.16.1","@iconify/json":"^2.2.205","@iconify/types":"^2.0.0","@svgr/core":"^8.1.0","@svgr/plugin-jsx":"^8.1.0","@svgx/core":"^1.0.1","@types/debug":"^4.1.12","@types/node":"^20.12.7","@vue/compiler-sfc":"^3.4.26","bumpp":"^9.4.1","cross-env":"^7.0.3","eslint":"^9.1.1","esno":"^4.7.0","fast-glob":"^3.3.2","publint":"^0.2.7","rollup":"^4.17.2","tsup":"^8.0.2","typescript":"^5.4.5","vite":"^5.2.10","vitest":"1.0.0-beta.2"},"_id":"unplugin-icons@0.19.0","gitHead":"b510ca37ea0ba2386b94d79d36a7648a44321a23","_nodeVersion":"20.11.1","_npmVersion":"10.2.4","dist":{"integrity":"sha512-u5g/gIZPZEj1wUGEQxe9nzftOSqmblhusc+sL3cawIRoIt/xWpE6XYcPOfAeFTYNjSbRrX/3QiX89PFiazgU1w==","shasum":"867d2a3f95b00737c9f5bd7d2da0f5b8e65fd1a6","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.19.0.tgz","fileCount":58,"unpackedSize":92499,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCbOMfv1c4JLg8Gg+viwoiq2WO4FgwoBEgpigOzdYO9LgIhAMuJ4UIcykA5n0CfDdcEBOSSYuI3Jlu7fXfxBtc6WAs1"}],"size":25625},"_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-icons_0.19.0_1714547261082_0.43172938375334113"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-05-01T07:07:41.260Z","publish_time":1714547261260,"_source_registry_name":"default"},"0.19.1":{"name":"unplugin-icons","type":"module","version":"0.19.1","packageManager":"pnpm@9.6.0","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-icons#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-icons.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-icons/issues"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"require":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"}},"./*":"./*","./esbuild":{"import":{"types":"./dist/esbuild.d.ts","default":"./dist/esbuild.js"},"require":{"types":"./dist/esbuild.d.cts","default":"./dist/esbuild.cjs"}},"./loaders":{"import":{"types":"./dist/loaders.d.ts","default":"./dist/loaders.js"},"require":{"types":"./dist/loaders.d.cts","default":"./dist/loaders.cjs"}},"./nuxt":{"import":{"types":"./dist/nuxt.d.ts","default":"./dist/nuxt.js"},"require":{"types":"./dist/nuxt.d.cts","default":"./dist/nuxt.cjs"}},"./resolver":{"import":{"types":"./dist/resolver.d.ts","default":"./dist/resolver.js"},"require":{"types":"./dist/resolver.d.cts","default":"./dist/resolver.cjs"}},"./rollup":{"import":{"types":"./dist/rollup.d.ts","default":"./dist/rollup.js"},"require":{"types":"./dist/rollup.d.cts","default":"./dist/rollup.cjs"}},"./types":{"import":{"types":"./dist/types.d.ts","default":"./dist/types.js"},"require":{"types":"./dist/types.d.cts","default":"./dist/types.cjs"}},"./types/astro":{"types":"./types/astro.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/qwik":{"types":"./types/qwik.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/svelte3":{"types":"./types/svelte3.d.ts"},"./types/svelte4":{"types":"./types/svelte4.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./vite":{"import":{"types":"./dist/vite.d.ts","default":"./dist/vite.js"},"require":{"types":"./dist/vite.d.cts","default":"./dist/vite.cjs"}},"./webpack":{"import":{"types":"./dist/webpack.d.ts","default":"./dist/webpack.js"},"require":{"types":"./dist/webpack.d.cts","default":"./dist/webpack.cjs"}}},"main":"dist/index.cjs","module":"dist/index.js","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"scripts":{"build":"esno scripts/prebuild.ts && tsup","dev":"esno scripts/prebuild.ts && tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","prepublishOnly":"npm run build","release":"bumpp && npm publish","test":"vitest","typecheck":"tsc --noEmit"},"peerDependencies":{"@svgr/core":">=7.0.0","@svgx/core":"^1.0.1","@vue/compiler-sfc":"^3.0.2 || ^2.7.0","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@svgx/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.3.3","@antfu/utils":"^0.7.10","@iconify/utils":"^2.1.29","debug":"^4.3.6","kolorist":"^1.8.0","local-pkg":"^0.5.0","unplugin":"^1.12.0"},"devDependencies":{"@antfu/eslint-config":"^2.24.0","@iconify/json":"^2.2.232","@iconify/types":"^2.0.0","@svgr/core":"^8.1.0","@svgr/plugin-jsx":"^8.1.0","@svgx/core":"^1.0.1","@types/debug":"^4.1.12","@types/node":"^22.0.0","@vue/compiler-sfc":"^3.4.34","bumpp":"^9.4.1","cross-env":"^7.0.3","eslint":"^9.8.0","esno":"^4.7.0","fast-glob":"^3.3.2","publint":"^0.2.9","rollup":"^4.19.1","tsup":"^8.2.3","typescript":"^5.5.4","vite":"^5.3.5","vitest":"^2.0.4"},"_id":"unplugin-icons@0.19.1","gitHead":"c66e1a7ff76e4a5e3dd140feb599ce3a1dc3af43","_nodeVersion":"20.12.2","_npmVersion":"10.5.0","dist":{"integrity":"sha512-a5I+wSOO5lsgc4dB2nEFaSZ4eEgQvSSR8tSR2jT69nTKiVmcK+PPU633zn2FyRf9i6vLapUiQ28GQStfzGURdg==","shasum":"82934cc7353f5d0e5423c859cd22e7a39f854594","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.19.1.tgz","fileCount":58,"unpackedSize":92726,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFoBapdgXrxJmDsOQWsY7Q6teVmbZ1/o1I3ksCLl+9lYAiBKcn7XhDWMIj+3+wznB5zamlr6SCEqrCtufMrUbaXeRw=="}],"size":25926},"_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-icons_0.19.1_1722256565779_0.10910661465839078"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-07-29T12:36:05.955Z","publish_time":1722256565955,"_source_registry_name":"default"},"0.19.2":{"name":"unplugin-icons","type":"module","version":"0.19.2","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-icons#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-icons.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-icons/issues"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"require":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"}},"./*":"./*","./esbuild":{"import":{"types":"./dist/esbuild.d.ts","default":"./dist/esbuild.js"},"require":{"types":"./dist/esbuild.d.cts","default":"./dist/esbuild.cjs"}},"./loaders":{"import":{"types":"./dist/loaders.d.ts","default":"./dist/loaders.js"},"require":{"types":"./dist/loaders.d.cts","default":"./dist/loaders.cjs"}},"./nuxt":{"import":{"types":"./dist/nuxt.d.ts","default":"./dist/nuxt.js"},"require":{"types":"./dist/nuxt.d.cts","default":"./dist/nuxt.cjs"}},"./resolver":{"import":{"types":"./dist/resolver.d.ts","default":"./dist/resolver.js"},"require":{"types":"./dist/resolver.d.cts","default":"./dist/resolver.cjs"}},"./rollup":{"import":{"types":"./dist/rollup.d.ts","default":"./dist/rollup.js"},"require":{"types":"./dist/rollup.d.cts","default":"./dist/rollup.cjs"}},"./types":{"import":{"types":"./dist/types.d.ts","default":"./dist/types.js"},"require":{"types":"./dist/types.d.cts","default":"./dist/types.cjs"}},"./types/astro":{"types":"./types/astro.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/qwik":{"types":"./types/qwik.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/svelte3":{"types":"./types/svelte3.d.ts"},"./types/svelte4":{"types":"./types/svelte4.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./vite":{"import":{"types":"./dist/vite.d.ts","default":"./dist/vite.js"},"require":{"types":"./dist/vite.d.cts","default":"./dist/vite.cjs"}},"./webpack":{"import":{"types":"./dist/webpack.d.ts","default":"./dist/webpack.js"},"require":{"types":"./dist/webpack.d.cts","default":"./dist/webpack.cjs"}}},"main":"dist/index.cjs","module":"dist/index.js","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"peerDependencies":{"@svgr/core":">=7.0.0","@svgx/core":"^1.0.1","@vue/compiler-sfc":"^3.0.2 || ^2.7.0","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@svgx/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.3.3","@antfu/utils":"^0.7.10","@iconify/utils":"^2.1.29","debug":"^4.3.6","kolorist":"^1.8.0","local-pkg":"^0.5.0","unplugin":"^1.12.0"},"devDependencies":{"@antfu/eslint-config":"^2.24.0","@iconify/json":"^2.2.232","@iconify/types":"^2.0.0","@svgr/core":"^8.1.0","@svgr/plugin-jsx":"^8.1.0","@svgx/core":"^1.0.1","@types/debug":"^4.1.12","@types/node":"^22.0.0","@vue/compiler-sfc":"^3.4.34","bumpp":"^9.4.1","cross-env":"^7.0.3","eslint":"^9.8.0","esno":"^4.7.0","fast-glob":"^3.3.2","publint":"^0.2.9","rollup":"^4.19.1","tsup":"^8.2.3","typescript":"^5.5.4","vite":"^5.3.5","vitest":"^2.0.4"},"scripts":{"build":"esno scripts/prebuild.ts && tsup","dev":"esno scripts/prebuild.ts && tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","release":"bumpp && npm publish","test":"vitest","typecheck":"tsc --noEmit"},"_id":"unplugin-icons@0.19.2","_integrity":"sha512-QkQJ/Iz3PFr/EoiOvFUQYvqbbJZ7Vs3hObKAFHh5eywTU1PQagSNeXKGRD+JpzXSTnUNLtG0u/xEA5Ec2OeANQ==","_resolved":"/private/var/folders/30/nymxcyb909ggq2j5lwn7b_600000gn/T/1f66536270f468f636cfc1bad574e282/unplugin-icons-0.19.2.tgz","_from":"file:unplugin-icons-0.19.2.tgz","_nodeVersion":"20.12.2","_npmVersion":"10.5.0","dist":{"integrity":"sha512-QkQJ/Iz3PFr/EoiOvFUQYvqbbJZ7Vs3hObKAFHh5eywTU1PQagSNeXKGRD+JpzXSTnUNLtG0u/xEA5Ec2OeANQ==","shasum":"f446a5c105787217f5002eb2da39fb994fa05113","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.19.2.tgz","fileCount":58,"unpackedSize":93551,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICVBEd/REbigPQJVQ0yDo1RyuCy6OfH7DTN038SGn5auAiEAu+6Ot/xuKnsR3TTgmSQmSCa2uOQjgh21teNg1uh9Huc="}],"size":26207},"_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-icons_0.19.2_1723013271588_0.1214280074461811"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-08-07T06:47:51.810Z","publish_time":1723013271810,"_source_registry_name":"default"},"0.19.3":{"name":"unplugin-icons","type":"module","version":"0.19.3","packageManager":"pnpm@9.9.0","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-icons#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-icons.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-icons/issues"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"require":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"}},"./*":"./*","./esbuild":{"import":{"types":"./dist/esbuild.d.ts","default":"./dist/esbuild.js"},"require":{"types":"./dist/esbuild.d.cts","default":"./dist/esbuild.cjs"}},"./loaders":{"import":{"types":"./dist/loaders.d.ts","default":"./dist/loaders.js"},"require":{"types":"./dist/loaders.d.cts","default":"./dist/loaders.cjs"}},"./nuxt":{"import":{"types":"./dist/nuxt.d.ts","default":"./dist/nuxt.js"},"require":{"types":"./dist/nuxt.d.cts","default":"./dist/nuxt.cjs"}},"./resolver":{"import":{"types":"./dist/resolver.d.ts","default":"./dist/resolver.js"},"require":{"types":"./dist/resolver.d.cts","default":"./dist/resolver.cjs"}},"./rollup":{"import":{"types":"./dist/rollup.d.ts","default":"./dist/rollup.js"},"require":{"types":"./dist/rollup.d.cts","default":"./dist/rollup.cjs"}},"./types":{"import":{"types":"./dist/types.d.ts","default":"./dist/types.js"},"require":{"types":"./dist/types.d.cts","default":"./dist/types.cjs"}},"./types/astro":{"types":"./types/astro.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/qwik":{"types":"./types/qwik.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/svelte3":{"types":"./types/svelte3.d.ts"},"./types/svelte4":{"types":"./types/svelte4.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./vite":{"import":{"types":"./dist/vite.d.ts","default":"./dist/vite.js"},"require":{"types":"./dist/vite.d.cts","default":"./dist/vite.cjs"}},"./webpack":{"import":{"types":"./dist/webpack.d.ts","default":"./dist/webpack.js"},"require":{"types":"./dist/webpack.d.cts","default":"./dist/webpack.cjs"}}},"main":"dist/index.cjs","module":"dist/index.js","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"scripts":{"build":"esno scripts/prebuild.ts && tsup","dev":"esno scripts/prebuild.ts && tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","prepublishOnly":"npm run build","release":"bumpp && npm publish","test":"vitest","typecheck":"tsc --noEmit"},"peerDependencies":{"@svgr/core":">=7.0.0","@svgx/core":"^1.0.1","@vue/compiler-sfc":"^3.0.2 || ^2.7.0","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@svgx/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.4.1","@antfu/utils":"^0.7.10","@iconify/utils":"^2.1.29","debug":"^4.3.6","kolorist":"^1.8.0","local-pkg":"^0.5.0","unplugin":"^1.12.0"},"devDependencies":{"@antfu/eslint-config":"^2.24.0","@iconify/json":"^2.2.232","@iconify/types":"^2.0.0","@svgr/core":"^8.1.0","@svgr/plugin-jsx":"^8.1.0","@svgx/core":"^1.0.1","@types/debug":"^4.1.12","@types/node":"^22.0.0","@vue/compiler-sfc":"^3.4.34","bumpp":"^9.4.1","cross-env":"^7.0.3","eslint":"^9.8.0","esno":"^4.7.0","fast-glob":"^3.3.2","publint":"^0.2.9","rollup":"^4.19.1","tsup":"^8.2.3","typescript":"^5.5.4","vite":"^5.3.5","vitest":"^2.0.4"},"_id":"unplugin-icons@0.19.3","gitHead":"1746e407c182913bf7fdd64775446410d004b9e0","_nodeVersion":"20.10.0","_npmVersion":"10.2.3","dist":{"integrity":"sha512-EUegRmsAI6+rrYr0vXjFlIP+lg4fSC4zb62zAZKx8FGXlWAGgEGBCa3JDe27aRAXhistObLPbBPhwa/0jYLFkQ==","shasum":"07dcd77ecf973b234c76e4bc11df1380b5ac7fab","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.19.3.tgz","fileCount":58,"unpackedSize":93625,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEQdmjQJhkTIUJ0OAl/s7pkCGMCdmaEcRsDPwpf33xBAAiEAyAXM8IDQmLx1wZ8jIyKdnc9kwFjurqwCuoddW9oNPgE="}],"size":26075},"_npmUser":{"name":"userquin","email":"userquin@gmail.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-icons_0.19.3_1725481730081_0.34719615612831944"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-09-04T20:28:50.302Z","publish_time":1725481730302,"_source_registry_name":"default"},"0.20.0":{"name":"unplugin-icons","type":"module","version":"0.20.0","packageManager":"pnpm@9.12.3","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-icons#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-icons.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-icons/issues"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"require":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"}},"./*":"./*","./esbuild":{"import":{"types":"./dist/esbuild.d.ts","default":"./dist/esbuild.js"},"require":{"types":"./dist/esbuild.d.cts","default":"./dist/esbuild.cjs"}},"./loaders":{"import":{"types":"./dist/loaders.d.ts","default":"./dist/loaders.js"},"require":{"types":"./dist/loaders.d.cts","default":"./dist/loaders.cjs"}},"./nuxt":{"import":{"types":"./dist/nuxt.d.ts","default":"./dist/nuxt.js"},"require":{"types":"./dist/nuxt.d.cts","default":"./dist/nuxt.cjs"}},"./resolver":{"import":{"types":"./dist/resolver.d.ts","default":"./dist/resolver.js"},"require":{"types":"./dist/resolver.d.cts","default":"./dist/resolver.cjs"}},"./rollup":{"import":{"types":"./dist/rollup.d.ts","default":"./dist/rollup.js"},"require":{"types":"./dist/rollup.d.cts","default":"./dist/rollup.cjs"}},"./types":{"import":{"types":"./dist/types.d.ts","default":"./dist/types.js"},"require":{"types":"./dist/types.d.cts","default":"./dist/types.cjs"}},"./types/astro":{"types":"./types/astro.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/qwik":{"types":"./types/qwik.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/svelte3":{"types":"./types/svelte3.d.ts"},"./types/svelte4":{"types":"./types/svelte4.d.ts"},"./types/svelte5":{"types":"./types/svelte5.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./vite":{"import":{"types":"./dist/vite.d.ts","default":"./dist/vite.js"},"require":{"types":"./dist/vite.d.cts","default":"./dist/vite.cjs"}},"./webpack":{"import":{"types":"./dist/webpack.d.ts","default":"./dist/webpack.js"},"require":{"types":"./dist/webpack.d.cts","default":"./dist/webpack.cjs"}}},"main":"dist/index.cjs","module":"dist/index.js","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"scripts":{"build":"esno scripts/prebuild.ts && tsup","dev":"esno scripts/prebuild.ts && tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","prepublishOnly":"npm run build","release":"bumpp && npm publish","test":"vitest","typecheck":"tsc --noEmit"},"peerDependencies":{"@svgr/core":">=7.0.0","@svgx/core":"^1.0.1","@vue/compiler-sfc":"^3.0.2 || ^2.7.0","svelte":"^3.0.0 || ^4.0.0 || ^5.0.0","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@svgx/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"svelte":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.4.1","@antfu/utils":"^0.7.10","@iconify/utils":"^2.1.29","debug":"^4.3.6","kolorist":"^1.8.0","local-pkg":"^0.5.0","unplugin":"^1.12.0"},"devDependencies":{"@antfu/eslint-config":"^2.24.0","@iconify/json":"^2.2.232","@iconify/types":"^2.0.0","@svgr/core":"^8.1.0","@svgr/plugin-jsx":"^8.1.0","@svgx/core":"^1.0.1","@types/debug":"^4.1.12","@types/node":"^22.0.0","@vue/compiler-sfc":"^3.4.34","bumpp":"^9.4.1","cross-env":"^7.0.3","eslint":"^9.8.0","esno":"^4.7.0","fast-glob":"^3.3.2","publint":"^0.2.9","rollup":"^4.19.1","tsup":"^8.2.3","typescript":"^5.5.4","vite":"^5.3.5","vitest":"^2.0.4"},"_id":"unplugin-icons@0.20.0","gitHead":"ae8926e9a59cc3f94d0a1136c3634cf1c3f87fa5","_nodeVersion":"20.10.0","_npmVersion":"10.2.3","dist":{"integrity":"sha512-817iCV6AMADLHHcs9R15XII5Jaz++thnaQRzXbd0IZDcxi43iekoKENpuxqZN3k3+aOqJfqxcZ6I8POJ35UCEA==","shasum":"28f74b74648033da593bb000075bf2063bf31cbc","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.20.0.tgz","fileCount":59,"unpackedSize":94436,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICR4JQPVs1ovHTvJszsRcAFSG++ZhQTuH8YT+he/IiFmAiEApFuInkIdeyy4bE+Vfyquom6Nm7eAQGZjDYjvfUfhNU4="}],"size":26161},"_npmUser":{"name":"userquin","email":"userquin@gmail.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-icons_0.20.0_1730308755447_0.5072119060276588"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-10-30T17:19:15.626Z","publish_time":1730308755626,"_source_registry_name":"default"},"0.20.1":{"name":"unplugin-icons","type":"module","version":"0.20.1","packageManager":"pnpm@9.12.3","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-icons#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-icons.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-icons/issues"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"require":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"}},"./*":"./*","./esbuild":{"import":{"types":"./dist/esbuild.d.ts","default":"./dist/esbuild.js"},"require":{"types":"./dist/esbuild.d.cts","default":"./dist/esbuild.cjs"}},"./loaders":{"import":{"types":"./dist/loaders.d.ts","default":"./dist/loaders.js"},"require":{"types":"./dist/loaders.d.cts","default":"./dist/loaders.cjs"}},"./nuxt":{"import":{"types":"./dist/nuxt.d.ts","default":"./dist/nuxt.js"},"require":{"types":"./dist/nuxt.d.cts","default":"./dist/nuxt.cjs"}},"./resolver":{"import":{"types":"./dist/resolver.d.ts","default":"./dist/resolver.js"},"require":{"types":"./dist/resolver.d.cts","default":"./dist/resolver.cjs"}},"./rollup":{"import":{"types":"./dist/rollup.d.ts","default":"./dist/rollup.js"},"require":{"types":"./dist/rollup.d.cts","default":"./dist/rollup.cjs"}},"./types":{"import":{"types":"./dist/types.d.ts","default":"./dist/types.js"},"require":{"types":"./dist/types.d.cts","default":"./dist/types.cjs"}},"./types/astro":{"types":"./types/astro.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/qwik":{"types":"./types/qwik.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/svelte3":{"types":"./types/svelte3.d.ts"},"./types/svelte4":{"types":"./types/svelte4.d.ts"},"./types/svelte5":{"types":"./types/svelte5.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./vite":{"import":{"types":"./dist/vite.d.ts","default":"./dist/vite.js"},"require":{"types":"./dist/vite.d.cts","default":"./dist/vite.cjs"}},"./webpack":{"import":{"types":"./dist/webpack.d.ts","default":"./dist/webpack.js"},"require":{"types":"./dist/webpack.d.cts","default":"./dist/webpack.cjs"}},"./rspack":{"import":{"types":"./dist/rspack.d.ts","default":"./dist/rspack.js"},"require":{"types":"./dist/rspack.d.cts","default":"./dist/rspack.cjs"}}},"main":"dist/index.cjs","module":"dist/index.js","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"scripts":{"build":"esno scripts/prebuild.ts && tsup","dev":"esno scripts/prebuild.ts && tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","prepublishOnly":"npm run build","release":"bumpp && npm publish","test":"vitest","typecheck":"tsc --noEmit"},"peerDependencies":{"@svgr/core":">=7.0.0","@svgx/core":"^1.0.1","@vue/compiler-sfc":"^3.0.2 || ^2.7.0","svelte":"^3.0.0 || ^4.0.0 || ^5.0.0","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@svgx/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"svelte":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.4.1","@antfu/utils":"^0.7.10","@iconify/utils":"^2.1.29","debug":"^4.3.6","kolorist":"^1.8.0","local-pkg":"^0.5.0","unplugin":"^1.12.0"},"devDependencies":{"@antfu/eslint-config":"^2.24.0","@iconify/json":"^2.2.232","@iconify/types":"^2.0.0","@svgr/core":"^8.1.0","@svgr/plugin-jsx":"^8.1.0","@svgx/core":"^1.0.1","@types/debug":"^4.1.12","@types/node":"^22.0.0","@vue/compiler-sfc":"^3.4.34","bumpp":"^9.4.1","cross-env":"^7.0.3","eslint":"^9.8.0","esno":"^4.7.0","fast-glob":"^3.3.2","publint":"^0.2.9","rollup":"^4.19.1","tsup":"^8.2.3","typescript":"^5.5.4","vite":"^5.3.5","vitest":"^2.0.4"},"_id":"unplugin-icons@0.20.1","gitHead":"68acffe93fb8e5c88589f2a7fc6f2da2bc082fbe","_nodeVersion":"22.6.0","_npmVersion":"10.8.2","dist":{"integrity":"sha512-0z5sYGx07Q69ZrJB4kjmx7a5LYLNSWwyq95Ox9OuSG2y/sbhJaHUapRPOJcKmKhOAyToDVRdy9P7gxJ05lYipw==","shasum":"540e6f9335e5b375937d7f4cffd4b9275017b2a2","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.20.1.tgz","fileCount":63,"unpackedSize":95711,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCJri3U5DKhbV1plQECiDMq2OeNB0xwlKzLddZm0f5REAIhAJIIbl6XqlHZUnozj2QDNPNNrJHoLUHk+0Hielcieppu"}],"size":26373},"_npmUser":{"name":"userquin","email":"userquin@gmail.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-icons_0.20.1_1730886089987_0.9007046254857058"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-11-06T09:41:30.144Z","publish_time":1730886090144,"_source_registry_name":"default"},"0.20.2":{"name":"unplugin-icons","type":"module","version":"0.20.2","packageManager":"pnpm@9.14.2","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-icons#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-icons.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-icons/issues"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"require":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"}},"./*":"./*","./esbuild":{"import":{"types":"./dist/esbuild.d.ts","default":"./dist/esbuild.js"},"require":{"types":"./dist/esbuild.d.cts","default":"./dist/esbuild.cjs"}},"./loaders":{"import":{"types":"./dist/loaders.d.ts","default":"./dist/loaders.js"},"require":{"types":"./dist/loaders.d.cts","default":"./dist/loaders.cjs"}},"./nuxt":{"import":{"types":"./dist/nuxt.d.ts","default":"./dist/nuxt.js"},"require":{"types":"./dist/nuxt.d.cts","default":"./dist/nuxt.cjs"}},"./resolver":{"import":{"types":"./dist/resolver.d.ts","default":"./dist/resolver.js"},"require":{"types":"./dist/resolver.d.cts","default":"./dist/resolver.cjs"}},"./rollup":{"import":{"types":"./dist/rollup.d.ts","default":"./dist/rollup.js"},"require":{"types":"./dist/rollup.d.cts","default":"./dist/rollup.cjs"}},"./types":{"import":{"types":"./dist/types.d.ts","default":"./dist/types.js"},"require":{"types":"./dist/types.d.cts","default":"./dist/types.cjs"}},"./types/astro":{"types":"./types/astro.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/qwik":{"types":"./types/qwik.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/svelte3":{"types":"./types/svelte3.d.ts"},"./types/svelte4":{"types":"./types/svelte4.d.ts"},"./types/svelte5":{"types":"./types/svelte5.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./vite":{"import":{"types":"./dist/vite.d.ts","default":"./dist/vite.js"},"require":{"types":"./dist/vite.d.cts","default":"./dist/vite.cjs"}},"./webpack":{"import":{"types":"./dist/webpack.d.ts","default":"./dist/webpack.js"},"require":{"types":"./dist/webpack.d.cts","default":"./dist/webpack.cjs"}},"./rspack":{"import":{"types":"./dist/rspack.d.ts","default":"./dist/rspack.js"},"require":{"types":"./dist/rspack.d.cts","default":"./dist/rspack.cjs"}}},"main":"dist/index.cjs","module":"dist/index.js","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"scripts":{"build":"esno scripts/prebuild.ts && tsup","dev":"esno scripts/prebuild.ts && tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","prepublishOnly":"npm run build","release":"bumpp && npm publish","test":"vitest","typecheck":"tsc --noEmit"},"peerDependencies":{"@svgr/core":">=7.0.0","@svgx/core":"^1.0.1","@vue/compiler-sfc":"^3.0.2 || ^2.7.0","svelte":"^3.0.0 || ^4.0.0 || ^5.0.0","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@svgx/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"svelte":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.5.0","@antfu/utils":"^0.7.10","@iconify/utils":"^2.1.33","debug":"^4.3.7","kolorist":"^1.8.0","local-pkg":"^0.5.1","unplugin":"^1.16.0"},"devDependencies":{"@antfu/eslint-config":"^3.10.0","@iconify/json":"^2.2.276","@iconify/types":"^2.0.0","@svgr/core":"^8.1.0","@svgr/plugin-jsx":"^8.1.0","@svgx/core":"^1.0.1","@types/debug":"^4.1.12","@types/node":"^22.10.0","@vue/compiler-sfc":"^3.5.13","bumpp":"^9.8.1","cross-env":"^7.0.3","eslint":"^9.15.0","esno":"^4.8.0","fast-glob":"^3.3.2","publint":"^0.2.12","rollup":"^4.27.4","tsup":"^8.3.5","typescript":"^5.7.2","vite":"^6.0.1","vitest":"^2.1.6"},"_id":"unplugin-icons@0.20.2","gitHead":"ce4b1a025c17f6326f0be49013b4d85111d96c21","_nodeVersion":"20.18.0","_npmVersion":"10.8.2","dist":{"integrity":"sha512-Ak6TKAiO812aIUrCelrBSTQbYC4FiqawnFrAusP/hjmB8f9cAug9jr381ItvLl+Asi4IVcjoOiPbpy9CfFGKvQ==","shasum":"d7960d3887c412230629826c38363737f8039f86","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.20.2.tgz","fileCount":63,"unpackedSize":96071,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGYyW56HRm5D7lj7TEn/gj5aGsP9KKS+qQA+7AuzMl8hAiEAjaQdl25pebwe+2puflDcncegfAcR/RR8HsguHrWDufI="}],"size":26451},"_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-icons_0.20.2_1732702793559_0.7156625584368825"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-11-27T10:19:53.758Z","publish_time":1732702793758,"_source_registry_name":"default"},"0.21.0":{"name":"unplugin-icons","type":"module","version":"0.21.0","packageManager":"pnpm@9.14.4","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-icons#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-icons.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-icons/issues"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"require":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"}},"./*":"./*","./esbuild":{"import":{"types":"./dist/esbuild.d.ts","default":"./dist/esbuild.js"},"require":{"types":"./dist/esbuild.d.cts","default":"./dist/esbuild.cjs"}},"./loaders":{"import":{"types":"./dist/loaders.d.ts","default":"./dist/loaders.js"},"require":{"types":"./dist/loaders.d.cts","default":"./dist/loaders.cjs"}},"./nuxt":{"import":{"types":"./dist/nuxt.d.ts","default":"./dist/nuxt.js"},"require":{"types":"./dist/nuxt.d.cts","default":"./dist/nuxt.cjs"}},"./resolver":{"import":{"types":"./dist/resolver.d.ts","default":"./dist/resolver.js"},"require":{"types":"./dist/resolver.d.cts","default":"./dist/resolver.cjs"}},"./rollup":{"import":{"types":"./dist/rollup.d.ts","default":"./dist/rollup.js"},"require":{"types":"./dist/rollup.d.cts","default":"./dist/rollup.cjs"}},"./types":{"import":{"types":"./dist/types.d.ts","default":"./dist/types.js"},"require":{"types":"./dist/types.d.cts","default":"./dist/types.cjs"}},"./types/astro":{"types":"./types/astro.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/qwik":{"types":"./types/qwik.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/svelte3":{"types":"./types/svelte3.d.ts"},"./types/svelte4":{"types":"./types/svelte4.d.ts"},"./types/svelte5":{"types":"./types/svelte5.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./vite":{"import":{"types":"./dist/vite.d.ts","default":"./dist/vite.js"},"require":{"types":"./dist/vite.d.cts","default":"./dist/vite.cjs"}},"./webpack":{"import":{"types":"./dist/webpack.d.ts","default":"./dist/webpack.js"},"require":{"types":"./dist/webpack.d.cts","default":"./dist/webpack.cjs"}},"./rspack":{"import":{"types":"./dist/rspack.d.ts","default":"./dist/rspack.js"},"require":{"types":"./dist/rspack.d.cts","default":"./dist/rspack.cjs"}}},"main":"dist/index.cjs","module":"dist/index.js","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"scripts":{"build":"esno scripts/prebuild.ts && tsup","dev":"esno scripts/prebuild.ts && tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","prepublishOnly":"npm run build","release":"bumpp && npm publish","test":"vitest","typecheck":"tsc --noEmit"},"peerDependencies":{"@svgr/core":">=7.0.0","@svgx/core":"^1.0.1","@vue/compiler-sfc":"^3.0.2 || ^2.7.0","svelte":"^3.0.0 || ^4.0.0 || ^5.0.0","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@svgx/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"svelte":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.5.0","@antfu/utils":"^0.7.10","@iconify/utils":"^2.1.33","debug":"^4.3.7","kolorist":"^1.8.0","local-pkg":"^0.5.1","unplugin":"^1.16.0"},"devDependencies":{"@antfu/eslint-config":"^3.11.2","@iconify/json":"^2.2.279","@iconify/types":"^2.0.0","@svgr/core":"^8.1.0","@svgr/plugin-jsx":"^8.1.0","@svgx/core":"^1.0.1","@types/debug":"^4.1.12","@types/node":"^22.10.1","@vue/compiler-sfc":"^3.5.13","bumpp":"^9.8.1","cross-env":"^7.0.3","eslint":"^9.16.0","esno":"^4.8.0","fast-glob":"^3.3.2","publint":"^0.2.12","rollup":"^4.28.0","tsup":"^8.3.5","typescript":"^5.7.2","vite":"^6.0.2","vitest":"^2.1.8"},"_id":"unplugin-icons@0.21.0","gitHead":"d0dfec2da662dfcfcaba9703fe4c85761231efbd","_nodeVersion":"20.18.0","_npmVersion":"10.8.2","dist":{"integrity":"sha512-sRic+yj7cCbpDFwrRj+m55ogOZi6PQRDc/WUEmjHLAnc90v0g5UVxE0cVAZgBOsAPCieizZJui/sgrCYrVx8mQ==","shasum":"3535420ef0da9edac61d3d5ebaae3e2b5e2787e6","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.21.0.tgz","fileCount":63,"unpackedSize":96123,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDq8GKv5m6i/LX0XRq70RRfemgQsPf35QvUG9rrTnQanAIhAKHKuJTO277fsTb5xrJDg0UfJLBzGiivH0OAYfesHWWz"}],"size":26497},"_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-icons_0.21.0_1733213129491_0.9445164129724133"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-12-03T08:05:29.684Z","publish_time":1733213129684,"_source_registry_name":"default"},"0.22.0":{"name":"unplugin-icons","type":"module","version":"0.22.0","packageManager":"pnpm@9.15.0","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-icons#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-icons.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-icons/issues"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"require":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"}},"./*":"./*","./esbuild":{"import":{"types":"./dist/esbuild.d.ts","default":"./dist/esbuild.js"},"require":{"types":"./dist/esbuild.d.cts","default":"./dist/esbuild.cjs"}},"./loaders":{"import":{"types":"./dist/loaders.d.ts","default":"./dist/loaders.js"},"require":{"types":"./dist/loaders.d.cts","default":"./dist/loaders.cjs"}},"./nuxt":{"import":{"types":"./dist/nuxt.d.ts","default":"./dist/nuxt.js"},"require":{"types":"./dist/nuxt.d.cts","default":"./dist/nuxt.cjs"}},"./resolver":{"import":{"types":"./dist/resolver.d.ts","default":"./dist/resolver.js"},"require":{"types":"./dist/resolver.d.cts","default":"./dist/resolver.cjs"}},"./rollup":{"import":{"types":"./dist/rollup.d.ts","default":"./dist/rollup.js"},"require":{"types":"./dist/rollup.d.cts","default":"./dist/rollup.cjs"}},"./types":{"import":{"types":"./dist/types.d.ts","default":"./dist/types.js"},"require":{"types":"./dist/types.d.cts","default":"./dist/types.cjs"}},"./types/astro":{"types":"./types/astro.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/qwik":{"types":"./types/qwik.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/svelte3":{"types":"./types/svelte3.d.ts"},"./types/svelte4":{"types":"./types/svelte4.d.ts"},"./types/svelte5":{"types":"./types/svelte5.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./vite":{"import":{"types":"./dist/vite.d.ts","default":"./dist/vite.js"},"require":{"types":"./dist/vite.d.cts","default":"./dist/vite.cjs"}},"./webpack":{"import":{"types":"./dist/webpack.d.ts","default":"./dist/webpack.js"},"require":{"types":"./dist/webpack.d.cts","default":"./dist/webpack.cjs"}},"./rspack":{"import":{"types":"./dist/rspack.d.ts","default":"./dist/rspack.js"},"require":{"types":"./dist/rspack.d.cts","default":"./dist/rspack.cjs"}}},"main":"dist/index.cjs","module":"dist/index.js","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"scripts":{"build":"esno scripts/prebuild.ts && tsup","dev":"esno scripts/prebuild.ts && tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","prepublishOnly":"npm run build","release":"bumpp && npm publish","test":"vitest","typecheck":"tsc --noEmit"},"peerDependencies":{"@svgr/core":">=7.0.0","@svgx/core":"^1.0.1","@vue/compiler-sfc":"^3.0.2 || ^2.7.0","svelte":"^3.0.0 || ^4.0.0 || ^5.0.0","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@svgx/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"svelte":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.5.0","@antfu/utils":"^0.7.10","@iconify/utils":"^2.2.0","debug":"^4.4.0","kolorist":"^1.8.0","local-pkg":"^0.5.1","unplugin":"^2.1.0"},"devDependencies":{"@antfu/eslint-config":"^3.12.0","@iconify/json":"^2.2.283","@iconify/types":"^2.0.0","@svgr/core":"^8.1.0","@svgr/plugin-jsx":"^8.1.0","@svgx/core":"^1.0.1","@types/debug":"^4.1.12","@types/node":"^22.10.2","@vue/compiler-sfc":"^3.5.13","bumpp":"^9.9.1","cross-env":"^7.0.3","eslint":"^9.17.0","esno":"^4.8.0","fast-glob":"^3.3.2","publint":"^0.2.12","rollup":"^4.28.1","tsup":"^8.3.5","typescript":"^5.7.2","vite":"^6.0.3","vitest":"^2.1.8"},"_id":"unplugin-icons@0.22.0","gitHead":"fcba56db491c5ac78cac90da6fbc272005a92d64","_nodeVersion":"20.18.0","_npmVersion":"10.8.2","dist":{"integrity":"sha512-CP+iZq5U7doOifer5bcM0jQ9t3Is7EGybIYt3myVxceI8Zuk8EZEpe1NPtJvh7iqMs1VdbK0L41t9+um9VuuLw==","shasum":"84f690602a22bf6cdcae94556e3a2dc8ad5c5a29","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-0.22.0.tgz","fileCount":63,"unpackedSize":96121,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGMDiKxTxpvSc02rC7o+kwSMN513eFm1I/aX8Qy2AeZ5AiEAxllmFCgRCRcYKrTc3XuBlvJfsaqLeNUmajy0h3u6dys="}],"size":26489},"_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-icons_0.22.0_1734341059542_0.8233441319329649"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-12-16T09:24:19.720Z","publish_time":1734341059720,"_source_registry_name":"default"},"22.0.0":{"name":"unplugin-icons","type":"module","version":"22.0.0","packageManager":"pnpm@9.15.3","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-icons#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-icons.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-icons/issues"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"require":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"}},"./*":"./*","./esbuild":{"import":{"types":"./dist/esbuild.d.ts","default":"./dist/esbuild.js"},"require":{"types":"./dist/esbuild.d.cts","default":"./dist/esbuild.cjs"}},"./loaders":{"import":{"types":"./dist/loaders.d.ts","default":"./dist/loaders.js"},"require":{"types":"./dist/loaders.d.cts","default":"./dist/loaders.cjs"}},"./nuxt":{"import":{"types":"./dist/nuxt.d.ts","default":"./dist/nuxt.js"},"require":{"types":"./dist/nuxt.d.cts","default":"./dist/nuxt.cjs"}},"./resolver":{"import":{"types":"./dist/resolver.d.ts","default":"./dist/resolver.js"},"require":{"types":"./dist/resolver.d.cts","default":"./dist/resolver.cjs"}},"./rollup":{"import":{"types":"./dist/rollup.d.ts","default":"./dist/rollup.js"},"require":{"types":"./dist/rollup.d.cts","default":"./dist/rollup.cjs"}},"./types":{"import":{"types":"./dist/types.d.ts","default":"./dist/types.js"},"require":{"types":"./dist/types.d.cts","default":"./dist/types.cjs"}},"./types/astro":{"types":"./types/astro.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/qwik":{"types":"./types/qwik.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/svelte3":{"types":"./types/svelte3.d.ts"},"./types/svelte4":{"types":"./types/svelte4.d.ts"},"./types/svelte5":{"types":"./types/svelte5.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./vite":{"import":{"types":"./dist/vite.d.ts","default":"./dist/vite.js"},"require":{"types":"./dist/vite.d.cts","default":"./dist/vite.cjs"}},"./webpack":{"import":{"types":"./dist/webpack.d.ts","default":"./dist/webpack.js"},"require":{"types":"./dist/webpack.d.cts","default":"./dist/webpack.cjs"}},"./rspack":{"import":{"types":"./dist/rspack.d.ts","default":"./dist/rspack.js"},"require":{"types":"./dist/rspack.d.cts","default":"./dist/rspack.cjs"}}},"main":"dist/index.cjs","module":"dist/index.js","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"scripts":{"build":"esno scripts/prebuild.ts && tsup","dev":"esno scripts/prebuild.ts && tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","prepublishOnly":"npm run build","release":"bumpp && npm publish","test":"vitest","typecheck":"tsc --noEmit"},"peerDependencies":{"@svgr/core":">=7.0.0","@svgx/core":"^1.0.1","@vue/compiler-sfc":"^3.0.2 || ^2.7.0","svelte":"^3.0.0 || ^4.0.0 || ^5.0.0","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@svgx/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"svelte":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^0.5.0","@antfu/utils":"^0.7.10","@iconify/utils":"^2.2.1","debug":"^4.4.0","kolorist":"^1.8.0","local-pkg":"^0.5.1","unplugin":"^2.1.0"},"devDependencies":{"@antfu/eslint-config":"^3.12.1","@iconify/json":"^2.2.292","@iconify/types":"^2.0.0","@svgr/core":"^8.1.0","@svgr/plugin-jsx":"^8.1.0","@svgx/core":"^1.0.1","@types/debug":"^4.1.12","@types/node":"^22.10.5","@vue/compiler-sfc":"^3.5.13","bumpp":"^9.9.3","cross-env":"^7.0.3","eslint":"^9.17.0","esno":"^4.8.0","fast-glob":"^3.3.3","publint":"^0.3.0","rollup":"^4.30.1","tsup":"^8.3.5","typescript":"^5.7.2","vite":"^6.0.7","vitest":"^2.1.8"},"_id":"unplugin-icons@22.0.0","gitHead":"2932294500e34af335fb9e57c09204091514de13","_nodeVersion":"22.12.0","_npmVersion":"10.9.0","dist":{"integrity":"sha512-+1jIt2wynxL+GISehNok8MIb9RaCufIZCHJs0HKbxOljJL9m4NtOhva+dZhNtSKtfQ62Hwd/RRbniSVuuD4Xow==","shasum":"e6605c8a4b209eb040b48e121f4e11b1c81c6f86","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-22.0.0.tgz","fileCount":63,"unpackedSize":96194,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIH791SWxgIRtbMOqav7mS25W+MlS0e8mFeoxP/VaSzN7AiEAsS19tb3krqDK37qLsfT3qMz1wkknufgSEIjCo50BiH0="}],"size":26515},"_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-icons_22.0.0_1736315330231_0.11103613674636303"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-01-08T05:48:50.426Z","publish_time":1736315330426,"_source_registry_name":"default"},"22.1.0":{"name":"unplugin-icons","type":"module","version":"22.1.0","packageManager":"pnpm@10.4.1","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-icons#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-icons.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-icons/issues"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"require":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"}},"./*":"./*","./esbuild":{"import":{"types":"./dist/esbuild.d.ts","default":"./dist/esbuild.js"},"require":{"types":"./dist/esbuild.d.cts","default":"./dist/esbuild.cjs"}},"./loaders":{"import":{"types":"./dist/loaders.d.ts","default":"./dist/loaders.js"},"require":{"types":"./dist/loaders.d.cts","default":"./dist/loaders.cjs"}},"./nuxt":{"import":{"types":"./dist/nuxt.d.ts","default":"./dist/nuxt.js"},"require":{"types":"./dist/nuxt.d.cts","default":"./dist/nuxt.cjs"}},"./resolver":{"import":{"types":"./dist/resolver.d.ts","default":"./dist/resolver.js"},"require":{"types":"./dist/resolver.d.cts","default":"./dist/resolver.cjs"}},"./rollup":{"import":{"types":"./dist/rollup.d.ts","default":"./dist/rollup.js"},"require":{"types":"./dist/rollup.d.cts","default":"./dist/rollup.cjs"}},"./types":{"import":{"types":"./dist/types.d.ts","default":"./dist/types.js"},"require":{"types":"./dist/types.d.cts","default":"./dist/types.cjs"}},"./types/astro":{"types":"./types/astro.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/qwik":{"types":"./types/qwik.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/svelte3":{"types":"./types/svelte3.d.ts"},"./types/svelte4":{"types":"./types/svelte4.d.ts"},"./types/svelte5":{"types":"./types/svelte5.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./vite":{"import":{"types":"./dist/vite.d.ts","default":"./dist/vite.js"},"require":{"types":"./dist/vite.d.cts","default":"./dist/vite.cjs"}},"./webpack":{"import":{"types":"./dist/webpack.d.ts","default":"./dist/webpack.js"},"require":{"types":"./dist/webpack.d.cts","default":"./dist/webpack.cjs"}},"./rspack":{"import":{"types":"./dist/rspack.d.ts","default":"./dist/rspack.js"},"require":{"types":"./dist/rspack.d.cts","default":"./dist/rspack.cjs"}}},"main":"dist/index.cjs","module":"dist/index.js","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"scripts":{"build":"tsx scripts/prebuild.ts && tsup","dev":"tsx scripts/prebuild.ts && tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","prepublishOnly":"npm run build","release":"bumpp && npm publish","test":"vitest","typecheck":"tsc --noEmit"},"peerDependencies":{"@svgr/core":">=7.0.0","@svgx/core":"^1.0.1","@vue/compiler-sfc":"^3.0.2 || ^2.7.0","svelte":"^3.0.0 || ^4.0.0 || ^5.0.0","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@svgx/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"svelte":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^1.0.0","@iconify/utils":"^2.3.0","debug":"^4.4.0","local-pkg":"^1.0.0","unplugin":"^2.2.0"},"devDependencies":{"@antfu/eslint-config":"^4.3.0","@antfu/utils":"^9.1.0","@iconify/json":"^2.2.308","@iconify/types":"^2.0.0","@svgr/core":"^8.1.0","@svgr/plugin-jsx":"^8.1.0","@svgx/core":"^1.0.1","@types/debug":"^4.1.12","@types/node":"^22.13.4","@vue/compiler-sfc":"^3.5.13","bumpp":"^10.0.3","eslint":"^9.20.1","publint":"^0.3.5","rollup":"^4.34.8","tsup":"^8.3.6","tsx":"^4.19.2","typescript":"^5.7.3","vite":"^6.1.0","vitest":"^3.0.5"},"_id":"unplugin-icons@22.1.0","gitHead":"f018da55f270d37b3549ee4a44cd1425eafbf681","_nodeVersion":"22.13.1","_npmVersion":"10.9.2","dist":{"integrity":"sha512-ect2ZNtk1Zgwb0NVHd0C1IDW/MV+Jk/xaq4t8o6rYdVS3+L660ZdD5kTSQZvsgdwCvquRw+/wYn75hsweRjoIA==","shasum":"5a6fe3d751e50f1c937e289857b0418e6855d92a","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-22.1.0.tgz","fileCount":63,"unpackedSize":96581,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEQCIH24Q45iFhcnHWUXrIHJMB+ScQhHd3z2os70L4khYPZjAiBr6SqXhnZ3bSMfcOqLqiuPc1pYSVtOpnsVpMG2gktodw=="}],"size":26651},"_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-icons_22.1.0_1739877621501_0.9887913722821287"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-02-18T11:20:21.834Z","publish_time":1739877621834,"_source_registry_name":"default"},"22.2.0":{"name":"unplugin-icons","type":"module","version":"22.2.0","packageManager":"pnpm@10.13.1","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-icons#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-icons.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-icons/issues"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"require":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"}},"./*":"./*","./esbuild":{"import":{"types":"./dist/esbuild.d.ts","default":"./dist/esbuild.js"},"require":{"types":"./dist/esbuild.d.cts","default":"./dist/esbuild.cjs"}},"./loaders":{"import":{"types":"./dist/loaders.d.ts","default":"./dist/loaders.js"},"require":{"types":"./dist/loaders.d.cts","default":"./dist/loaders.cjs"}},"./nuxt":{"import":{"types":"./dist/nuxt.d.ts","default":"./dist/nuxt.js"},"require":{"types":"./dist/nuxt.d.cts","default":"./dist/nuxt.cjs"}},"./resolver":{"import":{"types":"./dist/resolver.d.ts","default":"./dist/resolver.js"},"require":{"types":"./dist/resolver.d.cts","default":"./dist/resolver.cjs"}},"./rollup":{"import":{"types":"./dist/rollup.d.ts","default":"./dist/rollup.js"},"require":{"types":"./dist/rollup.d.cts","default":"./dist/rollup.cjs"}},"./types":{"import":{"types":"./dist/types.d.ts","default":"./dist/types.js"},"require":{"types":"./dist/types.d.cts","default":"./dist/types.cjs"}},"./types/astro":{"types":"./types/astro.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/qwik":{"types":"./types/qwik.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/svelte3":{"types":"./types/svelte3.d.ts"},"./types/svelte4":{"types":"./types/svelte4.d.ts"},"./types/svelte5":{"types":"./types/svelte5.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./vite":{"import":{"types":"./dist/vite.d.ts","default":"./dist/vite.js"},"require":{"types":"./dist/vite.d.cts","default":"./dist/vite.cjs"}},"./webpack":{"import":{"types":"./dist/webpack.d.ts","default":"./dist/webpack.js"},"require":{"types":"./dist/webpack.d.cts","default":"./dist/webpack.cjs"}},"./rspack":{"import":{"types":"./dist/rspack.d.ts","default":"./dist/rspack.js"},"require":{"types":"./dist/rspack.d.cts","default":"./dist/rspack.cjs"}}},"main":"dist/index.cjs","module":"dist/index.js","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"scripts":{"build":"tsx scripts/prebuild.ts && tsup","dev":"tsx scripts/prebuild.ts && tsup --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","prepublishOnly":"npm run build","release":"bumpp && npm publish","test":"vitest","typecheck":"tsc --noEmit"},"peerDependencies":{"@svgr/core":">=7.0.0","@svgx/core":"^1.0.1","@vue/compiler-sfc":"^3.0.2 || ^2.7.0","svelte":"^3.0.0 || ^4.0.0 || ^5.0.0","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@svgx/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"svelte":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^1.1.0","@iconify/utils":"^2.3.0","debug":"^4.4.1","local-pkg":"^1.1.1","unplugin":"^2.3.5"},"devDependencies":{"@antfu/eslint-config":"^5.0.0","@antfu/utils":"^9.2.0","@iconify/json":"^2.2.363","@iconify/types":"^2.0.0","@svgr/core":"^8.1.0","@svgr/plugin-jsx":"^8.1.0","@svgx/core":"^1.0.1","@types/debug":"^4.1.12","@types/node":"^24.1.0","@vue/compiler-sfc":"^3.5.18","bumpp":"^10.2.1","eslint":"^9.32.0","publint":"^0.3.12","rollup":"^4.46.1","tsup":"^8.5.0","tsx":"^4.20.3","typescript":"^5.8.3","vite":"^7.0.6","vitest":"^3.2.4"},"_id":"unplugin-icons@22.2.0","gitHead":"3831eb07d96e94d503df62f45512f3ca3e50cc26","_nodeVersion":"22.13.1","_npmVersion":"10.9.2","dist":{"integrity":"sha512-OdrXCiXexC1rFd0QpliAgcd4cMEEEQtoCf2WIrRIGu4iW6auBPpQKMCBeWxoe55phYdRyZLUWNOtzyTX+HOFSA==","shasum":"5d2de5fe9828cf988ecb3cbb5ef7472cbd840876","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-22.2.0.tgz","fileCount":63,"unpackedSize":97965,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIQCN4rwnXp8uDqMHWfSMnz8THAFpEOQqSJGNSdW2KN8E+AIgVlGkT2ZvtqiI1XuD8pYMGRClBaQ77gd97OwgWJn8cj8="}],"size":26938},"_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-icons_22.2.0_1753767790152_0.4890143225428656"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-07-29T05:43:10.341Z","publish_time":1753767790341,"_source_registry_name":"default"},"22.3.0":{"name":"unplugin-icons","type":"module","version":"22.3.0","packageManager":"pnpm@10.15.1","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-icons#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-icons.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-icons/issues"},"exports":{".":{"import":{"types":"./dist/index.d.ts","default":"./dist/index.js"},"require":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"}},"./*":"./*","./esbuild":{"import":{"types":"./dist/esbuild.d.ts","default":"./dist/esbuild.js"},"require":{"types":"./dist/esbuild.d.cts","default":"./dist/esbuild.cjs"}},"./loaders":{"import":{"types":"./dist/loaders.d.ts","default":"./dist/loaders.js"},"require":{"types":"./dist/loaders.d.cts","default":"./dist/loaders.cjs"}},"./nuxt":{"import":{"types":"./dist/nuxt.d.ts","default":"./dist/nuxt.js"},"require":{"types":"./dist/nuxt.d.cts","default":"./dist/nuxt.cjs"}},"./resolver":{"import":{"types":"./dist/resolver.d.ts","default":"./dist/resolver.js"},"require":{"types":"./dist/resolver.d.cts","default":"./dist/resolver.cjs"}},"./rollup":{"import":{"types":"./dist/rollup.d.ts","default":"./dist/rollup.js"},"require":{"types":"./dist/rollup.d.cts","default":"./dist/rollup.cjs"}},"./types":{"import":{"types":"./dist/types.d.ts","default":"./dist/types.js"},"require":{"types":"./dist/types.d.cts","default":"./dist/types.cjs"}},"./types/astro":{"types":"./types/astro.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/qwik":{"types":"./types/qwik.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/svelte3":{"types":"./types/svelte3.d.ts"},"./types/svelte4":{"types":"./types/svelte4.d.ts"},"./types/svelte5":{"types":"./types/svelte5.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"},"./vite":{"import":{"types":"./dist/vite.d.ts","default":"./dist/vite.js"},"require":{"types":"./dist/vite.d.cts","default":"./dist/vite.cjs"}},"./webpack":{"import":{"types":"./dist/webpack.d.ts","default":"./dist/webpack.js"},"require":{"types":"./dist/webpack.d.cts","default":"./dist/webpack.cjs"}},"./rspack":{"import":{"types":"./dist/rspack.d.ts","default":"./dist/rspack.js"},"require":{"types":"./dist/rspack.d.cts","default":"./dist/rspack.cjs"}}},"main":"dist/index.cjs","module":"dist/index.js","types":"dist/index.d.ts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"scripts":{"build":"tsx scripts/prebuild.ts && tsdown","dev":"tsx scripts/prebuild.ts && tsdown --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","prepublishOnly":"npm run build","release":"bumpp && npm publish","test":"vitest","typecheck":"tsc --noEmit"},"peerDependencies":{"@svgr/core":">=7.0.0","@svgx/core":"^1.0.1","@vue/compiler-sfc":"^3.0.2 || ^2.7.0","svelte":"^3.0.0 || ^4.0.0 || ^5.0.0","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@svgx/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"svelte":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^1.1.0","@iconify/utils":"^3.0.1","debug":"^4.4.1","local-pkg":"^1.1.2","unplugin":"^2.3.10"},"devDependencies":{"@antfu/eslint-config":"^5.3.0","@antfu/utils":"^9.2.0","@iconify/json":"^2.2.383","@iconify/types":"^2.0.0","@svgr/core":"^8.1.0","@svgr/plugin-jsx":"^8.1.0","@svgx/core":"^1.0.1","@types/debug":"^4.1.12","@types/node":"^24.3.1","@vue/compiler-sfc":"^3.5.21","bumpp":"^10.2.3","eslint":"^9.35.0","publint":"^0.3.12","rollup":"^4.50.1","tsdown":"^0.15.0","tsx":"^4.20.5","typescript":"^5.9.2","vite":"^7.1.5","vitest":"^3.2.4"},"_id":"unplugin-icons@22.3.0","gitHead":"737939eb410484b5cce39d5f82c6f92f070e5c30","_nodeVersion":"22.13.1","_npmVersion":"10.9.2","dist":{"integrity":"sha512-Q7c2RoVUn4LzFADT0H/oT5ApJgiWW+xTK7D5/hi6gYtObmAuEE6ebyvejvfbinJL8tH4wanoNjkWcmlqEsTcXg==","shasum":"66128a7a25bac329047718b05a93e9b0391e0b36","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-22.3.0.tgz","fileCount":66,"unpackedSize":93853,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCICEkLZ7zaqWiAs4YkinoN7nROK5DFpNFRuVb5BAQJcy2AiEAt+VLDYomZRsDgP7IZZrfcre2oMnFOo5rFIPq+hMuBwk="}],"size":26425},"_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-icons_22.3.0_1757640612941_0.8846386081870936"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-09-12T01:30:13.131Z","publish_time":1757640613131,"_source_registry_name":"default"},"22.4.0":{"name":"unplugin-icons","type":"module","version":"22.4.0","packageManager":"pnpm@10.17.1","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-icons#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-icons.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-icons/issues"},"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"},"./esbuild":{"import":"./dist/esbuild.js","require":"./dist/esbuild.cjs"},"./loaders":{"import":"./dist/loaders.js","require":"./dist/loaders.cjs"},"./nuxt":{"import":"./dist/nuxt.js","require":"./dist/nuxt.cjs"},"./resolver":{"import":"./dist/resolver.js","require":"./dist/resolver.cjs"},"./rolldown":{"import":"./dist/rolldown.js","require":"./dist/rolldown.cjs"},"./rollup":{"import":"./dist/rollup.js","require":"./dist/rollup.cjs"},"./rspack":{"import":"./dist/rspack.js","require":"./dist/rspack.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"},"./package.json":"./package.json"},"main":"./dist/index.cjs","module":"./dist/index.js","types":"./dist/index.d.cts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"scripts":{"build":"tsx scripts/prebuild.ts && tsdown","dev":"tsx scripts/prebuild.ts && tsdown --watch src","example:build":"npm -C examples/vite-vue3 run build","example:dev":"npm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","prepublishOnly":"npm run build","release":"bumpp && npm publish","test":"vitest","typecheck":"tsc --noEmit"},"peerDependencies":{"@svgr/core":">=7.0.0","@svgx/core":"^1.0.1","@vue/compiler-sfc":"^3.0.2 || ^2.7.0","svelte":"^3.0.0 || ^4.0.0 || ^5.0.0","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@svgx/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"svelte":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^1.1.0","@iconify/utils":"^3.0.2","debug":"^4.4.3","local-pkg":"^1.1.2","unplugin":"^2.3.10"},"devDependencies":{"@antfu/eslint-config":"^5.4.1","@antfu/utils":"^9.2.1","@iconify/json":"^2.2.390","@iconify/types":"^2.0.0","@svgr/core":"^8.1.0","@svgr/plugin-jsx":"^8.1.0","@svgx/core":"^1.0.1","@types/debug":"^4.1.12","@types/node":"^24.6.1","@vue/compiler-sfc":"^3.5.22","bumpp":"^10.2.3","eslint":"^9.36.0","publint":"^0.3.13","rollup":"^4.52.3","tsdown":"^0.15.6","tsx":"^4.20.6","typescript":"^5.9.3","vite":"^7.1.7","vitest":"^3.2.4"},"_id":"unplugin-icons@22.4.0","gitHead":"7715e463f18a0bf76cf6dc2e24b23b95c3fdb9b4","_nodeVersion":"22.13.1","_npmVersion":"10.9.2","dist":{"integrity":"sha512-ZkzBiXbhphMuqZeRxRUl4/30cj1vlTB23+61c+b/oLc6Oc7WwAG/o/6Hbw2uJLoSOXNLDQrzX7/IpuL66RdhMw==","shasum":"02d874b55e9daee96d19fb826e0f589923180ce3","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-22.4.0.tgz","fileCount":70,"unpackedSize":92699,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEQCIGW52ZppYRf0vJ/9qS3M5rx2uWTkYlG9GzF9FUpZifTdAiAa7I/ioz1WC1QcBFyAuF29rbNBfxYdQSi5AFIPWF7hZw=="}],"size":26416},"_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-icons_22.4.0_1759300392702_0.6024615691128714"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-10-01T06:33:12.908Z","publish_time":1759300392908,"_source_registry_name":"default"},"22.4.1":{"name":"unplugin-icons","type":"module","version":"22.4.1","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-icons#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-icons.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-icons/issues"},"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"},"./esbuild":{"import":"./dist/esbuild.js","require":"./dist/esbuild.cjs"},"./loaders":{"import":"./dist/loaders.js","require":"./dist/loaders.cjs"},"./nuxt":{"import":"./dist/nuxt.js","require":"./dist/nuxt.cjs"},"./resolver":{"import":"./dist/resolver.js","require":"./dist/resolver.cjs"},"./rolldown":{"import":"./dist/rolldown.js","require":"./dist/rolldown.cjs"},"./rollup":{"import":"./dist/rollup.js","require":"./dist/rollup.cjs"},"./rspack":{"import":"./dist/rspack.js","require":"./dist/rspack.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"},"./package.json":"./package.json"},"main":"./dist/index.cjs","module":"./dist/index.js","types":"./dist/index.d.cts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"peerDependencies":{"@svgr/core":">=7.0.0","@svgx/core":"^1.0.1","@vue/compiler-sfc":"^3.0.2 || ^2.7.0","svelte":"^3.0.0 || ^4.0.0 || ^5.0.0","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@svgx/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"svelte":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^1.1.0","@iconify/utils":"^3.0.2","debug":"^4.4.3","local-pkg":"^1.1.2","unplugin":"^2.3.10"},"devDependencies":{"@antfu/eslint-config":"^5.4.1","@antfu/utils":"^9.2.1","@iconify/json":"^2.2.390","@iconify/types":"^2.0.0","@svgr/core":"^8.1.0","@svgr/plugin-jsx":"^8.1.0","@svgx/core":"^1.0.1","@types/debug":"^4.1.12","@types/node":"^24.6.1","@vue/compiler-sfc":"^3.5.22","bumpp":"^10.2.3","eslint":"^9.36.0","publint":"^0.3.13","rollup":"^4.52.3","tsdown":"^0.15.6","tsx":"^4.20.6","typescript":"^5.9.3","vite":"^7.1.7","vitest":"^3.2.4"},"scripts":{"build":"tsx scripts/prebuild.ts && tsdown","dev":"tsx scripts/prebuild.ts && tsdown --watch src","example:build":"pnpm -C examples/vite-vue3 run build","example:dev":"pnpm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","release":"bumpp","test":"vitest","typecheck":"tsc --noEmit"},"_id":"unplugin-icons@22.4.1","_integrity":"sha512-4PlydmatS9j/6CES0rnCpJMNc9bWDoh4MoFe+a86RXsS1VUOdJ1/7J2cnnXBmm4BgJdxEsJp+9Ov4555k1qp0g==","_resolved":"/tmp/496edac51fcae85de92c4d4e1fc15308/unplugin-icons-22.4.1.tgz","_from":"file:unplugin-icons-22.4.1.tgz","_nodeVersion":"22.19.0","_npmVersion":"11.6.1","dist":{"integrity":"sha512-4PlydmatS9j/6CES0rnCpJMNc9bWDoh4MoFe+a86RXsS1VUOdJ1/7J2cnnXBmm4BgJdxEsJp+9Ov4555k1qp0g==","shasum":"f5e660b5f92db4367a0fd6859c45f684270a4ba0","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-22.4.1.tgz","fileCount":70,"unpackedSize":92610,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/unplugin-icons@22.4.1","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQDKw6v06xNGU2I1to1D52Ntc77tx9stAmqqQFmRw210lAIhAP0M8C34A5do9EXF81tS1j8DTjNj8FRU3zPols45arw3"}],"size":26586},"_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:a4c55527-cd55-4f07-9dbc-aa4856a4c2d8"}},"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-icons_22.4.1_1759300508112_0.07787341970165151"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-10-01T06:35:08.460Z","publish_time":1759300508460,"_source_registry_name":"default"},"22.4.2":{"name":"unplugin-icons","type":"module","version":"22.4.2","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-icons#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-icons.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-icons/issues"},"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"},"./esbuild":{"import":"./dist/esbuild.js","require":"./dist/esbuild.cjs"},"./loaders":{"import":"./dist/loaders.js","require":"./dist/loaders.cjs"},"./nuxt":{"import":"./dist/nuxt.js","require":"./dist/nuxt.cjs"},"./resolver":{"import":"./dist/resolver.js","require":"./dist/resolver.cjs"},"./rolldown":{"import":"./dist/rolldown.js","require":"./dist/rolldown.cjs"},"./rollup":{"import":"./dist/rollup.js","require":"./dist/rollup.cjs"},"./rspack":{"import":"./dist/rspack.js","require":"./dist/rspack.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"},"./package.json":"./package.json","./types/astro":{"types":"./types/astro.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/qwik":{"types":"./types/qwik.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/svelte3":{"types":"./types/svelte3.d.ts"},"./types/svelte4":{"types":"./types/svelte4.d.ts"},"./types/svelte5":{"types":"./types/svelte5.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"}},"main":"./dist/index.cjs","module":"./dist/index.js","types":"./dist/index.d.cts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"peerDependencies":{"@svgr/core":">=7.0.0","@svgx/core":"^1.0.1","@vue/compiler-sfc":"^3.0.2 || ^2.7.0","svelte":"^3.0.0 || ^4.0.0 || ^5.0.0","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@svgx/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"svelte":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^1.1.0","@iconify/utils":"^3.0.2","debug":"^4.4.3","local-pkg":"^1.1.2","unplugin":"^2.3.10"},"devDependencies":{"@antfu/eslint-config":"^5.4.1","@antfu/utils":"^9.2.1","@iconify/json":"^2.2.390","@iconify/types":"^2.0.0","@svgr/core":"^8.1.0","@svgr/plugin-jsx":"^8.1.0","@svgx/core":"^1.0.1","@types/debug":"^4.1.12","@types/node":"^24.6.1","@vue/compiler-sfc":"^3.5.22","bumpp":"^10.2.3","eslint":"^9.36.0","publint":"^0.3.13","rollup":"^4.52.3","tsdown":"^0.15.6","tsx":"^4.20.6","typescript":"^5.9.3","vite":"^7.1.7","vitest":"^3.2.4"},"scripts":{"build":"tsx scripts/prebuild.ts && tsdown","dev":"tsx scripts/prebuild.ts && tsdown --watch src","example:build":"pnpm -C examples/vite-vue3 run build","example:dev":"pnpm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","release":"bumpp","test":"vitest","typecheck":"tsc --noEmit"},"_id":"unplugin-icons@22.4.2","_integrity":"sha512-Yv15405unO67Chme0Slk0JRA/H2AiAZLK5t7ebt8/ZpTDlBfM4d4En2qD3MX2rzOSkIteQ0syIm3q8MSofeoBA==","_resolved":"/tmp/42a7c53131636f6d7bd379017f2ccfdb/unplugin-icons-22.4.2.tgz","_from":"file:unplugin-icons-22.4.2.tgz","_nodeVersion":"22.19.0","_npmVersion":"11.6.1","dist":{"integrity":"sha512-Yv15405unO67Chme0Slk0JRA/H2AiAZLK5t7ebt8/ZpTDlBfM4d4En2qD3MX2rzOSkIteQ0syIm3q8MSofeoBA==","shasum":"c3403710b46b75089fb6f8901ef431895c9e3fa0","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-22.4.2.tgz","fileCount":70,"unpackedSize":93331,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/unplugin-icons@22.4.2","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIGUEpnm8HtWR/6WR9vDI809i8Zf0ryX5kQcZf2qWXKWHAiEAotuHZ9IJCCZCf25A79CLRfkG6oif8tlU70B9QXT5uYo="}],"size":26679},"_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:a4c55527-cd55-4f07-9dbc-aa4856a4c2d8"}},"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-icons_22.4.2_1759372455386_0.8981280124356747"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-10-02T02:34:15.560Z","publish_time":1759372455560,"_source_registry_name":"default"},"22.5.0":{"name":"unplugin-icons","type":"module","version":"22.5.0","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-icons#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-icons.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-icons/issues"},"exports":{".":{"import":"./dist/index.js","require":"./dist/index.cjs"},"./esbuild":{"import":"./dist/esbuild.js","require":"./dist/esbuild.cjs"},"./loaders":{"import":"./dist/loaders.js","require":"./dist/loaders.cjs"},"./nuxt":{"import":"./dist/nuxt.js","require":"./dist/nuxt.cjs"},"./resolver":{"import":"./dist/resolver.js","require":"./dist/resolver.cjs"},"./rolldown":{"import":"./dist/rolldown.js","require":"./dist/rolldown.cjs"},"./rollup":{"import":"./dist/rollup.js","require":"./dist/rollup.cjs"},"./rspack":{"import":"./dist/rspack.js","require":"./dist/rspack.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"},"./package.json":"./package.json","./types/astro":{"types":"./types/astro.d.ts"},"./types/ember":{"types":"./types/ember.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/qwik":{"types":"./types/qwik.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/svelte3":{"types":"./types/svelte3.d.ts"},"./types/svelte4":{"types":"./types/svelte4.d.ts"},"./types/svelte5":{"types":"./types/svelte5.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"}},"main":"./dist/index.cjs","module":"./dist/index.js","types":"./dist/index.d.cts","typesVersions":{"*":{"*":["./dist/*","./*"]}},"peerDependencies":{"@svgr/core":">=7.0.0","@svgx/core":"^1.0.1","@vue/compiler-sfc":"^3.0.2 || ^2.7.0","svelte":"^3.0.0 || ^4.0.0 || ^5.0.0","vue-template-compiler":"^2.6.12","vue-template-es2015-compiler":"^1.9.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@svgx/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"svelte":{"optional":true},"vue-template-compiler":{"optional":true},"vue-template-es2015-compiler":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^1.1.0","@iconify/utils":"^3.0.2","debug":"^4.4.3","local-pkg":"^1.1.2","unplugin":"^2.3.10"},"devDependencies":{"@antfu/eslint-config":"^6.0.0","@antfu/utils":"^9.3.0","@iconify/json":"^2.2.397","@iconify/types":"^2.0.0","@svgr/core":"^8.1.0","@svgr/plugin-jsx":"^8.1.0","@svgx/core":"^1.0.1","@types/debug":"^4.1.12","@types/node":"^24.8.1","@vue/compiler-sfc":"^3.5.22","bumpp":"^10.3.1","eslint":"^9.38.0","publint":"^0.3.14","rollup":"^4.52.5","tsdown":"^0.15.8","tsx":"^4.20.6","typescript":"^5.9.3","vite":"^7.1.10","vitest":"^3.2.4"},"scripts":{"build":"tsx scripts/prebuild.ts && tsdown","dev":"tsx scripts/prebuild.ts && tsdown --watch src","example:build":"pnpm -C examples/vite-vue3 run build","example:dev":"pnpm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","release":"bumpp","test":"vitest","typecheck":"tsc --noEmit"},"_id":"unplugin-icons@22.5.0","_integrity":"sha512-MBlMtT5RuMYZy4TZgqUL2OTtOdTUVsS1Mhj6G1pEzMlFJlEnq6mhUfoIt45gBWxHcsOdXJDWLg3pRZ+YmvAVWQ==","_resolved":"/tmp/3ec5b5dbaa7ff94881648aa9d5db99c2/unplugin-icons-22.5.0.tgz","_from":"file:unplugin-icons-22.5.0.tgz","_nodeVersion":"22.20.0","_npmVersion":"11.6.2","dist":{"integrity":"sha512-MBlMtT5RuMYZy4TZgqUL2OTtOdTUVsS1Mhj6G1pEzMlFJlEnq6mhUfoIt45gBWxHcsOdXJDWLg3pRZ+YmvAVWQ==","shasum":"42c83bf93afcb2b9916fa6f4cc6b438c5cc8c16e","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-22.5.0.tgz","fileCount":71,"unpackedSize":96103,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/unplugin-icons@22.5.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQDTmv//uPfIoIRLtDCgJzmQZ16Vl9kEVSIRhnVKXYSPrAIhAMpCikOwmDBHebJki+4cC0QgFHMutSnCai9wMlTK293+"}],"size":27414},"_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:a4c55527-cd55-4f07-9dbc-aa4856a4c2d8"}},"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-icons_22.5.0_1760911863878_0.564868213920279"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-10-19T22:11:04.083Z","publish_time":1760911864083,"_source_registry_name":"default"},"23.0.0":{"name":"unplugin-icons","type":"module","version":"23.0.0","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-icons#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-icons.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-icons/issues"},"exports":{".":"./dist/index.js","./esbuild":"./dist/esbuild.js","./loaders":"./dist/loaders.js","./nuxt":"./dist/nuxt.js","./resolver":"./dist/resolver.js","./rolldown":"./dist/rolldown.js","./rollup":"./dist/rollup.js","./rspack":"./dist/rspack.js","./types":"./dist/types.js","./vite":"./dist/vite.js","./webpack":"./dist/webpack.js","./package.json":"./package.json","./types/astro":{"types":"./types/astro.d.ts"},"./types/ember":{"types":"./types/ember.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/qwik":{"types":"./types/qwik.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/svelte3":{"types":"./types/svelte3.d.ts"},"./types/svelte4":{"types":"./types/svelte4.d.ts"},"./types/svelte5":{"types":"./types/svelte5.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"}},"typesVersions":{"*":{"*":["./dist/*","./*"]}},"peerDependencies":{"@svgr/core":">=7.0.0","@svgx/core":"^1.0.1","@vue/compiler-sfc":"^3.0.2","svelte":"^3.0.0 || ^4.0.0 || ^5.0.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@svgx/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"svelte":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^1.1.0","@iconify/utils":"^3.1.0","local-pkg":"^1.1.2","obug":"^2.1.1","unplugin":"^2.3.11"},"devDependencies":{"@antfu/eslint-config":"^7.0.0","@antfu/utils":"^9.3.0","@iconify/json":"^2.2.427","@iconify/types":"^2.0.0","@svgr/core":"^8.1.0","@svgr/plugin-jsx":"^8.1.0","@svgx/core":"^1.0.1","@types/node":"^25.0.8","@vue/compiler-sfc":"^3.5.26","bumpp":"^10.4.0","eslint":"^9.39.2","publint":"^0.3.16","rollup":"^4.55.1","tsdown":"^0.20.0-beta.2","tsx":"^4.21.0","typescript":"^5.9.3","vite":"^7.3.1","vitest":"^4.0.17"},"scripts":{"build":"tsx scripts/prebuild.ts && tsdown","dev":"tsx scripts/prebuild.ts && tsdown --watch src","example:build":"pnpm -C examples/vite-vue3 run build","example:dev":"pnpm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","release":"bumpp","test":"vitest","typecheck":"tsc --noEmit"},"_id":"unplugin-icons@23.0.0","_integrity":"sha512-s9OTpZEmNv+5VfKSBRrdtnEMp1JRGmv5mxcNxH/QJ4hKgTxE5ki/2Y4JdtnXjMxCMqvgmSwVLZFKLQlwMDp8Kw==","_resolved":"/tmp/f26ea128c8e2e6a620cfbdf86e4efa38/unplugin-icons-23.0.0.tgz","_from":"file:unplugin-icons-23.0.0.tgz","_nodeVersion":"24.12.0","_npmVersion":"11.6.2","dist":{"integrity":"sha512-s9OTpZEmNv+5VfKSBRrdtnEMp1JRGmv5mxcNxH/QJ4hKgTxE5ki/2Y4JdtnXjMxCMqvgmSwVLZFKLQlwMDp8Kw==","shasum":"3d2e9621618513cb9d8cfcca019c6811922bf118","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-23.0.0.tgz","fileCount":31,"unpackedSize":56364,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/unplugin-icons@23.0.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEQCIAMg5MlBbcy/y1inXjiEiODOTuPcqbkiEpqXoxOWkSE7AiBU1XBHMTGsOVFSWPay8w4hDs9MalvCWBtdcnJrqF+p5w=="}],"size":16215},"_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:a4c55527-cd55-4f07-9dbc-aa4856a4c2d8"}},"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-icons_23.0.0_1768361080570_0.5619847720503852"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2026-01-14T03:24:40.709Z","publish_time":1768361080709,"_source_registry_name":"default"},"23.0.1":{"name":"unplugin-icons","type":"module","version":"23.0.1","description":"Access thousands of icons as components on-demand universally","author":{"name":"Anthony Fu","email":"anthonyfu117@hotmail.com"},"license":"MIT","funding":"https://github.com/sponsors/antfu","homepage":"https://github.com/unplugin/unplugin-icons#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-icons.git"},"bugs":{"url":"https://github.com/unplugin/unplugin-icons/issues"},"exports":{".":"./dist/index.mjs","./esbuild":"./dist/esbuild.mjs","./loaders":"./dist/loaders.mjs","./nuxt":"./dist/nuxt.mjs","./resolver":"./dist/resolver.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/astro":{"types":"./types/astro.d.ts"},"./types/ember":{"types":"./types/ember.d.ts"},"./types/preact":{"types":"./types/preact.d.ts"},"./types/qwik":{"types":"./types/qwik.d.ts"},"./types/raw":{"types":"./types/raw.d.ts"},"./types/react":{"types":"./types/react.d.ts"},"./types/solid":{"types":"./types/solid.d.ts"},"./types/svelte":{"types":"./types/svelte.d.ts"},"./types/svelte3":{"types":"./types/svelte3.d.ts"},"./types/svelte4":{"types":"./types/svelte4.d.ts"},"./types/svelte5":{"types":"./types/svelte5.d.ts"},"./types/vue":{"types":"./types/vue.d.ts"},"./types/vue3":{"types":"./types/vue3.d.ts"},"./types/web-components":{"types":"./types/web-components.d.ts"}},"typesVersions":{"*":{"*":["./dist/*.d.mts","./*"]}},"peerDependencies":{"@svgr/core":">=7.0.0","@svgx/core":"^1.0.1","@vue/compiler-sfc":"^3.0.2","svelte":"^3.0.0 || ^4.0.0 || ^5.0.0"},"peerDependenciesMeta":{"@svgr/core":{"optional":true},"@svgx/core":{"optional":true},"@vue/compiler-sfc":{"optional":true},"svelte":{"optional":true}},"dependencies":{"@antfu/install-pkg":"^1.1.0","@iconify/utils":"^3.1.0","local-pkg":"^1.1.2","obug":"^2.1.1","unplugin":"^2.3.11"},"devDependencies":{"@antfu/eslint-config":"^7.0.0","@antfu/utils":"^9.3.0","@iconify/json":"^2.2.427","@iconify/types":"^2.0.0","@svgr/core":"^8.1.0","@svgr/plugin-jsx":"^8.1.0","@svgx/core":"^1.0.1","@types/node":"^25.0.8","@vue/compiler-sfc":"^3.5.26","bumpp":"^10.4.0","eslint":"^9.39.2","publint":"^0.3.16","rollup":"^4.55.1","tsdown":"^0.20.0-beta.2","tsx":"^4.21.0","typescript":"^5.9.3","vite":"^7.3.1","vitest":"^4.0.17"},"scripts":{"build":"tsx scripts/prebuild.ts && tsdown","dev":"tsx scripts/prebuild.ts && tsdown --watch src","example:build":"pnpm -C examples/vite-vue3 run build","example:dev":"pnpm -C examples/vite-vue3 run dev","lint":"eslint .","lint-fix":"eslint . --fix","release":"bumpp","test":"vitest","typecheck":"tsc --noEmit"},"_id":"unplugin-icons@23.0.1","_integrity":"sha512-rv0XEJepajKzDLvRUWASM8K+8+/CCfZn2jtogXqg6RIp7kpatRc/aFrVJn8ANQA09e++lPEEv9yX8cC9enc+QQ==","_resolved":"/tmp/b3c288d167ad7c6cbb00e374a1fedc28/unplugin-icons-23.0.1.tgz","_from":"file:unplugin-icons-23.0.1.tgz","_nodeVersion":"24.12.0","_npmVersion":"11.6.2","dist":{"integrity":"sha512-rv0XEJepajKzDLvRUWASM8K+8+/CCfZn2jtogXqg6RIp7kpatRc/aFrVJn8ANQA09e++lPEEv9yX8cC9enc+QQ==","shasum":"aef196f5e0cb8121797ff22314e02063dc4fe04b","tarball":"https://registry.npmmirror.com/unplugin-icons/-/unplugin-icons-23.0.1.tgz","fileCount":43,"unpackedSize":63677,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/unplugin-icons@23.0.1","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEQCIAgdlwlrtQMfva8IpYPd4OujVIqTyV9UAfugcmGmhP8oAiBPNCeORQ9fvw+Pe0eNLyYyGO+A3zU/vdNKhmUpX+sQgg=="}],"size":18213},"_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:a4c55527-cd55-4f07-9dbc-aa4856a4c2d8"}},"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-icons_23.0.1_1768388002167_0.12031373490356434"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2026-01-14T10:53:22.330Z","publish_time":1768388002330,"_source_registry_name":"default"}},"bugs":{"url":"https://github.com/unplugin/unplugin-icons/issues"},"homepage":"https://github.com/unplugin/unplugin-icons#readme","repository":{"type":"git","url":"git+https://github.com/unplugin/unplugin-icons.git"},"_source_registry_name":"default"}