devstar插件
This commit is contained in:
21
node_modules/@vueuse/metadata/LICENSE
generated
vendored
Normal file
21
node_modules/@vueuse/metadata/LICENSE
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2019-PRESENT Anthony Fu<https://github.com/antfu>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
2674
node_modules/@vueuse/metadata/index.cjs
generated
vendored
Normal file
2674
node_modules/@vueuse/metadata/index.cjs
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
78
node_modules/@vueuse/metadata/index.d.cts
generated
vendored
Normal file
78
node_modules/@vueuse/metadata/index.d.cts
generated
vendored
Normal file
@@ -0,0 +1,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
node_modules/@vueuse/metadata/index.d.mts
generated
vendored
Normal file
78
node_modules/@vueuse/metadata/index.d.mts
generated
vendored
Normal file
@@ -0,0 +1,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
node_modules/@vueuse/metadata/index.d.ts
generated
vendored
Normal file
78
node_modules/@vueuse/metadata/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,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 };
|
2620
node_modules/@vueuse/metadata/index.json
generated
vendored
Normal file
2620
node_modules/@vueuse/metadata/index.json
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
2662
node_modules/@vueuse/metadata/index.mjs
generated
vendored
Normal file
2662
node_modules/@vueuse/metadata/index.mjs
generated
vendored
Normal file
File diff suppressed because it is too large
Load Diff
46
node_modules/@vueuse/metadata/package.json
generated
vendored
Normal file
46
node_modules/@vueuse/metadata/package.json
generated
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
{
|
||||
"name": "@vueuse/metadata",
|
||||
"type": "module",
|
||||
"version": "12.8.2",
|
||||
"description": "Metadata for VueUse functions",
|
||||
"author": "Anthony Fu <https://github.com/antfu>",
|
||||
"license": "MIT",
|
||||
"funding": "https://github.com/sponsors/antfu",
|
||||
"homepage": "https://github.com/vueuse/vueuse/tree/main/packages/metadata#readme",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/vueuse/vueuse.git",
|
||||
"directory": "packages/metadata"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/vueuse/vueuse/issues"
|
||||
},
|
||||
"keywords": [
|
||||
"vue",
|
||||
"vue-use"
|
||||
],
|
||||
"sideEffects": false,
|
||||
"exports": {
|
||||
".": {
|
||||
"import": "./index.mjs",
|
||||
"require": "./index.cjs"
|
||||
},
|
||||
"./*": "./*"
|
||||
},
|
||||
"main": "./index.cjs",
|
||||
"module": "./index.mjs",
|
||||
"types": "./index.d.ts",
|
||||
"files": [
|
||||
"*.cjs",
|
||||
"*.d.cts",
|
||||
"*.d.mts",
|
||||
"*.d.ts",
|
||||
"*.js",
|
||||
"*.mjs",
|
||||
"index.json"
|
||||
],
|
||||
"scripts": {
|
||||
"update": "tsx scripts/update.ts",
|
||||
"build": "rollup --config=rollup.config.ts --configPlugin=rollup-plugin-esbuild"
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user