initial vitepress site with basic nav
This commit is contained in:
parent
a7df2e049d
commit
2029f16583
1900 changed files with 1014692 additions and 0 deletions
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.
|
2591
node_modules/@vueuse/metadata/index.cjs
generated
vendored
Normal file
2591
node_modules/@vueuse/metadata/index.cjs
generated
vendored
Normal file
File diff suppressed because it is too large
Load diff
76
node_modules/@vueuse/metadata/index.d.ts
generated
vendored
Normal file
76
node_modules/@vueuse/metadata/index.d.ts
generated
vendored
Normal file
|
@ -0,0 +1,76 @@
|
|||
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: VueUseFunction[];
|
||||
declare const packages: Record<string, VueUsePackage>;
|
||||
declare const categories: string[];
|
||||
declare const functionNames: string[];
|
||||
declare const categoryNames: string[];
|
||||
declare const coreCategoryNames: string[];
|
||||
declare const addonCategoryNames: string[];
|
||||
declare function getFunction(name: string): VueUseFunction | undefined;
|
||||
|
||||
declare function getCategories(functions: VueUseFunction[]): string[];
|
||||
declare function uniq<T extends any[]>(a: T): any[];
|
||||
|
||||
export { CommitInfo, ContributorInfo, PackageIndexes, PackageManifest, VueUseFunction, VueUsePackage, addonCategoryNames, categories, categoryNames, coreCategoryNames, functionNames, functions, getCategories, getFunction, metadata, packages, uniq };
|
2537
node_modules/@vueuse/metadata/index.json
generated
vendored
Normal file
2537
node_modules/@vueuse/metadata/index.json
generated
vendored
Normal file
File diff suppressed because it is too large
Load diff
2579
node_modules/@vueuse/metadata/index.mjs
generated
vendored
Normal file
2579
node_modules/@vueuse/metadata/index.mjs
generated
vendored
Normal file
File diff suppressed because it is too large
Load diff
39
node_modules/@vueuse/metadata/package.json
generated
vendored
Normal file
39
node_modules/@vueuse/metadata/package.json
generated
vendored
Normal file
|
@ -0,0 +1,39 @@
|
|||
{
|
||||
"name": "@vueuse/metadata",
|
||||
"version": "10.1.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": {
|
||||
".": {
|
||||
"types": "./index.d.ts",
|
||||
"require": "./index.cjs",
|
||||
"import": "./index.mjs"
|
||||
},
|
||||
"./*": "./*"
|
||||
},
|
||||
"main": "./index.cjs",
|
||||
"module": "./index.mjs",
|
||||
"types": "./index.d.ts",
|
||||
"files": [
|
||||
"index.*"
|
||||
],
|
||||
"scripts": {
|
||||
"update": "esno scripts/update.ts"
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue