Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@vueuse/metadata

Package Overview
Dependencies
Maintainers
1
Versions
132
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vueuse/metadata - npm Package Compare versions

Comparing version
12.8.1
to
13.0.0-beta.1
+2
-3
index.d.mts

@@ -1,2 +0,2 @@

import * as _vueuse_core_metadata_cjs from '@vueuse/core/metadata.cjs';
import * as _vueuse_core_metadata_mjs from '@vueuse/core/metadata.mjs';

@@ -16,3 +16,2 @@ interface PackageManifest {

iife?: boolean;
cjs?: boolean;
mjs?: boolean;

@@ -74,3 +73,3 @@ dts?: boolean;

declare const addonCategoryNames: string[];
declare function getFunction(name: string): _vueuse_core_metadata_cjs.VueUseFunction | undefined;
declare function getFunction(name: string): _vueuse_core_metadata_mjs.VueUseFunction | undefined;

@@ -77,0 +76,0 @@ declare function getCategories(functions: VueUseFunction[]): string[];

+4
-10
{
"name": "@vueuse/metadata",
"type": "module",
"version": "12.8.1",
"version": "13.0.0-beta.1",
"description": "Metadata for VueUse functions",

@@ -24,16 +24,10 @@ "author": "Anthony Fu <https://github.com/antfu>",

"exports": {
".": {
"import": "./index.mjs",
"require": "./index.cjs"
},
".": "./index.mjs",
"./*": "./*"
},
"main": "./index.cjs",
"main": "./index.mjs",
"module": "./index.mjs",
"types": "./index.d.ts",
"types": "./index.d.mts",
"files": [
"*.cjs",
"*.d.cts",
"*.d.mts",
"*.d.ts",
"*.js",

@@ -40,0 +34,0 @@ "*.mjs",

Sorry, the diff of this file is too big to display

import * as _vueuse_core_metadata_cjs from '@vueuse/core/metadata.cjs';
interface PackageManifest {
name: string;
display: string;
addon?: boolean;
author?: string;
description?: string;
external?: string[];
globals?: Record<string, string>;
manualImport?: boolean;
deprecated?: boolean;
submodules?: boolean;
build?: boolean;
iife?: boolean;
cjs?: boolean;
mjs?: boolean;
dts?: boolean;
target?: string;
utils?: boolean;
copy?: string[];
}
interface VueUseFunction {
name: string;
package: string;
importPath?: string;
lastUpdated?: number;
category?: string;
description?: string;
docs?: string;
deprecated?: boolean;
internal?: boolean;
component?: boolean;
directive?: boolean;
external?: string;
alias?: string[];
related?: string[];
}
interface VueUsePackage extends PackageManifest {
dir: string;
docs?: string;
}
interface PackageIndexes {
packages: Record<string, VueUsePackage>;
categories: string[];
functions: VueUseFunction[];
}
interface CommitInfo {
functions: string[];
version?: string;
hash: string;
date: string;
message: string;
refs?: string;
body?: string;
author_name: string;
author_email: string;
}
interface ContributorInfo {
name: string;
count: number;
hash: string;
}
declare const metadata: PackageIndexes;
declare const functions: PackageIndexes["functions"];
declare const packages: PackageIndexes["packages"];
declare const categories: PackageIndexes["categories"];
declare const functionNames: string[];
declare const categoryNames: string[];
declare const coreCategoryNames: string[];
declare const addonCategoryNames: string[];
declare function getFunction(name: string): _vueuse_core_metadata_cjs.VueUseFunction | undefined;
declare function getCategories(functions: VueUseFunction[]): string[];
declare function uniq<T extends any[]>(a: T): any[];
export { type CommitInfo, type ContributorInfo, type PackageIndexes, type PackageManifest, type VueUseFunction, type VueUsePackage, addonCategoryNames, categories, categoryNames, coreCategoryNames, functionNames, functions, getCategories, getFunction, metadata, packages, uniq };
import * as _vueuse_core_metadata_cjs from '@vueuse/core/metadata.cjs';
interface PackageManifest {
name: string;
display: string;
addon?: boolean;
author?: string;
description?: string;
external?: string[];
globals?: Record<string, string>;
manualImport?: boolean;
deprecated?: boolean;
submodules?: boolean;
build?: boolean;
iife?: boolean;
cjs?: boolean;
mjs?: boolean;
dts?: boolean;
target?: string;
utils?: boolean;
copy?: string[];
}
interface VueUseFunction {
name: string;
package: string;
importPath?: string;
lastUpdated?: number;
category?: string;
description?: string;
docs?: string;
deprecated?: boolean;
internal?: boolean;
component?: boolean;
directive?: boolean;
external?: string;
alias?: string[];
related?: string[];
}
interface VueUsePackage extends PackageManifest {
dir: string;
docs?: string;
}
interface PackageIndexes {
packages: Record<string, VueUsePackage>;
categories: string[];
functions: VueUseFunction[];
}
interface CommitInfo {
functions: string[];
version?: string;
hash: string;
date: string;
message: string;
refs?: string;
body?: string;
author_name: string;
author_email: string;
}
interface ContributorInfo {
name: string;
count: number;
hash: string;
}
declare const metadata: PackageIndexes;
declare const functions: PackageIndexes["functions"];
declare const packages: PackageIndexes["packages"];
declare const categories: PackageIndexes["categories"];
declare const functionNames: string[];
declare const categoryNames: string[];
declare const coreCategoryNames: string[];
declare const addonCategoryNames: string[];
declare function getFunction(name: string): _vueuse_core_metadata_cjs.VueUseFunction | undefined;
declare function getCategories(functions: VueUseFunction[]): string[];
declare function uniq<T extends any[]>(a: T): any[];
export { type CommitInfo, type ContributorInfo, type PackageIndexes, type PackageManifest, type VueUseFunction, type VueUsePackage, addonCategoryNames, categories, categoryNames, coreCategoryNames, functionNames, functions, getCategories, getFunction, metadata, packages, uniq };