@vueuse/metadata
Advanced tools
+2
-3
@@ -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
-78
| 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 }; |
-78
| 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 }; |
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
3
-40%161691
-32.46%5
-37.5%5281
-34.2%1
Infinity%