Socket
Socket
Sign inDemoInstall

unplugin-vue-components

Package Overview
Dependencies
Maintainers
2
Versions
84
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

unplugin-vue-components - npm Package Compare versions

Comparing version 0.19.3 to 0.19.5

30

dist/resolvers.d.ts

@@ -400,2 +400,30 @@ import { ComponentResolver, ComponentResolveResult } from './types.js';

export { AntDesignVueResolver, AntDesignVueResolverOptions, ArcoResolver, ArcoResolverOptions, DevResolverOptions, DevUiResolver, ElementPlusResolver, ElementPlusResolverOptions, ElementUiResolver, ElementUiResolverOptions, HeadlessUiResolver, HeadlessUiResolverOptions, IduxResolver, IduxResolverOptions, InklineResolver, NaiveUiResolver, PrimeVueResolver, PrimeVueResolverOptions, QuasarResolver, TDesignResolver, TDesignResolverOptions, VantResolver, VantResolverOptions, VarletUIResolver, VarletUIResolverOptions, VeuiResolver, VeuiResolverOptions, ViewUiResolver, VueUseComponentsResolver, Vuetify3Resolver, VuetifyResolver, getResolved };
interface LayuiVueResolverOptions {
/**
* import style along with components
*
* @default 'css'
*/
importStyle?: boolean | 'css';
/**
* resolve '@layui/layui-vue' icons
* requires package `@layui/icons-vue`
*
* @default false
*/
resolveIcons?: boolean;
/**
* exclude components that do not require automatic import
*
*/
exclude?: Array<string | RegExp>;
}
/**
* Resolver for layui-vue
*
* @link http://www.layui-vue.com/ for layui-vue
*
*/
declare function LayuiVueResolver(options?: LayuiVueResolverOptions): ComponentResolver;
export { AntDesignVueResolver, AntDesignVueResolverOptions, ArcoResolver, ArcoResolverOptions, DevResolverOptions, DevUiResolver, ElementPlusResolver, ElementPlusResolverOptions, ElementUiResolver, ElementUiResolverOptions, HeadlessUiResolver, HeadlessUiResolverOptions, IduxResolver, IduxResolverOptions, InklineResolver, LayuiVueResolver, LayuiVueResolverOptions, NaiveUiResolver, PrimeVueResolver, PrimeVueResolverOptions, QuasarResolver, TDesignResolver, TDesignResolverOptions, VantResolver, VantResolverOptions, VarletUIResolver, VarletUIResolverOptions, VeuiResolver, VeuiResolverOptions, ViewUiResolver, VueUseComponentsResolver, Vuetify3Resolver, VuetifyResolver, getResolved };

@@ -465,2 +465,3 @@ "use strict";Object.defineProperty(exports, "__esModule", {value: true});

"DialogTitle",
"DialogPanel",
"Disclosure",

@@ -917,2 +918,4 @@ "DisclosureButton",

// src/core/resolvers/vueuse.ts
var _fs = require('fs');
var _localpkg = require('local-pkg');
var components4;

@@ -924,7 +927,11 @@ function VueUseComponentsResolver() {

if (!components4) {
let indexesJson;
try {
const indexesJson = _chunkTMX2H7L5js.__require.call(void 0, "@vueuse/core/indexes.json");
const corePath = _localpkg.resolveModule.call(void 0, "@vueuse/core") || process.cwd();
const path = _localpkg.resolveModule.call(void 0, "@vueuse/core/indexes.json") || _localpkg.resolveModule.call(void 0, "@vueuse/metadata/index.json") || _localpkg.resolveModule.call(void 0, "@vueuse/metadata/index.json", { paths: [corePath] });
indexesJson = JSON.parse(_fs.readFileSync.call(void 0, path, "utf-8"));
components4 = indexesJson.functions.filter((i) => i.component && i.name).map(({ name: name2 }) => name2[0].toUpperCase() + name2.slice(1));
} catch (error) {
components4 = [];
console.error(error);
throw new Error("[vue-components] failed to load @vueuse/core, have you installed it?");
}

@@ -939,4 +946,4 @@ }

// src/core/resolvers/quasar.ts
var _fs = require('fs');
var _localpkg = require('local-pkg');
function QuasarResolver() {

@@ -1049,3 +1056,3 @@ let components5 = [];

{
pattern: /^(Doption|Dgroup|Dsubmenu)$/,
pattern: /^(Doption|Dgroup|Dsubmenu|DropdownButton)$/,
componentDir: "dropdown"

@@ -1173,3 +1180,3 @@ },

const prefix2 = fileName.slice(0, fileName.indexOf("-"));
const container = ["anchor", "avatar", "breadcrumb", "checkbox", "dropdown", "form", "input", "list", "menu", "radio", "slider", "swiper"];
const container = ["anchor", "avatar", "breadcrumb", "checkbox", "dropdown", "form", "input", "list", "menu", "radio", "slider", "swiper", "color-picker", "text", "collapse"];
if (container.includes(prefix2))

@@ -1194,5 +1201,5 @@ fileName = prefix2;

fileName = "tag";
if (fileName === "time-range-picker")
if (["time-range-picker", "time-range-picker-panel"].includes(fileName))
fileName = "time-picker";
if (fileName === "date-range-picker")
if (["date-range-picker", "date-range-picker-panel"].includes(fileName))
fileName = "date-picker";

@@ -1226,2 +1233,125 @@ if (importStyle === "less")

// src/core/resolvers/layui-vue.ts
var matchComponents4 = [
{
pattern: /^LayAvatarList$/,
styleDir: "avatar"
},
{
pattern: /^LayBreadcrumbItem$/,
styleDir: "breadcrumb"
},
{
pattern: /^(LayCarouselItem)$/,
styleDir: "carousel"
},
{
pattern: /^(LayCheckboxGroup)$/,
styleDir: "checkbox"
},
{
pattern: /^LayCol$/,
styleDir: "row"
},
{
pattern: /^(LayCollapseItem)$/,
styleDir: "collapse"
},
{
pattern: /^LayConfigProvider$/,
styleDir: void 0
},
{
pattern: /^LayCountUp$/,
styleDir: void 0
},
{
pattern: /^(LayDropdownMenu|LayDropdownMenuItem)$/,
styleDir: "dropdown"
},
{
pattern: /^(LayFormItem)$/,
styleDir: "form"
},
{
pattern: /^(LayMenuItem|LaySubMenu)$/,
styleDir: "menu"
},
{
pattern: /^LaySelectOption$/,
styleDir: "select"
},
{
pattern: /^LaySkeletonItem$/,
styleDir: "skeleton"
},
{
pattern: /^LaySplitPanelItem$/,
styleDir: "splitPanel"
},
{
pattern: /^LayStepItem$/,
styleDir: "step"
},
{
pattern: /^(LayTabItem)$/,
styleDir: "tab"
},
{
pattern: /^LayTimelineItem$/,
styleDir: "timeline"
}
];
var layuiRE = /^Lay[A-Z]/;
var layerRE = /^(layer|LayLayer)$/;
var iconsRE = /^([A-Z][\w]+Icon|LayIcon)$/;
var libName = "@layui/layui-vue";
function getSideEffects9(importName, options) {
const { importStyle = "css" } = options;
if (!importStyle)
return void 0;
if (libName !== "@layui/layui-vue")
return `${libName}/lib/index.css`;
let styleDir = _chunkTMX2H7L5js.camelCase.call(void 0, importName.slice(3));
for (const item of matchComponents4) {
if (item.pattern.test(importName)) {
styleDir = item.styleDir;
break;
}
}
if (importStyle === "css" || importStyle) {
return styleDir ? [`@layui/layui-vue/es/${styleDir}/index.css`, "@layui/layui-vue/es/index/index.css"] : void 0;
}
}
function resolveComponent2(importName, options) {
let name;
if (options.exclude && isExclude(importName, options.exclude))
return void 0;
if (options.resolveIcons && importName.match(iconsRE)) {
name = importName;
libName = "@layui/icons-vue";
} else if (importName.match(layerRE)) {
name = importName;
libName = "@layui/layer-vue";
} else if (importName.match(layuiRE)) {
name = importName;
libName = "@layui/layui-vue";
}
return name ? { name, from: libName, sideEffects: getSideEffects9(name, options) } : void 0;
}
function isExclude(name, exclude) {
for (const item of exclude) {
if (name === item || name.match(item))
return true;
}
return false;
}
function LayuiVueResolver(options = {}) {
return {
type: "component",
resolve: (name) => {
return resolveComponent2(name, options);
}
};
}

@@ -1247,3 +1377,5 @@

exports.AntDesignVueResolver = AntDesignVueResolver; exports.ArcoResolver = ArcoResolver; exports.DevUiResolver = DevUiResolver; exports.ElementPlusResolver = ElementPlusResolver; exports.ElementUiResolver = ElementUiResolver; exports.HeadlessUiResolver = HeadlessUiResolver; exports.IduxResolver = IduxResolver; exports.InklineResolver = InklineResolver; exports.NaiveUiResolver = NaiveUiResolver; exports.PrimeVueResolver = PrimeVueResolver; exports.QuasarResolver = QuasarResolver; exports.TDesignResolver = TDesignResolver; exports.VantResolver = VantResolver; exports.VarletUIResolver = VarletUIResolver; exports.VeuiResolver = VeuiResolver; exports.ViewUiResolver = ViewUiResolver; exports.VueUseComponentsResolver = VueUseComponentsResolver; exports.Vuetify3Resolver = Vuetify3Resolver; exports.VuetifyResolver = VuetifyResolver; exports.getResolved = getResolved;
exports.AntDesignVueResolver = AntDesignVueResolver; exports.ArcoResolver = ArcoResolver; exports.DevUiResolver = DevUiResolver; exports.ElementPlusResolver = ElementPlusResolver; exports.ElementUiResolver = ElementUiResolver; exports.HeadlessUiResolver = HeadlessUiResolver; exports.IduxResolver = IduxResolver; exports.InklineResolver = InklineResolver; exports.LayuiVueResolver = LayuiVueResolver; exports.NaiveUiResolver = NaiveUiResolver; exports.PrimeVueResolver = PrimeVueResolver; exports.QuasarResolver = QuasarResolver; exports.TDesignResolver = TDesignResolver; exports.VantResolver = VantResolver; exports.VarletUIResolver = VarletUIResolver; exports.VeuiResolver = VeuiResolver; exports.ViewUiResolver = ViewUiResolver; exports.VueUseComponentsResolver = VueUseComponentsResolver; exports.Vuetify3Resolver = Vuetify3Resolver; exports.VuetifyResolver = VuetifyResolver; exports.getResolved = getResolved;
exports.default = module.exports;

66

package.json
{
"name": "unplugin-vue-components",
"version": "0.19.3",
"version": "0.19.5",
"packageManager": "pnpm@6.32.3",

@@ -64,13 +64,2 @@ "description": "Components auto importing for Vue",

},
"scripts": {
"build": "tsup && esno scripts/postbuild.ts",
"dev": "tsup --watch src",
"example:build": "npm -C examples/vite-vue3 run build",
"example:dev": "npm -C examples/vite-vue3 run dev",
"prepublishOnly": "npm run build",
"lint": "eslint .",
"release": "bumpp --commit --tag --push",
"test": "vitest",
"test:update": "vitest --u"
},
"peerDependencies": {

@@ -90,4 +79,4 @@ "@babel/parser": "^7.15.8",

"dependencies": {
"@antfu/utils": "^0.5.0",
"@rollup/pluginutils": "^4.2.0",
"@antfu/utils": "^0.5.1",
"@rollup/pluginutils": "^4.2.1",
"chokidar": "^3.5.3",

@@ -100,30 +89,41 @@ "debug": "^4.3.4",

"resolve": "^1.22.0",
"unplugin": "^0.6.1"
"unplugin": "^0.6.3"
},
"devDependencies": {
"@antfu/eslint-config": "^0.20.2",
"@babel/parser": "^7.17.9",
"@babel/traverse": "^7.17.9",
"@babel/types": "^7.17.0",
"@antfu/eslint-config": "^0.23.0",
"@babel/parser": "^7.17.10",
"@babel/traverse": "^7.17.10",
"@babel/types": "^7.17.10",
"@types/debug": "^4.1.7",
"@types/minimatch": "^3.0.5",
"@types/node": "^17.0.23",
"@types/resolve": "^1.20.1",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@types/node": "^17.0.31",
"@types/resolve": "^1.20.2",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"bumpp": "^7.1.1",
"compare-versions": "^4.1.3",
"element-plus": "^2.1.8",
"eslint": "^8.13.0",
"element-plus": "^2.2.0",
"eslint": "^8.15.0",
"esno": "^0.14.1",
"pathe": "^0.2.0",
"rollup": "^2.70.1",
"tsup": "5.12.4",
"typescript": "^4.6.3",
"vite": "^2.9.1",
"vitest": "^0.9.2",
"vue": "3.2.31"
"pathe": "^0.3.0",
"rollup": "^2.72.1",
"tsup": "5.12.7",
"typescript": "^4.6.4",
"vite": "^2.9.8",
"vitest": "^0.12.1",
"vue": "3.2.33"
},
"engines": {
"node": ">=14"
}
}
},
"scripts": {
"build": "tsup && esno scripts/postbuild.ts",
"dev": "tsup --watch src",
"example:build": "npm -C examples/vite-vue3 run build",
"example:dev": "npm -C examples/vite-vue3 run dev",
"lint": "eslint .",
"release": "bumpp --commit --tag --push",
"test": "vitest",
"test:update": "vitest --u"
},
"readme": "# unplugin-vue-components\n\n[![NPM version](https://img.shields.io/npm/v/unplugin-vue-components?color=a1b858&label=)](https://www.npmjs.com/package/unplugin-vue-components)\n\nOn-demand components auto importing for Vue.\n\n###### Features\n\n- 💚 Supports both Vue 2 and Vue 3 out-of-the-box.\n- ✨ Supports both components and directives.\n- ⚡️ Supports Vite, Webpack, Vue CLI, Rollup, esbuild and more, powered by <a href=\"https://github.com/unjs/unplugin\">unplugin</a>.\n- 🏝 Tree-shakable, only registers the components you use.\n- 🪐 Folder names as namespaces.\n- 🦾 Full TypeScript support.\n- 🌈 [Built-in resolvers](#importing-from-ui-libraries) for popular UI libraries.\n- 😃 Works perfectly with [unplugin-icons](https://github.com/antfu/unplugin-icons).\n\n<br>\n\n<p align=\"center\">\n <a href=\"https://cdn.jsdelivr.net/gh/antfu/static/sponsors.svg\">\n <img src='https://cdn.jsdelivr.net/gh/antfu/static/sponsors.svg'/>\n </a>\n</p>\n\n<br>\n\n## Installation\n\n```bash\nnpm i unplugin-vue-components -D\n```\n\n> **`vite-plugin-components` has been renamed to `unplugin-vue-components`**, see the [migration guide](#migrate-from-vite-plugin-components).\n\n<details>\n<summary>Vite</summary><br>\n\n```ts\n// vite.config.ts\nimport Components from 'unplugin-vue-components/vite'\n\nexport default defineConfig({\n plugins: [\n Components({ /* options */ }),\n ],\n})\n```\n\n<br></details>\n\n<details>\n<summary>Rollup</summary><br>\n\n```ts\n// rollup.config.js\nimport Components from 'unplugin-vue-components/rollup'\n\nexport default {\n plugins: [\n Components({ /* options */ }),\n ],\n}\n```\n\n<br></details>\n\n\n<details>\n<summary>Webpack</summary><br>\n\n```ts\n// webpack.config.js\nmodule.exports = {\n /* ... */\n plugins: [\n require('unplugin-vue-components/webpack')({ /* options */ }),\n ],\n}\n```\n\n<br></details>\n\n<details>\n<summary>Nuxt</summary><br>\n\nYou might not need this plugin for Nuxt. Use [`@nuxt/components`](https://github.com/nuxt/components) instead.\n\n<br></details>\n\n<details>\n<summary>Vue CLI</summary><br>\n\n```ts\n// vue.config.js\nmodule.exports = {\n configureWebpack: {\n plugins: [\n require('unplugin-vue-components/webpack')({ /* options */ }),\n ],\n },\n}\n```\n\n<br></details>\n\n<details>\n<summary>esbuild</summary><br>\n\n```ts\n// esbuild.config.js\nimport { build } from 'esbuild'\n\nbuild({\n /* ... */\n plugins: [\n require('unplugin-vue-components/esbuild')({\n /* options */\n }),\n ],\n})\n```\n\n<br></details>\n\n## Usage\n\nUse components in templates as you would usually do, it will import components on demand, and there is no `import` and `component registration` required anymore! If you register the parent component asynchronously (or lazy route), the auto-imported components will be code-split along with their parent.\n\nIt will automatically turn this\n\n```html\n<template>\n <div>\n <HelloWorld msg=\"Hello Vue 3.0 + Vite\" />\n </div>\n</template>\n\n<script>\nexport default {\n name: 'App'\n}\n</script>\n```\n\ninto this\n\n```html\n<template>\n <div>\n <HelloWorld msg=\"Hello Vue 3.0 + Vite\" />\n </div>\n</template>\n\n<script>\nimport HelloWorld from './src/components/HelloWorld.vue'\n\nexport default {\n name: 'App',\n components: {\n HelloWorld\n }\n}\n</script>\n```\n\n## TypeScript\n\nTo get TypeScript support for auto-imported components, there is [a PR](https://github.com/vuejs/vue-next/pull/3399) to Vue 3 extending the interface of global components. Currently, [Volar](https://github.com/johnsoncodehk/volar) has supported this usage already. If you are using Volar, you can change the config as following to get the support.\n\n```ts\nComponents({\n dts: true, // enabled by default if `typescript` is installed\n})\n```\n\nOnce the setup is done, a `components.d.ts` will be generated and updates automatically with the type definitions. Feel free to commit it into git or not as you want.\n\n**Make sure you also add `components.d.ts` to your `tsconfig.json` under `includes`.**\n\n## Importing from UI Libraries\n\nWe have several built-in resolvers for popular UI libraries like **Vuetify**, **Ant Design Vue**, and **Element Plus**, where you can enable them by:\n\nSupported Resolvers:\n\n- [Ant Design Vue](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/antdv.ts)\n- [Arco Design Vue](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/arco.ts)\n- [Element Plus](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/element-plus.ts)\n- [Element UI](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/element-ui.ts)\n- [Headless UI](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/headless-ui.ts)\n- [IDux](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/idux.ts)\n- [Inkline](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/inkline.ts)\n- [Naive UI](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/naive-ui.ts)\n- [Prime Vue](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/prime-vue.ts)\n- [Vant](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/vant.ts)\n- [VEUI](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/veui.ts)\n- [Varlet UI](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/varlet-ui.ts)\n- [View UI](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/view-ui.ts)\n- [Vuetify](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/vuetify.ts)\n- [VueUse Components](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/vueuse.ts)\n- [Quasar](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/quasar.ts)\n- [TDesign](https://github.com/antfu/unplugin-vue-components/blob/main/src/core/resolvers/tdesign.ts)\n\n```ts\n// vite.config.js\nimport Components from 'unplugin-vue-components/vite'\nimport {\n AntDesignVueResolver,\n ElementPlusResolver,\n VantResolver,\n} from 'unplugin-vue-components/resolvers'\n\n// your plugin installation\nComponents({\n resolvers: [\n AntDesignVueResolver(),\n ElementPlusResolver(),\n VantResolver(),\n ],\n})\n```\n\nYou can also write your own resolver quickly:\n\n```ts\nComponents({\n resolvers: [\n // example of importing Vant\n (componentName) => {\n // where `componentName` is always CapitalCase\n if (componentName.startsWith('Van'))\n return { name: componentName.slice(3), from: 'vant' }\n },\n ],\n})\n```\n\nIf you successfully configured other UI libraries, please feel free to contribute and help others using them out-of-box. Thanks!\n\n## Types for global registered components\n\nSome libraries might register some global components for you to use anywhere (e.g. Vue Router provides `<RouterLink>` and `<RouterView>`). Since they are global available, there is no need for this plugin to import them. However, those are commonly not TypeScript friendly, and you might need to register their types manually.\n\nThus `unplugin-vue-components` provided a way to only register types for global components.\n\n```ts\nComponents({\n dts: true,\n types: [{\n from: 'vue-router',\n names: ['RouterLink', 'RouterView'],\n }],\n})\n```\n\nSo the `RouterLink` and `RouterView` will be presented in `components.d.ts`.\n\nBy default, `unplugin-vue-components` detects supported libraries automatically (e.g. `vue-router`) when their are installed in the workspace. If you want to disable it completely, you can pass an empty array to it:\n\n```ts\nComponents({\n // Disable type only registration\n types: [],\n})\n```\n\n## Migrate from `vite-plugin-components`\n\n`package.json`\n\n```diff\n{\n \"devDependencies\": {\n- \"vite-plugin-components\": \"*\",\n+ \"unplugin-vue-components\": \"^0.14.0\",\n }\n}\n```\n\n`vite.config.json`\n\n```diff\n- import Components, { ElementPlusResolver } from 'vite-plugin-components'\n+ import Components from 'unplugin-vue-components/vite'\n+ import { ElementPlusResolver } from 'unplugin-vue-components/resolvers'\n\nexport default {\n plugins: [\n /* ... */\n Components({\n /* ... */\n\n // `customComponentsResolvers` has renamed to `resolver`\n- customComponentsResolvers: [\n+ resolvers: [\n ElementPlusResolver(),\n ],\n\n // `globalComponentsDeclaration` has renamed to `dts`\n- globalComponentsDeclaration: true,\n+ dts: true,\n\n // `customLoaderMatcher` is depreacted, use `include` instead\n- customLoaderMatcher: id => id.endsWith('.md'),\n+ include: [/\\.vue$/, /\\.vue\\?vue/, /\\.md$/],\n }),\n ],\n}\n```\n\n## Configuration\n\nThe following show the default values of the configuration\n\n```ts\nComponents({\n // relative paths to the directory to search for components.\n dirs: ['src/components'],\n\n // valid file extensions for components.\n extensions: ['vue'],\n // search for subdirectories\n deep: true,\n // resolvers for custom components\n resolvers: [],\n\n // generate `components.d.ts` global declarations,\n // also accepts a path for custom filename\n // default: `true` if package typescript is installed\n dts: false,\n\n // Allow subdirectories as namespace prefix for components.\n directoryAsNamespace: false,\n // Subdirectory paths for ignoring namespace prefixes\n // works when `directoryAsNamespace: true`\n globalNamespaces: [],\n\n // auto import for directives\n // default: `true` for Vue 3, `false` for Vue 2\n // Babel is needed to do the transformation for Vue 2, it's disabled by default for performance concerns.\n // To install Babel, run: `npm install -D @babel/parser @babel/traverse`\n directives: true,\n\n // filters for transforming targets\n include: [/\\.vue$/, /\\.vue\\?vue/],\n exclude: [/[\\\\/]node_modules[\\\\/]/, /[\\\\/]\\.git[\\\\/]/, /[\\\\/]\\.nuxt[\\\\/]/],\n})\n```\n\n## Example\n\nSee the [Vitesse](https://github.com/antfu/vitesse) starter template.\n\n## Thanks\n\nThanks to [@brattonross](https://github.com/brattonross), this project is heavily inspired by [vite-plugin-voie](https://github.com/vamplate/vite-plugin-voie).\n\n## License\n\nMIT License © 2020-PRESENT [Anthony Fu](https://github.com/antfu)\n"
}

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc