blank project

This commit is contained in:
root
2025-10-17 20:17:33 +00:00
commit 14b2d53e8e
9366 changed files with 1515019 additions and 0 deletions

22
node_modules/shiki/LICENSE generated vendored Normal file
View File

@@ -0,0 +1,22 @@
MIT License
Copyright (c) 2021 Pine Wu
Copyright (c) 2023 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.

15
node_modules/shiki/README.md generated vendored Normal file
View File

@@ -0,0 +1,15 @@
<img src="https://raw.githubusercontent.com/shikijs/shiki/main/docs/public/logo.svg" width="150" alt="Shiki Logo" />
# Shiki 式
[![NPM version](https://img.shields.io/npm/v/shiki?color=32A9C3&labelColor=1B3C4A&label=npm)](https://www.npmjs.com/package/shiki)
[![NPM downloads](https://img.shields.io/npm/dm/shiki?color=32A9C3&labelColor=1B3C4A&label=downloads)](https://www.npmjs.com/package/shiki)
[![Codecov](https://img.shields.io/codecov/c/github/shikijs/shiki?token=B85J0E2I7I&style=flat&labelColor=1B3C4A&color=32A9C3&precision=1)](https://app.codecov.io/gh/shikijs/shiki)
A beautiful syntax highlighter based on TextMate grammars, accurate and powerful.
[📚 **Documentation**](https://shiki.style)
## License
[MIT](./LICENSE)

31
node_modules/shiki/dist/bundle-full.d.mts generated vendored Normal file
View File

@@ -0,0 +1,31 @@
import * as hast from 'hast';
import * as _shikijs_types from '@shikijs/types';
import { HighlighterGeneric } from '@shikijs/types';
import { BundledLanguage } from './langs.mjs';
export { bundledLanguages, bundledLanguagesAlias, bundledLanguagesBase, bundledLanguagesInfo } from './langs.mjs';
import { BundledTheme } from './themes.mjs';
export { bundledThemes, bundledThemesInfo } from './themes.mjs';
export * from '@shikijs/core';
type Highlighter = HighlighterGeneric<BundledLanguage, BundledTheme>;
/**
* Initiate a highlighter instance and load the specified languages and themes.
* Later it can be used synchronously to highlight code.
*
* Importing this function will bundle all languages and themes.
* @see https://shiki.style/guide/bundles#shiki-bundle-full
*
* For granular control over the bundle, check:
* @see https://shiki.style/guide/bundles#fine-grained-bundle
*/
declare const createHighlighter: _shikijs_types.CreateHighlighterFactory<BundledLanguage, BundledTheme>;
declare const codeToHtml: (code: string, options: _shikijs_types.CodeToHastOptions<BundledLanguage, BundledTheme>) => Promise<string>;
declare const codeToHast: (code: string, options: _shikijs_types.CodeToHastOptions<BundledLanguage, BundledTheme>) => Promise<hast.Root>;
declare const codeToTokens: (code: string, options: _shikijs_types.CodeToTokensOptions<BundledLanguage, BundledTheme>) => Promise<_shikijs_types.TokensResult>;
declare const codeToTokensBase: (code: string, options: _shikijs_types.RequireKeys<_shikijs_types.CodeToTokensBaseOptions<BundledLanguage, BundledTheme>, "theme" | "lang">) => Promise<_shikijs_types.ThemedToken[][]>;
declare const codeToTokensWithThemes: (code: string, options: _shikijs_types.RequireKeys<_shikijs_types.CodeToTokensWithThemesOptions<BundledLanguage, BundledTheme>, "lang" | "themes">) => Promise<_shikijs_types.ThemedTokenWithVariants[][]>;
declare const getSingletonHighlighter: (options?: Partial<_shikijs_types.BundledHighlighterOptions<BundledLanguage, BundledTheme>> | undefined) => Promise<HighlighterGeneric<BundledLanguage, BundledTheme>>;
declare const getLastGrammarState: ((element: _shikijs_types.ThemedToken[][] | hast.Root) => _shikijs_types.GrammarState) | ((code: string, options: _shikijs_types.CodeToTokensBaseOptions<BundledLanguage, BundledTheme>) => Promise<_shikijs_types.GrammarState>);
export { BundledLanguage, BundledTheme, codeToHast, codeToHtml, codeToTokens, codeToTokensBase, codeToTokensWithThemes, createHighlighter, getLastGrammarState, getSingletonHighlighter };
export type { Highlighter };

27
node_modules/shiki/dist/bundle-full.mjs generated vendored Normal file
View File

@@ -0,0 +1,27 @@
import { createSingletonShorthands, createdBundledHighlighter, guessEmbeddedLanguages } from '@shikijs/core';
export * from '@shikijs/core';
import { bundledLanguages } from './langs.mjs';
export { bundledLanguagesAlias, bundledLanguagesBase, bundledLanguagesInfo } from './langs.mjs';
import { bundledThemes } from './themes.mjs';
export { bundledThemesInfo } from './themes.mjs';
import { createOnigurumaEngine } from '@shikijs/engine-oniguruma';
const createHighlighter = /* @__PURE__ */ createdBundledHighlighter({
langs: bundledLanguages,
themes: bundledThemes,
engine: () => createOnigurumaEngine(import('shiki/wasm'))
});
const {
codeToHtml,
codeToHast,
codeToTokens,
codeToTokensBase,
codeToTokensWithThemes,
getSingletonHighlighter,
getLastGrammarState
} = /* @__PURE__ */ createSingletonShorthands(
createHighlighter,
{ guessEmbeddedLanguages }
);
export { bundledLanguages, bundledThemes, codeToHast, codeToHtml, codeToTokens, codeToTokensBase, codeToTokensWithThemes, createHighlighter, getLastGrammarState, getSingletonHighlighter };

39
node_modules/shiki/dist/bundle-web.d.mts generated vendored Normal file
View File

@@ -0,0 +1,39 @@
import * as hast from 'hast';
import * as _shikijs_types from '@shikijs/types';
import { BundledLanguageInfo, DynamicImportLanguageRegistration, HighlighterGeneric } from '@shikijs/types';
import { BundledTheme } from './themes.mjs';
export { bundledThemes, bundledThemesInfo } from './themes.mjs';
export * from '@shikijs/core';
declare const bundledLanguagesInfo: BundledLanguageInfo[];
declare const bundledLanguagesBase: {
[k: string]: DynamicImportLanguageRegistration;
};
declare const bundledLanguagesAlias: {
[k: string]: DynamicImportLanguageRegistration;
};
type BundledLanguage = 'angular-html' | 'angular-ts' | 'astro' | 'bash' | 'blade' | 'c' | 'c++' | 'coffee' | 'coffeescript' | 'cpp' | 'css' | 'glsl' | 'gql' | 'graphql' | 'haml' | 'handlebars' | 'hbs' | 'html' | 'html-derivative' | 'http' | 'imba' | 'jade' | 'java' | 'javascript' | 'jinja' | 'jison' | 'jl' | 'js' | 'json' | 'json5' | 'jsonc' | 'jsonl' | 'jsx' | 'julia' | 'less' | 'lit' | 'markdown' | 'marko' | 'md' | 'mdc' | 'mdx' | 'php' | 'postcss' | 'pug' | 'py' | 'python' | 'r' | 'regex' | 'regexp' | 'sass' | 'scss' | 'sh' | 'shell' | 'shellscript' | 'sql' | 'styl' | 'stylus' | 'svelte' | 'ts' | 'ts-tags' | 'tsx' | 'typescript' | 'vue' | 'vue-html' | 'vue-vine' | 'wasm' | 'wgsl' | 'wit' | 'xml' | 'yaml' | 'yml' | 'zsh';
declare const bundledLanguages: Record<BundledLanguage, DynamicImportLanguageRegistration>;
type Highlighter = HighlighterGeneric<BundledLanguage, BundledTheme>;
/**
* Initiate a highlighter instance and load the specified languages and themes.
* Later it can be used synchronously to highlight code.
*
* Importing this function will bundle all languages and themes.
* @see https://shiki.style/guide/bundles#shiki-bundle-web
*
* For granular control over the bundle, check:
* @see https://shiki.style/guide/bundles#fine-grained-bundle
*/
declare const createHighlighter: _shikijs_types.CreateHighlighterFactory<BundledLanguage, BundledTheme>;
declare const codeToHtml: (code: string, options: _shikijs_types.CodeToHastOptions<BundledLanguage, BundledTheme>) => Promise<string>;
declare const codeToHast: (code: string, options: _shikijs_types.CodeToHastOptions<BundledLanguage, BundledTheme>) => Promise<hast.Root>;
declare const codeToTokensBase: (code: string, options: _shikijs_types.RequireKeys<_shikijs_types.CodeToTokensBaseOptions<BundledLanguage, BundledTheme>, "theme" | "lang">) => Promise<_shikijs_types.ThemedToken[][]>;
declare const codeToTokens: (code: string, options: _shikijs_types.CodeToTokensOptions<BundledLanguage, BundledTheme>) => Promise<_shikijs_types.TokensResult>;
declare const codeToTokensWithThemes: (code: string, options: _shikijs_types.RequireKeys<_shikijs_types.CodeToTokensWithThemesOptions<BundledLanguage, BundledTheme>, "lang" | "themes">) => Promise<_shikijs_types.ThemedTokenWithVariants[][]>;
declare const getSingletonHighlighter: (options?: Partial<_shikijs_types.BundledHighlighterOptions<BundledLanguage, BundledTheme>> | undefined) => Promise<HighlighterGeneric<BundledLanguage, BundledTheme>>;
declare const getLastGrammarState: ((element: _shikijs_types.ThemedToken[][] | hast.Root) => _shikijs_types.GrammarState) | ((code: string, options: _shikijs_types.CodeToTokensBaseOptions<BundledLanguage, BundledTheme>) => Promise<_shikijs_types.GrammarState>);
export { BundledTheme, bundledLanguages, bundledLanguagesAlias, bundledLanguagesBase, bundledLanguagesInfo, codeToHast, codeToHtml, codeToTokens, codeToTokensBase, codeToTokensWithThemes, createHighlighter, getLastGrammarState, getSingletonHighlighter };
export type { BundledLanguage, Highlighter };

352
node_modules/shiki/dist/bundle-web.mjs generated vendored Normal file
View File

@@ -0,0 +1,352 @@
import { createSingletonShorthands, createdBundledHighlighter, guessEmbeddedLanguages } from '@shikijs/core';
export * from '@shikijs/core';
import { bundledThemes } from './themes.mjs';
export { bundledThemesInfo } from './themes.mjs';
import { createOnigurumaEngine } from '@shikijs/engine-oniguruma';
const bundledLanguagesInfo = [
{
"id": "angular-html",
"name": "Angular HTML",
"import": (() => import('@shikijs/langs/angular-html'))
},
{
"id": "angular-ts",
"name": "Angular TypeScript",
"import": (() => import('@shikijs/langs/angular-ts'))
},
{
"id": "astro",
"name": "Astro",
"import": (() => import('@shikijs/langs/astro'))
},
{
"id": "blade",
"name": "Blade",
"import": (() => import('@shikijs/langs/blade'))
},
{
"id": "c",
"name": "C",
"import": (() => import('@shikijs/langs/c'))
},
{
"id": "coffee",
"name": "CoffeeScript",
"aliases": [
"coffeescript"
],
"import": (() => import('@shikijs/langs/coffee'))
},
{
"id": "cpp",
"name": "C++",
"aliases": [
"c++"
],
"import": (() => import('@shikijs/langs/cpp'))
},
{
"id": "css",
"name": "CSS",
"import": (() => import('@shikijs/langs/css'))
},
{
"id": "glsl",
"name": "GLSL",
"import": (() => import('@shikijs/langs/glsl'))
},
{
"id": "graphql",
"name": "GraphQL",
"aliases": [
"gql"
],
"import": (() => import('@shikijs/langs/graphql'))
},
{
"id": "haml",
"name": "Ruby Haml",
"import": (() => import('@shikijs/langs/haml'))
},
{
"id": "handlebars",
"name": "Handlebars",
"aliases": [
"hbs"
],
"import": (() => import('@shikijs/langs/handlebars'))
},
{
"id": "html",
"name": "HTML",
"import": (() => import('@shikijs/langs/html'))
},
{
"id": "html-derivative",
"name": "HTML (Derivative)",
"import": (() => import('@shikijs/langs/html-derivative'))
},
{
"id": "http",
"name": "HTTP",
"import": (() => import('@shikijs/langs/http'))
},
{
"id": "imba",
"name": "Imba",
"import": (() => import('@shikijs/langs/imba'))
},
{
"id": "java",
"name": "Java",
"import": (() => import('@shikijs/langs/java'))
},
{
"id": "javascript",
"name": "JavaScript",
"aliases": [
"js"
],
"import": (() => import('@shikijs/langs/javascript'))
},
{
"id": "jinja",
"name": "Jinja",
"import": (() => import('@shikijs/langs/jinja'))
},
{
"id": "jison",
"name": "Jison",
"import": (() => import('@shikijs/langs/jison'))
},
{
"id": "json",
"name": "JSON",
"import": (() => import('@shikijs/langs/json'))
},
{
"id": "json5",
"name": "JSON5",
"import": (() => import('@shikijs/langs/json5'))
},
{
"id": "jsonc",
"name": "JSON with Comments",
"import": (() => import('@shikijs/langs/jsonc'))
},
{
"id": "jsonl",
"name": "JSON Lines",
"import": (() => import('@shikijs/langs/jsonl'))
},
{
"id": "jsx",
"name": "JSX",
"import": (() => import('@shikijs/langs/jsx'))
},
{
"id": "julia",
"name": "Julia",
"aliases": [
"jl"
],
"import": (() => import('@shikijs/langs/julia'))
},
{
"id": "less",
"name": "Less",
"import": (() => import('@shikijs/langs/less'))
},
{
"id": "markdown",
"name": "Markdown",
"aliases": [
"md"
],
"import": (() => import('@shikijs/langs/markdown'))
},
{
"id": "marko",
"name": "Marko",
"import": (() => import('@shikijs/langs/marko'))
},
{
"id": "mdc",
"name": "MDC",
"import": (() => import('@shikijs/langs/mdc'))
},
{
"id": "mdx",
"name": "MDX",
"import": (() => import('@shikijs/langs/mdx'))
},
{
"id": "php",
"name": "PHP",
"import": (() => import('@shikijs/langs/php'))
},
{
"id": "postcss",
"name": "PostCSS",
"import": (() => import('@shikijs/langs/postcss'))
},
{
"id": "pug",
"name": "Pug",
"aliases": [
"jade"
],
"import": (() => import('@shikijs/langs/pug'))
},
{
"id": "python",
"name": "Python",
"aliases": [
"py"
],
"import": (() => import('@shikijs/langs/python'))
},
{
"id": "r",
"name": "R",
"import": (() => import('@shikijs/langs/r'))
},
{
"id": "regexp",
"name": "RegExp",
"aliases": [
"regex"
],
"import": (() => import('@shikijs/langs/regexp'))
},
{
"id": "sass",
"name": "Sass",
"import": (() => import('@shikijs/langs/sass'))
},
{
"id": "scss",
"name": "SCSS",
"import": (() => import('@shikijs/langs/scss'))
},
{
"id": "shellscript",
"name": "Shell",
"aliases": [
"bash",
"sh",
"shell",
"zsh"
],
"import": (() => import('@shikijs/langs/shellscript'))
},
{
"id": "sql",
"name": "SQL",
"import": (() => import('@shikijs/langs/sql'))
},
{
"id": "stylus",
"name": "Stylus",
"aliases": [
"styl"
],
"import": (() => import('@shikijs/langs/stylus'))
},
{
"id": "svelte",
"name": "Svelte",
"import": (() => import('@shikijs/langs/svelte'))
},
{
"id": "ts-tags",
"name": "TypeScript with Tags",
"aliases": [
"lit"
],
"import": (() => import('@shikijs/langs/ts-tags'))
},
{
"id": "tsx",
"name": "TSX",
"import": (() => import('@shikijs/langs/tsx'))
},
{
"id": "typescript",
"name": "TypeScript",
"aliases": [
"ts"
],
"import": (() => import('@shikijs/langs/typescript'))
},
{
"id": "vue",
"name": "Vue",
"import": (() => import('@shikijs/langs/vue'))
},
{
"id": "vue-html",
"name": "Vue HTML",
"import": (() => import('@shikijs/langs/vue-html'))
},
{
"id": "vue-vine",
"name": "Vue Vine",
"import": (() => import('@shikijs/langs/vue-vine'))
},
{
"id": "wasm",
"name": "WebAssembly",
"import": (() => import('@shikijs/langs/wasm'))
},
{
"id": "wgsl",
"name": "WGSL",
"import": (() => import('@shikijs/langs/wgsl'))
},
{
"id": "wit",
"name": "WebAssembly Interface Types",
"import": (() => import('@shikijs/langs/wit'))
},
{
"id": "xml",
"name": "XML",
"import": (() => import('@shikijs/langs/xml'))
},
{
"id": "yaml",
"name": "YAML",
"aliases": [
"yml"
],
"import": (() => import('@shikijs/langs/yaml'))
}
];
const bundledLanguagesBase = Object.fromEntries(bundledLanguagesInfo.map((i) => [i.id, i.import]));
const bundledLanguagesAlias = Object.fromEntries(bundledLanguagesInfo.flatMap((i) => i.aliases?.map((a) => [a, i.import]) || []));
const bundledLanguages = {
...bundledLanguagesBase,
...bundledLanguagesAlias
};
const createHighlighter = /* @__PURE__ */ createdBundledHighlighter({
langs: bundledLanguages,
themes: bundledThemes,
engine: () => createOnigurumaEngine(import('shiki/wasm'))
});
const {
codeToHtml,
codeToHast,
codeToTokensBase,
codeToTokens,
codeToTokensWithThemes,
getSingletonHighlighter,
getLastGrammarState
} = /* @__PURE__ */ createSingletonShorthands(
createHighlighter,
{ guessEmbeddedLanguages }
);
export { bundledLanguages, bundledLanguagesAlias, bundledLanguagesBase, bundledLanguagesInfo, bundledThemes, codeToHast, codeToHtml, codeToTokens, codeToTokensBase, codeToTokensWithThemes, createHighlighter, getLastGrammarState, getSingletonHighlighter };

1
node_modules/shiki/dist/core-unwasm.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
export * from '@shikijs/core';

4
node_modules/shiki/dist/core-unwasm.mjs generated vendored Normal file
View File

@@ -0,0 +1,4 @@
import { setDefaultWasmLoader } from '@shikijs/engine-oniguruma';
export * from '@shikijs/core';
setDefaultWasmLoader(() => import('shiki/wasm'));

5
node_modules/shiki/dist/core.d.mts generated vendored Normal file
View File

@@ -0,0 +1,5 @@
export * from '@shikijs/core';
import '@shikijs/engine-oniguruma/wasm-inlined';
import '@shikijs/engine-javascript';
import '@shikijs/engine-oniguruma';
import '@shikijs/vscode-textmate';

1
node_modules/shiki/dist/core.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export * from '@shikijs/core';

1
node_modules/shiki/dist/engine-javascript.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
export * from '@shikijs/engine-javascript';

1
node_modules/shiki/dist/engine-javascript.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export * from '@shikijs/engine-javascript';

1
node_modules/shiki/dist/engine-oniguruma.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
export * from '@shikijs/engine-oniguruma';

1
node_modules/shiki/dist/engine-oniguruma.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export * from '@shikijs/engine-oniguruma';

10
node_modules/shiki/dist/index.d.mts generated vendored Normal file
View File

@@ -0,0 +1,10 @@
export { Highlighter, codeToHast, codeToHtml, codeToTokens, codeToTokensBase, codeToTokensWithThemes, createHighlighter, getLastGrammarState, getSingletonHighlighter } from './bundle-full.mjs';
export { BuiltinLanguage, BuiltinTheme } from './types.mjs';
export { createJavaScriptRegexEngine, defaultJavaScriptRegexConstructor } from '@shikijs/engine-javascript';
export { createOnigurumaEngine, loadWasm } from '@shikijs/engine-oniguruma';
export * from '@shikijs/core';
export { BundledLanguage, bundledLanguages, bundledLanguagesAlias, bundledLanguagesBase, bundledLanguagesInfo } from './langs.mjs';
export { BundledTheme, bundledThemes, bundledThemesInfo } from './themes.mjs';
import 'hast';
import '@shikijs/types';
import '@shikijs/core/types';

6
node_modules/shiki/dist/index.mjs generated vendored Normal file
View File

@@ -0,0 +1,6 @@
export { codeToHast, codeToHtml, codeToTokens, codeToTokensBase, codeToTokensWithThemes, createHighlighter, getLastGrammarState, getSingletonHighlighter } from './bundle-full.mjs';
export { createJavaScriptRegexEngine, defaultJavaScriptRegexConstructor } from '@shikijs/engine-javascript';
export { createOnigurumaEngine, loadWasm } from '@shikijs/engine-oniguruma';
export * from '@shikijs/core';
export { bundledLanguages, bundledLanguagesAlias, bundledLanguagesBase, bundledLanguagesInfo } from './langs.mjs';
export { bundledThemes, bundledThemesInfo } from './themes.mjs';

14
node_modules/shiki/dist/langs.d.mts generated vendored Normal file
View File

@@ -0,0 +1,14 @@
import { BundledLanguageInfo, DynamicImportLanguageRegistration } from '@shikijs/types';
declare const bundledLanguagesInfo: BundledLanguageInfo[];
declare const bundledLanguagesBase: {
[k: string]: DynamicImportLanguageRegistration;
};
declare const bundledLanguagesAlias: {
[k: string]: DynamicImportLanguageRegistration;
};
type BundledLanguage = '1c' | '1c-query' | 'abap' | 'actionscript-3' | 'ada' | 'adoc' | 'angular-html' | 'angular-ts' | 'apache' | 'apex' | 'apl' | 'applescript' | 'ara' | 'asciidoc' | 'asm' | 'astro' | 'awk' | 'ballerina' | 'bash' | 'bat' | 'batch' | 'be' | 'beancount' | 'berry' | 'bibtex' | 'bicep' | 'blade' | 'bsl' | 'c' | 'c#' | 'c++' | 'cadence' | 'cairo' | 'cdc' | 'clarity' | 'clj' | 'clojure' | 'closure-templates' | 'cmake' | 'cmd' | 'cobol' | 'codeowners' | 'codeql' | 'coffee' | 'coffeescript' | 'common-lisp' | 'console' | 'coq' | 'cpp' | 'cql' | 'crystal' | 'cs' | 'csharp' | 'css' | 'csv' | 'cue' | 'cypher' | 'd' | 'dart' | 'dax' | 'desktop' | 'diff' | 'docker' | 'dockerfile' | 'dotenv' | 'dream-maker' | 'edge' | 'elisp' | 'elixir' | 'elm' | 'emacs-lisp' | 'erb' | 'erl' | 'erlang' | 'f' | 'f#' | 'f03' | 'f08' | 'f18' | 'f77' | 'f90' | 'f95' | 'fennel' | 'fish' | 'fluent' | 'for' | 'fortran-fixed-form' | 'fortran-free-form' | 'fs' | 'fsharp' | 'fsl' | 'ftl' | 'gdresource' | 'gdscript' | 'gdshader' | 'genie' | 'gherkin' | 'git-commit' | 'git-rebase' | 'gjs' | 'gleam' | 'glimmer-js' | 'glimmer-ts' | 'glsl' | 'gnuplot' | 'go' | 'gql' | 'graphql' | 'groovy' | 'gts' | 'hack' | 'haml' | 'handlebars' | 'haskell' | 'haxe' | 'hbs' | 'hcl' | 'hjson' | 'hlsl' | 'hs' | 'html' | 'html-derivative' | 'http' | 'hxml' | 'hy' | 'imba' | 'ini' | 'jade' | 'java' | 'javascript' | 'jinja' | 'jison' | 'jl' | 'js' | 'json' | 'json5' | 'jsonc' | 'jsonl' | 'jsonnet' | 'jssm' | 'jsx' | 'julia' | 'kotlin' | 'kql' | 'kt' | 'kts' | 'kusto' | 'latex' | 'lean' | 'lean4' | 'less' | 'liquid' | 'lisp' | 'lit' | 'llvm' | 'log' | 'logo' | 'lua' | 'luau' | 'make' | 'makefile' | 'markdown' | 'marko' | 'matlab' | 'md' | 'mdc' | 'mdx' | 'mediawiki' | 'mermaid' | 'mips' | 'mipsasm' | 'mmd' | 'mojo' | 'move' | 'nar' | 'narrat' | 'nextflow' | 'nf' | 'nginx' | 'nim' | 'nix' | 'nu' | 'nushell' | 'objc' | 'objective-c' | 'objective-cpp' | 'ocaml' | 'pascal' | 'perl' | 'perl6' | 'php' | 'plsql' | 'po' | 'polar' | 'postcss' | 'pot' | 'potx' | 'powerquery' | 'powershell' | 'prisma' | 'prolog' | 'properties' | 'proto' | 'protobuf' | 'ps' | 'ps1' | 'pug' | 'puppet' | 'purescript' | 'py' | 'python' | 'ql' | 'qml' | 'qmldir' | 'qss' | 'r' | 'racket' | 'raku' | 'razor' | 'rb' | 'reg' | 'regex' | 'regexp' | 'rel' | 'riscv' | 'rs' | 'rst' | 'ruby' | 'rust' | 'sas' | 'sass' | 'scala' | 'scheme' | 'scss' | 'sdbl' | 'sh' | 'shader' | 'shaderlab' | 'shell' | 'shellscript' | 'shellsession' | 'smalltalk' | 'solidity' | 'soy' | 'sparql' | 'spl' | 'splunk' | 'sql' | 'ssh-config' | 'stata' | 'styl' | 'stylus' | 'svelte' | 'swift' | 'system-verilog' | 'systemd' | 'talon' | 'talonscript' | 'tasl' | 'tcl' | 'templ' | 'terraform' | 'tex' | 'tf' | 'tfvars' | 'toml' | 'ts' | 'ts-tags' | 'tsp' | 'tsv' | 'tsx' | 'turtle' | 'twig' | 'typ' | 'typescript' | 'typespec' | 'typst' | 'v' | 'vala' | 'vb' | 'verilog' | 'vhdl' | 'vim' | 'viml' | 'vimscript' | 'vue' | 'vue-html' | 'vue-vine' | 'vy' | 'vyper' | 'wasm' | 'wenyan' | 'wgsl' | 'wiki' | 'wikitext' | 'wit' | 'wl' | 'wolfram' | 'xml' | 'xsl' | 'yaml' | 'yml' | 'zenscript' | 'zig' | 'zsh' | '文言';
declare const bundledLanguages: Record<BundledLanguage, DynamicImportLanguageRegistration>;
export { bundledLanguages, bundledLanguagesAlias, bundledLanguagesBase, bundledLanguagesInfo };
export type { BundledLanguage };

1336
node_modules/shiki/dist/langs.mjs generated vendored Normal file

File diff suppressed because it is too large Load Diff

1
node_modules/shiki/dist/langs/1c-query.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/1c-query.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from '@shikijs/langs/1c-query'

1
node_modules/shiki/dist/langs/1c.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/1c.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from '@shikijs/langs/1c'

1
node_modules/shiki/dist/langs/abap.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/abap.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from '@shikijs/langs/abap'

1
node_modules/shiki/dist/langs/actionscript-3.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/actionscript-3.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from '@shikijs/langs/actionscript-3'

1
node_modules/shiki/dist/langs/ada.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/ada.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from '@shikijs/langs/ada'

1
node_modules/shiki/dist/langs/adoc.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/adoc.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from '@shikijs/langs/adoc'

View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/angular-expression.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from '@shikijs/langs/angular-expression'

1
node_modules/shiki/dist/langs/angular-html.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/angular-html.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from '@shikijs/langs/angular-html'

View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

View File

@@ -0,0 +1 @@
export { default } from '@shikijs/langs/angular-inline-style'

View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

View File

@@ -0,0 +1 @@
export { default } from '@shikijs/langs/angular-inline-template'

View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

View File

@@ -0,0 +1 @@
export { default } from '@shikijs/langs/angular-let-declaration'

View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

View File

@@ -0,0 +1 @@
export { default } from '@shikijs/langs/angular-template-blocks'

1
node_modules/shiki/dist/langs/angular-template.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/angular-template.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from '@shikijs/langs/angular-template'

1
node_modules/shiki/dist/langs/angular-ts.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/angular-ts.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from '@shikijs/langs/angular-ts'

1
node_modules/shiki/dist/langs/apache.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/apache.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from '@shikijs/langs/apache'

1
node_modules/shiki/dist/langs/apex.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/apex.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from '@shikijs/langs/apex'

1
node_modules/shiki/dist/langs/apl.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/apl.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from '@shikijs/langs/apl'

1
node_modules/shiki/dist/langs/applescript.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/applescript.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from '@shikijs/langs/applescript'

1
node_modules/shiki/dist/langs/ara.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/ara.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from '@shikijs/langs/ara'

1
node_modules/shiki/dist/langs/asciidoc.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/asciidoc.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from '@shikijs/langs/asciidoc'

1
node_modules/shiki/dist/langs/asm.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/asm.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from '@shikijs/langs/asm'

1
node_modules/shiki/dist/langs/astro.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/astro.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from '@shikijs/langs/astro'

1
node_modules/shiki/dist/langs/awk.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/awk.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from '@shikijs/langs/awk'

1
node_modules/shiki/dist/langs/ballerina.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/ballerina.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from '@shikijs/langs/ballerina'

1
node_modules/shiki/dist/langs/bash.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/bash.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from '@shikijs/langs/bash'

1
node_modules/shiki/dist/langs/bat.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/bat.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from '@shikijs/langs/bat'

1
node_modules/shiki/dist/langs/batch.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/batch.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from '@shikijs/langs/batch'

1
node_modules/shiki/dist/langs/be.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/be.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from '@shikijs/langs/be'

1
node_modules/shiki/dist/langs/beancount.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/beancount.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from '@shikijs/langs/beancount'

1
node_modules/shiki/dist/langs/berry.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/berry.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from '@shikijs/langs/berry'

1
node_modules/shiki/dist/langs/bibtex.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/bibtex.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from '@shikijs/langs/bibtex'

1
node_modules/shiki/dist/langs/bicep.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/bicep.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from '@shikijs/langs/bicep'

1
node_modules/shiki/dist/langs/blade.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/blade.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from '@shikijs/langs/blade'

1
node_modules/shiki/dist/langs/bsl.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/bsl.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from '@shikijs/langs/bsl'

1
node_modules/shiki/dist/langs/c.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/c.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from '@shikijs/langs/c'

1
node_modules/shiki/dist/langs/cadence.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/cadence.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from '@shikijs/langs/cadence'

1
node_modules/shiki/dist/langs/cairo.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/cairo.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from '@shikijs/langs/cairo'

1
node_modules/shiki/dist/langs/cdc.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/cdc.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from '@shikijs/langs/cdc'

1
node_modules/shiki/dist/langs/clarity.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/clarity.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from '@shikijs/langs/clarity'

1
node_modules/shiki/dist/langs/clj.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/clj.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from '@shikijs/langs/clj'

1
node_modules/shiki/dist/langs/clojure.d.mts generated vendored Normal file
View File

@@ -0,0 +1 @@
import { LanguageRegistration } from '@shikijs/core';declare const reg: LanguageRegistration[];export default reg

1
node_modules/shiki/dist/langs/clojure.mjs generated vendored Normal file
View File

@@ -0,0 +1 @@
export { default } from '@shikijs/langs/clojure'

Some files were not shown because too many files have changed in this diff Show More