@autobe/compiler 0.4.3 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/AutoBeInterfaceCompiler.js +8 -11
- package/lib/AutoBeInterfaceCompiler.js.map +1 -1
- package/lib/raw/external.json +260 -52
- package/package.json +4 -4
- package/src/AutoBeInterfaceCompiler.ts +15 -15
- package/src/raw/external.json +260 -52
package/lib/raw/external.json
CHANGED
|
@@ -11561,7 +11561,7 @@
|
|
|
11561
11561
|
"node_modules/@nestia/benchmark/lib/internal/DynamicBenchmarkReporter.d.ts": "import { DynamicBenchmarker } from \"../DynamicBenchmarker\";\nexport declare namespace DynamicBenchmarkReporter {\n const markdown: (report: DynamicBenchmarker.IReport) => string;\n}\n",
|
|
11562
11562
|
"node_modules/@nestia/benchmark/lib/internal/IBenchmarkMaster.d.ts": "export interface IBenchmarkMaster {\n filter: (name: string) => boolean;\n progress: (current: number) => void;\n}\n",
|
|
11563
11563
|
"node_modules/@nestia/benchmark/lib/internal/IBenchmarkServant.d.ts": "import { IBenchmarkEvent } from \"../IBenchmarkEvent\";\nexport interface IBenchmarkServant {\n execute(props: {\n count: number;\n simultaneous: number;\n }): Promise<IBenchmarkEvent[]>;\n}\n",
|
|
11564
|
-
"node_modules/@nestia/benchmark/package.json": "{\n \"name\": \"@nestia/benchmark\",\n \"version\": \"
|
|
11564
|
+
"node_modules/@nestia/benchmark/package.json": "{\n \"name\": \"@nestia/benchmark\",\n \"version\": \"7.0.0\",\n \"description\": \"NestJS Performance Benchmark Program\",\n \"main\": \"lib/index.js\",\n \"typings\": \"lib/index.d.ts\",\n \"scripts\": {\n \"build\": \"npm run build:main && npm run build:test\",\n \"build:main\": \"rimraf lib && tsc\",\n \"build:test\": \"rimraf bin && tsc -p test/tsconfig.json\",\n \"dev\": \"npm run build:test -- --watch\",\n \"prepare\": \"ts-patch install\",\n \"test\": \"node bin/test\"\n },\n \"keywords\": [\n \"e2e\",\n \"nestia\",\n \"nestjs\",\n \"Performance\",\n \"benchmark\"\n ],\n \"author\": \"Jeongho Nam\",\n \"license\": \"MIT\",\n \"bugs\": {\n \"url\": \"https://github.com/samchon/nestia/issues\"\n },\n \"homepage\": \"https://nestia.io\",\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/samchon/nestia\"\n },\n \"dependencies\": {\n \"@nestia/fetcher\": \"^7.0.0\",\n \"tgrid\": \"^1.1.0\",\n \"tstl\": \"^3.0.0\"\n },\n \"devDependencies\": {\n \"@nestia/core\": \"^7.0.0\",\n \"@nestia/e2e\": \"^7.0.0\",\n \"@nestia/sdk\": \"^7.0.0\",\n \"@nestjs/common\": \"^11.0.13\",\n \"@nestjs/core\": \"^11.0.13\",\n \"@nestjs/platform-express\": \"^11.0.13\",\n \"@types/uuid\": \"^10.0.0\",\n \"nestia\": \"workspace:^\",\n \"ts-node\": \"^10.9.2\",\n \"ts-patch\": \"^3.3.0\",\n \"typescript\": \"~5.8.3\",\n \"typescript-transform-paths\": \"^3.4.7\",\n \"typia\": \"^9.3.1\",\n \"uuid\": \"^10.0.0\"\n },\n \"files\": [\n \"lib\",\n \"src\",\n \"README.md\",\n \"LICENSE\",\n \"package.json\"\n ]\n}",
|
|
11565
11565
|
"node_modules/@nestia/core/lib/adaptors/WebSocketAdaptor.d.ts": "import { INestApplication } from \"@nestjs/common\";\nexport declare class WebSocketAdaptor {\n static upgrade(app: INestApplication): Promise<WebSocketAdaptor>;\n readonly close: () => Promise<void>;\n private constructor();\n private readonly handleUpgrade;\n private readonly http;\n private readonly operators;\n private readonly ws;\n}\n",
|
|
11566
11566
|
"node_modules/@nestia/core/lib/decorators/DynamicModule.d.ts": "import { ModuleMetadata } from \"@nestjs/common/interfaces\";\n/**\n * Dynamic module.\n *\n * `DynamicModule` is a namespace wrapping a convenient function, which can load\n * controller classes dynamically just by specifying their directory path.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace DynamicModule {\n /**\n * Mount dynamic module.\n *\n * Constructs a module instance with directory path of controller classes.\n *\n * Every controller classes in the target directory would be dynamically mounted.\n *\n * @param path Path of controllers\n * @param metadata Additional metadata except controllers\n * @returns module instance\n */\n function mount(path: string | string[] | {\n include: string[];\n exclude?: string[];\n }, metadata?: Omit<ModuleMetadata, \"controllers\">, isTsNode?: boolean): Promise<{\n new (): {};\n }>;\n}\n",
|
|
11567
11567
|
"node_modules/@nestia/core/lib/decorators/EncryptedBody.d.ts": "import { IRequestBodyValidator } from \"../options/IRequestBodyValidator\";\n/**\n * Encrypted body decorator.\n *\n * `EncryptedBody` is a decorator function getting `application/json` typed data from\n * request body which has been encrypted by AES-128/256 algorithm. Also,\n * `EncryptedBody` validates the request body data type through\n * [typia](https://github.com/samchon/typia) ad the validation speed is\n * maximum 15,000x times faster than `class-validator`.\n *\n * For reference, when the request body data is not following the promised type `T`,\n * `BadRequestException` error (status code: 400) would be thrown. Also,\n * `EncryptedRoute` decrypts request body using those options.\n *\n * - AES-128/256\n * - CBC mode\n * - PKCS #5 Padding\n * - Base64 Encoding\n *\n * @return Parameter decorator\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare function EncryptedBody<T>(validator?: IRequestBodyValidator<T>): ParameterDecorator;\n",
|
|
@@ -11633,7 +11633,7 @@
|
|
|
11633
11633
|
"node_modules/@nestia/core/lib/utils/Singleton.d.ts": "export {};\n",
|
|
11634
11634
|
"node_modules/@nestia/core/lib/utils/SourceFinder.d.ts": "export declare namespace SourceFinder {\n const find: (props: IProps) => Promise<string[]>;\n}\ninterface IProps {\n exclude?: string[];\n include: string[];\n filter: (location: string) => boolean;\n}\nexport {};\n",
|
|
11635
11635
|
"node_modules/@nestia/core/lib/utils/VersioningStrategy.d.ts": "import { VERSION_NEUTRAL, VersionValue } from \"@nestjs/common/interfaces\";\nexport declare namespace VersioningStrategy {\n interface IConfig {\n prefix: string;\n defaultVersion?: VersionValue;\n }\n const cast: (value: VersionValue | undefined) => Array<string | typeof VERSION_NEUTRAL>;\n const merge: (config: IConfig | undefined) => (values: Array<string | typeof VERSION_NEUTRAL>) => string[];\n}\n",
|
|
11636
|
-
"node_modules/@nestia/core/package.json": "{\n \"name\": \"@nestia/core\",\n \"version\": \"
|
|
11636
|
+
"node_modules/@nestia/core/package.json": "{\n \"name\": \"@nestia/core\",\n \"version\": \"7.0.0\",\n \"description\": \"Super-fast validation decorators of NestJS\",\n \"main\": \"lib/index.js\",\n \"typings\": \"lib/index.d.ts\",\n \"tsp\": {\n \"tscOptions\": {\n \"parseAllJsDoc\": true\n }\n },\n \"scripts\": {\n \"build\": \"rimraf lib && tsc\",\n \"dev\": \"tsc -p tsconfig.test.json --watch\",\n \"eslint\": \"eslint ./**/*.ts\",\n \"eslint:fix\": \"eslint ./**/*.ts --fix\",\n \"prepare\": \"ts-patch install && typia patch\"\n },\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/samchon/nestia\"\n },\n \"keywords\": [\n \"nestjs\",\n \"nestia\",\n \"typia\",\n \"validator\",\n \"decorator\",\n \"class-validator\",\n \"class-transformer\"\n ],\n \"author\": \"Jeongho Nam\",\n \"license\": \"MIT\",\n \"bugs\": {\n \"url\": \"https://github.com/samchon/nestia/issues\"\n },\n \"homepage\": \"https://nestia.io\",\n \"dependencies\": {\n \"@nestia/fetcher\": \"^7.0.0\",\n \"@nestjs/common\": \">=7.0.1\",\n \"@nestjs/core\": \">=7.0.1\",\n \"@samchon/openapi\": \"^4.3.3\",\n \"detect-ts-node\": \"^1.0.5\",\n \"get-function-location\": \"^2.0.0\",\n \"glob\": \"^7.2.0\",\n \"path-parser\": \"^6.1.0\",\n \"raw-body\": \"^2.0.0\",\n \"reflect-metadata\": \">=0.1.12\",\n \"rxjs\": \">=6.0.3\",\n \"tgrid\": \"^1.1.0\",\n \"typia\": \"^9.3.1\",\n \"ws\": \"^7.5.3\"\n },\n \"peerDependencies\": {\n \"@nestia/fetcher\": \">=7.0.0\",\n \"@nestjs/common\": \">=7.0.1\",\n \"@nestjs/core\": \">=7.0.1\",\n \"reflect-metadata\": \">=0.1.12\",\n \"rxjs\": \">=6.0.3\"\n },\n \"devDependencies\": {\n \"@nestjs/common\": \"^11.0.13\",\n \"@nestjs/core\": \"^11.0.13\",\n \"@types/express\": \"^4.17.15\",\n \"@types/glob\": \"^7.2.0\",\n \"@types/inquirer\": \"^9.0.3\",\n \"@types/multer\": \"^1.4.12\",\n \"@types/ts-expose-internals\": \"npm:ts-expose-internals@5.4.5\",\n \"@types/ws\": \"^8.5.10\",\n \"@typescript-eslint/eslint-plugin\": \"^5.46.1\",\n \"@typescript-eslint/parser\": \"^5.46.1\",\n \"commander\": \"^10.0.0\",\n \"comment-json\": \"^4.2.3\",\n \"eslint-plugin-deprecation\": \"^1.4.1\",\n \"fastify\": \"^4.28.1\",\n \"git-last-commit\": \"^1.0.1\",\n \"inquirer\": \"^8.2.5\",\n \"rimraf\": \"^6.0.1\",\n \"ts-node\": \"^10.9.1\",\n \"ts-patch\": \"^3.3.0\",\n \"tstl\": \"^3.0.0\",\n \"typescript\": \"~5.8.3\"\n },\n \"files\": [\n \"README.md\",\n \"LICENSE\",\n \"package.json\",\n \"lib\",\n \"src\"\n ]\n}",
|
|
11637
11637
|
"node_modules/@nestia/core/src/typings/get-function-location.d.ts": "declare module \"get-function-location\" {\n export default function (func: any): Promise<{\n source: string;\n line: number;\n column: number;\n }>;\n}\n",
|
|
11638
11638
|
"node_modules/@nestia/e2e/lib/ArrayUtil.d.ts": "/**\n * Utility functions for arrays.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace ArrayUtil {\n const asyncFilter: <Input>(elements: readonly Input[]) => (pred: (elem: Input, index: number, array: readonly Input[]) => Promise<boolean>) => Promise<Input[]>;\n const asyncForEach: <Input>(elements: readonly Input[]) => (closure: (elem: Input, index: number, array: readonly Input[]) => Promise<any>) => Promise<void>;\n const asyncMap: <Input>(elements: readonly Input[]) => <Output>(closure: (elem: Input, index: number, array: readonly Input[]) => Promise<Output>) => Promise<Output[]>;\n const asyncRepeat: (count: number) => <T>(closure: (index: number) => Promise<T>) => Promise<T[]>;\n const has: <T>(elements: readonly T[]) => (pred: (elem: T) => boolean) => boolean;\n const repeat: (count: number) => <T>(closure: (index: number) => T) => T[];\n const flat: <T>(matrix: T[][]) => T[];\n const subsets: <T>(array: T[]) => T[][];\n}\n",
|
|
11639
11639
|
"node_modules/@nestia/e2e/lib/DynamicExecutor.d.ts": "/**\n * Dynamic Executor running prefixed functions.\n *\n * `DynamicExecutor` runs every (or some filtered) prefixed functions\n * in a specific directory.\n *\n * For reference, it's useful for test program development of a backend server.\n * Just write test functions under a directory, and just specify it.\n * Furthermore, if you compose e2e test programs to utilize the `@nestia/sdk`\n * generated API functions, you can take advantage of {@link DynamicBenchmarker}\n * at the same time.\n *\n * When you want to see some utilization cases, see the below example links.\n *\n * @example https://github.com/samchon/nestia-start/blob/master/test/index.ts\n * @example https://github.com/samchon/backend/blob/master/test/index.ts\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace DynamicExecutor {\n /**\n * Function type of a prefixed.\n *\n * @template Arguments Type of parameters\n * @template Ret Type of return value\n */\n interface Closure<Arguments extends any[], Ret = any> {\n (...args: Arguments): Promise<Ret>;\n }\n /**\n * Options for dynamic executor.\n */\n interface IProps<Parameters extends any[], Ret = any> {\n /**\n * Prefix of function name.\n *\n * Every prefixed function will be executed.\n *\n * In other words, if a function name doesn't start with the prefix, then it would never be executed.\n */\n prefix: string;\n /**\n * Location of the test functions.\n */\n location: string;\n /**\n * Get parameters of a function.\n *\n * @param name Function name\n * @returns Parameters\n */\n parameters: (name: string) => Parameters;\n /**\n * On complete function.\n *\n * Listener of completion of a test function.\n *\n * @param exec Execution result of a test function\n */\n onComplete?: (exec: IExecution) => void;\n /**\n * Filter function whether to run or not.\n *\n * @param name Function name\n * @returns Whether to run or not\n */\n filter?: (name: string) => boolean;\n /**\n * Wrapper of test function.\n *\n * If you specify this `wrapper` property, every dynamic functions\n * loaded and called by this `DynamicExecutor` would be wrapped by\n * the `wrapper` function.\n *\n * @param name Function name\n * @param closure Function to be executed\n * @param parameters Parameters, result of options.parameters function.\n * @returns Wrapper function\n */\n wrapper?: (name: string, closure: Closure<Parameters, Ret>, parameters: Parameters) => Promise<any>;\n /**\n * Number of simultaneous requests.\n *\n * The number of requests to be executed simultaneously.\n *\n * If you configure a value greater than one, the dynamic executor will\n * process the functions concurrently with the given capacity value.\n *\n * @default 1\n */\n simultaneous?: number;\n /**\n * Extension of dynamic functions.\n *\n * @default js\n */\n extension?: string;\n }\n /**\n * Report, result of dynamic execution.\n */\n interface IReport {\n /**\n * Location path of dynamic functions.\n */\n location: string;\n /**\n * Execution results of dynamic functions.\n */\n executions: IExecution[];\n /**\n * Total elapsed time.\n */\n time: number;\n }\n /**\n * Execution of a test function.\n */\n interface IExecution {\n /**\n * Name of function.\n */\n name: string;\n /**\n * Location path of the function.\n */\n location: string;\n /**\n * Returned value from the function.\n */\n value: unknown;\n /**\n * Error when occurred.\n */\n error: Error | null;\n /**\n * Elapsed time.\n */\n started_at: string;\n /**\n * Completion time.\n */\n completed_at: string;\n }\n /**\n * Prepare dynamic executor in strict mode.\n *\n * In strict mode, if any error occurs, the program will be terminated directly.\n * Otherwise, {@link validate} mode does not terminate when error occurs, but\n * just archive the error log.\n *\n * @param props Properties of dynamic execution\n * @returns Report of dynamic test functions execution\n */\n const assert: <Arguments extends any[]>(props: IProps<Arguments>) => Promise<IReport>;\n /**\n * Prepare dynamic executor in loose mode.\n *\n * In loose mode, the program would not be terminated even when error occurs.\n * Instead, the error would be archived and returns as a list. Otherwise,\n * {@link assert} mode terminates the program directly when error occurs.\n *\n * @param props Properties of dynamic executor\n * @returns Report of dynamic test functions execution\n */\n const validate: <Arguments extends any[]>(props: IProps<Arguments>) => Promise<IReport>;\n}\n",
|
|
@@ -11643,16 +11643,16 @@
|
|
|
11643
11643
|
"node_modules/@nestia/e2e/lib/index.d.ts": "import * as e2e from \"./module\";\nexport default e2e;\nexport * from \"./module\";\n",
|
|
11644
11644
|
"node_modules/@nestia/e2e/lib/internal/json_equal_to.d.ts": "export declare const json_equal_to: (exception: (key: string) => boolean) => <T>(x: T) => (y: T) => string[];\n",
|
|
11645
11645
|
"node_modules/@nestia/e2e/lib/module.d.ts": "export * from \"./ArrayUtil\";\nexport * from \"./DynamicExecutor\";\nexport * from \"./GaffComparator\";\nexport * from \"./RandomGenerator\";\nexport * from \"./TestValidator\";\n",
|
|
11646
|
-
"node_modules/@nestia/e2e/package.json": "{\n \"name\": \"@nestia/e2e\",\n \"version\": \"
|
|
11646
|
+
"node_modules/@nestia/e2e/package.json": "{\n \"name\": \"@nestia/e2e\",\n \"version\": \"7.0.0\",\n \"description\": \"E2E test utilify functions\",\n \"main\": \"lib/index.js\",\n \"typings\": \"lib/index.d.ts\",\n \"scripts\": {\n \"build\": \"npm run build:main && npm run build:test\",\n \"build:main\": \"rimraf lib && tsc\",\n \"build:test\": \"rimraf bin && tsc -p test/tsconfig.json\",\n \"dev\": \"npm run build:test -- --watch\",\n \"eslint\": \"eslint src && eslint test\",\n \"prepare\": \"ts-patch install && typia patch\",\n \"test\": \"node bin/test\"\n },\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/samchon/nestia\"\n },\n \"keywords\": [\n \"e2e\",\n \"nestia\",\n \"nestjs\",\n \"test\",\n \"tdd\",\n \"utility\"\n ],\n \"author\": \"Jeongho Nam\",\n \"license\": \"MIT\",\n \"bugs\": {\n \"url\": \"https://github.com/samchon/nestia/issues\"\n },\n \"homepage\": \"https://nestia.io\",\n \"devDependencies\": {\n \"@trivago/prettier-plugin-sort-imports\": \"^4.0.0\",\n \"@types/node\": \"^18.11.18\",\n \"@typescript-eslint/eslint-plugin\": \"^5.57.0\",\n \"@typescript-eslint/parser\": \"^5.57.0\",\n \"rimraf\": \"^6.0.1\",\n \"ts-node\": \"^10.9.1\",\n \"ts-patch\": \"^3.3.0\",\n \"typescript\": \"~5.8.3\",\n \"typescript-transform-paths\": \"^3.4.7\",\n \"typia\": \"^9.3.1\"\n },\n \"files\": [\n \"lib\",\n \"src\",\n \"README.md\",\n \"LICENSE\",\n \"package.json\"\n ]\n}",
|
|
11647
11647
|
"node_modules/@nestia/editor/lib/NestiaEditorApplication.d.ts": "export declare function NestiaEditorApplication(): import(\"react/jsx-runtime\").JSX.Element;\n",
|
|
11648
|
-
"node_modules/@nestia/editor/lib/NestiaEditorIframe.d.ts": "import { OpenApiV3, OpenApiV3_1, SwaggerV2 } from \"@samchon/openapi\";\nexport declare function NestiaEditorIframe(props: NestiaEditorIframe.IProps): import(\"react/jsx-runtime\").JSX.Element;\nexport declare namespace NestiaEditorIframe {\n interface IProps {\n swagger: string | SwaggerV2.IDocument | OpenApiV3.IDocument | OpenApiV3_1.IDocument;\n package?: string;\n simulate?: boolean;\n e2e?: boolean;\n }\n}\n",
|
|
11648
|
+
"node_modules/@nestia/editor/lib/NestiaEditorIframe.d.ts": "import { OpenApiV3, OpenApiV3_1, SwaggerV2 } from \"@samchon/openapi\";\nexport declare function NestiaEditorIframe(props: NestiaEditorIframe.IProps): import(\"react/jsx-runtime\").JSX.Element;\nexport declare namespace NestiaEditorIframe {\n interface IProps {\n swagger: string | SwaggerV2.IDocument | OpenApiV3.IDocument | OpenApiV3_1.IDocument;\n package?: string;\n keyword?: boolean;\n simulate?: boolean;\n e2e?: boolean;\n }\n}\n",
|
|
11649
11649
|
"node_modules/@nestia/editor/lib/NestiaEditorModule.d.ts": "import type { OpenApiV3, OpenApiV3_1, SwaggerV2 } from \"@samchon/openapi\";\nexport declare namespace NestiaEditorModule {\n const setup: (props: {\n path: string;\n application: INestApplication;\n swagger: string | SwaggerV2.IDocument | OpenApiV3.IDocument | OpenApiV3_1.IDocument;\n package?: string;\n simulate?: boolean;\n e2e?: boolean;\n }) => Promise<void>;\n}\ninterface INestApplication {\n use(...args: any[]): this;\n getUrl(): Promise<string>;\n getHttpAdapter(): INestHttpAdaptor;\n setGlobalPrefix(prefix: string, options?: any): this;\n}\ninterface INestHttpAdaptor {\n getType(): string;\n close(): any;\n init?(): Promise<void>;\n get: Function;\n post: Function;\n put: Function;\n patch: Function;\n delete: Function;\n head: Function;\n all: Function;\n}\nexport {};\n",
|
|
11650
11650
|
"node_modules/@nestia/editor/lib/NestiaEditorUploader.d.ts": "export declare function NestiaEditorUploader(props: NestiaEditorUploader.IProps): import(\"react/jsx-runtime\").JSX.Element;\nexport declare namespace NestiaEditorUploader {\n interface IProps {\n onError?: (error: string) => void;\n }\n}\n",
|
|
11651
11651
|
"node_modules/@nestia/editor/lib/index.d.ts": "export * from \"./NestiaEditorIframe\";\nexport * from \"./NestiaEditorUploader\";\n",
|
|
11652
|
-
"node_modules/@nestia/editor/lib/internal/NestiaEditorComposer.d.ts": "import { OpenApiV3, OpenApiV3_1, SwaggerV2 } from \"@samchon/openapi\";\nimport { IValidation } from \"typia\";\nexport declare namespace NestiaEditorComposer {\n interface IProps {\n document: SwaggerV2.IDocument | OpenApiV3.IDocument | OpenApiV3_1.IDocument;\n e2e: boolean;\n simulate: boolean;\n package?: string;\n }\n interface IOutput {\n files: Record<string, string>;\n openFile: string;\n startScript: string[];\n }\n const nest: (props: IProps) => Promise<IValidation<IOutput>>;\n const sdk: (props: IProps) => Promise<IValidation<IOutput>>;\n}\n",
|
|
11652
|
+
"node_modules/@nestia/editor/lib/internal/NestiaEditorComposer.d.ts": "import { OpenApiV3, OpenApiV3_1, SwaggerV2 } from \"@samchon/openapi\";\nimport { IValidation } from \"typia\";\nexport declare namespace NestiaEditorComposer {\n interface IProps {\n document: SwaggerV2.IDocument | OpenApiV3.IDocument | OpenApiV3_1.IDocument;\n e2e: boolean;\n keyword: boolean;\n simulate: boolean;\n package?: string;\n }\n interface IOutput {\n files: Record<string, string>;\n openFile: string;\n startScript: string[];\n }\n const nest: (props: IProps) => Promise<IValidation<IOutput>>;\n const sdk: (props: IProps) => Promise<IValidation<IOutput>>;\n}\n",
|
|
11653
11653
|
"node_modules/@nestia/editor/lib/internal/NestiaEditorFileUploader.d.ts": "import { OpenApiV3, OpenApiV3_1, SwaggerV2 } from \"@samchon/openapi\";\nexport declare function NestiaEditorFileUploader(props: NestiaEditorFileUploader.IProps): import(\"react/jsx-runtime\").JSX.Element;\nexport declare namespace NestiaEditorFileUploader {\n interface IProps {\n onChange: (swagger: SwaggerV2.IDocument | OpenApiV3.IDocument | OpenApiV3_1.IDocument | null, error: string | null) => void;\n }\n}\n",
|
|
11654
11654
|
"node_modules/@nestia/editor/lib/main.d.ts": "export {};\n",
|
|
11655
|
-
"node_modules/@nestia/editor/package.json": "{\n \"name\": \"@nestia/editor\",\n \"version\": \"
|
|
11655
|
+
"node_modules/@nestia/editor/package.json": "{\n \"name\": \"@nestia/editor\",\n \"version\": \"7.0.0\",\n \"main\": \"lib/index.js\",\n \"module\": \"lib/index.mjs\",\n \"typings\": \"lib/index.d.ts\",\n \"description\": \"Swagger-UI + Cloud TypeScript Editor\",\n \"scripts\": {\n \"build\": \"npm run build:static && npm run build:lib\",\n \"build:static\": \"rimraf dist && tsc -b && vite build\",\n \"build:lib\": \"rimraf lib && tsc --project tsconfig.lib.json && rollup -c\",\n \"dev\": \"vite\",\n \"lint\": \"eslint .\",\n \"preview\": \"vite preview\"\n },\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/samchon/nestia\"\n },\n \"keywords\": [\n \"openapi\",\n \"swagger\",\n \"generator\",\n \"cloud\",\n \"typescript\",\n \"editor\",\n \"sdk\",\n \"nestjs\",\n \"nestia\"\n ],\n \"author\": \"Jeongho Nam\",\n \"license\": \"MIT\",\n \"bugs\": {\n \"url\": \"https://github.com/samchon/nestia/issues\"\n },\n \"homepage\": \"https://nestia.io\",\n \"dependencies\": {\n \"@mui/material\": \"^5.15.6\",\n \"@nestia/migrate\": \"^7.0.0\",\n \"@samchon/openapi\": \"^4.3.3\",\n \"@stackblitz/sdk\": \"^1.11.0\",\n \"@trivago/prettier-plugin-sort-imports\": \"^5.2.2\",\n \"js-yaml\": \"^4.1.0\",\n \"prettier\": \"3.3.3\",\n \"prettier-plugin-jsdoc\": \"^1.3.2\",\n \"react-mui-fileuploader\": \"^0.5.2\",\n \"typia\": \"^9.3.1\"\n },\n \"devDependencies\": {\n \"@eslint/js\": \"^9.13.0\",\n \"@nestjs/common\": \"^11.0.13\",\n \"@nestjs/core\": \"^11.0.13\",\n \"@nestjs/platform-express\": \"^11.0.13\",\n \"@nestjs/platform-fastify\": \"^11.0.13\",\n \"@rollup/plugin-terser\": \"^0.4.4\",\n \"@rollup/plugin-typescript\": \"^12.1.1\",\n \"@types/js-yaml\": \"^4.0.9\",\n \"@types/node\": \"^22.8.6\",\n \"@types/react\": \"^18.3.11\",\n \"@types/react-dom\": \"^18.3.1\",\n \"@vitejs/plugin-react\": \"^4.3.3\",\n \"eslint\": \"^9.13.0\",\n \"eslint-plugin-react-hooks\": \"^5.0.0\",\n \"eslint-plugin-react-refresh\": \"^0.4.13\",\n \"globals\": \"^15.11.0\",\n \"react\": \"^18.3.1\",\n \"react-dom\": \"^18.3.1\",\n \"rollup\": \"^4.24.2\",\n \"ts-node\": \"^10.9.2\",\n \"typescript\": \"~5.8.3\",\n \"typescript-eslint\": \"^8.10.0\",\n \"vite\": \"^5.4.9\"\n },\n \"files\": [\n \"README.md\",\n \"LICENSE\",\n \"package.json\",\n \"dist\",\n \"lib\",\n \"src\"\n ]\n}",
|
|
11656
11656
|
"node_modules/@nestia/editor/src/vite-env.d.ts": "/// <reference types=\"vite/client\" />\n",
|
|
11657
11657
|
"node_modules/@nestia/fetcher/lib/AesPkcs5.d.ts": "/**\n * Utility class for the AES-128/256 encryption.\n *\n * - AES-128/256\n * - CBC mode\n * - PKCS#5 Padding\n * - Base64 Encoding\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace AesPkcs5 {\n /**\n * Encrypt data\n *\n * @param data Target data\n * @param key Key value of the encryption.\n * @param iv Initializer Vector for the encryption\n * @return Encrypted data\n */\n function encrypt(data: string, key: string, iv: string): string;\n /**\n * Decrypt data.\n *\n * @param data Target data\n * @param key Key value of the decryption.\n * @param iv Initializer Vector for the decryption\n * @return Decrypted data.\n */\n function decrypt(data: string, key: string, iv: string): string;\n}\n",
|
|
11658
11658
|
"node_modules/@nestia/fetcher/lib/EncryptedFetcher.d.ts": "import { IConnection } from \"./IConnection\";\nimport { IFetchRoute } from \"./IFetchRoute\";\nimport { IPropagation } from \"./IPropagation\";\n/**\n * Utility class for `fetch` functions used in `@nestia/sdk` with encryption.\n *\n * `EncryptedFetcher` is a utility class designed for SDK functions generated by\n * [`@nestia/sdk`](https://nestia.io/docs/sdk/sdk), interacting with the remote\n * HTTP API encrypted by AES-PKCS algorithm. In other words, this is a collection of\n * dedicated `fetch()` functions for `@nestia/sdk` with encryption.\n *\n * For reference, `EncryptedFetcher` class being used only when target controller\n * method is encrypting body data by `@EncryptedRoute` or `@EncryptedBody` decorators.\n * If those decorators are not used, {@link PlainFetcher} class would be used instead.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace EncryptedFetcher {\n /**\n * Fetch function only for `HEAD` method.\n *\n * @param connection Connection information for the remote HTTP server\n * @param route Route information about the target API\n * @return Nothing because of `HEAD` method\n */\n function fetch(connection: IConnection, route: IFetchRoute<\"HEAD\">): Promise<void>;\n /**\n * Fetch function only for `GET` method.\n *\n * @param connection Connection information for the remote HTTP server\n * @param route Route information about the target API\n * @return Response body data from the remote API\n */\n function fetch<Output>(connection: IConnection, route: IFetchRoute<\"GET\">): Promise<Output>;\n /**\n * Fetch function for the `POST`, `PUT`, `PATCH` and `DELETE` methods.\n *\n * @param connection Connection information for the remote HTTP server\n * @param route Route information about the target API\n * @return Response body data from the remote API\n */\n function fetch<Input, Output>(connection: IConnection, route: IFetchRoute<\"POST\" | \"PUT\" | \"PATCH\" | \"DELETE\">, input?: Input, stringify?: (input: Input) => string): Promise<Output>;\n function propagate<Output extends IPropagation<any, any>>(connection: IConnection, route: IFetchRoute<\"GET\" | \"HEAD\">): Promise<Output>;\n function propagate<Input, Output extends IPropagation<any, any>>(connection: IConnection, route: IFetchRoute<\"DELETE\" | \"GET\" | \"HEAD\" | \"PATCH\" | \"POST\" | \"PUT\">, input?: Input, stringify?: (input: Input) => string): Promise<Output>;\n}\n",
|
|
@@ -11668,40 +11668,40 @@
|
|
|
11668
11668
|
"node_modules/@nestia/fetcher/lib/PlainFetcher.d.ts": "import { IConnection } from \"./IConnection\";\nimport { IFetchRoute } from \"./IFetchRoute\";\nimport { IPropagation } from \"./IPropagation\";\n/**\n * Utility class for `fetch` functions used in `@nestia/sdk`.\n *\n * `PlainFetcher` is a utility class designed for SDK functions generated by\n * [`@nestia/sdk`](https://nestia.io/docs/sdk/sdk), interacting with the remote\n * HTTP sever API. In other words, this is a collection of dedicated `fetch()`\n * functions for `@nestia/sdk`.\n *\n * For reference, `PlainFetcher` class does not encrypt or decrypt the body data\n * at all. It just delivers plain data without any post processing. If you've\n * defined a controller method through `@EncryptedRoute` or `@EncryptedBody`\n * decorator, then {@liink EncryptedFetcher} class would be used instead.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport declare namespace PlainFetcher {\n /**\n * Fetch function only for `HEAD` method.\n *\n * @param connection Connection information for the remote HTTP server\n * @param route Route information about the target API\n * @return Nothing because of `HEAD` method\n */\n function fetch(connection: IConnection, route: IFetchRoute<\"HEAD\">): Promise<void>;\n /**\n * Fetch function only for `GET` method.\n *\n * @param connection Connection information for the remote HTTP server\n * @param route Route information about the target API\n * @return Response body data from the remote API\n */\n function fetch<Output>(connection: IConnection, route: IFetchRoute<\"GET\">): Promise<Output>;\n /**\n * Fetch function for the `POST`, `PUT`, `PATCH` and `DELETE` methods.\n *\n * @param connection Connection information for the remote HTTP server\n * @param route Route information about the target API\n * @return Response body data from the remote API\n */\n function fetch<Input, Output>(connection: IConnection, route: IFetchRoute<\"POST\" | \"PUT\" | \"PATCH\" | \"DELETE\">, input?: Input, stringify?: (input: Input) => string): Promise<Output>;\n function propagate<Output extends IPropagation<any, any>>(connection: IConnection, route: IFetchRoute<\"GET\" | \"HEAD\">): Promise<Output>;\n function propagate<Input, Output extends IPropagation<any, any>>(connection: IConnection, route: IFetchRoute<\"DELETE\" | \"GET\" | \"HEAD\" | \"PATCH\" | \"POST\" | \"PUT\">, input?: Input, stringify?: (input: Input) => string): Promise<Output>;\n}\n",
|
|
11669
11669
|
"node_modules/@nestia/fetcher/lib/index.d.ts": "export * from \"./FormDataInput\";\nexport * from \"./HttpError\";\nexport * from \"./IConnection\";\nexport * from \"./IEncryptionPassword\";\nexport * from \"./IFetchEvent\";\nexport * from \"./IFetchRoute\";\nexport * from \"./IPropagation\";\n",
|
|
11670
11670
|
"node_modules/@nestia/fetcher/lib/internal/FetcherBase.d.ts": "export {};\n",
|
|
11671
|
-
"node_modules/@nestia/fetcher/package.json": "{\n \"name\": \"@nestia/fetcher\",\n \"version\": \"
|
|
11672
|
-
"node_modules/@nestia/migrate/lib/
|
|
11673
|
-
"node_modules/@nestia/migrate/lib/analyzers/
|
|
11674
|
-
"node_modules/@nestia/migrate/lib/
|
|
11675
|
-
"node_modules/@nestia/migrate/lib/
|
|
11676
|
-
"node_modules/@nestia/migrate/lib/bundles/
|
|
11677
|
-
"node_modules/@nestia/migrate/lib/
|
|
11671
|
+
"node_modules/@nestia/fetcher/package.json": "{\n \"name\": \"@nestia/fetcher\",\n \"version\": \"7.0.0\",\n \"description\": \"Fetcher library of Nestia SDK\",\n \"main\": \"lib/index.js\",\n \"typings\": \"lib/index.d.ts\",\n \"scripts\": {\n \"build\": \"rimraf lib && tsc\",\n \"dev\": \"tsc -p tsconfig.test.json --watch\",\n \"eslint\": \"eslint src\",\n \"eslint:fix\": \"eslint src --fix\"\n },\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/samchon/nestia\"\n },\n \"keywords\": [\n \"nestia\",\n \"fetcher\",\n \"sdk\"\n ],\n \"author\": \"Jeongho Nam\",\n \"license\": \"MIT\",\n \"bugs\": {\n \"url\": \"https://github.com/samchon/nestia/issues\"\n },\n \"homepage\": \"https://nestia.io\",\n \"dependencies\": {\n \"@samchon/openapi\": \"^4.3.3\",\n \"typia\": \"^9.3.1\"\n },\n \"peerDependencies\": {\n \"@samchon/openapi\": \">=4.3.3 <5.0.0\",\n \"typia\": \">=9.3.1 <10.0.0\"\n },\n \"devDependencies\": {\n \"@types/node\": \"^18.11.14\",\n \"@typescript-eslint/eslint-plugin\": \"^5.46.1\",\n \"@typescript-eslint/parser\": \"^5.46.1\",\n \"rimraf\": \"^6.0.1\",\n \"typescript\": \"~5.8.3\"\n },\n \"files\": [\n \"README.md\",\n \"LICENSE\",\n \"package.json\",\n \"lib\",\n \"src\"\n ]\n}",
|
|
11672
|
+
"node_modules/@nestia/migrate/lib/NestiaMigrateApplication.d.ts": "import { IHttpMigrateApplication, OpenApi, OpenApiV3, OpenApiV3_1, SwaggerV2 } from \"@samchon/openapi\";\nimport { IValidation } from \"typia\";\nimport { INestiaMigrateConfig } from \"./structures/INestiaMigrateConfig\";\nimport { INestiaMigrateContext } from \"./structures/INestiaMigrateContext\";\nimport { INestiaMigrateFile } from \"./structures/INestiaMigrateFile\";\nexport declare class NestiaMigrateApplication {\n readonly document: OpenApi.IDocument;\n private readonly application_;\n constructor(document: OpenApi.IDocument);\n static assert(document: SwaggerV2.IDocument | OpenApiV3.IDocument | OpenApiV3_1.IDocument | OpenApi.IDocument): NestiaMigrateApplication;\n static validate(document: SwaggerV2.IDocument | OpenApiV3.IDocument | OpenApiV3_1.IDocument | OpenApi.IDocument): IValidation<NestiaMigrateApplication>;\n getErrors(): IHttpMigrateApplication.IError[];\n nest(config: INestiaMigrateConfig): Record<string, string>;\n sdk(config: INestiaMigrateConfig): Record<string, string>;\n private rename;\n}\nexport declare namespace MigrateApplication {\n interface IOutput {\n context: INestiaMigrateContext;\n files: INestiaMigrateFile[];\n errors: IHttpMigrateApplication.IError[];\n }\n}\n",
|
|
11673
|
+
"node_modules/@nestia/migrate/lib/analyzers/NestiaMigrateControllerAnalyzer.d.ts": "import { IHttpMigrateRoute } from \"@samchon/openapi\";\nimport { INestiaMigrateController } from \"../structures/INestiaMigrateController\";\nexport declare namespace NestiaMigrateControllerAnalyzer {\n const analyze: (routes: IHttpMigrateRoute[]) => INestiaMigrateController[];\n}\n",
|
|
11674
|
+
"node_modules/@nestia/migrate/lib/archivers/NestiaMigrateFileArchiver.d.ts": "export declare namespace NestiaMigrateFileArchiver {\n const archive: (props: {\n mkdir: (path: string) => Promise<void>;\n writeFile: (path: string, content: string) => Promise<void>;\n root: string;\n files: Record<string, string>;\n }) => Promise<void>;\n}\n",
|
|
11675
|
+
"node_modules/@nestia/migrate/lib/bundles/NEST_TEMPLATE.d.ts": "export declare const NEST_TEMPLATE: Record<string, string>;\n",
|
|
11676
|
+
"node_modules/@nestia/migrate/lib/bundles/SDK_TEMPLATE.d.ts": "export declare const SDK_TEMPLATE: Record<string, string>;\n",
|
|
11677
|
+
"node_modules/@nestia/migrate/lib/executable/NestiaMigrateCommander.d.ts": "export declare namespace NestiaMigrateCommander {\n const main: () => Promise<void>;\n const beautify: (script: string) => Promise<string>;\n}\n",
|
|
11678
|
+
"node_modules/@nestia/migrate/lib/executable/NestiaMigrateInquirer.d.ts": "export declare namespace NestiaMigrateInquirer {\n interface IOutput {\n mode: \"nest\" | \"sdk\";\n input: string;\n output: string;\n keyword: boolean;\n simulate: boolean;\n e2e: boolean;\n package: string;\n }\n const parse: () => Promise<IOutput>;\n}\n",
|
|
11678
11679
|
"node_modules/@nestia/migrate/lib/executable/migrate.d.ts": "#!/usr/bin/env node\nexport {};\n",
|
|
11679
11680
|
"node_modules/@nestia/migrate/lib/factories/TypeLiteralFactory.d.ts": "import ts from \"typescript\";\nexport declare namespace TypeLiteralFactory {\n const generate: (value: any) => ts.TypeNode;\n}\n",
|
|
11680
11681
|
"node_modules/@nestia/migrate/lib/index.d.ts": "import * as migrate from \"./module\";\nexport default migrate;\nexport * from \"./module\";\n",
|
|
11681
|
-
"node_modules/@nestia/migrate/lib/
|
|
11682
|
-
"node_modules/@nestia/migrate/lib/
|
|
11683
|
-
"node_modules/@nestia/migrate/lib/
|
|
11684
|
-
"node_modules/@nestia/migrate/lib/programmers/
|
|
11685
|
-
"node_modules/@nestia/migrate/lib/programmers/
|
|
11686
|
-
"node_modules/@nestia/migrate/lib/programmers/
|
|
11687
|
-
"node_modules/@nestia/migrate/lib/programmers/
|
|
11688
|
-
"node_modules/@nestia/migrate/lib/programmers/
|
|
11689
|
-
"node_modules/@nestia/migrate/lib/programmers/
|
|
11690
|
-
"node_modules/@nestia/migrate/lib/programmers/
|
|
11691
|
-
"node_modules/@nestia/migrate/lib/programmers/
|
|
11692
|
-
"node_modules/@nestia/migrate/lib/programmers/
|
|
11693
|
-
"node_modules/@nestia/migrate/lib/programmers/
|
|
11694
|
-
"node_modules/@nestia/migrate/lib/programmers/
|
|
11695
|
-
"node_modules/@nestia/migrate/lib/programmers/
|
|
11696
|
-
"node_modules/@nestia/migrate/lib/programmers/
|
|
11697
|
-
"node_modules/@nestia/migrate/lib/
|
|
11698
|
-
"node_modules/@nestia/migrate/lib/
|
|
11699
|
-
"node_modules/@nestia/migrate/lib/structures/
|
|
11700
|
-
"node_modules/@nestia/migrate/lib/structures/
|
|
11701
|
-
"node_modules/@nestia/migrate/lib/structures/
|
|
11702
|
-
"node_modules/@nestia/migrate/lib/structures/
|
|
11703
|
-
"node_modules/@nestia/migrate/lib/structures/
|
|
11704
|
-
"node_modules/@nestia/migrate/lib/structures/IHttpMigrateSchema.d.ts": "export interface IHttpMigrateSchema {\n name: string;\n children: IHttpMigrateSchema[];\n}\n",
|
|
11682
|
+
"node_modules/@nestia/migrate/lib/module.d.ts": "export * from \"./NestiaMigrateApplication\";\nexport * from \"./structures/INestiaMigrateContext\";\n",
|
|
11683
|
+
"node_modules/@nestia/migrate/lib/programmers/NestiaMigrateApiFileProgrammer.d.ts": "import { IHttpMigrateRoute, OpenApi } from \"@samchon/openapi\";\nimport ts from \"typescript\";\nimport { INestiaMigrateConfig } from \"../structures/INestiaMigrateConfig\";\nexport declare namespace NestiaMigrateApiFileProgrammer {\n interface IProps {\n config: INestiaMigrateConfig;\n components: OpenApi.IComponents;\n namespace: string[];\n routes: IHttpMigrateRoute[];\n children: Set<string>;\n }\n const write: (props: IProps) => ts.Statement[];\n}\n",
|
|
11684
|
+
"node_modules/@nestia/migrate/lib/programmers/NestiaMigrateApiFunctionProgrammer.d.ts": "import { IHttpMigrateRoute, OpenApi } from \"@samchon/openapi\";\nimport ts from \"typescript\";\nimport { INestiaMigrateConfig } from \"../structures/INestiaMigrateConfig\";\nimport { NestiaMigrateImportProgrammer } from \"./NestiaMigrateImportProgrammer\";\nexport declare namespace NestiaMigrateApiFunctionProgrammer {\n interface IContext {\n config: INestiaMigrateConfig;\n components: OpenApi.IComponents;\n importer: NestiaMigrateImportProgrammer;\n route: IHttpMigrateRoute;\n }\n const write: (ctx: IContext) => ts.FunctionDeclaration;\n const writeParameterDeclarations: (ctx: IContext) => ts.ParameterDeclaration[];\n}\n",
|
|
11685
|
+
"node_modules/@nestia/migrate/lib/programmers/NestiaMigrateApiNamespaceProgrammer.d.ts": "import { IHttpMigrateRoute, OpenApi } from \"@samchon/openapi\";\nimport ts from \"typescript\";\nimport { INestiaMigrateConfig } from \"../structures/INestiaMigrateConfig\";\nimport { NestiaMigrateImportProgrammer } from \"./NestiaMigrateImportProgrammer\";\nexport declare namespace NestiaMigrateApiNamespaceProgrammer {\n interface IContext {\n config: INestiaMigrateConfig;\n components: OpenApi.IComponents;\n importer: NestiaMigrateImportProgrammer;\n route: IHttpMigrateRoute;\n }\n const write: (ctx: IContext) => ts.ModuleDeclaration;\n const writePathCallExpression: (config: INestiaMigrateConfig, route: IHttpMigrateRoute) => ts.CallExpression;\n}\n",
|
|
11686
|
+
"node_modules/@nestia/migrate/lib/programmers/NestiaMigrateApiProgrammer.d.ts": "import { INestiaMigrateContext } from \"../structures/INestiaMigrateContext\";\nexport declare namespace NestiaMigrateApiProgrammer {\n const write: (ctx: INestiaMigrateContext) => Record<string, string>;\n}\n",
|
|
11687
|
+
"node_modules/@nestia/migrate/lib/programmers/NestiaMigrateApiSimulationProgrammer.d.ts": "import { IHttpMigrateRoute, OpenApi } from \"@samchon/openapi\";\nimport ts from \"typescript\";\nimport { INestiaMigrateConfig } from \"../structures/INestiaMigrateConfig\";\nimport { NestiaMigrateImportProgrammer } from \"./NestiaMigrateImportProgrammer\";\nexport declare namespace NestiaMigrateApiSimulationProgrammer {\n interface IContext {\n config: INestiaMigrateConfig;\n components: OpenApi.IComponents;\n importer: NestiaMigrateImportProgrammer;\n route: IHttpMigrateRoute;\n }\n const random: (ctx: IContext) => ts.VariableStatement;\n const simulate: (ctx: IContext) => ts.VariableStatement;\n}\n",
|
|
11688
|
+
"node_modules/@nestia/migrate/lib/programmers/NestiaMigrateApiStartProgrammer.d.ts": "import { INestiaMigrateContext } from \"../structures/INestiaMigrateContext\";\nexport declare namespace NestiaMigrateApiStartProgrammer {\n const write: (context: INestiaMigrateContext) => Record<string, string>;\n}\n",
|
|
11689
|
+
"node_modules/@nestia/migrate/lib/programmers/NestiaMigrateDtoProgrammer.d.ts": "import { OpenApi } from \"@samchon/openapi\";\nimport ts from \"typescript\";\nimport { INestiaMigrateConfig } from \"../structures/INestiaMigrateConfig\";\nimport { NestiaMigrateImportProgrammer } from \"./NestiaMigrateImportProgrammer\";\nexport declare namespace NestiaMigrateDtoProgrammer {\n interface IModule {\n name: string;\n children: Map<string, IModule>;\n programmer: null | ((importer: NestiaMigrateImportProgrammer) => ts.TypeAliasDeclaration);\n }\n const compose: (props: {\n config: INestiaMigrateConfig;\n components: OpenApi.IComponents;\n }) => Map<string, IModule>;\n}\n",
|
|
11690
|
+
"node_modules/@nestia/migrate/lib/programmers/NestiaMigrateE2eFileProgrammer.d.ts": "import { IHttpMigrateRoute, OpenApi } from \"@samchon/openapi\";\nimport ts from \"typescript\";\nimport { INestiaMigrateConfig } from \"../structures/INestiaMigrateConfig\";\nimport { NestiaMigrateImportProgrammer } from \"./NestiaMigrateImportProgrammer\";\nexport declare namespace NestiaMigrateE2eFunctionProgrammer {\n interface IContext {\n config: INestiaMigrateConfig;\n components: OpenApi.IComponents;\n importer: NestiaMigrateImportProgrammer;\n route: IHttpMigrateRoute;\n }\n const write: (ctx: IContext) => ts.FunctionDeclaration;\n const writeBody: (ctx: IContext) => ts.Statement[];\n}\n",
|
|
11691
|
+
"node_modules/@nestia/migrate/lib/programmers/NestiaMigrateE2eProgrammer.d.ts": "import { INestiaMigrateContext } from \"../structures/INestiaMigrateContext\";\nexport declare namespace NestiaMigrateE2eProgrammer {\n const write: (ctx: INestiaMigrateContext) => Record<string, string>;\n}\n",
|
|
11692
|
+
"node_modules/@nestia/migrate/lib/programmers/NestiaMigrateImportProgrammer.d.ts": "import ts from \"typescript\";\nexport declare class NestiaMigrateImportProgrammer {\n private external_;\n private dtos_;\n constructor();\n empty(): boolean;\n external(props: MigrateImportProgrammer.IProps): string;\n dto(name: string, namespace?: string): ts.TypeReferenceNode;\n tag(type: string, arg?: any): ts.TypeReferenceNode;\n toStatements(dtoPath: (name: string) => string, current?: string): ts.Statement[];\n}\nexport declare namespace MigrateImportProgrammer {\n interface IProps {\n type: \"default\" | \"instance\";\n library: string;\n name: string;\n }\n}\n",
|
|
11693
|
+
"node_modules/@nestia/migrate/lib/programmers/NestiaMigrateNestControllerProgrammer.d.ts": "import { OpenApi } from \"@samchon/openapi\";\nimport ts from \"typescript\";\nimport { INestiaMigrateConfig } from \"../structures/INestiaMigrateConfig\";\nimport { INestiaMigrateController } from \"../structures/INestiaMigrateController\";\nexport declare namespace NestiaMigrateNestControllerProgrammer {\n interface IProps {\n config: INestiaMigrateConfig;\n components: OpenApi.IComponents;\n controller: INestiaMigrateController;\n }\n const write: (props: IProps) => ts.Statement[];\n}\n",
|
|
11694
|
+
"node_modules/@nestia/migrate/lib/programmers/NestiaMigrateNestMethodProgrammer.d.ts": "import { IHttpMigrateRoute, OpenApi } from \"@samchon/openapi\";\nimport ts from \"typescript\";\nimport { INestiaMigrateConfig } from \"../structures/INestiaMigrateConfig\";\nimport { INestiaMigrateController } from \"../structures/INestiaMigrateController\";\nimport { NestiaMigrateImportProgrammer } from \"./NestiaMigrateImportProgrammer\";\nexport declare namespace NestiaMigrateNestMethodProgrammer {\n interface IContext {\n config: INestiaMigrateConfig;\n components: OpenApi.IComponents;\n importer: NestiaMigrateImportProgrammer;\n controller: INestiaMigrateController;\n route: IHttpMigrateRoute;\n }\n const write: (ctx: IContext) => ts.MethodDeclaration;\n}\n",
|
|
11695
|
+
"node_modules/@nestia/migrate/lib/programmers/NestiaMigrateNestModuleProgrammer.d.ts": "import ts from \"typescript\";\nimport { INestiaMigrateController } from \"../structures/INestiaMigrateController\";\nexport declare namespace NestiaMigrateNestModuleProgrammer {\n const write: (controllers: INestiaMigrateController[]) => ts.Statement[];\n}\n",
|
|
11696
|
+
"node_modules/@nestia/migrate/lib/programmers/NestiaMigrateNestProgrammer.d.ts": "import { INestiaMigrateContext } from \"../structures/INestiaMigrateContext\";\nexport declare namespace NestiaMigrateNestProgrammer {\n const write: (context: INestiaMigrateContext) => Record<string, string>;\n}\n",
|
|
11697
|
+
"node_modules/@nestia/migrate/lib/programmers/NestiaMigrateSchemaProgrammer.d.ts": "import { OpenApi } from \"@samchon/openapi\";\nimport ts from \"typescript\";\nimport { NestiaMigrateImportProgrammer } from \"./NestiaMigrateImportProgrammer\";\nexport declare namespace NestiaMigrateSchemaProgrammer {\n const write: (props: {\n components: OpenApi.IComponents;\n importer: NestiaMigrateImportProgrammer;\n schema: OpenApi.IJsonSchema;\n }) => ts.TypeNode;\n}\n",
|
|
11698
|
+
"node_modules/@nestia/migrate/lib/structures/INestiaMigrateConfig.d.ts": "export interface INestiaMigrateConfig {\n simulate: boolean;\n e2e: boolean;\n package?: string;\n keyword?: boolean;\n author?: {\n tag: string;\n value: string;\n };\n}\n",
|
|
11699
|
+
"node_modules/@nestia/migrate/lib/structures/INestiaMigrateContext.d.ts": "import { IHttpMigrateApplication, IHttpMigrateRoute, OpenApi } from \"@samchon/openapi\";\nimport { INestiaMigrateConfig } from \"./INestiaMigrateConfig\";\nexport interface INestiaMigrateContext {\n mode: \"nest\" | \"sdk\";\n document: OpenApi.IDocument;\n config: INestiaMigrateConfig;\n routes: IHttpMigrateRoute[];\n errors: IHttpMigrateApplication.IError[];\n}\n",
|
|
11700
|
+
"node_modules/@nestia/migrate/lib/structures/INestiaMigrateController.d.ts": "import { IHttpMigrateRoute } from \"@samchon/openapi\";\nexport interface INestiaMigrateController {\n name: string;\n path: string;\n location: string;\n routes: IHttpMigrateRoute[];\n}\n",
|
|
11701
|
+
"node_modules/@nestia/migrate/lib/structures/INestiaMigrateDto.d.ts": "import { OpenApi } from \"@samchon/openapi\";\nexport interface INestiaMigrateDto {\n name: string;\n location: string;\n schema: OpenApi.IJsonSchema | null;\n children: INestiaMigrateDto[];\n}\n",
|
|
11702
|
+
"node_modules/@nestia/migrate/lib/structures/INestiaMigrateFile.d.ts": "export interface INestiaMigrateFile {\n location: string;\n file: string;\n content: string;\n}\n",
|
|
11703
|
+
"node_modules/@nestia/migrate/lib/structures/INestiaMigrateProgram.d.ts": "import { IHttpMigrateApplication, OpenApi } from \"@samchon/openapi\";\nimport { INestiaMigrateConfig } from \"./INestiaMigrateConfig\";\nexport interface INestiaMigrateProgram {\n mode: \"nest\" | \"sdk\";\n document: OpenApi.IDocument;\n config: INestiaMigrateConfig;\n files: Record<string, string>;\n errors: IHttpMigrateApplication.IError[];\n}\n",
|
|
11704
|
+
"node_modules/@nestia/migrate/lib/structures/INestiaMigrateSchema.d.ts": "export interface INestiaMigrateSchema {\n name: string;\n children: INestiaMigrateSchema[];\n}\n",
|
|
11705
11705
|
"node_modules/@nestia/migrate/lib/utils/FilePrinter.d.ts": "import ts from \"typescript\";\nexport declare namespace FilePrinter {\n const description: <Node extends ts.Node>(node: Node, comment: string) => Node;\n const newLine: () => ts.ExpressionStatement;\n const write: (props: {\n statements: ts.Statement[];\n top?: string;\n }) => string;\n}\n",
|
|
11706
11706
|
"node_modules/@nestia/migrate/lib/utils/MapUtil.d.ts": "export declare namespace MapUtil {\n const take: <Key, T>(dict: Map<Key, T>) => (key: Key) => (generator: () => T) => T;\n}\n",
|
|
11707
11707
|
"node_modules/@nestia/migrate/lib/utils/OpenApiTypeChecker.d.ts": "import { OpenApi } from \"@samchon/openapi\";\nexport declare namespace OpenApiTypeChecker {\n const isOneOf: (schema: OpenApi.IJsonSchema) => schema is OpenApi.IJsonSchema.IOneOf;\n const isNull: (schema: OpenApi.IJsonSchema) => schema is OpenApi.IJsonSchema.INull;\n const isConstant: (schema: OpenApi.IJsonSchema) => schema is OpenApi.IJsonSchema.IConstant;\n const isBoolean: (schema: OpenApi.IJsonSchema) => schema is OpenApi.IJsonSchema.IBoolean;\n const isInteger: (schema: OpenApi.IJsonSchema) => schema is OpenApi.IJsonSchema.IInteger;\n const isNumber: (schema: OpenApi.IJsonSchema) => schema is OpenApi.IJsonSchema.INumber;\n const isString: (schema: OpenApi.IJsonSchema) => schema is OpenApi.IJsonSchema.IString;\n const isArray: (schema: OpenApi.IJsonSchema) => schema is OpenApi.IJsonSchema.IArray;\n const isTuple: (schema: OpenApi.IJsonSchema) => schema is OpenApi.IJsonSchema.ITuple;\n const isObject: (schema: OpenApi.IJsonSchema) => schema is OpenApi.IJsonSchema.IObject;\n const isReference: (schema: OpenApi.IJsonSchema) => schema is OpenApi.IJsonSchema.IReference;\n const isUnknown: (schema: OpenApi.IJsonSchema) => schema is OpenApi.IJsonSchema.IUnknown;\n}\n",
|
|
@@ -11713,12 +11713,12 @@
|
|
|
11713
11713
|
"node_modules/commander/typings/index.d.ts": "// Type definitions for commander\n// Original definitions by: Alan Agius <https://github.com/alan-agius4>, Marcelo Dezem <https://github.com/mdezem>, vvakame <https://github.com/vvakame>, Jules Randolph <https://github.com/sveinburne>\n\n// Using method rather than property for method-signature-style, to document method overloads separately. Allow either.\n/* eslint-disable @typescript-eslint/method-signature-style */\n/* eslint-disable @typescript-eslint/no-explicit-any */\n\nexport class CommanderError extends Error {\n code: string;\n exitCode: number;\n message: string;\n nestedError?: string;\n\n /**\n * Constructs the CommanderError class\n * @param exitCode - suggested exit code which could be used with process.exit\n * @param code - an id string representing the error\n * @param message - human-readable description of the error\n * @constructor\n */\n constructor(exitCode: number, code: string, message: string);\n}\n\nexport class InvalidArgumentError extends CommanderError {\n /**\n * Constructs the InvalidArgumentError class\n * @param message - explanation of why argument is invalid\n * @constructor\n */\n constructor(message: string);\n}\nexport { InvalidArgumentError as InvalidOptionArgumentError }; // deprecated old name\n\nexport interface ErrorOptions { // optional parameter for error()\n /** an id string representing the error */\n code?: string;\n /** suggested exit code which could be used with process.exit */\n exitCode?: number;\n}\n\nexport class Argument {\n description: string;\n required: boolean;\n variadic: boolean;\n\n /**\n * Initialize a new command argument with the given name and description.\n * The default is that the argument is required, and you can explicitly\n * indicate this with <> around the name. Put [] around the name for an optional argument.\n */\n constructor(arg: string, description?: string);\n\n /**\n * Return argument name.\n */\n name(): string;\n\n /**\n * Set the default value, and optionally supply the description to be displayed in the help.\n */\n default(value: unknown, description?: string): this;\n\n /**\n * Set the custom handler for processing CLI command arguments into argument values.\n */\n argParser<T>(fn: (value: string, previous: T) => T): this;\n\n /**\n * Only allow argument value to be one of choices.\n */\n choices(values: readonly string[]): this;\n\n /**\n * Make argument required.\n */\n argRequired(): this;\n\n /**\n * Make argument optional.\n */\n argOptional(): this;\n}\n\nexport class Option {\n flags: string;\n description: string;\n\n required: boolean; // A value must be supplied when the option is specified.\n optional: boolean; // A value is optional when the option is specified.\n variadic: boolean;\n mandatory: boolean; // The option must have a value after parsing, which usually means it must be specified on command line.\n short?: string;\n long?: string;\n negate: boolean;\n defaultValue?: any;\n defaultValueDescription?: string;\n parseArg?: <T>(value: string, previous: T) => T;\n hidden: boolean;\n argChoices?: string[];\n\n constructor(flags: string, description?: string);\n\n /**\n * Set the default value, and optionally supply the description to be displayed in the help.\n */\n default(value: unknown, description?: string): this;\n\n /**\n * Preset to use when option used without option-argument, especially optional but also boolean and negated.\n * The custom processing (parseArg) is called.\n *\n * @example\n * ```ts\n * new Option('--color').default('GREYSCALE').preset('RGB');\n * new Option('--donate [amount]').preset('20').argParser(parseFloat);\n * ```\n */\n preset(arg: unknown): this;\n\n /**\n * Add option name(s) that conflict with this option.\n * An error will be displayed if conflicting options are found during parsing.\n *\n * @example\n * ```ts\n * new Option('--rgb').conflicts('cmyk');\n * new Option('--js').conflicts(['ts', 'jsx']);\n * ```\n */\n conflicts(names: string | string[]): this;\n\n /**\n * Specify implied option values for when this option is set and the implied options are not.\n *\n * The custom processing (parseArg) is not called on the implied values.\n *\n * @example\n * program\n * .addOption(new Option('--log', 'write logging information to file'))\n * .addOption(new Option('--trace', 'log extra details').implies({ log: 'trace.txt' }));\n */\n implies(optionValues: OptionValues): this;\n\n /**\n * Set environment variable to check for option value.\n *\n * An environment variables is only used if when processed the current option value is\n * undefined, or the source of the current value is 'default' or 'config' or 'env'.\n */\n env(name: string): this;\n\n /**\n * Calculate the full description, including defaultValue etc.\n */\n fullDescription(): string;\n\n /**\n * Set the custom handler for processing CLI option arguments into option values.\n */\n argParser<T>(fn: (value: string, previous: T) => T): this;\n\n /**\n * Whether the option is mandatory and must have a value after parsing.\n */\n makeOptionMandatory(mandatory?: boolean): this;\n\n /**\n * Hide option in help.\n */\n hideHelp(hide?: boolean): this;\n\n /**\n * Only allow option value to be one of choices.\n */\n choices(values: readonly string[]): this;\n\n /**\n * Return option name.\n */\n name(): string;\n\n /**\n * Return option name, in a camelcase format that can be used\n * as a object attribute key.\n */\n attributeName(): string;\n\n /**\n * Return whether a boolean option.\n *\n * Options are one of boolean, negated, required argument, or optional argument.\n */\n isBoolean(): boolean;\n}\n\nexport class Help {\n /** output helpWidth, long lines are wrapped to fit */\n helpWidth?: number;\n sortSubcommands: boolean;\n sortOptions: boolean;\n showGlobalOptions: boolean;\n\n constructor();\n\n /** Get the command term to show in the list of subcommands. */\n subcommandTerm(cmd: Command): string;\n /** Get the command summary to show in the list of subcommands. */\n subcommandDescription(cmd: Command): string;\n /** Get the option term to show in the list of options. */\n optionTerm(option: Option): string;\n /** Get the option description to show in the list of options. */\n optionDescription(option: Option): string;\n /** Get the argument term to show in the list of arguments. */\n argumentTerm(argument: Argument): string;\n /** Get the argument description to show in the list of arguments. */\n argumentDescription(argument: Argument): string;\n\n /** Get the command usage to be displayed at the top of the built-in help. */\n commandUsage(cmd: Command): string;\n /** Get the description for the command. */\n commandDescription(cmd: Command): string;\n\n /** Get an array of the visible subcommands. Includes a placeholder for the implicit help command, if there is one. */\n visibleCommands(cmd: Command): Command[];\n /** Get an array of the visible options. Includes a placeholder for the implicit help option, if there is one. */\n visibleOptions(cmd: Command): Option[];\n /** Get an array of the visible global options. (Not including help.) */\n visibleGlobalOptions(cmd: Command): Option[];\n /** Get an array of the arguments which have descriptions. */\n visibleArguments(cmd: Command): Argument[];\n\n /** Get the longest command term length. */\n longestSubcommandTermLength(cmd: Command, helper: Help): number;\n /** Get the longest option term length. */\n longestOptionTermLength(cmd: Command, helper: Help): number;\n /** Get the longest global option term length. */\n longestGlobalOptionTermLength(cmd: Command, helper: Help): number;\n /** Get the longest argument term length. */\n longestArgumentTermLength(cmd: Command, helper: Help): number;\n /** Calculate the pad width from the maximum term length. */\n padWidth(cmd: Command, helper: Help): number;\n\n /**\n * Wrap the given string to width characters per line, with lines after the first indented.\n * Do not wrap if insufficient room for wrapping (minColumnWidth), or string is manually formatted.\n */\n wrap(str: string, width: number, indent: number, minColumnWidth?: number): string;\n\n /** Generate the built-in help text. */\n formatHelp(cmd: Command, helper: Help): string;\n}\nexport type HelpConfiguration = Partial<Help>;\n\nexport interface ParseOptions {\n from: 'node' | 'electron' | 'user';\n}\nexport interface HelpContext { // optional parameter for .help() and .outputHelp()\n error: boolean;\n}\nexport interface AddHelpTextContext { // passed to text function used with .addHelpText()\n error: boolean;\n command: Command;\n}\nexport interface OutputConfiguration {\n writeOut?(str: string): void;\n writeErr?(str: string): void;\n getOutHelpWidth?(): number;\n getErrHelpWidth?(): number;\n outputError?(str: string, write: (str: string) => void): void;\n\n}\n\nexport type AddHelpTextPosition = 'beforeAll' | 'before' | 'after' | 'afterAll';\nexport type HookEvent = 'preSubcommand' | 'preAction' | 'postAction';\nexport type OptionValueSource = 'default' | 'config' | 'env' | 'cli' | 'implied';\n\nexport type OptionValues = Record<string, any>;\n\nexport class Command {\n args: string[];\n processedArgs: any[];\n readonly commands: readonly Command[];\n readonly options: readonly Option[];\n parent: Command | null;\n\n constructor(name?: string);\n\n /**\n * Set the program version to `str`.\n *\n * This method auto-registers the \"-V, --version\" flag\n * which will print the version number when passed.\n *\n * You can optionally supply the flags and description to override the defaults.\n */\n version(str: string, flags?: string, description?: string): this;\n\n /**\n * Define a command, implemented using an action handler.\n *\n * @remarks\n * The command description is supplied using `.description`, not as a parameter to `.command`.\n *\n * @example\n * ```ts\n * program\n * .command('clone <source> [destination]')\n * .description('clone a repository into a newly created directory')\n * .action((source, destination) => {\n * console.log('clone command called');\n * });\n * ```\n *\n * @param nameAndArgs - command name and arguments, args are `<required>` or `[optional]` and last may also be `variadic...`\n * @param opts - configuration options\n * @returns new command\n */\n command(nameAndArgs: string, opts?: CommandOptions): ReturnType<this['createCommand']>;\n /**\n * Define a command, implemented in a separate executable file.\n *\n * @remarks\n * The command description is supplied as the second parameter to `.command`.\n *\n * @example\n * ```ts\n * program\n * .command('start <service>', 'start named service')\n * .command('stop [service]', 'stop named service, or all if no name supplied');\n * ```\n *\n * @param nameAndArgs - command name and arguments, args are `<required>` or `[optional]` and last may also be `variadic...`\n * @param description - description of executable command\n * @param opts - configuration options\n * @returns `this` command for chaining\n */\n command(nameAndArgs: string, description: string, opts?: ExecutableCommandOptions): this;\n\n /**\n * Factory routine to create a new unattached command.\n *\n * See .command() for creating an attached subcommand, which uses this routine to\n * create the command. You can override createCommand to customise subcommands.\n */\n createCommand(name?: string): Command;\n\n /**\n * Add a prepared subcommand.\n *\n * See .command() for creating an attached subcommand which inherits settings from its parent.\n *\n * @returns `this` command for chaining\n */\n addCommand(cmd: Command, opts?: CommandOptions): this;\n\n /**\n * Factory routine to create a new unattached argument.\n *\n * See .argument() for creating an attached argument, which uses this routine to\n * create the argument. You can override createArgument to return a custom argument.\n */\n createArgument(name: string, description?: string): Argument;\n\n /**\n * Define argument syntax for command.\n *\n * The default is that the argument is required, and you can explicitly\n * indicate this with <> around the name. Put [] around the name for an optional argument.\n *\n * @example\n * ```\n * program.argument('<input-file>');\n * program.argument('[output-file]');\n * ```\n *\n * @returns `this` command for chaining\n */\n argument<T>(flags: string, description: string, fn: (value: string, previous: T) => T, defaultValue?: T): this;\n argument(name: string, description?: string, defaultValue?: unknown): this;\n\n /**\n * Define argument syntax for command, adding a prepared argument.\n *\n * @returns `this` command for chaining\n */\n addArgument(arg: Argument): this;\n\n /**\n * Define argument syntax for command, adding multiple at once (without descriptions).\n *\n * See also .argument().\n *\n * @example\n * ```\n * program.arguments('<cmd> [env]');\n * ```\n *\n * @returns `this` command for chaining\n */\n arguments(names: string): this;\n\n /**\n * Override default decision whether to add implicit help command.\n *\n * @example\n * ```\n * addHelpCommand() // force on\n * addHelpCommand(false); // force off\n * addHelpCommand('help [cmd]', 'display help for [cmd]'); // force on with custom details\n * ```\n *\n * @returns `this` command for chaining\n */\n addHelpCommand(enableOrNameAndArgs?: string | boolean, description?: string): this;\n\n /**\n * Add hook for life cycle event.\n */\n hook(event: HookEvent, listener: (thisCommand: Command, actionCommand: Command) => void | Promise<void>): this;\n\n /**\n * Register callback to use as replacement for calling process.exit.\n */\n exitOverride(callback?: (err: CommanderError) => never | void): this;\n\n /**\n * Display error message and exit (or call exitOverride).\n */\n error(message: string, errorOptions?: ErrorOptions): never;\n\n /**\n * You can customise the help with a subclass of Help by overriding createHelp,\n * or by overriding Help properties using configureHelp().\n */\n createHelp(): Help;\n\n /**\n * You can customise the help by overriding Help properties using configureHelp(),\n * or with a subclass of Help by overriding createHelp().\n */\n configureHelp(configuration: HelpConfiguration): this;\n /** Get configuration */\n configureHelp(): HelpConfiguration;\n\n /**\n * The default output goes to stdout and stderr. You can customise this for special\n * applications. You can also customise the display of errors by overriding outputError.\n *\n * The configuration properties are all functions:\n * ```\n * // functions to change where being written, stdout and stderr\n * writeOut(str)\n * writeErr(str)\n * // matching functions to specify width for wrapping help\n * getOutHelpWidth()\n * getErrHelpWidth()\n * // functions based on what is being written out\n * outputError(str, write) // used for displaying errors, and not used for displaying help\n * ```\n */\n configureOutput(configuration: OutputConfiguration): this;\n /** Get configuration */\n configureOutput(): OutputConfiguration;\n\n /**\n * Copy settings that are useful to have in common across root command and subcommands.\n *\n * (Used internally when adding a command using `.command()` so subcommands inherit parent settings.)\n */\n copyInheritedSettings(sourceCommand: Command): this;\n\n /**\n * Display the help or a custom message after an error occurs.\n */\n showHelpAfterError(displayHelp?: boolean | string): this;\n\n /**\n * Display suggestion of similar commands for unknown commands, or options for unknown options.\n */\n showSuggestionAfterError(displaySuggestion?: boolean): this;\n\n /**\n * Register callback `fn` for the command.\n *\n * @example\n * ```\n * program\n * .command('serve')\n * .description('start service')\n * .action(function() {\n * // do work here\n * });\n * ```\n *\n * @returns `this` command for chaining\n */\n action(fn: (...args: any[]) => void | Promise<void>): this;\n\n /**\n * Define option with `flags`, `description` and optional\n * coercion `fn`.\n *\n * The `flags` string contains the short and/or long flags,\n * separated by comma, a pipe or space. The following are all valid\n * all will output this way when `--help` is used.\n *\n * \"-p, --pepper\"\n * \"-p|--pepper\"\n * \"-p --pepper\"\n *\n * @example\n * ```\n * // simple boolean defaulting to false\n * program.option('-p, --pepper', 'add pepper');\n *\n * --pepper\n * program.pepper\n * // => Boolean\n *\n * // simple boolean defaulting to true\n * program.option('-C, --no-cheese', 'remove cheese');\n *\n * program.cheese\n * // => true\n *\n * --no-cheese\n * program.cheese\n * // => false\n *\n * // required argument\n * program.option('-C, --chdir <path>', 'change the working directory');\n *\n * --chdir /tmp\n * program.chdir\n * // => \"/tmp\"\n *\n * // optional argument\n * program.option('-c, --cheese [type]', 'add cheese [marble]');\n * ```\n *\n * @returns `this` command for chaining\n */\n option(flags: string, description?: string, defaultValue?: string | boolean | string[]): this;\n option<T>(flags: string, description: string, fn: (value: string, previous: T) => T, defaultValue?: T): this;\n /** @deprecated since v7, instead use choices or a custom function */\n option(flags: string, description: string, regexp: RegExp, defaultValue?: string | boolean | string[]): this;\n\n /**\n * Define a required option, which must have a value after parsing. This usually means\n * the option must be specified on the command line. (Otherwise the same as .option().)\n *\n * The `flags` string contains the short and/or long flags, separated by comma, a pipe or space.\n */\n requiredOption(flags: string, description?: string, defaultValue?: string | boolean | string[]): this;\n requiredOption<T>(flags: string, description: string, fn: (value: string, previous: T) => T, defaultValue?: T): this;\n /** @deprecated since v7, instead use choices or a custom function */\n requiredOption(flags: string, description: string, regexp: RegExp, defaultValue?: string | boolean | string[]): this;\n\n /**\n * Factory routine to create a new unattached option.\n *\n * See .option() for creating an attached option, which uses this routine to\n * create the option. You can override createOption to return a custom option.\n */\n\n createOption(flags: string, description?: string): Option;\n\n /**\n * Add a prepared Option.\n *\n * See .option() and .requiredOption() for creating and attaching an option in a single call.\n */\n addOption(option: Option): this;\n\n /**\n * Whether to store option values as properties on command object,\n * or store separately (specify false). In both cases the option values can be accessed using .opts().\n *\n * @returns `this` command for chaining\n */\n storeOptionsAsProperties<T extends OptionValues>(): this & T;\n storeOptionsAsProperties<T extends OptionValues>(storeAsProperties: true): this & T;\n storeOptionsAsProperties(storeAsProperties?: boolean): this;\n\n /**\n * Retrieve option value.\n */\n getOptionValue(key: string): any;\n\n /**\n * Store option value.\n */\n setOptionValue(key: string, value: unknown): this;\n\n /**\n * Store option value and where the value came from.\n */\n setOptionValueWithSource(key: string, value: unknown, source: OptionValueSource): this;\n\n /**\n * Get source of option value.\n */\n getOptionValueSource(key: string): OptionValueSource | undefined;\n\n /**\n * Get source of option value. See also .optsWithGlobals().\n */\n getOptionValueSourceWithGlobals(key: string): OptionValueSource | undefined;\n\n /**\n * Alter parsing of short flags with optional values.\n *\n * @example\n * ```\n * // for `.option('-f,--flag [value]'):\n * .combineFlagAndOptionalValue(true) // `-f80` is treated like `--flag=80`, this is the default behaviour\n * .combineFlagAndOptionalValue(false) // `-fb` is treated like `-f -b`\n * ```\n *\n * @returns `this` command for chaining\n */\n combineFlagAndOptionalValue(combine?: boolean): this;\n\n /**\n * Allow unknown options on the command line.\n *\n * @returns `this` command for chaining\n */\n allowUnknownOption(allowUnknown?: boolean): this;\n\n /**\n * Allow excess command-arguments on the command line. Pass false to make excess arguments an error.\n *\n * @returns `this` command for chaining\n */\n allowExcessArguments(allowExcess?: boolean): this;\n\n /**\n * Enable positional options. Positional means global options are specified before subcommands which lets\n * subcommands reuse the same option names, and also enables subcommands to turn on passThroughOptions.\n *\n * The default behaviour is non-positional and global options may appear anywhere on the command line.\n *\n * @returns `this` command for chaining\n */\n enablePositionalOptions(positional?: boolean): this;\n\n /**\n * Pass through options that come after command-arguments rather than treat them as command-options,\n * so actual command-options come before command-arguments. Turning this on for a subcommand requires\n * positional options to have been enabled on the program (parent commands).\n *\n * The default behaviour is non-positional and options may appear before or after command-arguments.\n *\n * @returns `this` command for chaining\n */\n passThroughOptions(passThrough?: boolean): this;\n\n /**\n * Parse `argv`, setting options and invoking commands when defined.\n *\n * The default expectation is that the arguments are from node and have the application as argv[0]\n * and the script being run in argv[1], with user parameters after that.\n *\n * @example\n * ```\n * program.parse(process.argv);\n * program.parse(); // implicitly use process.argv and auto-detect node vs electron conventions\n * program.parse(my-args, { from: 'user' }); // just user supplied arguments, nothing special about argv[0]\n * ```\n *\n * @returns `this` command for chaining\n */\n parse(argv?: readonly string[], options?: ParseOptions): this;\n\n /**\n * Parse `argv`, setting options and invoking commands when defined.\n *\n * Use parseAsync instead of parse if any of your action handlers are async. Returns a Promise.\n *\n * The default expectation is that the arguments are from node and have the application as argv[0]\n * and the script being run in argv[1], with user parameters after that.\n *\n * @example\n * ```\n * program.parseAsync(process.argv);\n * program.parseAsync(); // implicitly use process.argv and auto-detect node vs electron conventions\n * program.parseAsync(my-args, { from: 'user' }); // just user supplied arguments, nothing special about argv[0]\n * ```\n *\n * @returns Promise\n */\n parseAsync(argv?: readonly string[], options?: ParseOptions): Promise<this>;\n\n /**\n * Parse options from `argv` removing known options,\n * and return argv split into operands and unknown arguments.\n *\n * argv => operands, unknown\n * --known kkk op => [op], []\n * op --known kkk => [op], []\n * sub --unknown uuu op => [sub], [--unknown uuu op]\n * sub -- --unknown uuu op => [sub --unknown uuu op], []\n */\n parseOptions(argv: string[]): ParseOptionsResult;\n\n /**\n * Return an object containing local option values as key-value pairs\n */\n opts<T extends OptionValues>(): T;\n\n /**\n * Return an object containing merged local and global option values as key-value pairs.\n */\n optsWithGlobals<T extends OptionValues>(): T;\n\n /**\n * Set the description.\n *\n * @returns `this` command for chaining\n */\n\n description(str: string): this;\n /** @deprecated since v8, instead use .argument to add command argument with description */\n description(str: string, argsDescription: Record<string, string>): this;\n /**\n * Get the description.\n */\n description(): string;\n\n /**\n * Set the summary. Used when listed as subcommand of parent.\n *\n * @returns `this` command for chaining\n */\n\n summary(str: string): this;\n /**\n * Get the summary.\n */\n summary(): string;\n\n /**\n * Set an alias for the command.\n *\n * You may call more than once to add multiple aliases. Only the first alias is shown in the auto-generated help.\n *\n * @returns `this` command for chaining\n */\n alias(alias: string): this;\n /**\n * Get alias for the command.\n */\n alias(): string;\n\n /**\n * Set aliases for the command.\n *\n * Only the first alias is shown in the auto-generated help.\n *\n * @returns `this` command for chaining\n */\n aliases(aliases: readonly string[]): this;\n /**\n * Get aliases for the command.\n */\n aliases(): string[];\n\n /**\n * Set the command usage.\n *\n * @returns `this` command for chaining\n */\n usage(str: string): this;\n /**\n * Get the command usage.\n */\n usage(): string;\n\n /**\n * Set the name of the command.\n *\n * @returns `this` command for chaining\n */\n name(str: string): this;\n /**\n * Get the name of the command.\n */\n name(): string;\n\n /**\n * Set the name of the command from script filename, such as process.argv[1],\n * or require.main.filename, or __filename.\n *\n * (Used internally and public although not documented in README.)\n *\n * @example\n * ```ts\n * program.nameFromFilename(require.main.filename);\n * ```\n *\n * @returns `this` command for chaining\n */\n nameFromFilename(filename: string): this;\n\n /**\n * Set the directory for searching for executable subcommands of this command.\n *\n * @example\n * ```ts\n * program.executableDir(__dirname);\n * // or\n * program.executableDir('subcommands');\n * ```\n *\n * @returns `this` command for chaining\n */\n executableDir(path: string): this;\n /**\n * Get the executable search directory.\n */\n executableDir(): string;\n\n /**\n * Output help information for this command.\n *\n * Outputs built-in help, and custom text added using `.addHelpText()`.\n *\n */\n outputHelp(context?: HelpContext): void;\n /** @deprecated since v7 */\n outputHelp(cb?: (str: string) => string): void;\n\n /**\n * Return command help documentation.\n */\n helpInformation(context?: HelpContext): string;\n\n /**\n * You can pass in flags and a description to override the help\n * flags and help description for your command. Pass in false\n * to disable the built-in help option.\n */\n helpOption(flags?: string | boolean, description?: string): this;\n\n /**\n * Output help information and exit.\n *\n * Outputs built-in help, and custom text added using `.addHelpText()`.\n */\n help(context?: HelpContext): never;\n /** @deprecated since v7 */\n help(cb?: (str: string) => string): never;\n\n /**\n * Add additional text to be displayed with the built-in help.\n *\n * Position is 'before' or 'after' to affect just this command,\n * and 'beforeAll' or 'afterAll' to affect this command and all its subcommands.\n */\n addHelpText(position: AddHelpTextPosition, text: string): this;\n addHelpText(position: AddHelpTextPosition, text: (context: AddHelpTextContext) => string): this;\n\n /**\n * Add a listener (callback) for when events occur. (Implemented using EventEmitter.)\n */\n on(event: string | symbol, listener: (...args: any[]) => void): this;\n}\n\nexport interface CommandOptions {\n hidden?: boolean;\n isDefault?: boolean;\n /** @deprecated since v7, replaced by hidden */\n noHelp?: boolean;\n}\nexport interface ExecutableCommandOptions extends CommandOptions {\n executableFile?: string;\n}\n\nexport interface ParseOptionsResult {\n operands: string[];\n unknown: string[];\n}\n\nexport function createCommand(name?: string): Command;\nexport function createOption(flags: string, description?: string): Option;\nexport function createArgument(name: string, description?: string): Argument;\n\nexport const program: Command;\n",
|
|
11714
11714
|
"node_modules/inquirer/package.json": "{\n \"name\": \"inquirer\",\n \"version\": \"8.2.6\",\n \"description\": \"A collection of common interactive command line user interfaces.\",\n \"author\": \"Simon Boudrias <admin@simonboudrias.com>\",\n \"files\": [\n \"lib\",\n \"README.md\"\n ],\n \"main\": \"lib/inquirer.js\",\n \"keywords\": [\n \"command\",\n \"prompt\",\n \"stdin\",\n \"cli\",\n \"tty\",\n \"menu\"\n ],\n \"engines\": {\n \"node\": \">=12.0.0\"\n },\n \"devDependencies\": {\n \"chai\": \"^4.3.6\",\n \"chai-string\": \"^1.5.0\",\n \"chalk-pipe\": \"^5.1.1\",\n \"cmdify\": \"^0.0.4\",\n \"mocha\": \"^9.2.2\",\n \"mockery\": \"^2.1.0\",\n \"nyc\": \"^15.0.0\",\n \"sinon\": \"^13.0.2\",\n \"terminal-link\": \"^2.1.1\"\n },\n \"scripts\": {\n \"test\": \"nyc mocha test/**/* -r ./test/before\",\n \"posttest\": \"mkdir -p ../../coverage && nyc report --reporter=text-lcov > ../../coverage/nyc-report.lcov\",\n \"prepublishOnly\": \"cp ../../README.md .\",\n \"postpublish\": \"rm -f README.md\"\n },\n \"repository\": \"SBoudrias/Inquirer.js\",\n \"license\": \"MIT\",\n \"dependencies\": {\n \"ansi-escapes\": \"^4.2.1\",\n \"chalk\": \"^4.1.1\",\n \"cli-cursor\": \"^3.1.0\",\n \"cli-width\": \"^3.0.0\",\n \"external-editor\": \"^3.0.3\",\n \"figures\": \"^3.0.0\",\n \"lodash\": \"^4.17.21\",\n \"mute-stream\": \"0.0.8\",\n \"ora\": \"^5.4.1\",\n \"run-async\": \"^2.4.0\",\n \"rxjs\": \"^7.5.5\",\n \"string-width\": \"^4.1.0\",\n \"strip-ansi\": \"^6.0.0\",\n \"through\": \"^2.3.6\",\n \"wrap-ansi\": \"^6.0.1\"\n },\n \"gitHead\": \"30ec0483de28849e56bd6b9b61daaabf8edea16f\"\n}\n",
|
|
11715
11715
|
"node_modules/wrap-ansi/package.json": "{\n\t\"name\": \"wrap-ansi\",\n\t\"version\": \"6.2.0\",\n\t\"description\": \"Wordwrap a string with ANSI escape codes\",\n\t\"license\": \"MIT\",\n\t\"repository\": \"chalk/wrap-ansi\",\n\t\"author\": {\n\t\t\"name\": \"Sindre Sorhus\",\n\t\t\"email\": \"sindresorhus@gmail.com\",\n\t\t\"url\": \"sindresorhus.com\"\n\t},\n\t\"engines\": {\n\t\t\"node\": \">=8\"\n\t},\n\t\"scripts\": {\n\t\t\"test\": \"xo && nyc ava\"\n\t},\n\t\"files\": [\n\t\t\"index.js\"\n\t],\n\t\"keywords\": [\n\t\t\"wrap\",\n\t\t\"break\",\n\t\t\"wordwrap\",\n\t\t\"wordbreak\",\n\t\t\"linewrap\",\n\t\t\"ansi\",\n\t\t\"styles\",\n\t\t\"color\",\n\t\t\"colour\",\n\t\t\"colors\",\n\t\t\"terminal\",\n\t\t\"console\",\n\t\t\"cli\",\n\t\t\"string\",\n\t\t\"tty\",\n\t\t\"escape\",\n\t\t\"formatting\",\n\t\t\"rgb\",\n\t\t\"256\",\n\t\t\"shell\",\n\t\t\"xterm\",\n\t\t\"log\",\n\t\t\"logging\",\n\t\t\"command-line\",\n\t\t\"text\"\n\t],\n\t\"dependencies\": {\n\t\t\"ansi-styles\": \"^4.0.0\",\n\t\t\"string-width\": \"^4.1.0\",\n\t\t\"strip-ansi\": \"^6.0.0\"\n\t},\n\t\"devDependencies\": {\n\t\t\"ava\": \"^2.1.0\",\n\t\t\"chalk\": \"^2.4.2\",\n\t\t\"coveralls\": \"^3.0.3\",\n\t\t\"has-ansi\": \"^3.0.0\",\n\t\t\"nyc\": \"^14.1.1\",\n\t\t\"xo\": \"^0.24.0\"\n\t}\n}\n",
|
|
11716
|
-
"node_modules/@nestia/migrate/package.json": "{\n \"name\": \"@nestia/migrate\",\n \"version\": \"
|
|
11716
|
+
"node_modules/@nestia/migrate/package.json": "{\n \"name\": \"@nestia/migrate\",\n \"version\": \"7.0.0\",\n \"description\": \"Migration program from swagger to NestJS\",\n \"typings\": \"lib/index.d.ts\",\n \"main\": \"lib/index.js\",\n \"module\": \"lib/index.mjs\",\n \"bin\": {\n \"@nestia/migrate\": \"lib/executable/migrate.js\"\n },\n \"scripts\": {\n \"build\": \"rimraf lib && tsc && rollup -c\",\n \"bundle\": \"node src/executable/bundle.js\",\n \"dev\": \"rimraf lib && tsc --watch\",\n \"package:next\": \"npm publish --access public --tag next\",\n \"prepare\": \"ts-patch install && typia patch && npm run bundle\",\n \"test\": \"node lib/test\"\n },\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/samchon/nestia\"\n },\n \"keywords\": [\n \"migration\",\n \"swagger\",\n \"openapi generator\",\n \"NestJS\",\n \"nestia\",\n \"SDK\",\n \"RPC\",\n \"Mockup Simulator\"\n ],\n \"author\": \"Jeongho Nam\",\n \"license\": \"MIT\",\n \"bugs\": {\n \"url\": \"https://github.com/samchon/nestia/issues\"\n },\n \"homepage\": \"https://nestia.io\",\n \"devDependencies\": {\n \"@nestia/benchmark\": \"^7.0.0\",\n \"@nestia/core\": \"^7.0.0\",\n \"@nestia/e2e\": \"^7.0.0\",\n \"@nestia/fetcher\": \"^7.0.0\",\n \"@nestia/sdk\": \"^7.0.0\",\n \"@nestjs/common\": \"^11.0.13\",\n \"@nestjs/core\": \"^11.0.13\",\n \"@nestjs/platform-express\": \"^11.0.13\",\n \"@nestjs/platform-fastify\": \"^11.0.13\",\n \"@rollup/plugin-terser\": \"^0.4.4\",\n \"@rollup/plugin-typescript\": \"^12.1.1\",\n \"@trivago/prettier-plugin-sort-imports\": \"^4.3.0\",\n \"@types/cli-progress\": \"^3.11.5\",\n \"@types/express\": \"^4.17.21\",\n \"@types/inquirer\": \"^9.0.7\",\n \"@types/multer\": \"^1.4.12\",\n \"@types/node\": \"^20.3.3\",\n \"@types/swagger-ui-express\": \"^4.1.6\",\n \"chalk\": \"4.1.2\",\n \"cli-progress\": \"^3.12.0\",\n \"dotenv\": \"^16.3.1\",\n \"dotenv-expand\": \"^10.0.0\",\n \"express\": \"^4.19.2\",\n \"multer\": \"^2.0.1\",\n \"rimraf\": \"^6.0.1\",\n \"rollup\": \"^4.24.3\",\n \"serialize-error\": \"^4.1.0\",\n \"source-map-support\": \"^0.5.21\",\n \"swagger-ui-express\": \"^5.0.0\",\n \"tgrid\": \"^1.1.0\",\n \"ts-node\": \"^10.9.1\",\n \"ts-patch\": \"^3.3.0\",\n \"typescript-transform-paths\": \"^3.5.2\"\n },\n \"dependencies\": {\n \"@samchon/openapi\": \"^4.3.3\",\n \"commander\": \"10.0.0\",\n \"inquirer\": \"8.2.5\",\n \"prettier\": \"^3.3.3\",\n \"prettier-plugin-jsdoc\": \"^1.3.2\",\n \"tstl\": \"^3.0.0\",\n \"typescript\": \"~5.8.3\",\n \"typia\": \"^9.3.1\"\n },\n \"files\": [\n \"lib\",\n \"src\",\n \"!lib/test\",\n \"!src/test\",\n \"package.json\",\n \"README.md\",\n \"LICENSE\"\n ]\n}",
|
|
11717
11717
|
"node_modules/@nestia/migrate/node_modules/commander/package.json": "{\n \"name\": \"commander\",\n \"version\": \"10.0.0\",\n \"description\": \"the complete solution for node.js command-line programs\",\n \"keywords\": [\n \"commander\",\n \"command\",\n \"option\",\n \"parser\",\n \"cli\",\n \"argument\",\n \"args\",\n \"argv\"\n ],\n \"author\": \"TJ Holowaychuk <tj@vision-media.ca>\",\n \"license\": \"MIT\",\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/tj/commander.js.git\"\n },\n \"scripts\": {\n \"lint\": \"npm run lint:javascript && npm run lint:typescript\",\n \"lint:javascript\": \"eslint index.js esm.mjs \\\"lib/*.js\\\" \\\"tests/**/*.js\\\"\",\n \"lint:typescript\": \"eslint typings/*.ts tests/*.ts\",\n \"test\": \"jest && npm run test-typings\",\n \"test-esm\": \"node ./tests/esm-imports-test.mjs\",\n \"test-typings\": \"tsd\",\n \"typescript-checkJS\": \"tsc --allowJS --checkJS index.js lib/*.js --noEmit\",\n \"test-all\": \"npm run test && npm run lint && npm run typescript-checkJS && npm run test-esm\"\n },\n \"files\": [\n \"index.js\",\n \"lib/*.js\",\n \"esm.mjs\",\n \"typings/index.d.ts\",\n \"package-support.json\"\n ],\n \"type\": \"commonjs\",\n \"main\": \"./index.js\",\n \"exports\": {\n \".\": {\n \"types\": \"./typings/index.d.ts\",\n \"require\": \"./index.js\",\n \"import\": \"./esm.mjs\"\n },\n \"./esm.mjs\": \"./esm.mjs\"\n },\n \"devDependencies\": {\n \"@types/jest\": \"^29.2.4\",\n \"@types/node\": \"^18.11.18\",\n \"@typescript-eslint/eslint-plugin\": \"^5.47.1\",\n \"@typescript-eslint/parser\": \"^5.47.1\",\n \"eslint\": \"^8.30.0\",\n \"eslint-config-standard\": \"^17.0.0\",\n \"eslint-config-standard-with-typescript\": \"^24.0.0\",\n \"eslint-plugin-import\": \"^2.26.0\",\n \"eslint-plugin-jest\": \"^27.1.7\",\n \"eslint-plugin-n\": \"^15.6.0\",\n \"eslint-plugin-promise\": \"^6.1.1\",\n \"jest\": \"^29.3.1\",\n \"ts-jest\": \"^29.0.3\",\n \"tsd\": \"^0.25.0\",\n \"typescript\": \"^4.9.4\"\n },\n \"types\": \"typings/index.d.ts\",\n \"jest\": {\n \"testEnvironment\": \"node\",\n \"collectCoverage\": true,\n \"transform\": {\n \"^.+\\\\.tsx?$\": \"ts-jest\"\n },\n \"testPathIgnorePatterns\": [\n \"/node_modules/\"\n ]\n },\n \"engines\": {\n \"node\": \">=14\"\n },\n \"support\": true\n}\n",
|
|
11718
11718
|
"node_modules/@nestia/migrate/node_modules/commander/typings/index.d.ts": "// Type definitions for commander\n// Original definitions by: Alan Agius <https://github.com/alan-agius4>, Marcelo Dezem <https://github.com/mdezem>, vvakame <https://github.com/vvakame>, Jules Randolph <https://github.com/sveinburne>\n\n// Using method rather than property for method-signature-style, to document method overloads separately. Allow either.\n/* eslint-disable @typescript-eslint/method-signature-style */\n/* eslint-disable @typescript-eslint/no-explicit-any */\n\nexport class CommanderError extends Error {\n code: string;\n exitCode: number;\n message: string;\n nestedError?: string;\n\n /**\n * Constructs the CommanderError class\n * @param exitCode - suggested exit code which could be used with process.exit\n * @param code - an id string representing the error\n * @param message - human-readable description of the error\n * @constructor\n */\n constructor(exitCode: number, code: string, message: string);\n}\n\nexport class InvalidArgumentError extends CommanderError {\n /**\n * Constructs the InvalidArgumentError class\n * @param message - explanation of why argument is invalid\n * @constructor\n */\n constructor(message: string);\n}\nexport { InvalidArgumentError as InvalidOptionArgumentError }; // deprecated old name\n\nexport interface ErrorOptions { // optional parameter for error()\n /** an id string representing the error */\n code?: string;\n /** suggested exit code which could be used with process.exit */\n exitCode?: number;\n}\n\nexport class Argument {\n description: string;\n required: boolean;\n variadic: boolean;\n\n /**\n * Initialize a new command argument with the given name and description.\n * The default is that the argument is required, and you can explicitly\n * indicate this with <> around the name. Put [] around the name for an optional argument.\n */\n constructor(arg: string, description?: string);\n\n /**\n * Return argument name.\n */\n name(): string;\n\n /**\n * Set the default value, and optionally supply the description to be displayed in the help.\n */\n default(value: unknown, description?: string): this;\n\n /**\n * Set the custom handler for processing CLI command arguments into argument values.\n */\n argParser<T>(fn: (value: string, previous: T) => T): this;\n\n /**\n * Only allow argument value to be one of choices.\n */\n choices(values: readonly string[]): this;\n\n /**\n * Make argument required.\n */\n argRequired(): this;\n\n /**\n * Make argument optional.\n */\n argOptional(): this;\n}\n\nexport class Option {\n flags: string;\n description: string;\n\n required: boolean; // A value must be supplied when the option is specified.\n optional: boolean; // A value is optional when the option is specified.\n variadic: boolean;\n mandatory: boolean; // The option must have a value after parsing, which usually means it must be specified on command line.\n optionFlags: string;\n short?: string;\n long?: string;\n negate: boolean;\n defaultValue?: any;\n defaultValueDescription?: string;\n parseArg?: <T>(value: string, previous: T) => T;\n hidden: boolean;\n argChoices?: string[];\n\n constructor(flags: string, description?: string);\n\n /**\n * Set the default value, and optionally supply the description to be displayed in the help.\n */\n default(value: unknown, description?: string): this;\n\n /**\n * Preset to use when option used without option-argument, especially optional but also boolean and negated.\n * The custom processing (parseArg) is called.\n *\n * @example\n * ```ts\n * new Option('--color').default('GREYSCALE').preset('RGB');\n * new Option('--donate [amount]').preset('20').argParser(parseFloat);\n * ```\n */\n preset(arg: unknown): this;\n\n /**\n * Add option name(s) that conflict with this option.\n * An error will be displayed if conflicting options are found during parsing.\n *\n * @example\n * ```ts\n * new Option('--rgb').conflicts('cmyk');\n * new Option('--js').conflicts(['ts', 'jsx']);\n * ```\n */\n conflicts(names: string | string[]): this;\n\n /**\n * Specify implied option values for when this option is set and the implied options are not.\n *\n * The custom processing (parseArg) is not called on the implied values.\n *\n * @example\n * program\n * .addOption(new Option('--log', 'write logging information to file'))\n * .addOption(new Option('--trace', 'log extra details').implies({ log: 'trace.txt' }));\n */\n implies(optionValues: OptionValues): this;\n\n /**\n * Set environment variable to check for option value.\n *\n * An environment variables is only used if when processed the current option value is\n * undefined, or the source of the current value is 'default' or 'config' or 'env'.\n */\n env(name: string): this;\n\n /**\n * Calculate the full description, including defaultValue etc.\n */\n fullDescription(): string;\n\n /**\n * Set the custom handler for processing CLI option arguments into option values.\n */\n argParser<T>(fn: (value: string, previous: T) => T): this;\n\n /**\n * Whether the option is mandatory and must have a value after parsing.\n */\n makeOptionMandatory(mandatory?: boolean): this;\n\n /**\n * Hide option in help.\n */\n hideHelp(hide?: boolean): this;\n\n /**\n * Only allow option value to be one of choices.\n */\n choices(values: readonly string[]): this;\n\n /**\n * Return option name.\n */\n name(): string;\n\n /**\n * Return option name, in a camelcase format that can be used\n * as a object attribute key.\n */\n attributeName(): string;\n\n /**\n * Return whether a boolean option.\n *\n * Options are one of boolean, negated, required argument, or optional argument.\n */\n isBoolean(): boolean;\n}\n\nexport class Help {\n /** output helpWidth, long lines are wrapped to fit */\n helpWidth?: number;\n sortSubcommands: boolean;\n sortOptions: boolean;\n showGlobalOptions: boolean;\n\n constructor();\n\n /** Get the command term to show in the list of subcommands. */\n subcommandTerm(cmd: Command): string;\n /** Get the command summary to show in the list of subcommands. */\n subcommandDescription(cmd: Command): string;\n /** Get the option term to show in the list of options. */\n optionTerm(option: Option): string;\n /** Get the option description to show in the list of options. */\n optionDescription(option: Option): string;\n /** Get the argument term to show in the list of arguments. */\n argumentTerm(argument: Argument): string;\n /** Get the argument description to show in the list of arguments. */\n argumentDescription(argument: Argument): string;\n\n /** Get the command usage to be displayed at the top of the built-in help. */\n commandUsage(cmd: Command): string;\n /** Get the description for the command. */\n commandDescription(cmd: Command): string;\n\n /** Get an array of the visible subcommands. Includes a placeholder for the implicit help command, if there is one. */\n visibleCommands(cmd: Command): Command[];\n /** Get an array of the visible options. Includes a placeholder for the implicit help option, if there is one. */\n visibleOptions(cmd: Command): Option[];\n /** Get an array of the visible global options. (Not including help.) */\n visibleGlobalOptions(cmd: Command): Option[];\n /** Get an array of the arguments which have descriptions. */\n visibleArguments(cmd: Command): Argument[];\n\n /** Get the longest command term length. */\n longestSubcommandTermLength(cmd: Command, helper: Help): number;\n /** Get the longest option term length. */\n longestOptionTermLength(cmd: Command, helper: Help): number;\n /** Get the longest global option term length. */\n longestGlobalOptionTermLength(cmd: Command, helper: Help): number;\n /** Get the longest argument term length. */\n longestArgumentTermLength(cmd: Command, helper: Help): number;\n /** Calculate the pad width from the maximum term length. */\n padWidth(cmd: Command, helper: Help): number;\n\n /**\n * Wrap the given string to width characters per line, with lines after the first indented.\n * Do not wrap if insufficient room for wrapping (minColumnWidth), or string is manually formatted.\n */\n wrap(str: string, width: number, indent: number, minColumnWidth?: number): string;\n\n /** Generate the built-in help text. */\n formatHelp(cmd: Command, helper: Help): string;\n}\nexport type HelpConfiguration = Partial<Help>;\n\nexport interface ParseOptions {\n from: 'node' | 'electron' | 'user';\n}\nexport interface HelpContext { // optional parameter for .help() and .outputHelp()\n error: boolean;\n}\nexport interface AddHelpTextContext { // passed to text function used with .addHelpText()\n error: boolean;\n command: Command;\n}\nexport interface OutputConfiguration {\n writeOut?(str: string): void;\n writeErr?(str: string): void;\n getOutHelpWidth?(): number;\n getErrHelpWidth?(): number;\n outputError?(str: string, write: (str: string) => void): void;\n\n}\n\nexport type AddHelpTextPosition = 'beforeAll' | 'before' | 'after' | 'afterAll';\nexport type HookEvent = 'preSubcommand' | 'preAction' | 'postAction';\nexport type OptionValueSource = 'default' | 'config' | 'env' | 'cli' | 'implied';\n\nexport type OptionValues = Record<string, any>;\n\nexport class Command {\n args: string[];\n processedArgs: any[];\n readonly commands: readonly Command[];\n readonly options: readonly Option[];\n parent: Command | null;\n\n constructor(name?: string);\n\n /**\n * Set the program version to `str`.\n *\n * This method auto-registers the \"-V, --version\" flag\n * which will print the version number when passed.\n *\n * You can optionally supply the flags and description to override the defaults.\n */\n version(str: string, flags?: string, description?: string): this;\n\n /**\n * Define a command, implemented using an action handler.\n *\n * @remarks\n * The command description is supplied using `.description`, not as a parameter to `.command`.\n *\n * @example\n * ```ts\n * program\n * .command('clone <source> [destination]')\n * .description('clone a repository into a newly created directory')\n * .action((source, destination) => {\n * console.log('clone command called');\n * });\n * ```\n *\n * @param nameAndArgs - command name and arguments, args are `<required>` or `[optional]` and last may also be `variadic...`\n * @param opts - configuration options\n * @returns new command\n */\n command(nameAndArgs: string, opts?: CommandOptions): ReturnType<this['createCommand']>;\n /**\n * Define a command, implemented in a separate executable file.\n *\n * @remarks\n * The command description is supplied as the second parameter to `.command`.\n *\n * @example\n * ```ts\n * program\n * .command('start <service>', 'start named service')\n * .command('stop [service]', 'stop named service, or all if no name supplied');\n * ```\n *\n * @param nameAndArgs - command name and arguments, args are `<required>` or `[optional]` and last may also be `variadic...`\n * @param description - description of executable command\n * @param opts - configuration options\n * @returns `this` command for chaining\n */\n command(nameAndArgs: string, description: string, opts?: ExecutableCommandOptions): this;\n\n /**\n * Factory routine to create a new unattached command.\n *\n * See .command() for creating an attached subcommand, which uses this routine to\n * create the command. You can override createCommand to customise subcommands.\n */\n createCommand(name?: string): Command;\n\n /**\n * Add a prepared subcommand.\n *\n * See .command() for creating an attached subcommand which inherits settings from its parent.\n *\n * @returns `this` command for chaining\n */\n addCommand(cmd: Command, opts?: CommandOptions): this;\n\n /**\n * Factory routine to create a new unattached argument.\n *\n * See .argument() for creating an attached argument, which uses this routine to\n * create the argument. You can override createArgument to return a custom argument.\n */\n createArgument(name: string, description?: string): Argument;\n\n /**\n * Define argument syntax for command.\n *\n * The default is that the argument is required, and you can explicitly\n * indicate this with <> around the name. Put [] around the name for an optional argument.\n *\n * @example\n * ```\n * program.argument('<input-file>');\n * program.argument('[output-file]');\n * ```\n *\n * @returns `this` command for chaining\n */\n argument<T>(flags: string, description: string, fn: (value: string, previous: T) => T, defaultValue?: T): this;\n argument(name: string, description?: string, defaultValue?: unknown): this;\n\n /**\n * Define argument syntax for command, adding a prepared argument.\n *\n * @returns `this` command for chaining\n */\n addArgument(arg: Argument): this;\n\n /**\n * Define argument syntax for command, adding multiple at once (without descriptions).\n *\n * See also .argument().\n *\n * @example\n * ```\n * program.arguments('<cmd> [env]');\n * ```\n *\n * @returns `this` command for chaining\n */\n arguments(names: string): this;\n\n /**\n * Override default decision whether to add implicit help command.\n *\n * @example\n * ```\n * addHelpCommand() // force on\n * addHelpCommand(false); // force off\n * addHelpCommand('help [cmd]', 'display help for [cmd]'); // force on with custom details\n * ```\n *\n * @returns `this` command for chaining\n */\n addHelpCommand(enableOrNameAndArgs?: string | boolean, description?: string): this;\n\n /**\n * Add hook for life cycle event.\n */\n hook(event: HookEvent, listener: (thisCommand: Command, actionCommand: Command) => void | Promise<void>): this;\n\n /**\n * Register callback to use as replacement for calling process.exit.\n */\n exitOverride(callback?: (err: CommanderError) => never | void): this;\n\n /**\n * Display error message and exit (or call exitOverride).\n */\n error(message: string, errorOptions?: ErrorOptions): never;\n\n /**\n * You can customise the help with a subclass of Help by overriding createHelp,\n * or by overriding Help properties using configureHelp().\n */\n createHelp(): Help;\n\n /**\n * You can customise the help by overriding Help properties using configureHelp(),\n * or with a subclass of Help by overriding createHelp().\n */\n configureHelp(configuration: HelpConfiguration): this;\n /** Get configuration */\n configureHelp(): HelpConfiguration;\n\n /**\n * The default output goes to stdout and stderr. You can customise this for special\n * applications. You can also customise the display of errors by overriding outputError.\n *\n * The configuration properties are all functions:\n * ```\n * // functions to change where being written, stdout and stderr\n * writeOut(str)\n * writeErr(str)\n * // matching functions to specify width for wrapping help\n * getOutHelpWidth()\n * getErrHelpWidth()\n * // functions based on what is being written out\n * outputError(str, write) // used for displaying errors, and not used for displaying help\n * ```\n */\n configureOutput(configuration: OutputConfiguration): this;\n /** Get configuration */\n configureOutput(): OutputConfiguration;\n\n /**\n * Copy settings that are useful to have in common across root command and subcommands.\n *\n * (Used internally when adding a command using `.command()` so subcommands inherit parent settings.)\n */\n copyInheritedSettings(sourceCommand: Command): this;\n\n /**\n * Display the help or a custom message after an error occurs.\n */\n showHelpAfterError(displayHelp?: boolean | string): this;\n\n /**\n * Display suggestion of similar commands for unknown commands, or options for unknown options.\n */\n showSuggestionAfterError(displaySuggestion?: boolean): this;\n\n /**\n * Register callback `fn` for the command.\n *\n * @example\n * ```\n * program\n * .command('serve')\n * .description('start service')\n * .action(function() {\n * // do work here\n * });\n * ```\n *\n * @returns `this` command for chaining\n */\n action(fn: (...args: any[]) => void | Promise<void>): this;\n\n /**\n * Define option with `flags`, `description` and optional\n * coercion `fn`.\n *\n * The `flags` string contains the short and/or long flags,\n * separated by comma, a pipe or space. The following are all valid\n * all will output this way when `--help` is used.\n *\n * \"-p, --pepper\"\n * \"-p|--pepper\"\n * \"-p --pepper\"\n *\n * @example\n * ```\n * // simple boolean defaulting to false\n * program.option('-p, --pepper', 'add pepper');\n *\n * --pepper\n * program.pepper\n * // => Boolean\n *\n * // simple boolean defaulting to true\n * program.option('-C, --no-cheese', 'remove cheese');\n *\n * program.cheese\n * // => true\n *\n * --no-cheese\n * program.cheese\n * // => false\n *\n * // required argument\n * program.option('-C, --chdir <path>', 'change the working directory');\n *\n * --chdir /tmp\n * program.chdir\n * // => \"/tmp\"\n *\n * // optional argument\n * program.option('-c, --cheese [type]', 'add cheese [marble]');\n * ```\n *\n * @returns `this` command for chaining\n */\n option(flags: string, description?: string, defaultValue?: string | boolean | string[]): this;\n option<T>(flags: string, description: string, fn: (value: string, previous: T) => T, defaultValue?: T): this;\n /** @deprecated since v7, instead use choices or a custom function */\n option(flags: string, description: string, regexp: RegExp, defaultValue?: string | boolean | string[]): this;\n\n /**\n * Define a required option, which must have a value after parsing. This usually means\n * the option must be specified on the command line. (Otherwise the same as .option().)\n *\n * The `flags` string contains the short and/or long flags, separated by comma, a pipe or space.\n */\n requiredOption(flags: string, description?: string, defaultValue?: string | boolean | string[]): this;\n requiredOption<T>(flags: string, description: string, fn: (value: string, previous: T) => T, defaultValue?: T): this;\n /** @deprecated since v7, instead use choices or a custom function */\n requiredOption(flags: string, description: string, regexp: RegExp, defaultValue?: string | boolean | string[]): this;\n\n /**\n * Factory routine to create a new unattached option.\n *\n * See .option() for creating an attached option, which uses this routine to\n * create the option. You can override createOption to return a custom option.\n */\n\n createOption(flags: string, description?: string): Option;\n\n /**\n * Add a prepared Option.\n *\n * See .option() and .requiredOption() for creating and attaching an option in a single call.\n */\n addOption(option: Option): this;\n\n /**\n * Whether to store option values as properties on command object,\n * or store separately (specify false). In both cases the option values can be accessed using .opts().\n *\n * @returns `this` command for chaining\n */\n storeOptionsAsProperties<T extends OptionValues>(): this & T;\n storeOptionsAsProperties<T extends OptionValues>(storeAsProperties: true): this & T;\n storeOptionsAsProperties(storeAsProperties?: boolean): this;\n\n /**\n * Retrieve option value.\n */\n getOptionValue(key: string): any;\n\n /**\n * Store option value.\n */\n setOptionValue(key: string, value: unknown): this;\n\n /**\n * Store option value and where the value came from.\n */\n setOptionValueWithSource(key: string, value: unknown, source: OptionValueSource): this;\n\n /**\n * Get source of option value.\n */\n getOptionValueSource(key: string): OptionValueSource | undefined;\n\n /**\n * Get source of option value. See also .optsWithGlobals().\n */\n getOptionValueSourceWithGlobals(key: string): OptionValueSource | undefined;\n\n /**\n * Alter parsing of short flags with optional values.\n *\n * @example\n * ```\n * // for `.option('-f,--flag [value]'):\n * .combineFlagAndOptionalValue(true) // `-f80` is treated like `--flag=80`, this is the default behaviour\n * .combineFlagAndOptionalValue(false) // `-fb` is treated like `-f -b`\n * ```\n *\n * @returns `this` command for chaining\n */\n combineFlagAndOptionalValue(combine?: boolean): this;\n\n /**\n * Allow unknown options on the command line.\n *\n * @returns `this` command for chaining\n */\n allowUnknownOption(allowUnknown?: boolean): this;\n\n /**\n * Allow excess command-arguments on the command line. Pass false to make excess arguments an error.\n *\n * @returns `this` command for chaining\n */\n allowExcessArguments(allowExcess?: boolean): this;\n\n /**\n * Enable positional options. Positional means global options are specified before subcommands which lets\n * subcommands reuse the same option names, and also enables subcommands to turn on passThroughOptions.\n *\n * The default behaviour is non-positional and global options may appear anywhere on the command line.\n *\n * @returns `this` command for chaining\n */\n enablePositionalOptions(positional?: boolean): this;\n\n /**\n * Pass through options that come after command-arguments rather than treat them as command-options,\n * so actual command-options come before command-arguments. Turning this on for a subcommand requires\n * positional options to have been enabled on the program (parent commands).\n *\n * The default behaviour is non-positional and options may appear before or after command-arguments.\n *\n * @returns `this` command for chaining\n */\n passThroughOptions(passThrough?: boolean): this;\n\n /**\n * Parse `argv`, setting options and invoking commands when defined.\n *\n * The default expectation is that the arguments are from node and have the application as argv[0]\n * and the script being run in argv[1], with user parameters after that.\n *\n * @example\n * ```\n * program.parse(process.argv);\n * program.parse(); // implicitly use process.argv and auto-detect node vs electron conventions\n * program.parse(my-args, { from: 'user' }); // just user supplied arguments, nothing special about argv[0]\n * ```\n *\n * @returns `this` command for chaining\n */\n parse(argv?: readonly string[], options?: ParseOptions): this;\n\n /**\n * Parse `argv`, setting options and invoking commands when defined.\n *\n * Use parseAsync instead of parse if any of your action handlers are async. Returns a Promise.\n *\n * The default expectation is that the arguments are from node and have the application as argv[0]\n * and the script being run in argv[1], with user parameters after that.\n *\n * @example\n * ```\n * program.parseAsync(process.argv);\n * program.parseAsync(); // implicitly use process.argv and auto-detect node vs electron conventions\n * program.parseAsync(my-args, { from: 'user' }); // just user supplied arguments, nothing special about argv[0]\n * ```\n *\n * @returns Promise\n */\n parseAsync(argv?: readonly string[], options?: ParseOptions): Promise<this>;\n\n /**\n * Parse options from `argv` removing known options,\n * and return argv split into operands and unknown arguments.\n *\n * argv => operands, unknown\n * --known kkk op => [op], []\n * op --known kkk => [op], []\n * sub --unknown uuu op => [sub], [--unknown uuu op]\n * sub -- --unknown uuu op => [sub --unknown uuu op], []\n */\n parseOptions(argv: string[]): ParseOptionsResult;\n\n /**\n * Return an object containing local option values as key-value pairs\n */\n opts<T extends OptionValues>(): T;\n\n /**\n * Return an object containing merged local and global option values as key-value pairs.\n */\n optsWithGlobals<T extends OptionValues>(): T;\n\n /**\n * Set the description.\n *\n * @returns `this` command for chaining\n */\n\n description(str: string): this;\n /** @deprecated since v8, instead use .argument to add command argument with description */\n description(str: string, argsDescription: Record<string, string>): this;\n /**\n * Get the description.\n */\n description(): string;\n\n /**\n * Set the summary. Used when listed as subcommand of parent.\n *\n * @returns `this` command for chaining\n */\n\n summary(str: string): this;\n /**\n * Get the summary.\n */\n summary(): string;\n\n /**\n * Set an alias for the command.\n *\n * You may call more than once to add multiple aliases. Only the first alias is shown in the auto-generated help.\n *\n * @returns `this` command for chaining\n */\n alias(alias: string): this;\n /**\n * Get alias for the command.\n */\n alias(): string;\n\n /**\n * Set aliases for the command.\n *\n * Only the first alias is shown in the auto-generated help.\n *\n * @returns `this` command for chaining\n */\n aliases(aliases: readonly string[]): this;\n /**\n * Get aliases for the command.\n */\n aliases(): string[];\n\n /**\n * Set the command usage.\n *\n * @returns `this` command for chaining\n */\n usage(str: string): this;\n /**\n * Get the command usage.\n */\n usage(): string;\n\n /**\n * Set the name of the command.\n *\n * @returns `this` command for chaining\n */\n name(str: string): this;\n /**\n * Get the name of the command.\n */\n name(): string;\n\n /**\n * Set the name of the command from script filename, such as process.argv[1],\n * or require.main.filename, or __filename.\n *\n * (Used internally and public although not documented in README.)\n *\n * @example\n * ```ts\n * program.nameFromFilename(require.main.filename);\n * ```\n *\n * @returns `this` command for chaining\n */\n nameFromFilename(filename: string): this;\n\n /**\n * Set the directory for searching for executable subcommands of this command.\n *\n * @example\n * ```ts\n * program.executableDir(__dirname);\n * // or\n * program.executableDir('subcommands');\n * ```\n *\n * @returns `this` command for chaining\n */\n executableDir(path: string): this;\n /**\n * Get the executable search directory.\n */\n executableDir(): string;\n\n /**\n * Output help information for this command.\n *\n * Outputs built-in help, and custom text added using `.addHelpText()`.\n *\n */\n outputHelp(context?: HelpContext): void;\n /** @deprecated since v7 */\n outputHelp(cb?: (str: string) => string): void;\n\n /**\n * Return command help documentation.\n */\n helpInformation(context?: HelpContext): string;\n\n /**\n * You can pass in flags and a description to override the help\n * flags and help description for your command. Pass in false\n * to disable the built-in help option.\n */\n helpOption(flags?: string | boolean, description?: string): this;\n\n /**\n * Output help information and exit.\n *\n * Outputs built-in help, and custom text added using `.addHelpText()`.\n */\n help(context?: HelpContext): never;\n /** @deprecated since v7 */\n help(cb?: (str: string) => string): never;\n\n /**\n * Add additional text to be displayed with the built-in help.\n *\n * Position is 'before' or 'after' to affect just this command,\n * and 'beforeAll' or 'afterAll' to affect this command and all its subcommands.\n */\n addHelpText(position: AddHelpTextPosition, text: string): this;\n addHelpText(position: AddHelpTextPosition, text: (context: AddHelpTextContext) => string): this;\n\n /**\n * Add a listener (callback) for when events occur. (Implemented using EventEmitter.)\n */\n on(event: string | symbol, listener: (...args: any[]) => void): this;\n}\n\nexport interface CommandOptions {\n hidden?: boolean;\n isDefault?: boolean;\n /** @deprecated since v7, replaced by hidden */\n noHelp?: boolean;\n}\nexport interface ExecutableCommandOptions extends CommandOptions {\n executableFile?: string;\n}\n\nexport interface ParseOptionsResult {\n operands: string[];\n unknown: string[];\n}\n\nexport function createCommand(name?: string): Command;\nexport function createOption(flags: string, description?: string): Option;\nexport function createArgument(name: string, description?: string): Argument;\n\nexport const program: Command;\n",
|
|
11719
11719
|
"node_modules/@nestia/migrate/node_modules/inquirer/package.json": "{\n \"name\": \"inquirer\",\n \"version\": \"8.2.5\",\n \"description\": \"A collection of common interactive command line user interfaces.\",\n \"author\": \"Simon Boudrias <admin@simonboudrias.com>\",\n \"files\": [\n \"lib\",\n \"README.md\"\n ],\n \"main\": \"lib/inquirer.js\",\n \"keywords\": [\n \"command\",\n \"prompt\",\n \"stdin\",\n \"cli\",\n \"tty\",\n \"menu\"\n ],\n \"engines\": {\n \"node\": \">=12.0.0\"\n },\n \"devDependencies\": {\n \"chai\": \"^4.3.6\",\n \"chai-string\": \"^1.5.0\",\n \"chalk-pipe\": \"^5.1.1\",\n \"cmdify\": \"^0.0.4\",\n \"mocha\": \"^9.2.2\",\n \"mockery\": \"^2.1.0\",\n \"nyc\": \"^15.0.0\",\n \"sinon\": \"^13.0.2\",\n \"terminal-link\": \"^2.1.1\"\n },\n \"scripts\": {\n \"test\": \"nyc mocha test/**/* -r ./test/before\",\n \"posttest\": \"nyc report --reporter=text-lcov > ../../coverage/nyc-report.lcov\",\n \"prepublishOnly\": \"cp ../../README.md .\",\n \"postpublish\": \"rm -f README.md\"\n },\n \"repository\": \"SBoudrias/Inquirer.js\",\n \"license\": \"MIT\",\n \"dependencies\": {\n \"ansi-escapes\": \"^4.2.1\",\n \"chalk\": \"^4.1.1\",\n \"cli-cursor\": \"^3.1.0\",\n \"cli-width\": \"^3.0.0\",\n \"external-editor\": \"^3.0.3\",\n \"figures\": \"^3.0.0\",\n \"lodash\": \"^4.17.21\",\n \"mute-stream\": \"0.0.8\",\n \"ora\": \"^5.4.1\",\n \"run-async\": \"^2.4.0\",\n \"rxjs\": \"^7.5.5\",\n \"string-width\": \"^4.1.0\",\n \"strip-ansi\": \"^6.0.0\",\n \"through\": \"^2.3.6\",\n \"wrap-ansi\": \"^7.0.0\"\n },\n \"gitHead\": \"7a2ade6cf6a3d987f4138c0426493460f6b2515f\"\n}\n",
|
|
11720
11720
|
"node_modules/@nestia/migrate/node_modules/wrap-ansi/package.json": "{\n\t\"name\": \"wrap-ansi\",\n\t\"version\": \"7.0.0\",\n\t\"description\": \"Wordwrap a string with ANSI escape codes\",\n\t\"license\": \"MIT\",\n\t\"repository\": \"chalk/wrap-ansi\",\n\t\"funding\": \"https://github.com/chalk/wrap-ansi?sponsor=1\",\n\t\"author\": {\n\t\t\"name\": \"Sindre Sorhus\",\n\t\t\"email\": \"sindresorhus@gmail.com\",\n\t\t\"url\": \"https://sindresorhus.com\"\n\t},\n\t\"engines\": {\n\t\t\"node\": \">=10\"\n\t},\n\t\"scripts\": {\n\t\t\"test\": \"xo && nyc ava\"\n\t},\n\t\"files\": [\n\t\t\"index.js\"\n\t],\n\t\"keywords\": [\n\t\t\"wrap\",\n\t\t\"break\",\n\t\t\"wordwrap\",\n\t\t\"wordbreak\",\n\t\t\"linewrap\",\n\t\t\"ansi\",\n\t\t\"styles\",\n\t\t\"color\",\n\t\t\"colour\",\n\t\t\"colors\",\n\t\t\"terminal\",\n\t\t\"console\",\n\t\t\"cli\",\n\t\t\"string\",\n\t\t\"tty\",\n\t\t\"escape\",\n\t\t\"formatting\",\n\t\t\"rgb\",\n\t\t\"256\",\n\t\t\"shell\",\n\t\t\"xterm\",\n\t\t\"log\",\n\t\t\"logging\",\n\t\t\"command-line\",\n\t\t\"text\"\n\t],\n\t\"dependencies\": {\n\t\t\"ansi-styles\": \"^4.0.0\",\n\t\t\"string-width\": \"^4.1.0\",\n\t\t\"strip-ansi\": \"^6.0.0\"\n\t},\n\t\"devDependencies\": {\n\t\t\"ava\": \"^2.1.0\",\n\t\t\"chalk\": \"^4.0.0\",\n\t\t\"coveralls\": \"^3.0.3\",\n\t\t\"has-ansi\": \"^4.0.0\",\n\t\t\"nyc\": \"^15.0.1\",\n\t\t\"xo\": \"^0.29.1\"\n\t}\n}\n",
|
|
11721
|
-
"node_modules/@nestia/sdk/lib/INestiaConfig.d.ts": "import type { INestApplication } from \"@nestjs/common\";\nimport type { OpenApi } from \"@samchon/openapi\";\n/**\n * Definition for the `nestia.config.ts` file.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface INestiaConfig {\n /**\n * Accessor of controller classes.\n *\n * You can specify target controller classes within two ways.\n *\n *
|
|
11721
|
+
"node_modules/@nestia/sdk/lib/INestiaConfig.d.ts": "import type { INestApplication } from \"@nestjs/common\";\nimport type { OpenApi } from \"@samchon/openapi\";\n/**\n * Definition for the `nestia.config.ts` file.\n *\n * @author Jeongho Nam - https://github.com/samchon\n */\nexport interface INestiaConfig {\n /**\n * Accessor of controller classes.\n *\n * You can specify target controller classes within two ways.\n *\n * - Asynchronous function returning `INestApplication` instance\n * - Specify the path or directory of controller class files\n */\n input: (() => Promise<INestApplication>) | INestiaConfig.IInput | string[] | string;\n /**\n * Building `swagger.json` is also possible.\n *\n * If not specified, you can't build the `swagger.json`.\n */\n swagger?: INestiaConfig.ISwaggerConfig;\n /**\n * Response directory that SDK would be placed in.\n *\n * If not configured, you can't build the SDK library.\n */\n output?: string;\n /**\n * Target directory that SDK distribution files would be placed in.\n *\n * If you configure this property and runs `npx nestia sdk` command,\n * distribution environments for the SDK library would be generated.\n *\n * After the SDK library generation, move to the `distribute` directory, and\n * runs `npm publish` command, then you can share SDK library with other\n * client (frontend) developers.\n *\n * Recommend to use `\"packages/api\"` value.\n */\n distribute?: string;\n /**\n * @default false\n */\n keyword?: boolean;\n /**\n * Allow simulation mode.\n *\n * If you configure this property to be `true`, the SDK library would be\n * contain simulation mode. In the simulation mode, the SDK library would not\n * communicate with the real backend server, but just returns random mock-up\n * data with requestion data validation.\n *\n * For reference, random mock-up data would be generated by\n * `typia.random<T>()` function.\n *\n * @default false\n */\n simulate?: boolean;\n /**\n * Target directory that e2e test functions would be placed in.\n *\n * If you configure this property and runs `npx nestia e2e` command,\n * `@nestia/sdk` will analyze your NestJS backend server code, and generates\n * e2e test functions for every API endpoints.\n *\n * If not configured, you can't run `npx nestia e2e` command.\n */\n e2e?: string;\n /**\n * Whether to use propagation mode or not.\n *\n * If being configured, interaction functions of the SDK library would perform\n * the propagation mode. The propagation mode means that never throwing\n * exception even when status code is not 200 (or 201), but just returning the\n * {@link IPropagation} typed instance, which can specify its body type through\n * discriminated union determined by status code.\n *\n * @default false\n */\n propagate?: boolean;\n /**\n * Whether to clone DTO structures or not.\n *\n * If being configured, all of DTOs used in the backend server would be cloned\n * into the `structures` directory, and the SDK library would be refer to the\n * cloned DTOs instead of the original.\n *\n * @default false\n */\n clone?: boolean;\n /**\n * Whether to wrap DTO by primitive type.\n *\n * If you don't configure this property as `false`, all of DTOs in the SDK\n * library would be automatically wrapped by {@link Primitive} type.\n *\n * For refenrece, if a DTO type be capsuled by the {@link Primitive} type, all\n * of methods in the DTO type would be automatically erased. Also, if the DTO\n * has a `toJSON()` method, the DTO type would be automatically converted to\n * return type of the `toJSON()` method.\n *\n * @default true\n */\n primitive?: boolean;\n /**\n * Whether to assert parameter types or not.\n *\n * If you configure this property to be `true`, all of the function parameters\n * of SDK library would be checked through [`typia.assert<T>()`\n * function](https://typia.io/docs/validators/assert/).\n *\n * This option would make your SDK library compilation time a little bit\n * slower, but would enahcne the type safety even in the runtime level.\n *\n * @default false\n */\n assert?: boolean;\n /**\n * Whether to optimize JSON string conversion 10x faster or not.\n *\n * If you configure this property to be `true`, the SDK library would utilize\n * the [`typia.assertStringify<T>()\n * function`](https://github.com/samchon/typia#enhanced-json) to boost up JSON\n * serialization speed and ensure type safety.\n *\n * This option would make your SDK library compilation time a little bit\n * slower, but would enhance JSON serialization speed 10x faster. Also, it can\n * ensure type safety even in the runtime level.\n *\n * @default false\n */\n json?: boolean;\n}\nexport declare namespace INestiaConfig {\n /**\n * List of files or directories to include or exclude to specifying the NestJS\n * controllers.\n */\n interface IInput {\n /** List of files or directories containing the NestJS controller classes. */\n include: string[];\n /** List of files or directories to be excluded. */\n exclude?: string[];\n }\n /** Building `swagger.json` is also possible. */\n interface ISwaggerConfig {\n /**\n * Response path of the `swagger.json`.\n *\n * If you've configured only directory, the file name would be the\n * `swagger.json`. Otherwise you've configured the full path with file name\n * and extension, the `swagger.json` file would be renamed to it.\n */\n output: string;\n /**\n * OpenAPI version.\n *\n * If you configure this property to be `2.0` or `3.0`, the newly generated\n * `swagger.json` file would follow the specified OpenAPI version. The newly\n * generated `swagger.json` file would be downgraded from the OpenAPI v3.1\n * specification by {@link OpenApi.downgrade} method.\n *\n * @default 3.1\n */\n openapi?: \"2.0\" | \"3.0\" | \"3.1\";\n /**\n * Whether to beautify JSON content or not.\n *\n * If you configure this property to be `true`, the `swagger.json` file\n * would be beautified with indentation (2 spaces) and line breaks. If you\n * configure numeric value instead, the indentation would be specified by\n * the number.\n *\n * @default false\n */\n beautify?: boolean | number;\n /**\n * Whether to include additional information or not.\n *\n * If configured to be `true`, those properties would be added into each API\n * endpoinnt.\n *\n * - `x-nestia-method`\n * - `x-nestia-namespace` ` `x-nestia-jsDocTags`\n *\n * @default false\n */\n additional?: boolean;\n /**\n * API information.\n *\n * If omitted, `package.json` content would be used instead.\n */\n info?: Partial<OpenApi.IDocument.IInfo>;\n /** List of server addresses. */\n servers?: OpenApi.IServer[];\n /**\n * Security schemes.\n *\n * When generating `swagger.json` file through `nestia`, if your controllers\n * or theirs methods have a security key which is not enrolled in here\n * property, it would be an error.\n */\n security?: Record<string, OpenApi.ISecurityScheme>;\n /**\n * List of tag names with description.\n *\n * It is possible to omit this property or skip some tag name even if the\n * tag name is used in the API routes. In that case, the tag name would be\n * used without description.\n *\n * Of course, if you've written a comment like `@tag {name} {description}`,\n * you can entirely replace this property specification.\n */\n tags?: OpenApi.IDocument.ITag[];\n /**\n * Decompose query DTO.\n *\n * If you configure this property to be `true`, the query DTO would be\n * decomposed into individual query parameters per each property. Otherwise\n * you set it to be `false`, the query DTO would be one object type which\n * contains all of query parameters.\n *\n * @default true\n */\n decompose?: boolean;\n /**\n * Operation ID generator.\n *\n * @param props Properties of the API endpoint.\n * @returns Operation ID.\n */\n operationId?(props: {\n class: string;\n function: string;\n method: \"HEAD\" | \"GET\" | \"POST\" | \"PUT\" | \"PATCH\" | \"DELETE\";\n path: string;\n }): string;\n }\n}\n",
|
|
11722
11722
|
"node_modules/@nestia/sdk/lib/NestiaSdkApplication.d.ts": "import { INestiaConfig } from \"./INestiaConfig\";\nexport declare class NestiaSdkApplication {\n private readonly config;\n constructor(config: INestiaConfig);\n all(): Promise<void>;\n e2e(): Promise<void>;\n sdk(): Promise<void>;\n swagger(): Promise<void>;\n private generate;\n}\n",
|
|
11723
11723
|
"node_modules/@nestia/sdk/lib/NestiaSwaggerComposer.d.ts": "import { INestApplication } from \"@nestjs/common\";\nimport { OpenApi, OpenApiV3, SwaggerV2 } from \"@samchon/openapi\";\nimport { INestiaConfig } from \"./INestiaConfig\";\nexport declare namespace NestiaSwaggerComposer {\n const document: (app: INestApplication, config: Omit<INestiaConfig.ISwaggerConfig, \"output\">) => Promise<OpenApi.IDocument | OpenApiV3.IDocument | SwaggerV2.IDocument>;\n}\n",
|
|
11724
11724
|
"node_modules/@nestia/sdk/lib/analyses/AccessorAnalyzer.d.ts": "import { ITypedHttpRoute } from \"../structures/ITypedHttpRoute\";\nimport { ITypedWebSocketRoute } from \"../structures/ITypedWebSocketRoute\";\nexport declare namespace AccessorAnalyzer {\n const analyze: (routes: Array<ITypedHttpRoute | ITypedWebSocketRoute>) => void;\n}\n",
|
|
@@ -11749,24 +11749,26 @@
|
|
|
11749
11749
|
"node_modules/@nestia/sdk/lib/generates/internal/E2eFileProgrammer.d.ts": "import { INestiaProject } from \"../../structures/INestiaProject\";\nimport { ITypedHttpRoute } from \"../../structures/ITypedHttpRoute\";\nexport declare namespace E2eFileProgrammer {\n const generate: (project: INestiaProject) => (props: {\n api: string;\n current: string;\n }) => (route: ITypedHttpRoute) => Promise<void>;\n}\n",
|
|
11750
11750
|
"node_modules/@nestia/sdk/lib/generates/internal/FilePrinter.d.ts": "import ts from \"typescript\";\nexport declare namespace FilePrinter {\n const description: <Node extends ts.Node>(node: Node, comment: string) => Node;\n const enter: () => ts.ExpressionStatement;\n const write: (props: {\n location: string;\n statements: ts.Statement[];\n top?: string;\n }) => Promise<void>;\n}\n",
|
|
11751
11751
|
"node_modules/@nestia/sdk/lib/generates/internal/ImportDictionary.d.ts": "import ts from \"typescript\";\nexport declare class ImportDictionary {\n readonly file: string;\n private readonly components_;\n constructor(file: string);\n empty(): boolean;\n external(props: ImportDictionary.IExternalProps): string;\n internal(props: ImportDictionary.IInternalProps): string;\n toStatements(outDir: string): ts.Statement[];\n}\nexport declare namespace ImportDictionary {\n interface IExternalProps {\n type: boolean;\n library: string;\n instance: string | null;\n }\n interface IInternalProps {\n type: boolean;\n file: string;\n instance: string | null;\n name?: string | null;\n }\n}\n",
|
|
11752
|
-
"node_modules/@nestia/sdk/lib/generates/internal/SdkAliasCollection.d.ts": "import ts from \"typescript\";\nimport { Metadata } from \"typia/lib/schemas/metadata/Metadata\";\nimport { INestiaProject } from \"../../structures/INestiaProject\";\nimport { IReflectType } from \"../../structures/IReflectType\";\nimport { ITypedHttpRoute } from \"../../structures/ITypedHttpRoute\";\nimport { ITypedHttpRouteParameter } from \"../../structures/ITypedHttpRouteParameter\";\nimport { ImportDictionary } from \"./ImportDictionary\";\nexport declare namespace SdkAliasCollection {\n const name: ({ type }: {\n type: IReflectType;\n }) => ts.TypeNode;\n const from: (project: INestiaProject) => (importer: ImportDictionary) => (metadata: Metadata) => ts.TypeNode;\n const headers: (project: INestiaProject) => (importer: ImportDictionary) => (param: ITypedHttpRouteParameter.IHeaders) => ts.TypeNode;\n const query: (project: INestiaProject) => (importer: ImportDictionary) => (param: ITypedHttpRouteParameter.IQuery) => ts.TypeNode;\n const
|
|
11752
|
+
"node_modules/@nestia/sdk/lib/generates/internal/SdkAliasCollection.d.ts": "import ts from \"typescript\";\nimport { Metadata } from \"typia/lib/schemas/metadata/Metadata\";\nimport { INestiaProject } from \"../../structures/INestiaProject\";\nimport { IReflectType } from \"../../structures/IReflectType\";\nimport { ITypedHttpRoute } from \"../../structures/ITypedHttpRoute\";\nimport { ITypedHttpRouteParameter } from \"../../structures/ITypedHttpRouteParameter\";\nimport { ITypedWebSocketRoute } from \"../../structures/ITypedWebSocketRoute\";\nimport { ImportDictionary } from \"./ImportDictionary\";\nexport declare namespace SdkAliasCollection {\n const name: ({ type }: {\n type: IReflectType;\n }) => ts.TypeNode;\n const from: (project: INestiaProject) => (importer: ImportDictionary) => (metadata: Metadata) => ts.TypeNode;\n const httpProps: (project: INestiaProject) => (importer: ImportDictionary) => (route: ITypedHttpRoute) => ts.TypeNode;\n const websocketProps: (route: ITypedWebSocketRoute) => ts.TypeNode;\n const headers: (project: INestiaProject) => (importer: ImportDictionary) => (param: ITypedHttpRouteParameter.IHeaders) => ts.TypeNode;\n const query: (project: INestiaProject) => (importer: ImportDictionary) => (param: ITypedHttpRouteParameter.IQuery) => ts.TypeNode;\n const body: (project: INestiaProject) => (importer: ImportDictionary) => (param: ITypedHttpRouteParameter.IBody) => ts.TypeNode;\n const response: (project: INestiaProject) => (importer: ImportDictionary) => (route: ITypedHttpRoute) => ts.TypeNode;\n const responseBody: (project: INestiaProject) => (importer: ImportDictionary) => (route: ITypedHttpRoute) => ts.TypeNode;\n}\n",
|
|
11753
11753
|
"node_modules/@nestia/sdk/lib/generates/internal/SdkDistributionComposer.d.ts": "import { INestiaConfig } from \"../../INestiaConfig\";\nexport declare namespace SdkDistributionComposer {\n const compose: (props: {\n config: INestiaConfig;\n websocket: boolean;\n }) => Promise<void>;\n}\n",
|
|
11754
11754
|
"node_modules/@nestia/sdk/lib/generates/internal/SdkFileProgrammer.d.ts": "import { ITypedApplication } from \"../../structures/ITypedApplication\";\nexport declare namespace SdkFileProgrammer {\n const generate: (app: ITypedApplication) => Promise<void>;\n}\n",
|
|
11755
11755
|
"node_modules/@nestia/sdk/lib/generates/internal/SdkHttpCloneProgrammer.d.ts": "import ts from \"typescript\";\nimport { ITypedApplication } from \"../../structures/ITypedApplication\";\nimport { ImportDictionary } from \"./ImportDictionary\";\nexport declare namespace SdkHttpCloneProgrammer {\n interface IModule {\n name: string;\n children: Map<string, IModule>;\n programmer: null | ((importer: ImportDictionary) => ts.TypeAliasDeclaration);\n }\n const write: (app: ITypedApplication) => Map<string, IModule>;\n}\n",
|
|
11756
11756
|
"node_modules/@nestia/sdk/lib/generates/internal/SdkHttpCloneReferencer.d.ts": "import { ITypedApplication } from \"../../structures/ITypedApplication\";\nexport declare namespace SdkHttpCloneReferencer {\n const replace: (app: ITypedApplication) => void;\n}\n",
|
|
11757
|
-
"node_modules/@nestia/sdk/lib/generates/internal/SdkHttpFunctionProgrammer.d.ts": "import ts from \"typescript\";\nimport { INestiaProject } from \"../../structures/INestiaProject\";\nimport { ITypedHttpRoute } from \"../../structures/ITypedHttpRoute\";\nimport {
|
|
11758
|
-
"node_modules/@nestia/sdk/lib/generates/internal/SdkHttpNamespaceProgrammer.d.ts": "import ts from \"typescript\";\nimport { INestiaProject } from \"../../structures/INestiaProject\";\nimport { ITypedHttpRoute } from \"../../structures/ITypedHttpRoute\";\nimport {
|
|
11757
|
+
"node_modules/@nestia/sdk/lib/generates/internal/SdkHttpFunctionProgrammer.d.ts": "import ts from \"typescript\";\nimport { INestiaProject } from \"../../structures/INestiaProject\";\nimport { ITypedHttpRoute } from \"../../structures/ITypedHttpRoute\";\nimport { ImportDictionary } from \"./ImportDictionary\";\nexport declare namespace SdkHttpFunctionProgrammer {\n const write: (project: INestiaProject) => (importer: ImportDictionary) => (route: ITypedHttpRoute) => ts.FunctionDeclaration;\n}\n",
|
|
11758
|
+
"node_modules/@nestia/sdk/lib/generates/internal/SdkHttpNamespaceProgrammer.d.ts": "import ts from \"typescript\";\nimport { INestiaProject } from \"../../structures/INestiaProject\";\nimport { ITypedHttpRoute } from \"../../structures/ITypedHttpRoute\";\nimport { ImportDictionary } from \"./ImportDictionary\";\nexport declare namespace SdkHttpNamespaceProgrammer {\n const write: (project: INestiaProject) => (importer: ImportDictionary) => (route: ITypedHttpRoute) => ts.ModuleDeclaration;\n}\n",
|
|
11759
|
+
"node_modules/@nestia/sdk/lib/generates/internal/SdkHttpParameterProgrammer.d.ts": "import ts from \"typescript\";\nimport { INestiaProject } from \"../../structures/INestiaProject\";\nimport { ITypedHttpRoute } from \"../../structures/ITypedHttpRoute\";\nimport { ITypedHttpRouteParameter } from \"../../structures/ITypedHttpRouteParameter\";\nimport { ImportDictionary } from \"./ImportDictionary\";\nexport declare namespace SdkHttpParameterProgrammer {\n interface IEntry {\n key: string;\n required: boolean;\n type: ts.TypeNode;\n parameter: ITypedHttpRouteParameter;\n }\n const getAll: (route: ITypedHttpRoute) => ITypedHttpRouteParameter[];\n const getSignificant: (route: ITypedHttpRoute, body: boolean) => (ITypedHttpRouteParameter.IBody | ITypedHttpRouteParameter.IPath | ITypedHttpRouteParameter.IQuery)[];\n const getEntries: (props: {\n project: INestiaProject;\n importer: ImportDictionary;\n route: ITypedHttpRoute;\n body: boolean;\n prefix: boolean | string;\n e2e?: boolean;\n }) => IEntry[];\n const getParameterDeclarations: (props: {\n project: INestiaProject;\n importer: ImportDictionary;\n route: ITypedHttpRoute;\n body: boolean;\n prefix: boolean;\n }) => ts.ParameterDeclaration[];\n const getArguments: (props: {\n project: INestiaProject;\n route: ITypedHttpRoute;\n body: boolean;\n }) => ts.Expression[];\n const getAccessors: (props: {\n project: INestiaProject;\n importer: ImportDictionary;\n route: ITypedHttpRoute;\n body: boolean;\n }) => ts.Expression[];\n}\n",
|
|
11759
11760
|
"node_modules/@nestia/sdk/lib/generates/internal/SdkHttpRouteProgrammer.d.ts": "import ts from \"typescript\";\nimport { INestiaProject } from \"../../structures/INestiaProject\";\nimport { ITypedHttpRoute } from \"../../structures/ITypedHttpRoute\";\nimport { ImportDictionary } from \"./ImportDictionary\";\nexport declare namespace SdkHttpRouteProgrammer {\n const write: (project: INestiaProject) => (importer: ImportDictionary) => (route: ITypedHttpRoute) => ts.Statement[];\n}\n",
|
|
11760
|
-
"node_modules/@nestia/sdk/lib/generates/internal/SdkHttpSimulationProgrammer.d.ts": "import ts from \"typescript\";\nimport { INestiaProject } from \"../../structures/INestiaProject\";\nimport { ITypedHttpRoute } from \"../../structures/ITypedHttpRoute\";\nimport {
|
|
11761
|
+
"node_modules/@nestia/sdk/lib/generates/internal/SdkHttpSimulationProgrammer.d.ts": "import ts from \"typescript\";\nimport { INestiaProject } from \"../../structures/INestiaProject\";\nimport { ITypedHttpRoute } from \"../../structures/ITypedHttpRoute\";\nimport { ImportDictionary } from \"./ImportDictionary\";\nexport declare namespace SdkHttpSimulationProgrammer {\n const random: (project: INestiaProject) => (importer: ImportDictionary) => (route: ITypedHttpRoute) => ts.VariableStatement;\n const simulate: (project: INestiaProject) => (importer: ImportDictionary) => (route: ITypedHttpRoute) => ts.VariableStatement;\n}\n",
|
|
11761
11762
|
"node_modules/@nestia/sdk/lib/generates/internal/SdkImportWizard.d.ts": "import { ImportDictionary } from \"./ImportDictionary\";\nexport declare namespace SdkImportWizard {\n const Fetcher: (encrypted: boolean) => (importer: ImportDictionary) => string;\n const HttpError: (importer: ImportDictionary) => string;\n const IConnection: (importer: ImportDictionary) => string;\n const Primitive: (importer: ImportDictionary) => string;\n const Resolved: (importer: ImportDictionary) => string;\n const typia: (importer: ImportDictionary) => string;\n}\n",
|
|
11762
11763
|
"node_modules/@nestia/sdk/lib/generates/internal/SdkRouteDirectory.d.ts": "import { ITypedHttpRoute } from \"../../structures/ITypedHttpRoute\";\nimport { ITypedWebSocketRoute } from \"../../structures/ITypedWebSocketRoute\";\nexport declare class SdkRouteDirectory {\n readonly parent: SdkRouteDirectory | null;\n readonly name: string;\n readonly module: string;\n readonly children: Map<string, SdkRouteDirectory>;\n readonly routes: Array<ITypedHttpRoute | ITypedWebSocketRoute>;\n constructor(parent: SdkRouteDirectory | null, name: string);\n}\n",
|
|
11763
11764
|
"node_modules/@nestia/sdk/lib/generates/internal/SdkTypeProgrammer.d.ts": "import ts from \"typescript\";\nimport { Metadata } from \"typia/lib/schemas/metadata/Metadata\";\nimport { MetadataObjectType } from \"typia/lib/schemas/metadata/MetadataObjectType\";\nimport { INestiaProject } from \"../../structures/INestiaProject\";\nimport { ImportDictionary } from \"./ImportDictionary\";\nexport declare namespace SdkTypeProgrammer {\n const write: (project: INestiaProject) => (importer: ImportDictionary) => (meta: Metadata, parentEscaped?: boolean) => ts.TypeNode;\n const write_object: (project: INestiaProject) => (importer: ImportDictionary) => (object: MetadataObjectType) => ts.TypeNode;\n}\n",
|
|
11764
11765
|
"node_modules/@nestia/sdk/lib/generates/internal/SdkTypeTagProgrammer.d.ts": "import ts from \"typescript\";\nimport { IMetadataTypeTag } from \"typia/lib/schemas/metadata/IMetadataTypeTag\";\nimport { ImportDictionary } from \"./ImportDictionary\";\nexport declare namespace SdkTypeTagProgrammer {\n const write: (importer: ImportDictionary, from: \"object\" | \"array\" | \"boolean\" | \"number\" | \"bigint\" | \"string\", tag: IMetadataTypeTag) => ts.TypeReferenceNode;\n}\n",
|
|
11765
|
-
"node_modules/@nestia/sdk/lib/generates/internal/SdkWebSocketNamespaceProgrammer.d.ts": "import ts from \"typescript\";\nimport { ITypedWebSocketRoute } from \"../../structures/ITypedWebSocketRoute\";\nimport { ImportDictionary } from \"./ImportDictionary\";\nexport declare namespace SdkWebSocketNamespaceProgrammer {\n const write: (importer: ImportDictionary) => (route: ITypedWebSocketRoute) => ts.ModuleDeclaration;\n}\n",
|
|
11766
|
-
"node_modules/@nestia/sdk/lib/generates/internal/
|
|
11766
|
+
"node_modules/@nestia/sdk/lib/generates/internal/SdkWebSocketNamespaceProgrammer.d.ts": "import ts from \"typescript\";\nimport { INestiaProject } from \"../../structures/INestiaProject\";\nimport { ITypedWebSocketRoute } from \"../../structures/ITypedWebSocketRoute\";\nimport { ImportDictionary } from \"./ImportDictionary\";\nexport declare namespace SdkWebSocketNamespaceProgrammer {\n const write: (project: INestiaProject) => (importer: ImportDictionary) => (route: ITypedWebSocketRoute) => ts.ModuleDeclaration;\n}\n",
|
|
11767
|
+
"node_modules/@nestia/sdk/lib/generates/internal/SdkWebSocketParameterProgrammer.d.ts": "import ts from \"typescript\";\nimport { INestiaProject } from \"../../structures/INestiaProject\";\nimport { ITypedWebSocketRoute } from \"../../structures/ITypedWebSocketRoute\";\nexport declare namespace SdkWebSocketParameterProgrammer {\n interface IEntry {\n key: string;\n type: ts.TypeNode;\n }\n const getEntries: (props: {\n project: INestiaProject;\n route: ITypedWebSocketRoute;\n provider: boolean;\n prefix: boolean;\n }) => IEntry[];\n const getParameterDeclarations: (props: {\n project: INestiaProject;\n route: ITypedWebSocketRoute;\n provider: boolean;\n prefix: boolean;\n }) => ts.ParameterDeclaration[];\n const isPathEmpty: (route: ITypedWebSocketRoute) => boolean;\n}\n",
|
|
11768
|
+
"node_modules/@nestia/sdk/lib/generates/internal/SdkWebSocketRouteProgrammer.d.ts": "import ts from \"typescript\";\nimport { INestiaProject } from \"../../structures/INestiaProject\";\nimport { ITypedWebSocketRoute } from \"../../structures/ITypedWebSocketRoute\";\nimport { ImportDictionary } from \"./ImportDictionary\";\nexport declare namespace SdkWebSocketRouteProgrammer {\n const write: (project: INestiaProject) => (importer: ImportDictionary) => (route: ITypedWebSocketRoute) => ts.Statement[];\n}\n",
|
|
11767
11769
|
"node_modules/@nestia/sdk/lib/generates/internal/SwaggerDescriptionComposer.d.ts": "import { IJsDocTagInfo } from \"typia\";\nexport declare namespace SwaggerDescriptionComposer {\n const compose: <Kind extends \"summary\" | \"title\">(props: {\n description: string | null;\n jsDocTags: IJsDocTagInfo[];\n kind: Kind;\n }) => Kind extends \"summary\" ? {\n summary?: string;\n description?: string;\n } : {\n title?: string;\n description?: string;\n };\n const descriptionFromJsDocTag: (props: {\n jsDocTags: IJsDocTagInfo[];\n tag: string;\n parameter?: string;\n }) => string | undefined;\n const getJsDocTexts: (props: {\n jsDocTags: IJsDocTagInfo[];\n name: string;\n }) => string[];\n}\n",
|
|
11768
11770
|
"node_modules/@nestia/sdk/lib/generates/internal/SwaggerOperationComposer.d.ts": "import { OpenApi } from \"@samchon/openapi\";\nimport { Metadata } from \"typia/lib/schemas/metadata/Metadata\";\nimport { INestiaConfig } from \"../../INestiaConfig\";\nimport { ITypedHttpRoute } from \"../../structures/ITypedHttpRoute\";\nexport declare namespace SwaggerOperationComposer {\n const compose: (props: {\n config: Omit<INestiaConfig.ISwaggerConfig, \"output\">;\n document: OpenApi.IDocument;\n schema: (metadata: Metadata) => OpenApi.IJsonSchema | undefined;\n route: ITypedHttpRoute;\n }) => OpenApi.IOperation;\n}\n",
|
|
11769
|
-
"node_modules/@nestia/sdk/lib/generates/internal/SwaggerOperationParameterComposer.d.ts": "import { OpenApi } from \"@samchon/openapi\";\nimport { IJsDocTagInfo } from \"typia\";\nimport { INestiaConfig } from \"../../INestiaConfig\";\nimport { ITypedHttpRouteParameter } from \"../../structures/ITypedHttpRouteParameter\";\nexport declare namespace SwaggerOperationParameterComposer {\n interface IProps<Parameter extends ITypedHttpRouteParameter> {\n config: Omit<INestiaConfig.ISwaggerConfig, \"output\">;\n document: OpenApi.IDocument;\n schema: OpenApi.IJsonSchema;\n jsDocTags: IJsDocTagInfo[];\n parameter: Parameter;\n }\n const compose: (props: IProps<ITypedHttpRouteParameter>) => OpenApi.IOperation.IParameter[];\n const body: (props: Omit<IProps<ITypedHttpRouteParameter.IBody>, \"config\" | \"document\">) => OpenApi.IOperation.IRequestBody;\n const path: (props: Omit<IProps<ITypedHttpRouteParameter.
|
|
11771
|
+
"node_modules/@nestia/sdk/lib/generates/internal/SwaggerOperationParameterComposer.d.ts": "import { OpenApi } from \"@samchon/openapi\";\nimport { IJsDocTagInfo } from \"typia\";\nimport { INestiaConfig } from \"../../INestiaConfig\";\nimport { ITypedHttpRouteParameter } from \"../../structures/ITypedHttpRouteParameter\";\nexport declare namespace SwaggerOperationParameterComposer {\n interface IProps<Parameter extends ITypedHttpRouteParameter> {\n config: Omit<INestiaConfig.ISwaggerConfig, \"output\">;\n document: OpenApi.IDocument;\n schema: OpenApi.IJsonSchema;\n jsDocTags: IJsDocTagInfo[];\n parameter: Parameter;\n }\n const compose: (props: IProps<ITypedHttpRouteParameter>) => OpenApi.IOperation.IParameter[];\n const body: (props: Omit<IProps<ITypedHttpRouteParameter.IBody>, \"config\" | \"document\">) => OpenApi.IOperation.IRequestBody;\n const path: (props: Omit<IProps<ITypedHttpRouteParameter.IPath>, \"config\" | \"document\">) => OpenApi.IOperation.IParameter;\n const query: (props: IProps<ITypedHttpRouteParameter.IQuery>) => OpenApi.IOperation.IParameter[];\n const header: (props: IProps<ITypedHttpRouteParameter.IHeaders>) => OpenApi.IOperation.IParameter[];\n}\n",
|
|
11770
11772
|
"node_modules/@nestia/sdk/lib/generates/internal/SwaggerOperationResponseComposer.d.ts": "import { OpenApi } from \"@samchon/openapi\";\nimport { Metadata } from \"typia/lib/schemas/metadata/Metadata\";\nimport { ITypedHttpRoute } from \"../../structures/ITypedHttpRoute\";\nexport declare namespace SwaggerOperationResponseComposer {\n const compose: (props: {\n schema: (metadata: Metadata) => OpenApi.IJsonSchema | undefined;\n route: ITypedHttpRoute;\n }) => Record<string, OpenApi.IOperation.IResponse>;\n}\n",
|
|
11771
11773
|
"node_modules/@nestia/sdk/lib/index.d.ts": "import * as nestia from \"./module\";\nexport * from \"./module\";\nexport default nestia;\n",
|
|
11772
11774
|
"node_modules/@nestia/sdk/lib/module.d.ts": "export * from \"./INestiaConfig\";\nexport * from \"./NestiaSdkApplication\";\nexport * from \"./NestiaSwaggerComposer\";\n",
|
|
@@ -11784,11 +11786,11 @@
|
|
|
11784
11786
|
"node_modules/@nestia/sdk/lib/structures/IReflectWebSocketOperation.d.ts": "import { VERSION_NEUTRAL } from \"@nestjs/common\";\nimport ts from \"typescript\";\nimport { IReflectTypeImport } from \"./IReflectTypeImport\";\nimport { IReflectWebSocketOperationParameter } from \"./IReflectWebSocketOperationParameter\";\nexport interface IReflectWebSocketOperation {\n protocol: \"websocket\";\n name: string;\n paths: string[];\n function: Function;\n versions: Array<string | typeof VERSION_NEUTRAL> | undefined;\n parameters: IReflectWebSocketOperationParameter[];\n imports: IReflectTypeImport[];\n description: string | null;\n jsDocTags: ts.JSDocTagInfo[];\n}\n",
|
|
11785
11787
|
"node_modules/@nestia/sdk/lib/structures/IReflectWebSocketOperationParameter.d.ts": "import { IJsDocTagInfo } from \"typia\";\nimport { IReflectType } from \"./IReflectType\";\nimport { IReflectTypeImport } from \"./IReflectTypeImport\";\nexport type IReflectWebSocketOperationParameter = IReflectWebSocketOperationParameter.IAcceptor | IReflectWebSocketOperationParameter.IDriver | IReflectWebSocketOperationParameter.IHeader | IReflectWebSocketOperationParameter.IParam | IReflectWebSocketOperationParameter.IQuery;\nexport declare namespace IReflectWebSocketOperationParameter {\n export type IAcceptor = IBase<\"acceptor\">;\n export type IDriver = IBase<\"driver\">;\n export type IHeader = IBase<\"header\">;\n export type IQuery = IBase<\"query\">;\n export interface IParam extends IBase<\"param\"> {\n field: string;\n }\n interface IBase<Category extends string> {\n category: Category;\n name: string;\n index: number;\n type: IReflectType;\n imports: IReflectTypeImport[];\n description: string | null;\n jsDocTags: IJsDocTagInfo[];\n }\n export {};\n}\n",
|
|
11786
11788
|
"node_modules/@nestia/sdk/lib/structures/ITypedApplication.d.ts": "import { IMetadataDictionary } from \"typia/lib/schemas/metadata/IMetadataDictionary\";\nimport { INestiaProject } from \"./INestiaProject\";\nimport { ITypedHttpRoute } from \"./ITypedHttpRoute\";\nimport { ITypedWebSocketRoute } from \"./ITypedWebSocketRoute\";\nexport interface ITypedApplication {\n project: INestiaProject;\n collection: IMetadataDictionary;\n routes: Array<ITypedHttpRoute | ITypedWebSocketRoute>;\n}\n",
|
|
11787
|
-
"node_modules/@nestia/sdk/lib/structures/ITypedHttpRoute.d.ts": "import { IJsDocTagInfo } from \"typia\";\nimport { IReflectController } from \"./IReflectController\";\nimport { IReflectTypeImport } from \"./IReflectTypeImport\";\nimport { ITypedHttpRouteException } from \"./ITypedHttpRouteException\";\nimport { ITypedHttpRouteParameter } from \"./ITypedHttpRouteParameter\";\nimport { ITypedHttpRouteSuccess } from \"./ITypedHttpRouteSuccess\";\nexport interface ITypedHttpRoute {\n protocol: \"http\";\n function: Function;\n controller: IReflectController;\n name: string;\n method: string;\n path: string;\n accessor: string[];\n
|
|
11789
|
+
"node_modules/@nestia/sdk/lib/structures/ITypedHttpRoute.d.ts": "import { IJsDocTagInfo } from \"typia\";\nimport { IReflectController } from \"./IReflectController\";\nimport { IReflectTypeImport } from \"./IReflectTypeImport\";\nimport { ITypedHttpRouteException } from \"./ITypedHttpRouteException\";\nimport { ITypedHttpRouteParameter } from \"./ITypedHttpRouteParameter\";\nimport { ITypedHttpRouteSuccess } from \"./ITypedHttpRouteSuccess\";\nexport interface ITypedHttpRoute {\n protocol: \"http\";\n function: Function;\n controller: IReflectController;\n name: string;\n method: string;\n path: string;\n accessor: string[];\n pathParameters: ITypedHttpRouteParameter.IPath[];\n queryParameters: ITypedHttpRouteParameter.IQuery[];\n headerParameters: ITypedHttpRouteParameter.IHeaders[];\n queryObject: ITypedHttpRouteParameter.IQuery | null;\n headerObject: ITypedHttpRouteParameter.IHeaders | null;\n body: ITypedHttpRouteParameter.IBody | null;\n success: ITypedHttpRouteSuccess;\n exceptions: Record<number | \"2XX\" | \"3XX\" | \"4XX\" | \"5XX\", ITypedHttpRouteException>;\n security: Record<string, string[]>[];\n tags: string[];\n imports: IReflectTypeImport[];\n description: string | null;\n jsDocTags: IJsDocTagInfo[];\n operationId: string | undefined;\n extensions?: Record<string, any>;\n}\n",
|
|
11788
11790
|
"node_modules/@nestia/sdk/lib/structures/ITypedHttpRouteException.d.ts": "import { Metadata } from \"typia/lib/schemas/metadata/Metadata\";\nimport { IReflectType } from \"./IReflectType\";\nexport interface ITypedHttpRouteException {\n status: number | \"2XX\" | \"3XX\" | \"4XX\" | \"5XX\";\n description: string | null;\n example: any;\n examples: Record<string, any>;\n type: IReflectType;\n metadata: Metadata;\n}\n",
|
|
11789
|
-
"node_modules/@nestia/sdk/lib/structures/ITypedHttpRouteParameter.d.ts": "import { IJsDocTagInfo } from \"typia\";\nimport { Metadata } from \"typia/lib/schemas/metadata/Metadata\";\nimport { IReflectType } from \"./IReflectType\";\nexport type ITypedHttpRouteParameter = ITypedHttpRouteParameter.IBody | ITypedHttpRouteParameter.IHeaders | ITypedHttpRouteParameter.
|
|
11791
|
+
"node_modules/@nestia/sdk/lib/structures/ITypedHttpRouteParameter.d.ts": "import { IJsDocTagInfo } from \"typia\";\nimport { Metadata } from \"typia/lib/schemas/metadata/Metadata\";\nimport { IReflectType } from \"./IReflectType\";\nexport type ITypedHttpRouteParameter = ITypedHttpRouteParameter.IBody | ITypedHttpRouteParameter.IHeaders | ITypedHttpRouteParameter.IPath | ITypedHttpRouteParameter.IQuery;\nexport declare namespace ITypedHttpRouteParameter {\n export interface IBody extends IBase<\"body\"> {\n contentType: \"application/json\" | \"application/x-www-form-urlencoded\" | \"multipart/form-data\" | \"text/plain\";\n encrypted: boolean;\n }\n export interface IHeaders extends IBase<\"headers\"> {\n field: string | null;\n }\n export interface IPath extends IBase<\"param\"> {\n field: string;\n }\n export interface IQuery extends IBase<\"query\"> {\n field: string | null;\n }\n interface IBase<Category extends string> {\n category: Category;\n name: string;\n index: number;\n type: IReflectType;\n metadata: Metadata;\n example?: any;\n examples?: Record<string, any>;\n description: string | null;\n jsDocTags: IJsDocTagInfo[];\n }\n export {};\n}\n",
|
|
11790
11792
|
"node_modules/@nestia/sdk/lib/structures/ITypedHttpRouteSuccess.d.ts": "import { Metadata } from \"typia/lib/schemas/metadata/Metadata\";\nimport { IReflectType } from \"./IReflectType\";\nexport interface ITypedHttpRouteSuccess {\n type: IReflectType;\n status: number | null;\n contentType: \"application/json\" | \"text/plain\" | \"application/x-www-form-urlencoded\" | \"application/json\" | null;\n encrypted: boolean;\n metadata: Metadata;\n example?: any;\n examples?: Record<string, any>;\n setHeaders: Array<{\n type: \"setter\";\n source: string;\n target?: string;\n } | {\n type: \"assigner\";\n source: string;\n }>;\n}\n",
|
|
11791
|
-
"node_modules/@nestia/sdk/lib/structures/ITypedWebSocketRoute.d.ts": "import { VERSION_NEUTRAL } from \"@nestjs/common\";\nimport ts from \"typescript\";\nimport { IReflectController } from \"./IReflectController\";\nimport { IReflectTypeImport } from \"./IReflectTypeImport\";\nimport { ITypedWebSocketRouteParameter } from \"./ITypedWebSocketRouteParameter\";\nexport interface ITypedWebSocketRoute {\n protocol: \"websocket\";\n controller: IReflectController;\n name: string;\n path: string;\n accessor: string[];\n function: Function;\n versions: Array<string | typeof VERSION_NEUTRAL> | undefined;\n
|
|
11793
|
+
"node_modules/@nestia/sdk/lib/structures/ITypedWebSocketRoute.d.ts": "import { VERSION_NEUTRAL } from \"@nestjs/common\";\nimport ts from \"typescript\";\nimport { IReflectController } from \"./IReflectController\";\nimport { IReflectTypeImport } from \"./IReflectTypeImport\";\nimport { ITypedWebSocketRouteParameter } from \"./ITypedWebSocketRouteParameter\";\nexport interface ITypedWebSocketRoute {\n protocol: \"websocket\";\n controller: IReflectController;\n name: string;\n path: string;\n accessor: string[];\n function: Function;\n versions: Array<string | typeof VERSION_NEUTRAL> | undefined;\n acceptor: ITypedWebSocketRouteParameter.IAcceptor;\n header: ITypedWebSocketRouteParameter.IHeader | null;\n pathParameters: ITypedWebSocketRouteParameter.IParam[];\n query: ITypedWebSocketRouteParameter.IQuery | null;\n driver: ITypedWebSocketRouteParameter.IDriver | null;\n imports: IReflectTypeImport[];\n description: string | null;\n jsDocTags: ts.JSDocTagInfo[];\n}\n",
|
|
11792
11794
|
"node_modules/@nestia/sdk/lib/structures/ITypedWebSocketRouteParameter.d.ts": "import { IReflectWebSocketOperationParameter } from \"./IReflectWebSocketOperationParameter\";\nexport import ITypedWebSocketRouteParameter = IReflectWebSocketOperationParameter;\n",
|
|
11793
11795
|
"node_modules/@nestia/sdk/lib/structures/MethodType.d.ts": "export type MethodType = \"GET\" | \"POST\" | \"PUT\" | \"PATCH\" | \"DELETE\";\nexport declare namespace MethodType {\n const VALUES: MethodType[];\n}\n",
|
|
11794
11796
|
"node_modules/@nestia/sdk/lib/structures/ParamCategory.d.ts": "export type ParamCategory = \"param\" | \"query\" | \"body\" | \"rawBody\" | \"headers\";\n",
|
|
@@ -11799,7 +11801,7 @@
|
|
|
11799
11801
|
"node_modules/@nestia/sdk/lib/transformers/SdkOperationProgrammer.d.ts": "import ts from \"typescript\";\nimport { IOperationMetadata } from \"./IOperationMetadata\";\nimport { ISdkOperationTransformerContext } from \"./ISdkOperationTransformerContext\";\nexport declare namespace SdkOperationProgrammer {\n interface IProps {\n context: ISdkOperationTransformerContext;\n generics: WeakMap<ts.Type, ts.Type>;\n node: ts.MethodDeclaration;\n symbol: ts.Symbol | undefined;\n exceptions: ts.TypeNode[];\n }\n const write: (p: IProps) => IOperationMetadata;\n}\n",
|
|
11800
11802
|
"node_modules/@nestia/sdk/lib/transformers/SdkOperationTransformer.d.ts": "import ts from \"typescript\";\nexport declare namespace SdkOperationTransformer {\n const iterateFile: (checker: ts.TypeChecker) => (api: ts.TransformationContext) => (file: ts.SourceFile) => ts.SourceFile;\n}\n",
|
|
11801
11803
|
"node_modules/@nestia/sdk/lib/transformers/TextPlainValidator.d.ts": "import { Metadata } from \"typia/lib/schemas/metadata/Metadata\";\nexport declare namespace TextPlainValidator {\n const validate: (metadata: Metadata) => string[];\n}\n",
|
|
11802
|
-
"node_modules/@nestia/sdk/lib/utils/ArrayUtil.d.ts": "export declare namespace ArrayUtil {\n function has<T>(array: T[], ...items: T[]): boolean;\n function asyncMap<
|
|
11804
|
+
"node_modules/@nestia/sdk/lib/utils/ArrayUtil.d.ts": "export declare namespace ArrayUtil {\n function has<T>(array: T[], ...items: T[]): boolean;\n function asyncMap<X, Y>(array: X[], closure: (input: X) => Promise<Y>): Promise<Y[]>;\n function asyncFilter<T>(array: T[], closure: (input: T) => Promise<boolean>): Promise<T[]>;\n}\n",
|
|
11803
11805
|
"node_modules/@nestia/sdk/lib/utils/FileRetriever.d.ts": "export declare namespace FileRetriever {\n const directory: (name: string) => (dir: string, depth?: number) => string | null;\n const file: (name: string) => (directory: string, depth?: number) => string | null;\n}\n",
|
|
11804
11806
|
"node_modules/@nestia/sdk/lib/utils/MapUtil.d.ts": "export declare namespace MapUtil {\n function take<Key, T>(dict: Map<Key, T>, key: Key, generator: () => T): T;\n}\n",
|
|
11805
11807
|
"node_modules/@nestia/sdk/lib/utils/MetadataUtil.d.ts": "import { Metadata } from \"typia/lib/schemas/metadata/Metadata\";\nexport declare namespace MetadataUtil {\n const visit: (closure: (m: Metadata) => unknown) => (metadata: Metadata) => void;\n}\n",
|
|
@@ -11813,7 +11815,7 @@
|
|
|
11813
11815
|
"node_modules/@nestia/sdk/lib/validators/HttpQueryValidator.d.ts": "import { MetadataFactory } from \"typia/lib/factories/MetadataFactory\";\nimport { Metadata } from \"typia/lib/schemas/metadata/Metadata\";\nexport declare namespace HttpQueryValidator {\n const validate: (meta: Metadata, explore: MetadataFactory.IExplore) => string[];\n}\n",
|
|
11814
11816
|
"node_modules/path-to-regexp/dist/index.d.ts": "/**\n * Encode a string into another string.\n */\nexport type Encode = (value: string) => string;\n/**\n * Decode a string into another string.\n */\nexport type Decode = (value: string) => string;\nexport interface ParseOptions {\n /**\n * A function for encoding input strings.\n */\n encodePath?: Encode;\n}\nexport interface PathToRegexpOptions {\n /**\n * Matches the path completely without trailing characters. (default: `true`)\n */\n end?: boolean;\n /**\n * Allows optional trailing delimiter to match. (default: `true`)\n */\n trailing?: boolean;\n /**\n * Match will be case sensitive. (default: `false`)\n */\n sensitive?: boolean;\n /**\n * The default delimiter for segments. (default: `'/'`)\n */\n delimiter?: string;\n}\nexport interface MatchOptions extends PathToRegexpOptions {\n /**\n * Function for decoding strings for params, or `false` to disable entirely. (default: `decodeURIComponent`)\n */\n decode?: Decode | false;\n}\nexport interface CompileOptions {\n /**\n * Function for encoding input strings for output into the path, or `false` to disable entirely. (default: `encodeURIComponent`)\n */\n encode?: Encode | false;\n /**\n * The default delimiter for segments. (default: `'/'`)\n */\n delimiter?: string;\n}\n/**\n * Plain text.\n */\nexport interface Text {\n type: \"text\";\n value: string;\n}\n/**\n * A parameter designed to match arbitrary text within a segment.\n */\nexport interface Parameter {\n type: \"param\";\n name: string;\n}\n/**\n * A wildcard parameter designed to match multiple segments.\n */\nexport interface Wildcard {\n type: \"wildcard\";\n name: string;\n}\n/**\n * A set of possible tokens to expand when matching.\n */\nexport interface Group {\n type: \"group\";\n tokens: Token[];\n}\n/**\n * A token that corresponds with a regexp capture.\n */\nexport type Key = Parameter | Wildcard;\n/**\n * A sequence of `path-to-regexp` keys that match capturing groups.\n */\nexport type Keys = Array<Key>;\n/**\n * A sequence of path match characters.\n */\nexport type Token = Text | Parameter | Wildcard | Group;\n/**\n * Tokenized path instance.\n */\nexport declare class TokenData {\n readonly tokens: Token[];\n constructor(tokens: Token[]);\n}\n/**\n * Parse a string for the raw tokens.\n */\nexport declare function parse(str: string, options?: ParseOptions): TokenData;\n/**\n * Compile a string to a template function for the path.\n */\nexport declare function compile<P extends ParamData = ParamData>(path: Path, options?: CompileOptions & ParseOptions): (data?: P) => string;\nexport type ParamData = Partial<Record<string, string | string[]>>;\nexport type PathFunction<P extends ParamData> = (data?: P) => string;\n/**\n * A match result contains data about the path match.\n */\nexport interface MatchResult<P extends ParamData> {\n path: string;\n params: P;\n}\n/**\n * A match is either `false` (no match) or a match result.\n */\nexport type Match<P extends ParamData> = false | MatchResult<P>;\n/**\n * The match function takes a string and returns whether it matched the path.\n */\nexport type MatchFunction<P extends ParamData> = (path: string) => Match<P>;\n/**\n * Supported path types.\n */\nexport type Path = string | TokenData;\n/**\n * Transform a path into a match function.\n */\nexport declare function match<P extends ParamData>(path: Path | Path[], options?: MatchOptions & ParseOptions): MatchFunction<P>;\nexport declare function pathToRegexp(path: Path | Path[], options?: PathToRegexpOptions & ParseOptions): {\n regexp: RegExp;\n keys: Keys;\n};\n/**\n * Stringify token data into a path string.\n */\nexport declare function stringify(data: TokenData): string;\n",
|
|
11815
11817
|
"node_modules/path-to-regexp/package.json": "{\n \"name\": \"path-to-regexp\",\n \"version\": \"8.2.0\",\n \"description\": \"Express style path to RegExp utility\",\n \"keywords\": [\n \"express\",\n \"regexp\",\n \"route\",\n \"routing\"\n ],\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/pillarjs/path-to-regexp.git\"\n },\n \"license\": \"MIT\",\n \"exports\": \"./dist/index.js\",\n \"main\": \"dist/index.js\",\n \"typings\": \"dist/index.d.ts\",\n \"files\": [\n \"dist/\"\n ],\n \"scripts\": {\n \"bench\": \"vitest bench\",\n \"build\": \"ts-scripts build\",\n \"format\": \"ts-scripts format\",\n \"lint\": \"ts-scripts lint\",\n \"prepare\": \"ts-scripts install && npm run build\",\n \"size\": \"size-limit\",\n \"specs\": \"ts-scripts specs\",\n \"test\": \"ts-scripts test && npm run size\"\n },\n \"devDependencies\": {\n \"@borderless/ts-scripts\": \"^0.15.0\",\n \"@size-limit/preset-small-lib\": \"^11.1.2\",\n \"@types/node\": \"^22.7.2\",\n \"@types/semver\": \"^7.3.1\",\n \"@vitest/coverage-v8\": \"^2.1.1\",\n \"recheck\": \"^4.4.5\",\n \"size-limit\": \"^11.1.2\",\n \"typescript\": \"^5.5.3\"\n },\n \"engines\": {\n \"node\": \">=16\"\n },\n \"publishConfig\": {\n \"access\": \"public\"\n },\n \"size-limit\": [\n {\n \"path\": \"dist/index.js\",\n \"limit\": \"2.2 kB\"\n }\n ],\n \"ts-scripts\": {\n \"dist\": [\n \"dist\"\n ],\n \"project\": [\n \"tsconfig.build.json\"\n ]\n }\n}\n",
|
|
11816
|
-
"node_modules/@nestia/sdk/package.json": "{\n \"name\": \"@nestia/sdk\",\n \"version\": \"
|
|
11818
|
+
"node_modules/@nestia/sdk/package.json": "{\n \"name\": \"@nestia/sdk\",\n \"version\": \"7.0.0\",\n \"description\": \"Nestia SDK and Swagger generator\",\n \"main\": \"lib/index.js\",\n \"typings\": \"lib/index.d.ts\",\n \"bin\": {\n \"@nestia/sdk\": \"lib/executable/sdk.js\"\n },\n \"scripts\": {\n \"build\": \"rimraf lib && tsc\",\n \"dev\": \"tsc -p tsconfig.test.json --watch\",\n \"eslint\": \"eslint ./**/*.ts\",\n \"prepare\": \"ts-patch install && typia patch\"\n },\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/samchon/nestia\"\n },\n \"keywords\": [\n \"nestia\",\n \"sdk\",\n \"swagger\",\n \"generator\",\n \"nestjs\",\n \"typia\"\n ],\n \"author\": \"Jeongho Nam\",\n \"license\": \"MIT\",\n \"bugs\": {\n \"url\": \"https://github.com/samchon/nestia/issues\"\n },\n \"homepage\": \"https://nestia.io\",\n \"dependencies\": {\n \"@nestia/core\": \"^7.0.0\",\n \"@nestia/fetcher\": \"^7.0.0\",\n \"@samchon/openapi\": \"^4.3.3\",\n \"cli\": \"^1.0.1\",\n \"get-function-location\": \"^2.0.0\",\n \"glob\": \"^7.2.0\",\n \"path-to-regexp\": \"^6.2.1\",\n \"prettier\": \"^3.2.5\",\n \"ts-node\": \">=10.6.0\",\n \"tsconfck\": \"^2.1.2\",\n \"tsconfig-paths\": \"^4.1.1\",\n \"tstl\": \"^3.0.0\",\n \"typia\": \"^9.3.1\"\n },\n \"peerDependencies\": {\n \"@nestia/core\": \">=7.0.0\",\n \"@nestia/fetcher\": \">=7.0.0\",\n \"@nestjs/common\": \">=7.0.1\",\n \"@nestjs/core\": \">=7.0.1\",\n \"reflect-metadata\": \">=0.1.12\",\n \"ts-node\": \">=10.6.0\"\n },\n \"devDependencies\": {\n \"@nestjs/common\": \"^11.0.13\",\n \"@nestjs/core\": \"^11.0.13\",\n \"@trivago/prettier-plugin-sort-imports\": \"^4.3.0\",\n \"@types/cli\": \"^0.11.21\",\n \"@types/express\": \"^4.17.15\",\n \"@types/glob\": \"^7.2.0\",\n \"@types/node\": \"^18.11.15\",\n \"@types/ts-expose-internals\": \"npm:ts-expose-internals@5.4.5\",\n \"@typescript-eslint/eslint-plugin\": \"^5.46.1\",\n \"@typescript-eslint/parser\": \"^5.46.1\",\n \"eslint\": \"^8.29.0\",\n \"eslint-plugin-deprecation\": \"^1.4.1\",\n \"rimraf\": \"^6.0.1\",\n \"tgrid\": \"^1.1.0\",\n \"ts-patch\": \"^3.3.0\",\n \"typescript\": \"~5.8.3\",\n \"typescript-transform-paths\": \"^3.4.4\"\n },\n \"files\": [\n \"assets\",\n \"lib\",\n \"src\",\n \"README.md\",\n \"LICENSE\",\n \"package.json\"\n ]\n}",
|
|
11817
11819
|
"node_modules/@nestia/sdk/src/typings/get-function-location.d.ts": "declare module \"get-function-location\" {\n export default function (func: any): Promise<{\n source: string;\n line: number;\n column: number;\n }>;\n}\n",
|
|
11818
11820
|
"node_modules/@nestia/sdk/node_modules/path-to-regexp/dist/index.d.ts": "export interface ParseOptions {\n /**\n * Set the default delimiter for repeat parameters. (default: `'/'`)\n */\n delimiter?: string;\n /**\n * List of characters to automatically consider prefixes when parsing.\n */\n prefixes?: string;\n}\n/**\n * Parse a string for the raw tokens.\n */\nexport declare function parse(str: string, options?: ParseOptions): Token[];\nexport interface TokensToFunctionOptions {\n /**\n * When `true` the regexp will be case sensitive. (default: `false`)\n */\n sensitive?: boolean;\n /**\n * Function for encoding input strings for output.\n */\n encode?: (value: string, token: Key) => string;\n /**\n * When `false` the function can produce an invalid (unmatched) path. (default: `true`)\n */\n validate?: boolean;\n}\n/**\n * Compile a string to a template function for the path.\n */\nexport declare function compile<P extends object = object>(str: string, options?: ParseOptions & TokensToFunctionOptions): PathFunction<P>;\nexport type PathFunction<P extends object = object> = (data?: P) => string;\n/**\n * Expose a method for transforming tokens into the path function.\n */\nexport declare function tokensToFunction<P extends object = object>(tokens: Token[], options?: TokensToFunctionOptions): PathFunction<P>;\nexport interface RegexpToFunctionOptions {\n /**\n * Function for decoding strings for params.\n */\n decode?: (value: string, token: Key) => string;\n}\n/**\n * A match result contains data about the path match.\n */\nexport interface MatchResult<P extends object = object> {\n path: string;\n index: number;\n params: P;\n}\n/**\n * A match is either `false` (no match) or a match result.\n */\nexport type Match<P extends object = object> = false | MatchResult<P>;\n/**\n * The match function takes a string and returns whether it matched the path.\n */\nexport type MatchFunction<P extends object = object> = (path: string) => Match<P>;\n/**\n * Create path match function from `path-to-regexp` spec.\n */\nexport declare function match<P extends object = object>(str: Path, options?: ParseOptions & TokensToRegexpOptions & RegexpToFunctionOptions): MatchFunction<P>;\n/**\n * Create a path match function from `path-to-regexp` output.\n */\nexport declare function regexpToFunction<P extends object = object>(re: RegExp, keys: Key[], options?: RegexpToFunctionOptions): MatchFunction<P>;\n/**\n * Metadata about a key.\n */\nexport interface Key {\n name: string | number;\n prefix: string;\n suffix: string;\n pattern: string;\n modifier: string;\n}\n/**\n * A token is a string (nothing special) or key metadata (capture group).\n */\nexport type Token = string | Key;\nexport interface TokensToRegexpOptions {\n /**\n * When `true` the regexp will be case sensitive. (default: `false`)\n */\n sensitive?: boolean;\n /**\n * When `true` the regexp won't allow an optional trailing delimiter to match. (default: `false`)\n */\n strict?: boolean;\n /**\n * When `true` the regexp will match to the end of the string. (default: `true`)\n */\n end?: boolean;\n /**\n * When `true` the regexp will match from the beginning of the string. (default: `true`)\n */\n start?: boolean;\n /**\n * Sets the final character for non-ending optimistic matches. (default: `/`)\n */\n delimiter?: string;\n /**\n * List of characters that can also be \"end\" characters.\n */\n endsWith?: string;\n /**\n * Encode path tokens for use in the `RegExp`.\n */\n encode?: (value: string) => string;\n}\n/**\n * Expose a function for taking tokens and returning a RegExp.\n */\nexport declare function tokensToRegexp(tokens: Token[], keys?: Key[], options?: TokensToRegexpOptions): RegExp;\n/**\n * Supported `path-to-regexp` input types.\n */\nexport type Path = string | RegExp | Array<string | RegExp>;\n/**\n * Normalize the given path string, returning a regular expression.\n *\n * An empty array can be passed in for the keys, which will hold the\n * placeholder key descriptions. For example, using `/user/:id`, `keys` will\n * contain `[{ name: 'id', delimiter: '/', optional: false, repeat: false }]`.\n */\nexport declare function pathToRegexp(path: Path, keys?: Key[], options?: TokensToRegexpOptions & ParseOptions): RegExp;\n",
|
|
11819
11821
|
"node_modules/@nestia/sdk/node_modules/path-to-regexp/package.json": "{\n \"name\": \"path-to-regexp\",\n \"version\": \"6.3.0\",\n \"description\": \"Express style path to RegExp utility\",\n \"keywords\": [\n \"express\",\n \"regexp\",\n \"route\",\n \"routing\"\n ],\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/pillarjs/path-to-regexp.git\"\n },\n \"license\": \"MIT\",\n \"sideEffects\": false,\n \"main\": \"dist/index.js\",\n \"module\": \"dist.es2015/index.js\",\n \"typings\": \"dist/index.d.ts\",\n \"files\": [\n \"dist.es2015/\",\n \"dist/\"\n ],\n \"scripts\": {\n \"build\": \"ts-scripts build\",\n \"format\": \"ts-scripts format\",\n \"lint\": \"ts-scripts lint\",\n \"prepare\": \"ts-scripts install && npm run build\",\n \"size\": \"size-limit\",\n \"specs\": \"ts-scripts specs\",\n \"test\": \"ts-scripts test && npm run size\"\n },\n \"devDependencies\": {\n \"@borderless/ts-scripts\": \"^0.15.0\",\n \"@size-limit/preset-small-lib\": \"^11.1.2\",\n \"@types/node\": \"^20.4.9\",\n \"@types/semver\": \"^7.3.1\",\n \"@vitest/coverage-v8\": \"^1.4.0\",\n \"recheck\": \"^4.4.5\",\n \"semver\": \"^7.3.5\",\n \"size-limit\": \"^11.1.2\",\n \"typescript\": \"^5.1.6\"\n },\n \"publishConfig\": {\n \"access\": \"public\"\n },\n \"size-limit\": [\n {\n \"path\": \"dist.es2015/index.js\",\n \"limit\": \"2.1 kB\"\n }\n ],\n \"ts-scripts\": {\n \"dist\": [\n \"dist\",\n \"dist.es2015\"\n ],\n \"project\": [\n \"tsconfig.build.json\",\n \"tsconfig.es2015.json\"\n ]\n }\n}\n",
|
|
@@ -12554,7 +12556,7 @@
|
|
|
12554
12556
|
"node_modules/@samchon/openapi/lib/utils/internal/OpenApiStringValidator.d.ts": "import { OpenApi } from \"../../OpenApi\";\nimport { IOpenApiValidatorContext } from \"./IOpenApiValidatorContext\";\nexport declare namespace OpenApiStringValidator {\n const validate: (ctx: IOpenApiValidatorContext<OpenApi.IJsonSchema.IString>) => boolean;\n}\n",
|
|
12555
12557
|
"node_modules/@samchon/openapi/lib/utils/internal/OpenApiTupleValidator.d.ts": "import { OpenApi } from \"../../OpenApi\";\nimport { IOpenApiValidatorContext } from \"./IOpenApiValidatorContext\";\nexport declare namespace OpenApiTupleValidator {\n const validate: (ctx: IOpenApiValidatorContext<OpenApi.IJsonSchema.ITuple>) => boolean;\n}\n",
|
|
12556
12558
|
"node_modules/@samchon/openapi/lib/utils/internal/OpenApiTypeCheckerBase.d.ts": "export {};\n",
|
|
12557
|
-
"node_modules/@samchon/openapi/package.json": "{\n \"name\": \"@samchon/openapi\",\n \"version\": \"4.3.
|
|
12559
|
+
"node_modules/@samchon/openapi/package.json": "{\n \"name\": \"@samchon/openapi\",\n \"version\": \"4.3.3\",\n \"description\": \"OpenAPI definitions and converters for 'typia' and 'nestia'.\",\n \"main\": \"./lib/index.js\",\n \"module\": \"./lib/index.mjs\",\n \"typings\": \"./lib/index.d.ts\",\n \"scripts\": {\n \"prepare\": \"ts-patch install\",\n \"build\": \"rimraf lib && tsc && rollup -c && ts-node build/post.ts\",\n \"dev\": \"rimraf lib && tsc --watch\",\n \"typedoc\": \"typedoc --plugin typedoc-github-theme --theme typedoc-github-theme\"\n },\n \"keywords\": [\n \"swagger\",\n \"openapi\",\n \"openapi-generator\",\n \"openapi-validator\",\n \"converter\",\n \"migrate\",\n \"typia\",\n \"nestia\",\n \"llm\",\n \"llm-function-calling\",\n \"structured-output\",\n \"openai\",\n \"chatgpt\",\n \"claude\",\n \"gemini\",\n \"llama\"\n ],\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/samchon/openapi\"\n },\n \"author\": \"Jeongho Nam\",\n \"license\": \"MIT\",\n \"bugs\": {\n \"url\": \"https://github.com/samchon/openapi/issues\"\n },\n \"homepage\": \"https://samchon.github.io/openapi/api\",\n \"devDependencies\": {\n \"@modelcontextprotocol/sdk\": \"^1.11.4\",\n \"@rollup/plugin-terser\": \"^0.4.4\",\n \"@rollup/plugin-typescript\": \"^12.1.2\",\n \"@trivago/prettier-plugin-sort-imports\": \"^5.2.2\",\n \"@types/node\": \"^20.12.7\",\n \"gh-pages\": \"^6.3.0\",\n \"prettier\": \"^3.5.3\",\n \"rimraf\": \"^5.0.5\",\n \"rollup\": \"^4.18.1\",\n \"rollup-plugin-auto-external\": \"^2.0.0\",\n \"tinyglobby\": \"^0.2.10\",\n \"ts-node\": \"^10.9.2\",\n \"ts-patch\": \"^3.3.0\",\n \"typedoc\": \"^0.27.6\",\n \"typedoc-github-theme\": \"^0.2.1\",\n \"typescript\": \"~5.8.3\"\n },\n \"sideEffects\": false,\n \"files\": [\n \"lib\",\n \"src\",\n \"README.md\",\n \"LICENSE\"\n ],\n \"packageManager\": \"pnpm@10.5.2\",\n \"pnpm\": {\n \"executionEnv\": {\n \"nodeVersion\": \"22.14.0\"\n },\n \"onlyBuiltDependencies\": [\n \"@nestjs/core\"\n ]\n }\n}\n",
|
|
12558
12560
|
"node_modules/@scarf/scarf/package.json": "{\n \"name\": \"@scarf/scarf\",\n \"version\": \"1.4.0\",\n \"description\": \"Scarf is like Google Analytics for your npm packages. Gain insights into how your packages are installed and used, and by which companies.\",\n \"main\": \"report.js\",\n \"homepage\": \"https://github.com/scarf-sh/scarf-js\",\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"git+https://github.com/scarf-sh/scarf-js.git\"\n },\n \"files\": [\n \"report.js\"\n ],\n \"scripts\": {\n \"postinstall\": \"node ./report.js\",\n \"test\": \"jest --verbose\"\n },\n \"author\": \"Scarf Systems\",\n \"license\": \"Apache-2.0\",\n \"devDependencies\": {\n \"jest\": \"^25.3.0\",\n \"minimist\": \"^1.2.2\",\n \"standard\": \"^14.3.1\"\n },\n \"standard\": {\n \"globals\": [\n \"expect\",\n \"test\",\n \"jest\",\n \"beforeAll\",\n \"afterAll\",\n \"fail\",\n \"describe\"\n ]\n }\n}\n",
|
|
12559
12561
|
"node_modules/@stackblitz/sdk/package.json": "{\n \"name\": \"@stackblitz/sdk\",\n \"version\": \"1.11.0\",\n \"description\": \"SDK for generating and embedding StackBlitz projects.\",\n \"license\": \"MIT\",\n \"author\": \"Eric Simons\",\n \"homepage\": \"https://github.com/stackblitz/sdk\",\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/stackblitz/sdk.git\"\n },\n \"main\": \"./bundles/sdk.js\",\n \"module\": \"./bundles/sdk.m.js\",\n \"unpkg\": \"./bundles/sdk.umd.js\",\n \"jsdelivr\": \"./bundles/sdk.umd.js\",\n \"types\": \"./types/index.d.ts\",\n \"files\": [\n \"bundles\",\n \"types\",\n \"CHANGELOG.md\",\n \"LICENSE.md\",\n \"README.md\"\n ],\n \"scripts\": {\n \"build\": \"npm run build:clean && npm run build:types && npm run build:lib\",\n \"build:clean\": \"rimraf bundles temp types\",\n \"build:lib\": \"vite build --mode lib\",\n \"build:types\": \"tsc -p tsconfig.lib.json\",\n \"format\": \"prettier --write 'src/**/*.ts' 'test/**/*.ts' vite.*.ts\",\n \"prepack\": \"npm run test:unit && npm run build\",\n \"start\": \"vite dev --mode dev --open /examples/\",\n \"start:e2e\": \"vite dev --mode e2e\",\n \"test\": \"vitest run --mode test --coverage\",\n \"test:unit\": \"vitest run --mode test\",\n \"test:e2e\": \"npx playwright test\",\n \"test:format\": \"npx prettier --check .\"\n },\n \"devDependencies\": {\n \"@playwright/test\": \"^1.32.2\",\n \"@rollup/plugin-replace\": \"^5.0.2\",\n \"@types/body-parser\": \"^1.19.2\",\n \"@types/lodash\": \"^4.14.192\",\n \"@vitest/coverage-c8\": \"^0.29.8\",\n \"@vitest/ui\": \"^0.29.8\",\n \"body-parser\": \"^1.20.2\",\n \"happy-dom\": \"^9.1.0\",\n \"lodash\": \"^4.17.21\",\n \"prettier\": \"^2.8.7\",\n \"rimraf\": \"^4.4.1\",\n \"typescript\": \"~4.4.4\",\n \"vite\": \"^4.2.1\",\n \"vite-tsconfig-paths\": \"^4.0.8\",\n \"vitest\": \"^0.29.8\"\n }\n}\n",
|
|
12560
12562
|
"node_modules/@stackblitz/sdk/types/connection.d.ts": "import { VM } from './vm';\nexport declare class Connection {\n element: HTMLIFrameElement;\n id: string;\n pending: Promise<VM>;\n vm?: VM;\n constructor(element: HTMLIFrameElement);\n}\nexport declare const getConnection: (identifier: string | HTMLIFrameElement) => Connection | null;\n",
|
|
@@ -12574,6 +12576,8 @@
|
|
|
12574
12576
|
"node_modules/@tokenizer/inflate/package.json": "{\r\n \"name\": \"@tokenizer/inflate\",\r\n \"version\": \"0.2.7\",\r\n \"description\": \"Tokenized zip support\",\r\n \"type\": \"module\",\r\n \"exports\": \"./lib/index.js\",\r\n \"files\": [\r\n \"lib/**/*.js\",\r\n \"lib/**/*.d.ts\"\r\n ],\r\n \"scripts\": {\r\n \"clean\": \"del-cli 'lib/**/*.js' 'lib/**/*.js.map' 'lib/**/*.d.ts' 'test/**/*.js' 'test/**/*.js.map'\",\r\n \"compile-src\": \"tsc -p lib\",\r\n \"compile-test\": \"tsc -p test\",\r\n \"compile\": \"yarn run compile-src && yarn run compile-test\",\r\n \"build\": \"yarn run clean && yarn run compile\",\r\n \"eslint\": \"eslint lib test\",\r\n \"lint-md\": \"remark -u preset-lint-recommended .\",\r\n \"lint-ts\": \"biome check\",\r\n \"fix\": \"yarn run biome lint --write\",\r\n \"test\": \"mocha\",\r\n \"start\": \"yarn run compile && yarn run lint && yarn run cover-test\"\r\n },\r\n \"engines\": {\r\n \"node\": \">=18\"\r\n },\r\n \"author\": {\r\n \"name\": \"Borewit\",\r\n \"url\": \"https://github.com/Borewit\"\r\n },\r\n \"license\": \"MIT\",\r\n \"packageManager\": \"yarn@4.3.1\",\r\n \"devDependencies\": {\r\n \"@aws-sdk/client-s3\": \"^3.750.0\",\r\n \"@biomejs/biome\": \"=1.9.4\",\r\n \"@tokenizer/s3\": \"^1.0.1\",\r\n \"@types/chai\": \"^5.0.1\",\r\n \"@types/debug\": \"^4\",\r\n \"@types/mocha\": \"^10.0.10\",\r\n \"@types/node\": \"^22.13.5\",\r\n \"chai\": \"^5.2.0\",\r\n \"del-cli\": \"^6.0.0\",\r\n \"file-type\": \"^20.1.0\",\r\n \"mocha\": \"^11.1.0\",\r\n \"strtok3\": \"^10.2.1\",\r\n \"ts-node\": \"^10.9.2\",\r\n \"typescript\": \"^5.7.3\"\r\n },\r\n \"dependencies\": {\r\n \"debug\": \"^4.4.0\",\r\n \"fflate\": \"^0.8.2\",\r\n \"token-types\": \"^6.0.0\"\r\n },\r\n \"repository\": {\r\n \"type\": \"git\",\r\n \"url\": \"https://github.com/Borewit/tokenizer-inflate.git\"\r\n },\r\n \"bugs\": {\r\n \"url\": \"hhttps://github.com/Borewit/tokenizer-inflate/issues\"\r\n },\r\n \"funding\": {\r\n \"type\": \"github\",\r\n \"url\": \"https://github.com/sponsors/Borewit\"\r\n },\r\n \"keywords\": [\r\n \"zip\",\r\n \"unzip\",\r\n \"decompress\",\r\n \"inflate\",\r\n \"strtok3\",\r\n \"tokenizer\",\r\n \"stream\",\r\n \"S3\"\r\n ]\r\n}\r\n",
|
|
12575
12577
|
"node_modules/@tokenizer/token/index.d.ts": "/**\r\n * Read-only token\r\n * See https://github.com/Borewit/strtok3 for more information\r\n */\r\nexport interface IGetToken<Value, Array extends Uint8Array = Uint8Array> {\r\n\r\n /**\r\n * Length of encoded token in bytes\r\n */\r\n len: number;\r\n\r\n /**\r\n * Decode value from buffer at offset\r\n * @param array - Uint8Array to read the decoded value from\r\n * @param offset - Decode offset\r\n * @return decoded value\r\n */\r\n get(array: Array, offset: number): Value;\r\n}\r\n\r\nexport interface IToken<Value, Array extends Uint8Array = Uint8Array> extends IGetToken<Value, Array> {\r\n /**\r\n * Encode value to buffer\r\n * @param array - Uint8Array to write the encoded value to\r\n * @param offset - Buffer write offset\r\n * @param value - Value to decode of type T\r\n * @return offset plus number of bytes written\r\n */\r\n put(array: Array, offset: number, value: Value): number\r\n}\r\n",
|
|
12576
12578
|
"node_modules/@tokenizer/token/package.json": "{\r\n \"name\": \"@tokenizer/token\",\r\n \"version\": \"0.3.0\",\r\n \"description\": \"TypeScript definition for strtok3 token\",\r\n \"main\": \"\",\r\n \"types\": \"index.d.ts\",\r\n \"files\": [\r\n \"index.d.ts\"\r\n ],\r\n \"keywords\": [\r\n \"token\",\r\n \"interface\",\r\n \"tokenizer\",\r\n \"TypeScript\"\r\n ],\r\n \"author\": {\r\n \"name\": \"Borewit\",\r\n \"url\": \"https://github.com/Borewit\"\r\n },\r\n \"license\": \"MIT\",\r\n \"repository\": {\r\n \"type\": \"git\",\r\n \"url\": \"https://github.com/Borewit/tokenizer-token.git\"\r\n },\r\n \"bugs\": {\r\n \"url\": \"https://github.com/Borewit/tokenizer-token/issues\"\r\n },\r\n \"typeScriptVersion\": \"3.0\",\r\n \"dependencies\": {},\r\n \"devDependencies\": {\r\n \"@types/node\": \"^13.1.0\"\r\n }\r\n}\r\n",
|
|
12579
|
+
"node_modules/@trivago/prettier-plugin-sort-imports/package.json": "{\n \"name\": \"@trivago/prettier-plugin-sort-imports\",\n \"version\": \"5.2.2\",\n \"description\": \"A prettier plugins to sort imports in provided RegEx order\",\n \"main\": \"lib/src/index.js\",\n \"types\": \"types/index.d.ts\",\n \"repository\": {\n \"url\": \"https://github.com/trivago/prettier-plugin-sort-imports\",\n \"type\": \"git\"\n },\n \"homepage\": \"https://github.com/trivago/prettier-plugin-sort-imports#readme\",\n \"scripts\": {\n \"prepare\": \"yarn run compile\",\n \"compile\": \"tsc\",\n \"preexample\": \"yarn run compile\",\n \"example\": \"prettier --config ./examples/.prettierrc --plugin lib/src/index.js\",\n \"test\": \"yarn node --experimental-vm-modules $(yarn bin jest)\",\n \"type-check\": \"tsc --noEmit\",\n \"prepublishOnly\": \"npm run compile && npm run test\"\n },\n \"keywords\": [\n \"prettier\",\n \"plugin\",\n \"sort\",\n \"import\",\n \"typescript\",\n \"javascript\"\n ],\n \"author\": {\n \"name\": \"Ayush Sharma\",\n \"email\": \"ayush.sharma@trivago.com\",\n \"url\": \"https://github.com/ayusharma\"\n },\n \"license\": \"Apache-2.0\",\n \"dependencies\": {\n \"@babel/generator\": \"^7.26.5\",\n \"@babel/parser\": \"^7.26.7\",\n \"@babel/traverse\": \"^7.26.7\",\n \"@babel/types\": \"^7.26.7\",\n \"javascript-natural-sort\": \"^0.7.1\",\n \"lodash\": \"^4.17.21\"\n },\n \"devDependencies\": {\n \"@babel/core\": \"^7.26.7\",\n \"@types/chai\": \"^5.0.1\",\n \"@types/jest\": \"^29.5.14\",\n \"@types/lodash\": \"^4.17.14\",\n \"@types/node\": \"^22.10.10\",\n \"@vue/compiler-sfc\": \"^3.5.13\",\n \"jest\": \"^29.7.0\",\n \"prettier\": \"^3.4.2\",\n \"prettier-plugin-svelte\": \"^3.3.3\",\n \"svelte\": \"^4.2.19\",\n \"ts-jest\": \"^29.2.5\",\n \"typescript\": \"^5.7.3\"\n },\n \"peerDependencies\": {\n \"@vue/compiler-sfc\": \"3.x\",\n \"prettier\": \"2.x - 3.x\",\n \"prettier-plugin-svelte\": \"3.x\",\n \"svelte\": \"4.x || 5.x\"\n },\n \"engines\": {\n \"node\": \">18.12\"\n },\n \"peerDependenciesMeta\": {\n \"@vue/compiler-sfc\": {\n \"optional\": true\n },\n \"prettier-plugin-svelte\": {\n \"optional\": true\n },\n \"svelte\": {\n \"optional\": true\n }\n },\n \"resolutions\": {\n \"@types/babel__generator\": \"7.6.8\",\n \"@babel/types\": \"7.26.7\"\n }\n}\n",
|
|
12580
|
+
"node_modules/@trivago/prettier-plugin-sort-imports/types/index.d.ts": "import { ParserPlugin } from '@babel/parser';\nimport { Config } from 'prettier';\n\nexport type ImportOrderParserPlugin =\n | Extract<ParserPlugin, string>\n | `[${string},${string}]`;\n\nexport interface PluginConfig {\n /**\n * A collection of Regular expressions in string format.\n *\n * ```\n * \"importOrder\": [\"^@core/(.*)$\", \"^@server/(.*)$\", \"^@ui/(.*)$\", \"^[./]\"],\n * ```\n *\n * _Default behavior:_ The plugin moves the third party imports to the top which are not part of the `importOrder` list.\n * To move the third party imports at desired place, you can use `<THIRD_PARTY_MODULES>` to assign third party imports to the appropriate position:\n *\n * ```\n * \"importOrder\": [\"^@core/(.*)$\", \"<THIRD_PARTY_MODULES>\", \"^@server/(.*)$\", \"^@ui/(.*)$\", \"^[./]\"],\n * ```\n */\n importOrder: string[];\n\n /**\n * A boolean value to enable or disable the new line separation\n * between sorted import declarations group. The separation takes place according to the `importOrder`.\n *\n * @default false\n */\n importOrderSeparation?: boolean;\n\n /**\n * A boolean value to enable or disable sorting of the specifiers in an import declarations.\n *\n * @default false\n */\n importOrderSortSpecifiers?: boolean;\n\n /**\n * A boolean value to enable or disable sorting the namespace specifiers to the top of the import group.\n *\n * @default false\n */\n importOrderGroupNamespaceSpecifiers?: boolean;\n\n /**\n * A boolean value to enable case-insensitivity in the sorting algorithm\nused to order imports within each match group.\n * \n * For example, when false (or not specified):\n * \n * ```js\n * import ExampleView from './ExampleView';\n * import ExamplesList from './ExamplesList';\n * ```\n * \n * compared with `\"importOrderCaseInsensitive\": true`:\n * \n * ```js\n * import ExamplesList from './ExamplesList';\n * import ExampleView from './ExampleView';\n * ```\n * \n * @default false\n */\n importOrderCaseInsensitive?: boolean;\n\n /**\n * Previously known as `experimentalBabelParserPluginsList`.\n *\n * A collection of plugins for babel parser. The plugin passes this list to babel parser, so it can understand the syntaxes\n * used in the file being formatted. The plugin uses prettier itself to figure out the parser it needs to use but if that fails,\n * you can use this field to enforce the usage of the plugins' babel parser needs.\n *\n * **To pass the plugins to babel parser**:\n *\n * ```\n * \"importOrderParserPlugins\" : [\"classProperties\", \"decorators-legacy\"]\n * ```\n *\n * **To pass the options to the babel parser plugins**: Since prettier options are limited to string, you can pass plugins\n * with options as a JSON string of the plugin array:\n * `\"[\\\"plugin-name\\\", { \\\"pluginOption\\\": true }]\"`.\n *\n * ```\n * \"importOrderParserPlugins\" : [\"classProperties\", \"[\\\"decorators\\\", { \\\"decoratorsBeforeExport\\\": true }]\"]\n * ```\n *\n * **To disable default plugins for babel parser, pass an empty array**:\n *\n * @default [\"typescript\", \"jsx\"]\n */\n importOrderParserPlugins?: ImportOrderParserPlugin[];\n\n\n /**\n * The import attributes/assertions syntax to use. \"with\" for import \"...\" with { type: \"json\" }, \n * \"assert\" for import \"...\" assert { type: \"json\" }, and \"with-legacy\" for import \"...\" with type: \"json\".\n *\n * ```\n * \"importOrderImportAttributesKeyword\": 'with',\n * ```\n *\n * _Default behavior:_ When not specified, @babel/generator will try to match the style in the input code based on the AST shape.\n */\n importOrderImportAttributesKeyword?: 'assert' | 'with' | 'with-legacy';\n}\n\nexport type PrettierConfig = PluginConfig & Config;\n",
|
|
12577
12581
|
"node_modules/@tsconfig/node10/package.json": "{\n \"name\": \"@tsconfig/node10\",\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/tsconfig/bases.git\",\n \"directory\": \"bases\"\n },\n \"license\": \"MIT\",\n \"description\": \"A base TSConfig for working with Node 10.\",\n \"keywords\": [\n \"tsconfig\",\n \"node10\"\n ],\n \"version\": \"1.0.11\"\n}",
|
|
12578
12582
|
"node_modules/@tsconfig/node12/package.json": "{\"name\":\"@tsconfig/node12\",\"repository\":{\"type\":\"git\",\"url\":\"https://github.com/tsconfig/bases.git\",\"directory\":\"bases\"},\"license\":\"MIT\",\"description\":\"A base TSConfig for working with Node 12.\",\"keywords\":[\"tsconfig\",\"node12\"],\"version\":\"1.0.11\"}",
|
|
12579
12583
|
"node_modules/@tsconfig/node14/package.json": "{\"name\":\"@tsconfig/node14\",\"repository\":{\"type\":\"git\",\"url\":\"https://github.com/tsconfig/bases.git\",\"directory\":\"bases\"},\"license\":\"MIT\",\"description\":\"A base TSConfig for working with Node 14.\",\"keywords\":[\"tsconfig\",\"node14\"],\"version\":\"1.0.3\"}",
|
|
@@ -12582,6 +12586,8 @@
|
|
|
12582
12586
|
"node_modules/@types/body-parser/package.json": "{\n \"name\": \"@types/body-parser\",\n \"version\": \"1.19.5\",\n \"description\": \"TypeScript definitions for body-parser\",\n \"homepage\": \"https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/body-parser\",\n \"license\": \"MIT\",\n \"contributors\": [\n {\n \"name\": \"Santi Albo\",\n \"githubUsername\": \"santialbo\",\n \"url\": \"https://github.com/santialbo\"\n },\n {\n \"name\": \"Vilic Vane\",\n \"githubUsername\": \"vilic\",\n \"url\": \"https://github.com/vilic\"\n },\n {\n \"name\": \"Jonathan Häberle\",\n \"githubUsername\": \"dreampulse\",\n \"url\": \"https://github.com/dreampulse\"\n },\n {\n \"name\": \"Gevik Babakhani\",\n \"githubUsername\": \"blendsdk\",\n \"url\": \"https://github.com/blendsdk\"\n },\n {\n \"name\": \"Tomasz Łaziuk\",\n \"githubUsername\": \"tlaziuk\",\n \"url\": \"https://github.com/tlaziuk\"\n },\n {\n \"name\": \"Jason Walton\",\n \"githubUsername\": \"jwalton\",\n \"url\": \"https://github.com/jwalton\"\n },\n {\n \"name\": \"Piotr Błażejewicz\",\n \"githubUsername\": \"peterblazejewicz\",\n \"url\": \"https://github.com/peterblazejewicz\"\n }\n ],\n \"main\": \"\",\n \"types\": \"index.d.ts\",\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/DefinitelyTyped/DefinitelyTyped.git\",\n \"directory\": \"types/body-parser\"\n },\n \"scripts\": {},\n \"dependencies\": {\n \"@types/connect\": \"*\",\n \"@types/node\": \"*\"\n },\n \"typesPublisherContentHash\": \"7be737b78c8aabd5436be840558b283182b44c3cf9da24fb1f2ff8f414db5802\",\n \"typeScriptVersion\": \"4.5\"\n}",
|
|
12583
12587
|
"node_modules/@types/connect/index.d.ts": "/// <reference types=\"node\" />\n\nimport * as http from \"http\";\n\n/**\n * Create a new connect server.\n */\ndeclare function createServer(): createServer.Server;\n\ndeclare namespace createServer {\n export type ServerHandle = HandleFunction | http.Server;\n\n export class IncomingMessage extends http.IncomingMessage {\n originalUrl?: http.IncomingMessage[\"url\"] | undefined;\n }\n\n type NextFunction = (err?: any) => void;\n\n export type SimpleHandleFunction = (req: IncomingMessage, res: http.ServerResponse) => void;\n export type NextHandleFunction = (req: IncomingMessage, res: http.ServerResponse, next: NextFunction) => void;\n export type ErrorHandleFunction = (\n err: any,\n req: IncomingMessage,\n res: http.ServerResponse,\n next: NextFunction,\n ) => void;\n export type HandleFunction = SimpleHandleFunction | NextHandleFunction | ErrorHandleFunction;\n\n export interface ServerStackItem {\n route: string;\n handle: ServerHandle;\n }\n\n export interface Server extends NodeJS.EventEmitter {\n (req: http.IncomingMessage, res: http.ServerResponse, next?: Function): void;\n\n route: string;\n stack: ServerStackItem[];\n\n /**\n * Utilize the given middleware `handle` to the given `route`,\n * defaulting to _/_. This \"route\" is the mount-point for the\n * middleware, when given a value other than _/_ the middleware\n * is only effective when that segment is present in the request's\n * pathname.\n *\n * For example if we were to mount a function at _/admin_, it would\n * be invoked on _/admin_, and _/admin/settings_, however it would\n * not be invoked for _/_, or _/posts_.\n */\n use(fn: NextHandleFunction): Server;\n use(fn: HandleFunction): Server;\n use(route: string, fn: NextHandleFunction): Server;\n use(route: string, fn: HandleFunction): Server;\n\n /**\n * Handle server requests, punting them down\n * the middleware stack.\n */\n handle(req: http.IncomingMessage, res: http.ServerResponse, next: Function): void;\n\n /**\n * Listen for connections.\n *\n * This method takes the same arguments\n * as node's `http.Server#listen()`.\n *\n * HTTP and HTTPS:\n *\n * If you run your application both as HTTP\n * and HTTPS you may wrap them individually,\n * since your Connect \"server\" is really just\n * a JavaScript `Function`.\n *\n * var connect = require('connect')\n * , http = require('http')\n * , https = require('https');\n *\n * var app = connect();\n *\n * http.createServer(app).listen(80);\n * https.createServer(options, app).listen(443);\n */\n listen(port: number, hostname?: string, backlog?: number, callback?: Function): http.Server;\n listen(port: number, hostname?: string, callback?: Function): http.Server;\n listen(path: string, callback?: Function): http.Server;\n listen(handle: any, listeningListener?: Function): http.Server;\n }\n}\n\nexport = createServer;\n",
|
|
12584
12588
|
"node_modules/@types/connect/package.json": "{\n \"name\": \"@types/connect\",\n \"version\": \"3.4.38\",\n \"description\": \"TypeScript definitions for connect\",\n \"homepage\": \"https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/connect\",\n \"license\": \"MIT\",\n \"contributors\": [\n {\n \"name\": \"Maxime LUCE\",\n \"githubUsername\": \"SomaticIT\",\n \"url\": \"https://github.com/SomaticIT\"\n },\n {\n \"name\": \"Evan Hahn\",\n \"githubUsername\": \"EvanHahn\",\n \"url\": \"https://github.com/EvanHahn\"\n }\n ],\n \"main\": \"\",\n \"types\": \"index.d.ts\",\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/DefinitelyTyped/DefinitelyTyped.git\",\n \"directory\": \"types/connect\"\n },\n \"scripts\": {},\n \"dependencies\": {\n \"@types/node\": \"*\"\n },\n \"typesPublisherContentHash\": \"8990242237504bdec53088b79e314b94bec69286df9de56db31f22de403b4092\",\n \"typeScriptVersion\": \"4.5\"\n}",
|
|
12589
|
+
"node_modules/@types/debug/index.d.ts": "declare var debug: debug.Debug & { debug: debug.Debug; default: debug.Debug };\n\nexport = debug;\nexport as namespace debug;\n\ndeclare namespace debug {\n interface Debug {\n (namespace: string): Debugger;\n coerce: (val: any) => any;\n disable: () => string;\n enable: (namespaces: string) => void;\n enabled: (namespaces: string) => boolean;\n formatArgs: (this: Debugger, args: any[]) => void;\n log: (...args: any[]) => any;\n selectColor: (namespace: string) => string | number;\n humanize: typeof import(\"ms\");\n\n names: RegExp[];\n skips: RegExp[];\n\n formatters: Formatters;\n\n inspectOpts?: {\n hideDate?: boolean | number | null;\n colors?: boolean | number | null;\n depth?: boolean | number | null;\n showHidden?: boolean | number | null;\n };\n }\n\n type IDebug = Debug;\n\n interface Formatters {\n [formatter: string]: (v: any) => string;\n }\n\n type IDebugger = Debugger;\n\n interface Debugger {\n (formatter: any, ...args: any[]): void;\n\n color: string;\n diff: number;\n enabled: boolean;\n log: (...args: any[]) => any;\n namespace: string;\n destroy: () => boolean;\n extend: (namespace: string, delimiter?: string) => Debugger;\n }\n}\n",
|
|
12590
|
+
"node_modules/@types/debug/package.json": "{\n \"name\": \"@types/debug\",\n \"version\": \"4.1.12\",\n \"description\": \"TypeScript definitions for debug\",\n \"homepage\": \"https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/debug\",\n \"license\": \"MIT\",\n \"contributors\": [\n {\n \"name\": \"Seon-Wook Park\",\n \"githubUsername\": \"swook\",\n \"url\": \"https://github.com/swook\"\n },\n {\n \"name\": \"Gal Talmor\",\n \"githubUsername\": \"galtalmor\",\n \"url\": \"https://github.com/galtalmor\"\n },\n {\n \"name\": \"John McLaughlin\",\n \"githubUsername\": \"zamb3zi\",\n \"url\": \"https://github.com/zamb3zi\"\n },\n {\n \"name\": \"Brasten Sager\",\n \"githubUsername\": \"brasten\",\n \"url\": \"https://github.com/brasten\"\n },\n {\n \"name\": \"Nicolas Penin\",\n \"githubUsername\": \"npenin\",\n \"url\": \"https://github.com/npenin\"\n },\n {\n \"name\": \"Kristian Brünn\",\n \"githubUsername\": \"kristianmitk\",\n \"url\": \"https://github.com/kristianmitk\"\n },\n {\n \"name\": \"Caleb Gregory\",\n \"githubUsername\": \"calebgregory\",\n \"url\": \"https://github.com/calebgregory\"\n }\n ],\n \"main\": \"\",\n \"types\": \"index.d.ts\",\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/DefinitelyTyped/DefinitelyTyped.git\",\n \"directory\": \"types/debug\"\n },\n \"scripts\": {},\n \"dependencies\": {\n \"@types/ms\": \"*\"\n },\n \"typesPublisherContentHash\": \"1053110a8e5e302f35fb57f45389304fa5a4f53bb8982b76b8065bcfd7083731\",\n \"typeScriptVersion\": \"4.5\"\n}",
|
|
12585
12591
|
"node_modules/@types/express/index.d.ts": "/* =================== USAGE ===================\n\n import express = require(\"express\");\n var app = express();\n\n =============================================== */\n\n/// <reference types=\"express-serve-static-core\" />\n/// <reference types=\"serve-static\" />\n\nimport * as bodyParser from \"body-parser\";\nimport * as core from \"express-serve-static-core\";\nimport * as serveStatic from \"serve-static\";\n\n/**\n * Creates an Express application. The express() function is a top-level function exported by the express module.\n */\ndeclare function e(): core.Express;\n\ndeclare namespace e {\n /**\n * This is a built-in middleware function in Express. It parses incoming requests with JSON payloads and is based on body-parser.\n * @since 4.16.0\n */\n var json: typeof bodyParser.json;\n\n /**\n * This is a built-in middleware function in Express. It parses incoming requests with Buffer payloads and is based on body-parser.\n * @since 4.17.0\n */\n var raw: typeof bodyParser.raw;\n\n /**\n * This is a built-in middleware function in Express. It parses incoming requests with text payloads and is based on body-parser.\n * @since 4.17.0\n */\n var text: typeof bodyParser.text;\n\n /**\n * These are the exposed prototypes.\n */\n var application: Application;\n var request: Request;\n var response: Response;\n\n /**\n * This is a built-in middleware function in Express. It serves static files and is based on serve-static.\n */\n var static: serveStatic.RequestHandlerConstructor<Response>;\n\n /**\n * This is a built-in middleware function in Express. It parses incoming requests with urlencoded payloads and is based on body-parser.\n * @since 4.16.0\n */\n var urlencoded: typeof bodyParser.urlencoded;\n\n export function Router(options?: RouterOptions): core.Router;\n\n interface RouterOptions {\n /**\n * Enable case sensitivity.\n */\n caseSensitive?: boolean | undefined;\n\n /**\n * Preserve the req.params values from the parent router.\n * If the parent and the child have conflicting param names, the child’s value take precedence.\n *\n * @default false\n * @since 4.5.0\n */\n mergeParams?: boolean | undefined;\n\n /**\n * Enable strict routing.\n */\n strict?: boolean | undefined;\n }\n\n interface Application extends core.Application {}\n interface CookieOptions extends core.CookieOptions {}\n interface Errback extends core.Errback {}\n interface ErrorRequestHandler<\n P = core.ParamsDictionary,\n ResBody = any,\n ReqBody = any,\n ReqQuery = core.Query,\n Locals extends Record<string, any> = Record<string, any>,\n > extends core.ErrorRequestHandler<P, ResBody, ReqBody, ReqQuery, Locals> {}\n interface Express extends core.Express {}\n interface Handler extends core.Handler {}\n interface IRoute extends core.IRoute {}\n interface IRouter extends core.IRouter {}\n interface IRouterHandler<T> extends core.IRouterHandler<T> {}\n interface IRouterMatcher<T> extends core.IRouterMatcher<T> {}\n interface MediaType extends core.MediaType {}\n interface NextFunction extends core.NextFunction {}\n interface Locals extends core.Locals {}\n interface Request<\n P = core.ParamsDictionary,\n ResBody = any,\n ReqBody = any,\n ReqQuery = core.Query,\n Locals extends Record<string, any> = Record<string, any>,\n > extends core.Request<P, ResBody, ReqBody, ReqQuery, Locals> {}\n interface RequestHandler<\n P = core.ParamsDictionary,\n ResBody = any,\n ReqBody = any,\n ReqQuery = core.Query,\n Locals extends Record<string, any> = Record<string, any>,\n > extends core.RequestHandler<P, ResBody, ReqBody, ReqQuery, Locals> {}\n interface RequestParamHandler extends core.RequestParamHandler {}\n interface Response<\n ResBody = any,\n Locals extends Record<string, any> = Record<string, any>,\n > extends core.Response<ResBody, Locals> {}\n interface Router extends core.Router {}\n interface Send extends core.Send {}\n}\n\nexport = e;\n",
|
|
12586
12592
|
"node_modules/@types/express/package.json": "{\n \"name\": \"@types/express\",\n \"version\": \"5.0.1\",\n \"description\": \"TypeScript definitions for express\",\n \"homepage\": \"https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/express\",\n \"license\": \"MIT\",\n \"contributors\": [\n {\n \"name\": \"Boris Yankov\",\n \"githubUsername\": \"borisyankov\",\n \"url\": \"https://github.com/borisyankov\"\n },\n {\n \"name\": \"China Medical University Hospital\",\n \"githubUsername\": \"CMUH\",\n \"url\": \"https://github.com/CMUH\"\n },\n {\n \"name\": \"Puneet Arora\",\n \"githubUsername\": \"puneetar\",\n \"url\": \"https://github.com/puneetar\"\n },\n {\n \"name\": \"Dylan Frankland\",\n \"githubUsername\": \"dfrankland\",\n \"url\": \"https://github.com/dfrankland\"\n }\n ],\n \"main\": \"\",\n \"types\": \"index.d.ts\",\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/DefinitelyTyped/DefinitelyTyped.git\",\n \"directory\": \"types/express\"\n },\n \"scripts\": {},\n \"dependencies\": {\n \"@types/body-parser\": \"*\",\n \"@types/express-serve-static-core\": \"^5.0.0\",\n \"@types/serve-static\": \"*\"\n },\n \"peerDependencies\": {},\n \"typesPublisherContentHash\": \"fc4e2b97399a28edf0ea8af60a18a56b71622eab908009e7e3a18677f98a80d8\",\n \"typeScriptVersion\": \"5.0\"\n}",
|
|
12587
12593
|
"node_modules/@types/express-serve-static-core/index.d.ts": "// This extracts the core definitions from express to prevent a circular dependency between express and serve-static\n/// <reference types=\"node\" />\n\nimport { SendOptions } from \"send\";\n\ndeclare global {\n namespace Express {\n // These open interfaces may be extended in an application-specific manner via declaration merging.\n // See for example method-override.d.ts (https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/method-override/index.d.ts)\n interface Request {}\n interface Response {}\n interface Locals {}\n interface Application {}\n }\n}\n\nimport { EventEmitter } from \"events\";\nimport * as http from \"http\";\nimport { ParsedQs } from \"qs\";\nimport { Options as RangeParserOptions, Ranges as RangeParserRanges, Result as RangeParserResult } from \"range-parser\";\n\nexport {};\n\nexport type Query = ParsedQs;\n\nexport interface NextFunction {\n (err?: any): void;\n /**\n * \"Break-out\" of a router by calling {next('router')};\n * @see {https://expressjs.com/en/guide/using-middleware.html#middleware.router}\n */\n (deferToNext: \"router\"): void;\n /**\n * \"Break-out\" of a route by calling {next('route')};\n * @see {https://expressjs.com/en/guide/using-middleware.html#middleware.application}\n */\n (deferToNext: \"route\"): void;\n}\n\nexport interface Dictionary<T> {\n [key: string]: T;\n}\n\nexport interface ParamsDictionary {\n [key: string]: string;\n}\nexport type ParamsArray = string[];\nexport type Params = ParamsDictionary | ParamsArray;\n\nexport interface Locals extends Express.Locals {}\n\nexport interface RequestHandler<\n P = ParamsDictionary,\n ResBody = any,\n ReqBody = any,\n ReqQuery = ParsedQs,\n LocalsObj extends Record<string, any> = Record<string, any>,\n> {\n // tslint:disable-next-line callable-types (This is extended from and can't extend from a type alias in ts<2.2)\n (\n req: Request<P, ResBody, ReqBody, ReqQuery, LocalsObj>,\n res: Response<ResBody, LocalsObj>,\n next: NextFunction,\n ): void | Promise<void>;\n}\n\nexport type ErrorRequestHandler<\n P = ParamsDictionary,\n ResBody = any,\n ReqBody = any,\n ReqQuery = ParsedQs,\n LocalsObj extends Record<string, any> = Record<string, any>,\n> = (\n err: any,\n req: Request<P, ResBody, ReqBody, ReqQuery, LocalsObj>,\n res: Response<ResBody, LocalsObj>,\n next: NextFunction,\n) => void | Promise<void>;\n\nexport type PathParams = string | RegExp | Array<string | RegExp>;\n\nexport type RequestHandlerParams<\n P = ParamsDictionary,\n ResBody = any,\n ReqBody = any,\n ReqQuery = ParsedQs,\n LocalsObj extends Record<string, any> = Record<string, any>,\n> =\n | RequestHandler<P, ResBody, ReqBody, ReqQuery, LocalsObj>\n | ErrorRequestHandler<P, ResBody, ReqBody, ReqQuery, LocalsObj>\n | Array<RequestHandler<P> | ErrorRequestHandler<P>>;\n\ntype RemoveTail<S extends string, Tail extends string> = S extends `${infer P}${Tail}` ? P : S;\ntype GetRouteParameter<S extends string> = RemoveTail<\n RemoveTail<RemoveTail<S, `/${string}`>, `-${string}`>,\n `.${string}`\n>;\n\n// prettier-ignore\nexport type RouteParameters<Route extends string> = Route extends `${infer Required}{${infer Optional}}${infer Next}`\n ? ParseRouteParameters<Required> & Partial<ParseRouteParameters<Optional>> & RouteParameters<Next>\n : ParseRouteParameters<Route>;\n\ntype ParseRouteParameters<Route extends string> = string extends Route ? ParamsDictionary\n : Route extends `${string}(${string}` ? ParamsDictionary // TODO: handling for regex parameters\n : Route extends `${string}:${infer Rest}` ?\n & (\n GetRouteParameter<Rest> extends never ? ParamsDictionary\n : GetRouteParameter<Rest> extends `${infer ParamName}?` ? { [P in ParamName]?: string } // TODO: Remove old `?` handling when Express 5 is promoted to \"latest\"\n : { [P in GetRouteParameter<Rest>]: string }\n )\n & (Rest extends `${GetRouteParameter<Rest>}${infer Next}` ? RouteParameters<Next> : unknown)\n : {};\n\n/* eslint-disable @definitelytyped/no-unnecessary-generics */\nexport interface IRouterMatcher<\n T,\n Method extends \"all\" | \"get\" | \"post\" | \"put\" | \"delete\" | \"patch\" | \"options\" | \"head\" = any,\n> {\n <\n Route extends string,\n P = RouteParameters<Route>,\n ResBody = any,\n ReqBody = any,\n ReqQuery = ParsedQs,\n LocalsObj extends Record<string, any> = Record<string, any>,\n >(\n // (it's used as the default type parameter for P)\n path: Route,\n // (This generic is meant to be passed explicitly.)\n ...handlers: Array<RequestHandler<P, ResBody, ReqBody, ReqQuery, LocalsObj>>\n ): T;\n <\n Path extends string,\n P = RouteParameters<Path>,\n ResBody = any,\n ReqBody = any,\n ReqQuery = ParsedQs,\n LocalsObj extends Record<string, any> = Record<string, any>,\n >(\n // (it's used as the default type parameter for P)\n path: Path,\n // (This generic is meant to be passed explicitly.)\n ...handlers: Array<RequestHandlerParams<P, ResBody, ReqBody, ReqQuery, LocalsObj>>\n ): T;\n <\n P = ParamsDictionary,\n ResBody = any,\n ReqBody = any,\n ReqQuery = ParsedQs,\n LocalsObj extends Record<string, any> = Record<string, any>,\n >(\n path: PathParams,\n // (This generic is meant to be passed explicitly.)\n ...handlers: Array<RequestHandler<P, ResBody, ReqBody, ReqQuery, LocalsObj>>\n ): T;\n <\n P = ParamsDictionary,\n ResBody = any,\n ReqBody = any,\n ReqQuery = ParsedQs,\n LocalsObj extends Record<string, any> = Record<string, any>,\n >(\n path: PathParams,\n // (This generic is meant to be passed explicitly.)\n ...handlers: Array<RequestHandlerParams<P, ResBody, ReqBody, ReqQuery, LocalsObj>>\n ): T;\n (path: PathParams, subApplication: Application): T;\n}\n\nexport interface IRouterHandler<T, Route extends string = string> {\n (...handlers: Array<RequestHandler<RouteParameters<Route>>>): T;\n (...handlers: Array<RequestHandlerParams<RouteParameters<Route>>>): T;\n <\n P = RouteParameters<Route>,\n ResBody = any,\n ReqBody = any,\n ReqQuery = ParsedQs,\n LocalsObj extends Record<string, any> = Record<string, any>,\n >(\n // (This generic is meant to be passed explicitly.)\n // eslint-disable-next-line @definitelytyped/no-unnecessary-generics\n ...handlers: Array<RequestHandler<P, ResBody, ReqBody, ReqQuery, LocalsObj>>\n ): T;\n <\n P = RouteParameters<Route>,\n ResBody = any,\n ReqBody = any,\n ReqQuery = ParsedQs,\n LocalsObj extends Record<string, any> = Record<string, any>,\n >(\n // (This generic is meant to be passed explicitly.)\n // eslint-disable-next-line @definitelytyped/no-unnecessary-generics\n ...handlers: Array<RequestHandlerParams<P, ResBody, ReqBody, ReqQuery, LocalsObj>>\n ): T;\n <\n P = ParamsDictionary,\n ResBody = any,\n ReqBody = any,\n ReqQuery = ParsedQs,\n LocalsObj extends Record<string, any> = Record<string, any>,\n >(\n // (This generic is meant to be passed explicitly.)\n // eslint-disable-next-line @definitelytyped/no-unnecessary-generics\n ...handlers: Array<RequestHandler<P, ResBody, ReqBody, ReqQuery, LocalsObj>>\n ): T;\n <\n P = ParamsDictionary,\n ResBody = any,\n ReqBody = any,\n ReqQuery = ParsedQs,\n LocalsObj extends Record<string, any> = Record<string, any>,\n >(\n // (This generic is meant to be passed explicitly.)\n // eslint-disable-next-line @definitelytyped/no-unnecessary-generics\n ...handlers: Array<RequestHandlerParams<P, ResBody, ReqBody, ReqQuery, LocalsObj>>\n ): T;\n}\n/* eslint-enable @definitelytyped/no-unnecessary-generics */\n\nexport interface IRouter extends RequestHandler {\n /**\n * Map the given param placeholder `name`(s) to the given callback(s).\n *\n * Parameter mapping is used to provide pre-conditions to routes\n * which use normalized placeholders. For example a _:user_id_ parameter\n * could automatically load a user's information from the database without\n * any additional code,\n *\n * The callback uses the samesignature as middleware, the only differencing\n * being that the value of the placeholder is passed, in this case the _id_\n * of the user. Once the `next()` function is invoked, just like middleware\n * it will continue on to execute the route, or subsequent parameter functions.\n *\n * app.param('user_id', function(req, res, next, id){\n * User.find(id, function(err, user){\n * if (err) {\n * next(err);\n * } else if (user) {\n * req.user = user;\n * next();\n * } else {\n * next(new Error('failed to load user'));\n * }\n * });\n * });\n */\n param(name: string, handler: RequestParamHandler): this;\n\n /**\n * Special-cased \"all\" method, applying the given route `path`,\n * middleware, and callback to _every_ HTTP method.\n */\n all: IRouterMatcher<this, \"all\">;\n get: IRouterMatcher<this, \"get\">;\n post: IRouterMatcher<this, \"post\">;\n put: IRouterMatcher<this, \"put\">;\n delete: IRouterMatcher<this, \"delete\">;\n patch: IRouterMatcher<this, \"patch\">;\n options: IRouterMatcher<this, \"options\">;\n head: IRouterMatcher<this, \"head\">;\n\n checkout: IRouterMatcher<this>;\n connect: IRouterMatcher<this>;\n copy: IRouterMatcher<this>;\n lock: IRouterMatcher<this>;\n merge: IRouterMatcher<this>;\n mkactivity: IRouterMatcher<this>;\n mkcol: IRouterMatcher<this>;\n move: IRouterMatcher<this>;\n \"m-search\": IRouterMatcher<this>;\n notify: IRouterMatcher<this>;\n propfind: IRouterMatcher<this>;\n proppatch: IRouterMatcher<this>;\n purge: IRouterMatcher<this>;\n report: IRouterMatcher<this>;\n search: IRouterMatcher<this>;\n subscribe: IRouterMatcher<this>;\n trace: IRouterMatcher<this>;\n unlock: IRouterMatcher<this>;\n unsubscribe: IRouterMatcher<this>;\n link: IRouterMatcher<this>;\n unlink: IRouterMatcher<this>;\n\n use: IRouterHandler<this> & IRouterMatcher<this>;\n\n route<T extends string>(prefix: T): IRoute<T>;\n route(prefix: PathParams): IRoute;\n /**\n * Stack of configured routes\n */\n stack: ILayer[];\n}\n\nexport interface ILayer {\n route?: IRoute;\n name: string | \"<anonymous>\";\n params?: Record<string, any>;\n keys: string[];\n path?: string;\n method: string;\n regexp: RegExp;\n handle: (req: Request, res: Response, next: NextFunction) => any;\n}\n\nexport interface IRoute<Route extends string = string> {\n path: string;\n stack: ILayer[];\n all: IRouterHandler<this, Route>;\n get: IRouterHandler<this, Route>;\n post: IRouterHandler<this, Route>;\n put: IRouterHandler<this, Route>;\n delete: IRouterHandler<this, Route>;\n patch: IRouterHandler<this, Route>;\n options: IRouterHandler<this, Route>;\n head: IRouterHandler<this, Route>;\n\n checkout: IRouterHandler<this, Route>;\n copy: IRouterHandler<this, Route>;\n lock: IRouterHandler<this, Route>;\n merge: IRouterHandler<this, Route>;\n mkactivity: IRouterHandler<this, Route>;\n mkcol: IRouterHandler<this, Route>;\n move: IRouterHandler<this, Route>;\n \"m-search\": IRouterHandler<this, Route>;\n notify: IRouterHandler<this, Route>;\n purge: IRouterHandler<this, Route>;\n report: IRouterHandler<this, Route>;\n search: IRouterHandler<this, Route>;\n subscribe: IRouterHandler<this, Route>;\n trace: IRouterHandler<this, Route>;\n unlock: IRouterHandler<this, Route>;\n unsubscribe: IRouterHandler<this, Route>;\n}\n\nexport interface Router extends IRouter {}\n\n/**\n * Options passed down into `res.cookie`\n * @link https://expressjs.com/en/api.html#res.cookie\n */\nexport interface CookieOptions {\n /** Convenient option for setting the expiry time relative to the current time in **milliseconds**. */\n maxAge?: number | undefined;\n /** Indicates if the cookie should be signed. */\n signed?: boolean | undefined;\n /** Expiry date of the cookie in GMT. If not specified (undefined), creates a session cookie. */\n expires?: Date | undefined;\n /** Flags the cookie to be accessible only by the web server. */\n httpOnly?: boolean | undefined;\n /** Path for the cookie. Defaults to “/”. */\n path?: string | undefined;\n /** Domain name for the cookie. Defaults to the domain name of the app. */\n domain?: string | undefined;\n /** Marks the cookie to be used with HTTPS only. */\n secure?: boolean | undefined;\n /** A synchronous function used for cookie value encoding. Defaults to encodeURIComponent. */\n encode?: ((val: string) => string) | undefined;\n /**\n * Value of the “SameSite” Set-Cookie attribute.\n * @link https://tools.ietf.org/html/draft-ietf-httpbis-cookie-same-site-00#section-4.1.1.\n */\n sameSite?: boolean | \"lax\" | \"strict\" | \"none\" | undefined;\n /**\n * Value of the “Priority” Set-Cookie attribute.\n * @link https://datatracker.ietf.org/doc/html/draft-west-cookie-priority-00#section-4.3\n */\n priority?: \"low\" | \"medium\" | \"high\";\n /** Marks the cookie to use partioned storage. */\n partitioned?: boolean | undefined;\n}\n\nexport interface ByteRange {\n start: number;\n end: number;\n}\n\nexport interface RequestRanges extends RangeParserRanges {}\n\nexport type Errback = (err: Error) => void;\n\n/**\n * @param P For most requests, this should be `ParamsDictionary`, but if you're\n * using this in a route handler for a route that uses a `RegExp` or a wildcard\n * `string` path (e.g. `'/user/*'`), then `req.params` will be an array, in\n * which case you should use `ParamsArray` instead.\n *\n * @see https://expressjs.com/en/api.html#req.params\n *\n * @example\n * app.get('/user/:id', (req, res) => res.send(req.params.id)); // implicitly `ParamsDictionary`\n * app.get<ParamsArray>(/user\\/(.*)/, (req, res) => res.send(req.params[0]));\n * app.get<ParamsArray>('/user/*', (req, res) => res.send(req.params[0]));\n */\nexport interface Request<\n P = ParamsDictionary,\n ResBody = any,\n ReqBody = any,\n ReqQuery = ParsedQs,\n LocalsObj extends Record<string, any> = Record<string, any>,\n> extends http.IncomingMessage, Express.Request {\n /**\n * Return request header.\n *\n * The `Referrer` header field is special-cased,\n * both `Referrer` and `Referer` are interchangeable.\n *\n * Examples:\n *\n * req.get('Content-Type');\n * // => \"text/plain\"\n *\n * req.get('content-type');\n * // => \"text/plain\"\n *\n * req.get('Something');\n * // => undefined\n *\n * Aliased as `req.header()`.\n */\n get(name: \"set-cookie\"): string[] | undefined;\n get(name: string): string | undefined;\n\n header(name: \"set-cookie\"): string[] | undefined;\n header(name: string): string | undefined;\n\n /**\n * Check if the given `type(s)` is acceptable, returning\n * the best match when true, otherwise `undefined`, in which\n * case you should respond with 406 \"Not Acceptable\".\n *\n * The `type` value may be a single mime type string\n * such as \"application/json\", the extension name\n * such as \"json\", a comma-delimted list such as \"json, html, text/plain\",\n * or an array `[\"json\", \"html\", \"text/plain\"]`. When a list\n * or array is given the _best_ match, if any is returned.\n *\n * Examples:\n *\n * // Accept: text/html\n * req.accepts('html');\n * // => \"html\"\n *\n * // Accept: text/*, application/json\n * req.accepts('html');\n * // => \"html\"\n * req.accepts('text/html');\n * // => \"text/html\"\n * req.accepts('json, text');\n * // => \"json\"\n * req.accepts('application/json');\n * // => \"application/json\"\n *\n * // Accept: text/*, application/json\n * req.accepts('image/png');\n * req.accepts('png');\n * // => false\n *\n * // Accept: text/*;q=.5, application/json\n * req.accepts(['html', 'json']);\n * req.accepts('html, json');\n * // => \"json\"\n */\n accepts(): string[];\n accepts(type: string): string | false;\n accepts(type: string[]): string | false;\n accepts(...type: string[]): string | false;\n\n /**\n * Returns the first accepted charset of the specified character sets,\n * based on the request's Accept-Charset HTTP header field.\n * If none of the specified charsets is accepted, returns false.\n *\n * For more information, or if you have issues or concerns, see accepts.\n */\n acceptsCharsets(): string[];\n acceptsCharsets(charset: string): string | false;\n acceptsCharsets(charset: string[]): string | false;\n acceptsCharsets(...charset: string[]): string | false;\n\n /**\n * Returns the first accepted encoding of the specified encodings,\n * based on the request's Accept-Encoding HTTP header field.\n * If none of the specified encodings is accepted, returns false.\n *\n * For more information, or if you have issues or concerns, see accepts.\n */\n acceptsEncodings(): string[];\n acceptsEncodings(encoding: string): string | false;\n acceptsEncodings(encoding: string[]): string | false;\n acceptsEncodings(...encoding: string[]): string | false;\n\n /**\n * Returns the first accepted language of the specified languages,\n * based on the request's Accept-Language HTTP header field.\n * If none of the specified languages is accepted, returns false.\n *\n * For more information, or if you have issues or concerns, see accepts.\n */\n acceptsLanguages(): string[];\n acceptsLanguages(lang: string): string | false;\n acceptsLanguages(lang: string[]): string | false;\n acceptsLanguages(...lang: string[]): string | false;\n\n /**\n * Parse Range header field, capping to the given `size`.\n *\n * Unspecified ranges such as \"0-\" require knowledge of your resource length. In\n * the case of a byte range this is of course the total number of bytes.\n * If the Range header field is not given `undefined` is returned.\n * If the Range header field is given, return value is a result of range-parser.\n * See more ./types/range-parser/index.d.ts\n *\n * NOTE: remember that ranges are inclusive, so for example \"Range: users=0-3\"\n * should respond with 4 users when available, not 3.\n */\n range(size: number, options?: RangeParserOptions): RangeParserRanges | RangeParserResult | undefined;\n\n /**\n * Return an array of Accepted media types\n * ordered from highest quality to lowest.\n */\n accepted: MediaType[];\n\n /**\n * Check if the incoming request contains the \"Content-Type\"\n * header field, and it contains the give mime `type`.\n *\n * Examples:\n *\n * // With Content-Type: text/html; charset=utf-8\n * req.is('html');\n * req.is('text/html');\n * req.is('text/*');\n * // => true\n *\n * // When Content-Type is application/json\n * req.is('json');\n * req.is('application/json');\n * req.is('application/*');\n * // => true\n *\n * req.is('html');\n * // => false\n */\n is(type: string | string[]): string | false | null;\n\n /**\n * Return the protocol string \"http\" or \"https\"\n * when requested with TLS. When the \"trust proxy\"\n * setting is enabled the \"X-Forwarded-Proto\" header\n * field will be trusted. If you're running behind\n * a reverse proxy that supplies https for you this\n * may be enabled.\n */\n readonly protocol: string;\n\n /**\n * Short-hand for:\n *\n * req.protocol == 'https'\n */\n readonly secure: boolean;\n\n /**\n * Return the remote address, or when\n * \"trust proxy\" is `true` return\n * the upstream addr.\n *\n * Value may be undefined if the `req.socket` is destroyed\n * (for example, if the client disconnected).\n */\n readonly ip: string | undefined;\n\n /**\n * When \"trust proxy\" is `true`, parse\n * the \"X-Forwarded-For\" ip address list.\n *\n * For example if the value were \"client, proxy1, proxy2\"\n * you would receive the array `[\"client\", \"proxy1\", \"proxy2\"]`\n * where \"proxy2\" is the furthest down-stream.\n */\n readonly ips: string[];\n\n /**\n * Return subdomains as an array.\n *\n * Subdomains are the dot-separated parts of the host before the main domain of\n * the app. By default, the domain of the app is assumed to be the last two\n * parts of the host. This can be changed by setting \"subdomain offset\".\n *\n * For example, if the domain is \"tobi.ferrets.example.com\":\n * If \"subdomain offset\" is not set, req.subdomains is `[\"ferrets\", \"tobi\"]`.\n * If \"subdomain offset\" is 3, req.subdomains is `[\"tobi\"]`.\n */\n readonly subdomains: string[];\n\n /**\n * Short-hand for `url.parse(req.url).pathname`.\n */\n readonly path: string;\n\n /**\n * Contains the hostname derived from the `Host` HTTP header.\n */\n readonly hostname: string;\n\n /**\n * Contains the host derived from the `Host` HTTP header.\n */\n readonly host: string;\n\n /**\n * Check if the request is fresh, aka\n * Last-Modified and/or the ETag\n * still match.\n */\n readonly fresh: boolean;\n\n /**\n * Check if the request is stale, aka\n * \"Last-Modified\" and / or the \"ETag\" for the\n * resource has changed.\n */\n readonly stale: boolean;\n\n /**\n * Check if the request was an _XMLHttpRequest_.\n */\n readonly xhr: boolean;\n\n // body: { username: string; password: string; remember: boolean; title: string; };\n body: ReqBody;\n\n // cookies: { string; remember: boolean; };\n cookies: any;\n\n method: string;\n\n params: P;\n\n query: ReqQuery;\n\n route: any;\n\n signedCookies: any;\n\n originalUrl: string;\n\n url: string;\n\n baseUrl: string;\n\n app: Application;\n\n /**\n * After middleware.init executed, Request will contain res and next properties\n * See: express/lib/middleware/init.js\n */\n res?: Response<ResBody, LocalsObj> | undefined;\n next?: NextFunction | undefined;\n}\n\nexport interface MediaType {\n value: string;\n quality: number;\n type: string;\n subtype: string;\n}\n\nexport type Send<ResBody = any, T = Response<ResBody>> = (body?: ResBody) => T;\n\nexport interface SendFileOptions extends SendOptions {\n /** Object containing HTTP headers to serve with the file. */\n headers?: Record<string, unknown>;\n}\n\nexport interface DownloadOptions extends SendOptions {\n /** Object containing HTTP headers to serve with the file. The header `Content-Disposition` will be overridden by the filename argument. */\n headers?: Record<string, unknown>;\n}\n\nexport interface Response<\n ResBody = any,\n LocalsObj extends Record<string, any> = Record<string, any>,\n StatusCode extends number = number,\n> extends http.ServerResponse, Express.Response {\n /**\n * Set status `code`.\n */\n status(code: StatusCode): this;\n\n /**\n * Set the response HTTP status code to `statusCode` and send its string representation as the response body.\n * @link http://expressjs.com/4x/api.html#res.sendStatus\n *\n * Examples:\n *\n * res.sendStatus(200); // equivalent to res.status(200).send('OK')\n * res.sendStatus(403); // equivalent to res.status(403).send('Forbidden')\n * res.sendStatus(404); // equivalent to res.status(404).send('Not Found')\n * res.sendStatus(500); // equivalent to res.status(500).send('Internal Server Error')\n */\n sendStatus(code: StatusCode): this;\n\n /**\n * Set Link header field with the given `links`.\n *\n * Examples:\n *\n * res.links({\n * next: 'http://api.example.com/users?page=2',\n * last: 'http://api.example.com/users?page=5'\n * });\n */\n links(links: any): this;\n\n /**\n * Send a response.\n *\n * Examples:\n *\n * res.send(new Buffer('wahoo'));\n * res.send({ some: 'json' });\n * res.send('<p>some html</p>');\n * res.status(404).send('Sorry, cant find that');\n */\n send: Send<ResBody, this>;\n\n /**\n * Send JSON response.\n *\n * Examples:\n *\n * res.json(null);\n * res.json({ user: 'tj' });\n * res.status(500).json('oh noes!');\n * res.status(404).json('I dont have that');\n */\n json: Send<ResBody, this>;\n\n /**\n * Send JSON response with JSONP callback support.\n *\n * Examples:\n *\n * res.jsonp(null);\n * res.jsonp({ user: 'tj' });\n * res.status(500).jsonp('oh noes!');\n * res.status(404).jsonp('I dont have that');\n */\n jsonp: Send<ResBody, this>;\n\n /**\n * Transfer the file at the given `path`.\n *\n * Automatically sets the _Content-Type_ response header field.\n * The callback `fn(err)` is invoked when the transfer is complete\n * or when an error occurs. Be sure to check `res.headersSent`\n * if you wish to attempt responding, as the header and some data\n * may have already been transferred.\n *\n * Options:\n *\n * - `maxAge` defaulting to 0 (can be string converted by `ms`)\n * - `root` root directory for relative filenames\n * - `headers` object of headers to serve with file\n * - `dotfiles` serve dotfiles, defaulting to false; can be `\"allow\"` to send them\n *\n * Other options are passed along to `send`.\n *\n * Examples:\n *\n * The following example illustrates how `res.sendFile()` may\n * be used as an alternative for the `static()` middleware for\n * dynamic situations. The code backing `res.sendFile()` is actually\n * the same code, so HTTP cache support etc is identical.\n *\n * app.get('/user/:uid/photos/:file', function(req, res){\n * var uid = req.params.uid\n * , file = req.params.file;\n *\n * req.user.mayViewFilesFrom(uid, function(yes){\n * if (yes) {\n * res.sendFile('/uploads/' + uid + '/' + file);\n * } else {\n * res.send(403, 'Sorry! you cant see that.');\n * }\n * });\n * });\n *\n * @api public\n */\n sendFile(path: string, fn?: Errback): void;\n sendFile(path: string, options: SendFileOptions, fn?: Errback): void;\n\n /**\n * Transfer the file at the given `path` as an attachment.\n *\n * Optionally providing an alternate attachment `filename`,\n * and optional callback `fn(err)`. The callback is invoked\n * when the data transfer is complete, or when an error has\n * ocurred. Be sure to check `res.headersSent` if you plan to respond.\n *\n * The optional options argument passes through to the underlying\n * res.sendFile() call, and takes the exact same parameters.\n *\n * This method uses `res.sendFile()`.\n */\n download(path: string, fn?: Errback): void;\n download(path: string, filename: string, fn?: Errback): void;\n download(path: string, filename: string, options: DownloadOptions, fn?: Errback): void;\n\n /**\n * Set _Content-Type_ response header with `type` through `mime.lookup()`\n * when it does not contain \"/\", or set the Content-Type to `type` otherwise.\n *\n * Examples:\n *\n * res.type('.html');\n * res.type('html');\n * res.type('json');\n * res.type('application/json');\n * res.type('png');\n */\n contentType(type: string): this;\n\n /**\n * Set _Content-Type_ response header with `type` through `mime.lookup()`\n * when it does not contain \"/\", or set the Content-Type to `type` otherwise.\n *\n * Examples:\n *\n * res.type('.html');\n * res.type('html');\n * res.type('json');\n * res.type('application/json');\n * res.type('png');\n */\n type(type: string): this;\n\n /**\n * Respond to the Acceptable formats using an `obj`\n * of mime-type callbacks.\n *\n * This method uses `req.accepted`, an array of\n * acceptable types ordered by their quality values.\n * When \"Accept\" is not present the _first_ callback\n * is invoked, otherwise the first match is used. When\n * no match is performed the server responds with\n * 406 \"Not Acceptable\".\n *\n * Content-Type is set for you, however if you choose\n * you may alter this within the callback using `res.type()`\n * or `res.set('Content-Type', ...)`.\n *\n * res.format({\n * 'text/plain': function(){\n * res.send('hey');\n * },\n *\n * 'text/html': function(){\n * res.send('<p>hey</p>');\n * },\n *\n * 'appliation/json': function(){\n * res.send({ message: 'hey' });\n * }\n * });\n *\n * In addition to canonicalized MIME types you may\n * also use extnames mapped to these types:\n *\n * res.format({\n * text: function(){\n * res.send('hey');\n * },\n *\n * html: function(){\n * res.send('<p>hey</p>');\n * },\n *\n * json: function(){\n * res.send({ message: 'hey' });\n * }\n * });\n *\n * By default Express passes an `Error`\n * with a `.status` of 406 to `next(err)`\n * if a match is not made. If you provide\n * a `.default` callback it will be invoked\n * instead.\n */\n format(obj: any): this;\n\n /**\n * Set _Content-Disposition_ header to _attachment_ with optional `filename`.\n */\n attachment(filename?: string): this;\n\n /**\n * Set header `field` to `val`, or pass\n * an object of header fields.\n *\n * Examples:\n *\n * res.set('Foo', ['bar', 'baz']);\n * res.set('Accept', 'application/json');\n * res.set({ Accept: 'text/plain', 'X-API-Key': 'tobi' });\n *\n * Aliased as `res.header()`.\n */\n set(field: any): this;\n set(field: string, value?: string | string[]): this;\n\n header(field: any): this;\n header(field: string, value?: string | string[]): this;\n\n // Property indicating if HTTP headers has been sent for the response.\n headersSent: boolean;\n\n /** Get value for header `field`. */\n get(field: string): string | undefined;\n\n /** Clear cookie `name`. */\n clearCookie(name: string, options?: CookieOptions): this;\n\n /**\n * Set cookie `name` to `val`, with the given `options`.\n *\n * Options:\n *\n * - `maxAge` max-age in milliseconds, converted to `expires`\n * - `signed` sign the cookie\n * - `path` defaults to \"/\"\n *\n * Examples:\n *\n * // \"Remember Me\" for 15 minutes\n * res.cookie('rememberme', '1', { expires: new Date(Date.now() + 900000), httpOnly: true });\n *\n * // save as above\n * res.cookie('rememberme', '1', { maxAge: 900000, httpOnly: true })\n */\n cookie(name: string, val: string, options: CookieOptions): this;\n cookie(name: string, val: any, options: CookieOptions): this;\n cookie(name: string, val: any): this;\n\n /**\n * Set the location header to `url`.\n *\n * Examples:\n *\n * res.location('/foo/bar').;\n * res.location('http://example.com');\n * res.location('../login'); // /blog/post/1 -> /blog/login\n *\n * Mounting:\n *\n * When an application is mounted and `res.location()`\n * is given a path that does _not_ lead with \"/\" it becomes\n * relative to the mount-point. For example if the application\n * is mounted at \"/blog\", the following would become \"/blog/login\".\n *\n * res.location('login');\n *\n * While the leading slash would result in a location of \"/login\":\n *\n * res.location('/login');\n */\n location(url: string): this;\n\n /**\n * Redirect to the given `url` with optional response `status`\n * defaulting to 302.\n *\n * The resulting `url` is determined by `res.location()`, so\n * it will play nicely with mounted apps, relative paths, etc.\n *\n * Examples:\n *\n * res.redirect('/foo/bar');\n * res.redirect('http://example.com');\n * res.redirect(301, 'http://example.com');\n * res.redirect('../login'); // /blog/post/1 -> /blog/login\n */\n redirect(url: string): void;\n redirect(status: number, url: string): void;\n\n /**\n * Render `view` with the given `options` and optional callback `fn`.\n * When a callback function is given a response will _not_ be made\n * automatically, otherwise a response of _200_ and _text/html_ is given.\n *\n * Options:\n *\n * - `cache` boolean hinting to the engine it should cache\n * - `filename` filename of the view being rendered\n */\n render(view: string, options?: object, callback?: (err: Error, html: string) => void): void;\n render(view: string, callback?: (err: Error, html: string) => void): void;\n\n locals: LocalsObj & Locals;\n\n charset: string;\n\n /**\n * Adds the field to the Vary response header, if it is not there already.\n * Examples:\n *\n * res.vary('User-Agent').render('docs');\n */\n vary(field: string): this;\n\n app: Application;\n\n /**\n * Appends the specified value to the HTTP response header field.\n * If the header is not already set, it creates the header with the specified value.\n * The value parameter can be a string or an array.\n *\n * Note: calling res.set() after res.append() will reset the previously-set header value.\n *\n * @since 4.11.0\n */\n append(field: string, value?: string[] | string): this;\n\n /**\n * After middleware.init executed, Response will contain req property\n * See: express/lib/middleware/init.js\n */\n req: Request;\n}\n\nexport interface Handler extends RequestHandler {}\n\nexport type RequestParamHandler = (req: Request, res: Response, next: NextFunction, value: any, name: string) => any;\n\nexport type ApplicationRequestHandler<T> =\n & IRouterHandler<T>\n & IRouterMatcher<T>\n & ((...handlers: RequestHandlerParams[]) => T);\n\nexport interface Application<\n LocalsObj extends Record<string, any> = Record<string, any>,\n> extends EventEmitter, IRouter, Express.Application {\n /**\n * Express instance itself is a request handler, which could be invoked without\n * third argument.\n */\n (req: Request | http.IncomingMessage, res: Response | http.ServerResponse): any;\n\n /**\n * Initialize the server.\n *\n * - setup default configuration\n * - setup default middleware\n * - setup route reflection methods\n */\n init(): void;\n\n /**\n * Initialize application configuration.\n */\n defaultConfiguration(): void;\n\n /**\n * Register the given template engine callback `fn`\n * as `ext`.\n *\n * By default will `require()` the engine based on the\n * file extension. For example if you try to render\n * a \"foo.jade\" file Express will invoke the following internally:\n *\n * app.engine('jade', require('jade').__express);\n *\n * For engines that do not provide `.__express` out of the box,\n * or if you wish to \"map\" a different extension to the template engine\n * you may use this method. For example mapping the EJS template engine to\n * \".html\" files:\n *\n * app.engine('html', require('ejs').renderFile);\n *\n * In this case EJS provides a `.renderFile()` method with\n * the same signature that Express expects: `(path, options, callback)`,\n * though note that it aliases this method as `ejs.__express` internally\n * so if you're using \".ejs\" extensions you dont need to do anything.\n *\n * Some template engines do not follow this convention, the\n * [Consolidate.js](https://github.com/visionmedia/consolidate.js)\n * library was created to map all of node's popular template\n * engines to follow this convention, thus allowing them to\n * work seamlessly within Express.\n */\n engine(\n ext: string,\n fn: (path: string, options: object, callback: (e: any, rendered?: string) => void) => void,\n ): this;\n\n /**\n * Assign `setting` to `val`, or return `setting`'s value.\n *\n * app.set('foo', 'bar');\n * app.get('foo');\n * // => \"bar\"\n * app.set('foo', ['bar', 'baz']);\n * app.get('foo');\n * // => [\"bar\", \"baz\"]\n *\n * Mounted servers inherit their parent server's settings.\n */\n set(setting: string, val: any): this;\n get: ((name: string) => any) & IRouterMatcher<this>;\n\n param(name: string | string[], handler: RequestParamHandler): this;\n\n /**\n * Return the app's absolute pathname\n * based on the parent(s) that have\n * mounted it.\n *\n * For example if the application was\n * mounted as \"/admin\", which itself\n * was mounted as \"/blog\" then the\n * return value would be \"/blog/admin\".\n */\n path(): string;\n\n /**\n * Check if `setting` is enabled (truthy).\n *\n * app.enabled('foo')\n * // => false\n *\n * app.enable('foo')\n * app.enabled('foo')\n * // => true\n */\n enabled(setting: string): boolean;\n\n /**\n * Check if `setting` is disabled.\n *\n * app.disabled('foo')\n * // => true\n *\n * app.enable('foo')\n * app.disabled('foo')\n * // => false\n */\n disabled(setting: string): boolean;\n\n /** Enable `setting`. */\n enable(setting: string): this;\n\n /** Disable `setting`. */\n disable(setting: string): this;\n\n /**\n * Render the given view `name` name with `options`\n * and a callback accepting an error and the\n * rendered template string.\n *\n * Example:\n *\n * app.render('email', { name: 'Tobi' }, function(err, html){\n * // ...\n * })\n */\n render(name: string, options?: object, callback?: (err: Error, html: string) => void): void;\n render(name: string, callback: (err: Error, html: string) => void): void;\n\n /**\n * Listen for connections.\n *\n * A node `http.Server` is returned, with this\n * application (which is a `Function`) as its\n * callback. If you wish to create both an HTTP\n * and HTTPS server you may do so with the \"http\"\n * and \"https\" modules as shown here:\n *\n * var http = require('http')\n * , https = require('https')\n * , express = require('express')\n * , app = express();\n *\n * http.createServer(app).listen(80);\n * https.createServer({ ... }, app).listen(443);\n */\n listen(port: number, hostname: string, backlog: number, callback?: (error?: Error) => void): http.Server;\n listen(port: number, hostname: string, callback?: (error?: Error) => void): http.Server;\n listen(port: number, callback?: (error?: Error) => void): http.Server;\n listen(callback?: (error?: Error) => void): http.Server;\n listen(path: string, callback?: (error?: Error) => void): http.Server;\n listen(handle: any, listeningListener?: (error?: Error) => void): http.Server;\n\n router: Router;\n\n settings: any;\n\n resource: any;\n\n map: any;\n\n locals: LocalsObj & Locals;\n\n /**\n * The app.routes object houses all of the routes defined mapped by the\n * associated HTTP verb. This object may be used for introspection\n * capabilities, for example Express uses this internally not only for\n * routing but to provide default OPTIONS behaviour unless app.options()\n * is used. Your application or framework may also remove routes by\n * simply by removing them from this object.\n */\n routes: any;\n\n /**\n * Used to get all registered routes in Express Application\n */\n _router: any;\n\n use: ApplicationRequestHandler<this>;\n\n /**\n * The mount event is fired on a sub-app, when it is mounted on a parent app.\n * The parent app is passed to the callback function.\n *\n * NOTE:\n * Sub-apps will:\n * - Not inherit the value of settings that have a default value. You must set the value in the sub-app.\n * - Inherit the value of settings with no default value.\n */\n on: (event: string, callback: (parent: Application) => void) => this;\n\n /**\n * The app.mountpath property contains one or more path patterns on which a sub-app was mounted.\n */\n mountpath: string | string[];\n}\n\nexport interface Express extends Application {\n request: Request;\n response: Response;\n}\n",
|
|
@@ -12614,6 +12620,8 @@
|
|
|
12614
12620
|
"node_modules/@types/inquirer/package.json": "{\n \"name\": \"@types/inquirer\",\n \"version\": \"9.0.8\",\n \"description\": \"TypeScript definitions for inquirer\",\n \"homepage\": \"https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/inquirer\",\n \"license\": \"MIT\",\n \"contributors\": [\n {\n \"name\": \"Qubo\",\n \"githubUsername\": \"tkQubo\",\n \"url\": \"https://github.com/tkQubo\"\n },\n {\n \"name\": \"Parvez\",\n \"githubUsername\": \"ppathan\",\n \"url\": \"https://github.com/ppathan\"\n },\n {\n \"name\": \"Jouderian\",\n \"githubUsername\": \"jouderianjr\",\n \"url\": \"https://github.com/jouderianjr\"\n },\n {\n \"name\": \"Qibang\",\n \"githubUsername\": \"bang88\",\n \"url\": \"https://github.com/bang88\"\n },\n {\n \"name\": \"Jason Dreyzehner\",\n \"githubUsername\": \"bitjson\",\n \"url\": \"https://github.com/bitjson\"\n },\n {\n \"name\": \"Synarque\",\n \"githubUsername\": \"synarque\",\n \"url\": \"https://github.com/synarque\"\n },\n {\n \"name\": \"Justin Rockwood\",\n \"githubUsername\": \"jrockwood\",\n \"url\": \"https://github.com/jrockwood\"\n },\n {\n \"name\": \"Keith Kelly\",\n \"githubUsername\": \"kwkelly\",\n \"url\": \"https://github.com/kwkelly\"\n },\n {\n \"name\": \"Richard Lea\",\n \"githubUsername\": \"chigix\",\n \"url\": \"https://github.com/chigix\"\n }\n ],\n \"type\": \"module\",\n \"main\": \"\",\n \"types\": \"index.d.ts\",\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/DefinitelyTyped/DefinitelyTyped.git\",\n \"directory\": \"types/inquirer\"\n },\n \"scripts\": {},\n \"dependencies\": {\n \"@types/through\": \"*\",\n \"rxjs\": \"^7.2.0\"\n },\n \"peerDependencies\": {},\n \"typesPublisherContentHash\": \"021c75d431cee8172e2b4faf1198f27422ffa9602a76c77731dd14aaaaa8f212\",\n \"typeScriptVersion\": \"5.1\"\n}",
|
|
12615
12621
|
"node_modules/@types/jsonwebtoken/index.d.ts": "/// <reference types=\"node\" />\n\nimport type { createPrivateKey, createPublicKey, KeyObject } from \"crypto\";\nimport type { StringValue } from \"ms\";\n\nexport class JsonWebTokenError extends Error {\n inner: Error;\n\n constructor(message: string, error?: Error);\n}\n\nexport class TokenExpiredError extends JsonWebTokenError {\n expiredAt: Date;\n\n constructor(message: string, expiredAt: Date);\n}\n\n/**\n * Thrown if current time is before the nbf claim.\n */\nexport class NotBeforeError extends JsonWebTokenError {\n date: Date;\n\n constructor(message: string, date: Date);\n}\n\nexport interface SignOptions {\n /**\n * Signature algorithm. Could be one of these values :\n * - HS256: HMAC using SHA-256 hash algorithm (default)\n * - HS384: HMAC using SHA-384 hash algorithm\n * - HS512: HMAC using SHA-512 hash algorithm\n * - RS256: RSASSA using SHA-256 hash algorithm\n * - RS384: RSASSA using SHA-384 hash algorithm\n * - RS512: RSASSA using SHA-512 hash algorithm\n * - ES256: ECDSA using P-256 curve and SHA-256 hash algorithm\n * - ES384: ECDSA using P-384 curve and SHA-384 hash algorithm\n * - ES512: ECDSA using P-521 curve and SHA-512 hash algorithm\n * - none: No digital signature or MAC value included\n */\n algorithm?: Algorithm | undefined;\n keyid?: string | undefined;\n expiresIn?: StringValue | number;\n notBefore?: StringValue | number | undefined;\n audience?: string | string[] | undefined;\n subject?: string | undefined;\n issuer?: string | undefined;\n jwtid?: string | undefined;\n mutatePayload?: boolean | undefined;\n noTimestamp?: boolean | undefined;\n header?: JwtHeader | undefined;\n encoding?: string | undefined;\n allowInsecureKeySizes?: boolean | undefined;\n allowInvalidAsymmetricKeyTypes?: boolean | undefined;\n}\n\nexport interface VerifyOptions {\n algorithms?: Algorithm[] | undefined;\n audience?: string | RegExp | Array<string | RegExp> | undefined;\n clockTimestamp?: number | undefined;\n clockTolerance?: number | undefined;\n /** return an object with the decoded `{ payload, header, signature }` instead of only the usual content of the payload. */\n complete?: boolean | undefined;\n issuer?: string | string[] | undefined;\n ignoreExpiration?: boolean | undefined;\n ignoreNotBefore?: boolean | undefined;\n jwtid?: string | undefined;\n /**\n * If you want to check `nonce` claim, provide a string value here.\n * It is used on Open ID for the ID Tokens. ([Open ID implementation notes](https://openid.net/specs/openid-connect-core-1_0.html#NonceNotes))\n */\n nonce?: string | undefined;\n subject?: string | undefined;\n maxAge?: string | number | undefined;\n allowInvalidAsymmetricKeyTypes?: boolean | undefined;\n}\n\nexport interface DecodeOptions {\n complete?: boolean | undefined;\n json?: boolean | undefined;\n}\nexport type VerifyErrors =\n | JsonWebTokenError\n | NotBeforeError\n | TokenExpiredError;\nexport type VerifyCallback<T = Jwt | JwtPayload | string> = (\n error: VerifyErrors | null,\n decoded?: T | undefined,\n) => void;\n\nexport type SignCallback = (\n error: Error | null,\n encoded?: string | undefined,\n) => void;\n\n// standard names https://www.rfc-editor.org/rfc/rfc7515.html#section-4.1\nexport interface JwtHeader {\n alg: string | Algorithm;\n typ?: string | undefined;\n cty?: string | undefined;\n crit?: Array<string | Exclude<keyof JwtHeader, \"crit\">> | undefined;\n kid?: string | undefined;\n jku?: string | undefined;\n x5u?: string | string[] | undefined;\n \"x5t#S256\"?: string | undefined;\n x5t?: string | undefined;\n x5c?: string | string[] | undefined;\n}\n\n// standard claims https://datatracker.ietf.org/doc/html/rfc7519#section-4.1\nexport interface JwtPayload {\n [key: string]: any;\n iss?: string | undefined;\n sub?: string | undefined;\n aud?: string | string[] | undefined;\n exp?: number | undefined;\n nbf?: number | undefined;\n iat?: number | undefined;\n jti?: string | undefined;\n}\n\nexport interface Jwt {\n header: JwtHeader;\n payload: JwtPayload | string;\n signature: string;\n}\n\n// https://github.com/auth0/node-jsonwebtoken#algorithms-supported\nexport type Algorithm =\n | \"HS256\"\n | \"HS384\"\n | \"HS512\"\n | \"RS256\"\n | \"RS384\"\n | \"RS512\"\n | \"ES256\"\n | \"ES384\"\n | \"ES512\"\n | \"PS256\"\n | \"PS384\"\n | \"PS512\"\n | \"none\";\n\nexport type SigningKeyCallback = (\n error: Error | null,\n signingKey?: Secret | PublicKey,\n) => void;\n\nexport type GetPublicKeyOrSecret = (\n header: JwtHeader,\n callback: SigningKeyCallback,\n) => void;\n\nexport type PublicKey = Parameters<typeof createPublicKey>[0];\n\nexport type PrivateKey = Parameters<typeof createPrivateKey>[0];\n\nexport type Secret =\n | string\n | Buffer\n | KeyObject\n | { key: string | Buffer; passphrase: string };\n\n/**\n * Synchronously sign the given payload into a JSON Web Token string\n * payload - Payload to sign, could be an literal, buffer or string\n * secretOrPrivateKey - Either the secret for HMAC algorithms, or the PEM encoded private key for RSA and ECDSA.\n * [options] - Options for the signature\n * returns - The JSON Web Token string\n */\nexport function sign(\n payload: string | Buffer | object,\n secretOrPrivateKey: Secret | PrivateKey,\n options?: SignOptions,\n): string;\nexport function sign(\n payload: string | Buffer | object,\n secretOrPrivateKey: null,\n options?: SignOptions & { algorithm: \"none\" },\n): string;\n\n/**\n * Sign the given payload into a JSON Web Token string\n * payload - Payload to sign, could be an literal, buffer or string\n * secretOrPrivateKey - Either the secret for HMAC algorithms, or the PEM encoded private key for RSA and ECDSA.\n * [options] - Options for the signature\n * callback - Callback to get the encoded token on\n */\nexport function sign(\n payload: string | Buffer | object,\n secretOrPrivateKey: Secret | PrivateKey,\n callback: SignCallback,\n): void;\nexport function sign(\n payload: string | Buffer | object,\n secretOrPrivateKey: Secret | PrivateKey,\n options: SignOptions,\n callback: SignCallback,\n): void;\nexport function sign(\n payload: string | Buffer | object,\n secretOrPrivateKey: null,\n options: SignOptions & { algorithm: \"none\" },\n callback: SignCallback,\n): void;\n\n/**\n * Synchronously verify given token using a secret or a public key to get a decoded token\n * token - JWT string to verify\n * secretOrPublicKey - Either the secret for HMAC algorithms, or the PEM encoded public key for RSA and ECDSA.\n * [options] - Options for the verification\n * returns - The decoded token.\n */\nexport function verify(\n token: string,\n secretOrPublicKey: Secret | PublicKey,\n options: VerifyOptions & { complete: true },\n): Jwt;\nexport function verify(\n token: string,\n secretOrPublicKey: Secret | PublicKey,\n options?: VerifyOptions & { complete?: false },\n): JwtPayload | string;\nexport function verify(\n token: string,\n secretOrPublicKey: Secret | PublicKey,\n options?: VerifyOptions,\n): Jwt | JwtPayload | string;\n\n/**\n * Asynchronously verify given token using a secret or a public key to get a decoded token\n * token - JWT string to verify\n * secretOrPublicKey - A string or buffer containing either the secret for HMAC algorithms,\n * or the PEM encoded public key for RSA and ECDSA. If jwt.verify is called asynchronous,\n * secretOrPublicKey can be a function that should fetch the secret or public key\n * [options] - Options for the verification\n * callback - Callback to get the decoded token on\n */\nexport function verify(\n token: string,\n secretOrPublicKey: Secret | PublicKey | GetPublicKeyOrSecret,\n callback?: VerifyCallback<JwtPayload | string>,\n): void;\nexport function verify(\n token: string,\n secretOrPublicKey: Secret | PublicKey | GetPublicKeyOrSecret,\n options: VerifyOptions & { complete: true },\n callback?: VerifyCallback<Jwt>,\n): void;\nexport function verify(\n token: string,\n secretOrPublicKey: Secret | PublicKey | GetPublicKeyOrSecret,\n options?: VerifyOptions & { complete?: false },\n callback?: VerifyCallback<JwtPayload | string>,\n): void;\nexport function verify(\n token: string,\n secretOrPublicKey: Secret | PublicKey | GetPublicKeyOrSecret,\n options?: VerifyOptions,\n callback?: VerifyCallback,\n): void;\n\n/**\n * Returns the decoded payload without verifying if the signature is valid.\n * token - JWT string to decode\n * [options] - Options for decoding\n * returns - The decoded Token\n */\nexport function decode(token: string, options: DecodeOptions & { complete: true }): null | Jwt;\nexport function decode(token: string, options: DecodeOptions & { json: true }): null | JwtPayload;\nexport function decode(token: string, options?: DecodeOptions): null | JwtPayload | string;\n",
|
|
12616
12622
|
"node_modules/@types/jsonwebtoken/package.json": "{\n \"name\": \"@types/jsonwebtoken\",\n \"version\": \"9.0.9\",\n \"description\": \"TypeScript definitions for jsonwebtoken\",\n \"homepage\": \"https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jsonwebtoken\",\n \"license\": \"MIT\",\n \"contributors\": [\n {\n \"name\": \"Maxime LUCE\",\n \"githubUsername\": \"SomaticIT\",\n \"url\": \"https://github.com/SomaticIT\"\n },\n {\n \"name\": \"Daniel Heim\",\n \"githubUsername\": \"danielheim\",\n \"url\": \"https://github.com/danielheim\"\n },\n {\n \"name\": \"Brice BERNARD\",\n \"githubUsername\": \"brikou\",\n \"url\": \"https://github.com/brikou\"\n },\n {\n \"name\": \"Veli-Pekka Kestilä\",\n \"githubUsername\": \"vpk\",\n \"url\": \"https://github.com/vpk\"\n },\n {\n \"name\": \"Daniel Parker\",\n \"githubUsername\": \"GeneralistDev\",\n \"url\": \"https://github.com/GeneralistDev\"\n },\n {\n \"name\": \"Kjell Dießel\",\n \"githubUsername\": \"kettil\",\n \"url\": \"https://github.com/kettil\"\n },\n {\n \"name\": \"Robert Gajda\",\n \"githubUsername\": \"RunAge\",\n \"url\": \"https://github.com/RunAge\"\n },\n {\n \"name\": \"Nico Flaig\",\n \"githubUsername\": \"nflaig\",\n \"url\": \"https://github.com/nflaig\"\n },\n {\n \"name\": \"Linus Unnebäck\",\n \"githubUsername\": \"LinusU\",\n \"url\": \"https://github.com/LinusU\"\n },\n {\n \"name\": \"Ivan Sieder\",\n \"githubUsername\": \"ivansieder\",\n \"url\": \"https://github.com/ivansieder\"\n },\n {\n \"name\": \"Piotr Błażejewicz\",\n \"githubUsername\": \"peterblazejewicz\",\n \"url\": \"https://github.com/peterblazejewicz\"\n },\n {\n \"name\": \"Nandor Kraszlan\",\n \"githubUsername\": \"nandi95\",\n \"url\": \"https://github.com/nandi95\"\n }\n ],\n \"main\": \"\",\n \"types\": \"index.d.ts\",\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/DefinitelyTyped/DefinitelyTyped.git\",\n \"directory\": \"types/jsonwebtoken\"\n },\n \"scripts\": {},\n \"dependencies\": {\n \"@types/ms\": \"*\",\n \"@types/node\": \"*\"\n },\n \"peerDependencies\": {},\n \"typesPublisherContentHash\": \"1af47fd7adaac303d61fe420f090b7c63e0654a22805acad05550770fa3f5d9c\",\n \"typeScriptVersion\": \"5.0\"\n}",
|
|
12623
|
+
"node_modules/@types/mdast/index.d.ts": "import type { Data as UnistData, Literal as UnistLiteral, Node as UnistNode, Parent as UnistParent } from \"unist\";\n\n// ## Enumeration\n\n/**\n * How phrasing content is aligned\n * ({@link https://drafts.csswg.org/css-text/ | [CSSTEXT]}).\n *\n * * `'left'`: See the\n * {@link https://drafts.csswg.org/css-text/#valdef-text-align-left | left}\n * value of the `text-align` CSS property\n * * `'right'`: See the\n * {@link https://drafts.csswg.org/css-text/#valdef-text-align-right | right}\n * value of the `text-align` CSS property\n * * `'center'`: See the\n * {@link https://drafts.csswg.org/css-text/#valdef-text-align-center | center}\n * value of the `text-align` CSS property\n * * `null`: phrasing content is aligned as defined by the host environment\n *\n * Used in GFM tables.\n */\nexport type AlignType = \"center\" | \"left\" | \"right\" | null;\n\n/**\n * Explicitness of a reference.\n *\n * `'shortcut'`: the reference is implicit, its identifier inferred from its\n * content\n * `'collapsed'`: the reference is explicit, its identifier inferred from its\n * content\n * `'full'`: the reference is explicit, its identifier explicitly set\n */\nexport type ReferenceType = \"shortcut\" | \"collapsed\" | \"full\";\n\n// ## Mixin\n\n/**\n * Node with a fallback.\n */\nexport interface Alternative {\n /**\n * Equivalent content for environments that cannot represent the node as\n * intended.\n */\n alt?: string | null | undefined;\n}\n\n/**\n * Internal relation from one node to another.\n *\n * Whether the value of `identifier` is expected to be a unique identifier or\n * not depends on the type of node including the Association.\n * An example of this is that they should be unique on {@link Definition},\n * whereas multiple {@link LinkReference}s can be non-unique to be associated\n * with one definition.\n */\nexport interface Association {\n /**\n * Relation of association.\n *\n * `identifier` is a source value: character escapes and character\n * references are not parsed.\n *\n * It can match another node.\n *\n * Its value must be normalized.\n * To normalize a value, collapse markdown whitespace (`[\\t\\n\\r ]+`) to a space,\n * trim the optional initial and/or final space, and perform Unicode-aware\n * case-folding.\n */\n identifier: string;\n\n /**\n * Relation of association, in parsed form.\n *\n * `label` is a `string` value: it works just like `title` on {@link Link}\n * or a `lang` on {@link Code}: character escapes and character references\n * are parsed.\n *\n * It can match another node.\n */\n label?: string | null | undefined;\n}\n\n/**\n * Marker that is associated to another node.\n */\nexport interface Reference extends Association {\n /**\n * Explicitness of the reference.\n */\n referenceType: ReferenceType;\n}\n\n/**\n * Reference to resource.\n */\nexport interface Resource {\n /**\n * URL to the referenced resource.\n */\n url: string;\n /**\n * Advisory information for the resource, such as would be appropriate for\n * a tooltip.\n */\n title?: string | null | undefined;\n}\n\n// ## Interfaces\n\n/**\n * Info associated with mdast nodes by the ecosystem.\n *\n * This space is guaranteed to never be specified by unist or mdast.\n * But you can use it in utilities and plugins to store data.\n *\n * This type can be augmented to register custom data.\n * For example:\n *\n * ```ts\n * declare module 'mdast' {\n * interface Data {\n * // `someNode.data.myId` is typed as `number | undefined`\n * myId?: number | undefined\n * }\n * }\n * ```\n */\nexport interface Data extends UnistData {}\n\n// ## Content maps\n\n/**\n * Union of registered mdast nodes that can occur where block content is\n * expected.\n *\n * To register custom mdast nodes, add them to {@link BlockContentMap}.\n * They will be automatically added here.\n */\nexport type BlockContent = BlockContentMap[keyof BlockContentMap];\n\n/**\n * Registry of all mdast nodes that can occur where {@link BlockContent} is\n * expected.\n *\n * This interface can be augmented to register custom node types:\n *\n * ```ts\n * declare module 'mdast' {\n * interface BlockContentMap {\n * // Allow using MDX ESM nodes defined by `remark-mdx`.\n * mdxjsEsm: MdxjsEsm;\n * }\n * }\n * ```\n *\n * For a union of all block content, see {@link RootContent}.\n */\nexport interface BlockContentMap {\n blockquote: Blockquote;\n code: Code;\n heading: Heading;\n html: Html;\n list: List;\n paragraph: Paragraph;\n table: Table;\n thematicBreak: ThematicBreak;\n}\n\n/**\n * Union of registered mdast nodes that can occur where definition content is\n * expected.\n *\n * To register custom mdast nodes, add them to {@link DefinitionContentMap}.\n * They will be automatically added here.\n */\nexport type DefinitionContent = DefinitionContentMap[keyof DefinitionContentMap];\n\n/**\n * Registry of all mdast nodes that can occur where {@link DefinitionContent}\n * is expected.\n *\n * This interface can be augmented to register custom node types:\n *\n * ```ts\n * declare module 'mdast' {\n * interface DefinitionContentMap {\n * custom: Custom;\n * }\n * }\n * ```\n *\n * For a union of all definition content, see {@link RootContent}.\n */\nexport interface DefinitionContentMap {\n definition: Definition;\n footnoteDefinition: FootnoteDefinition;\n}\n\n/**\n * Union of registered mdast nodes that can occur where frontmatter content is\n * expected.\n *\n * To register custom mdast nodes, add them to {@link FrontmatterContentMap}.\n * They will be automatically added here.\n */\nexport type FrontmatterContent = FrontmatterContentMap[keyof FrontmatterContentMap];\n\n/**\n * Registry of all mdast nodes that can occur where {@link FrontmatterContent}\n * is expected.\n *\n * This interface can be augmented to register custom node types:\n *\n * ```ts\n * declare module 'mdast' {\n * interface FrontmatterContentMap {\n * // Allow using toml nodes defined by `remark-frontmatter`.\n * toml: TOML;\n * }\n * }\n * ```\n *\n * For a union of all frontmatter content, see {@link RootContent}.\n */\nexport interface FrontmatterContentMap {\n yaml: Yaml;\n}\n\n/**\n * Union of registered mdast nodes that can occur where list content is\n * expected.\n *\n * To register custom mdast nodes, add them to {@link ListContentMap}.\n * They will be automatically added here.\n */\nexport type ListContent = ListContentMap[keyof ListContentMap];\n\n/**\n * Registry of all mdast nodes that can occur where {@link ListContent}\n * is expected.\n *\n * This interface can be augmented to register custom node types:\n *\n * ```ts\n * declare module 'mdast' {\n * interface ListContentMap {\n * custom: Custom;\n * }\n * }\n * ```\n *\n * For a union of all list content, see {@link RootContent}.\n */\nexport interface ListContentMap {\n listItem: ListItem;\n}\n\n/**\n * Union of registered mdast nodes that can occur where phrasing content is\n * expected.\n *\n * To register custom mdast nodes, add them to {@link PhrasingContentMap}.\n * They will be automatically added here.\n */\nexport type PhrasingContent = PhrasingContentMap[keyof PhrasingContentMap];\n\n/**\n * Registry of all mdast nodes that can occur where {@link PhrasingContent}\n * is expected.\n *\n * This interface can be augmented to register custom node types:\n *\n * ```ts\n * declare module 'mdast' {\n * interface PhrasingContentMap {\n * // Allow using MDX JSX (text) nodes defined by `remark-mdx`.\n * mdxJsxTextElement: MDXJSXTextElement;\n * }\n * }\n * ```\n *\n * For a union of all phrasing content, see {@link RootContent}.\n */\nexport interface PhrasingContentMap {\n break: Break;\n delete: Delete;\n emphasis: Emphasis;\n footnoteReference: FootnoteReference;\n html: Html;\n image: Image;\n imageReference: ImageReference;\n inlineCode: InlineCode;\n link: Link;\n linkReference: LinkReference;\n strong: Strong;\n text: Text;\n}\n\n/**\n * Union of registered mdast nodes that can occur in {@link Root}.\n *\n * To register custom mdast nodes, add them to {@link RootContentMap}.\n * They will be automatically added here.\n */\nexport type RootContent = RootContentMap[keyof RootContentMap];\n\n/**\n * Registry of all mdast nodes that can occur as children of {@link Root}.\n *\n * > **Note**: {@link Root} does not need to be an entire document.\n * > it can also be a fragment.\n *\n * This interface can be augmented to register custom node types:\n *\n * ```ts\n * declare module 'mdast' {\n * interface RootContentMap {\n * // Allow using toml nodes defined by `remark-frontmatter`.\n * toml: TOML;\n * }\n * }\n * ```\n *\n * For a union of all {@link Root} children, see {@link RootContent}.\n */\nexport interface RootContentMap {\n blockquote: Blockquote;\n break: Break;\n code: Code;\n definition: Definition;\n delete: Delete;\n emphasis: Emphasis;\n footnoteDefinition: FootnoteDefinition;\n footnoteReference: FootnoteReference;\n heading: Heading;\n html: Html;\n image: Image;\n imageReference: ImageReference;\n inlineCode: InlineCode;\n link: Link;\n linkReference: LinkReference;\n list: List;\n listItem: ListItem;\n paragraph: Paragraph;\n strong: Strong;\n table: Table;\n tableCell: TableCell;\n tableRow: TableRow;\n text: Text;\n thematicBreak: ThematicBreak;\n yaml: Yaml;\n}\n\n/**\n * Union of registered mdast nodes that can occur where row content is\n * expected.\n *\n * To register custom mdast nodes, add them to {@link RowContentMap}.\n * They will be automatically added here.\n */\nexport type RowContent = RowContentMap[keyof RowContentMap];\n\n/**\n * Registry of all mdast nodes that can occur where {@link RowContent}\n * is expected.\n *\n * This interface can be augmented to register custom node types:\n *\n * ```ts\n * declare module 'mdast' {\n * interface RowContentMap {\n * custom: Custom;\n * }\n * }\n * ```\n *\n * For a union of all row content, see {@link RootContent}.\n */\nexport interface RowContentMap {\n tableCell: TableCell;\n}\n\n/**\n * Union of registered mdast nodes that can occur where table content is\n * expected.\n *\n * To register custom mdast nodes, add them to {@link TableContentMap}.\n * They will be automatically added here.\n */\nexport type TableContent = TableContentMap[keyof TableContentMap];\n\n/**\n * Registry of all mdast nodes that can occur where {@link TableContent}\n * is expected.\n *\n * This interface can be augmented to register custom node types:\n *\n * ```ts\n * declare module 'mdast' {\n * interface TableContentMap {\n * custom: Custom;\n * }\n * }\n * ```\n *\n * For a union of all table content, see {@link RootContent}.\n */\nexport interface TableContentMap {\n tableRow: TableRow;\n}\n\n// ### Special content types\n\n/**\n * Union of registered mdast nodes that can occur in {@link Root}.\n *\n * @deprecated Use {@link RootContent} instead.\n */\nexport type Content = RootContent;\n\n/**\n * Union of registered mdast literals.\n *\n * To register custom mdast nodes, add them to {@link RootContentMap} and other\n * places where relevant.\n * They will be automatically added here.\n */\nexport type Literals = Extract<Nodes, UnistLiteral>;\n\n/**\n * Union of registered mdast nodes.\n *\n * To register custom mdast nodes, add them to {@link RootContentMap} and other\n * places where relevant.\n * They will be automatically added here.\n */\nexport type Nodes = Root | RootContent;\n\n/**\n * Union of registered mdast parents.\n *\n * To register custom mdast nodes, add them to {@link RootContentMap} and other\n * places where relevant.\n * They will be automatically added here.\n */\nexport type Parents = Extract<Nodes, UnistParent>;\n\n/**\n * Union of registered mdast nodes that can occur at the top of the document.\n *\n * To register custom mdast nodes, add them to {@link BlockContent},\n * {@link FrontmatterContent}, or {@link DefinitionContent}.\n * They will be automatically added here.\n */\nexport type TopLevelContent = BlockContent | FrontmatterContent | DefinitionContent;\n\n// ## Abstract nodes\n\n/**\n * Abstract mdast node that contains the smallest possible value.\n *\n * This interface is supposed to be extended if you make custom mdast nodes.\n *\n * For a union of all registered mdast literals, see {@link Literals}.\n */\nexport interface Literal extends Node {\n /**\n * Plain-text value.\n */\n value: string;\n}\n\n/**\n * Abstract mdast node.\n *\n * This interface is supposed to be extended.\n * If you can use {@link Literal} or {@link Parent}, you should.\n * But for example in markdown, a thematic break (`***`) is neither literal nor\n * parent, but still a node.\n *\n * To register custom mdast nodes, add them to {@link RootContentMap} and other\n * places where relevant (such as {@link ElementContentMap}).\n *\n * For a union of all registered mdast nodes, see {@link Nodes}.\n */\nexport interface Node extends UnistNode {\n /**\n * Info from the ecosystem.\n */\n data?: Data | undefined;\n}\n\n/**\n * Abstract mdast node that contains other mdast nodes (*children*).\n *\n * This interface is supposed to be extended if you make custom mdast nodes.\n *\n * For a union of all registered mdast parents, see {@link Parents}.\n */\nexport interface Parent extends Node {\n /**\n * List of children.\n */\n children: RootContent[];\n}\n\n// ## Concrete nodes\n\n/**\n * Markdown block quote.\n */\nexport interface Blockquote extends Parent {\n /**\n * Node type of mdast block quote.\n */\n type: \"blockquote\";\n /**\n * Children of block quote.\n */\n children: Array<BlockContent | DefinitionContent>;\n /**\n * Data associated with the mdast block quote.\n */\n data?: BlockquoteData | undefined;\n}\n\n/**\n * Info associated with mdast block quote nodes by the ecosystem.\n */\nexport interface BlockquoteData extends Data {}\n\n/**\n * Markdown break.\n */\nexport interface Break extends Node {\n /**\n * Node type of mdast break.\n */\n type: \"break\";\n /**\n * Data associated with the mdast break.\n */\n data?: BreakData | undefined;\n}\n\n/**\n * Info associated with mdast break nodes by the ecosystem.\n */\nexport interface BreakData extends Data {}\n\n/**\n * Markdown code (flow) (block).\n */\nexport interface Code extends Literal {\n /**\n * Node type of mdast code (flow).\n */\n type: \"code\";\n /**\n * Language of computer code being marked up.\n */\n lang?: string | null | undefined;\n /**\n * Custom information relating to the node.\n *\n * If the lang field is present, a meta field can be present.\n */\n meta?: string | null | undefined;\n /**\n * Data associated with the mdast code (flow).\n */\n data?: CodeData | undefined;\n}\n\n/**\n * Info associated with mdast code (flow) (block) nodes by the ecosystem.\n */\nexport interface CodeData extends Data {}\n\n/**\n * Markdown definition.\n */\nexport interface Definition extends Node, Association, Resource {\n /**\n * Node type of mdast definition.\n */\n type: \"definition\";\n /**\n * Data associated with the mdast definition.\n */\n data?: DefinitionData | undefined;\n}\n\n/**\n * Info associated with mdast definition nodes by the ecosystem.\n */\nexport interface DefinitionData extends Data {}\n\n/**\n * Markdown GFM delete (strikethrough).\n */\nexport interface Delete extends Parent {\n /**\n * Node type of mdast GFM delete.\n */\n type: \"delete\";\n /**\n * Children of GFM delete.\n */\n children: PhrasingContent[];\n /**\n * Data associated with the mdast GFM delete.\n */\n data?: DeleteData | undefined;\n}\n\n/**\n * Info associated with mdast GFM delete nodes by the ecosystem.\n */\nexport interface DeleteData extends Data {}\n\n/**\n * Markdown emphasis.\n */\nexport interface Emphasis extends Parent {\n /**\n * Node type of mdast emphasis.\n */\n type: \"emphasis\";\n /**\n * Children of emphasis.\n */\n children: PhrasingContent[];\n /**\n * Data associated with the mdast emphasis.\n */\n data?: EmphasisData | undefined;\n}\n\n/**\n * Info associated with mdast emphasis nodes by the ecosystem.\n */\nexport interface EmphasisData extends Data {}\n\n/**\n * Markdown GFM footnote definition.\n */\nexport interface FootnoteDefinition extends Parent, Association {\n /**\n * Node type of mdast GFM footnote definition.\n */\n type: \"footnoteDefinition\";\n /**\n * Children of GFM footnote definition.\n */\n children: Array<BlockContent | DefinitionContent>;\n /**\n * Data associated with the mdast GFM footnote definition.\n */\n data?: FootnoteDefinitionData | undefined;\n}\n\n/**\n * Info associated with mdast GFM footnote definition nodes by the ecosystem.\n */\nexport interface FootnoteDefinitionData extends Data {}\n\n/**\n * Markdown GFM footnote reference.\n */\nexport interface FootnoteReference extends Association, Node {\n /**\n * Node type of mdast GFM footnote reference.\n */\n type: \"footnoteReference\";\n /**\n * Data associated with the mdast GFM footnote reference.\n */\n data?: FootnoteReferenceData | undefined;\n}\n\n/**\n * Info associated with mdast GFM footnote reference nodes by the ecosystem.\n */\nexport interface FootnoteReferenceData extends Data {}\n\n/**\n * Markdown heading.\n */\nexport interface Heading extends Parent {\n /**\n * Node type of mdast heading.\n */\n type: \"heading\";\n /**\n * Heading rank.\n *\n * A value of `1` is said to be the highest rank and `6` the lowest.\n */\n depth: 1 | 2 | 3 | 4 | 5 | 6;\n /**\n * Children of heading.\n */\n children: PhrasingContent[];\n /**\n * Data associated with the mdast heading.\n */\n data?: HeadingData | undefined;\n}\n\n/**\n * Info associated with mdast heading nodes by the ecosystem.\n */\nexport interface HeadingData extends Data {}\n\n/**\n * Markdown HTML.\n */\nexport interface Html extends Literal {\n /**\n * Node type of mdast HTML.\n */\n type: \"html\";\n /**\n * Data associated with the mdast HTML.\n */\n data?: HtmlData | undefined;\n}\n\n/**\n * Info associated with mdast HTML nodes by the ecosystem.\n */\nexport interface HtmlData extends Data {}\n\n/**\n * Old name of `Html` node.\n *\n * @deprecated\n * Please use `Html` instead.\n */\nexport type HTML = Html;\n\n/**\n * Markdown image.\n */\nexport interface Image extends Alternative, Node, Resource {\n /**\n * Node type of mdast image.\n */\n type: \"image\";\n /**\n * Data associated with the mdast image.\n */\n data?: ImageData | undefined;\n}\n\n/**\n * Info associated with mdast image nodes by the ecosystem.\n */\nexport interface ImageData extends Data {}\n\n/**\n * Markdown image reference.\n */\nexport interface ImageReference extends Alternative, Node, Reference {\n /**\n * Node type of mdast image reference.\n */\n type: \"imageReference\";\n /**\n * Data associated with the mdast image reference.\n */\n data?: ImageReferenceData | undefined;\n}\n\n/**\n * Info associated with mdast image reference nodes by the ecosystem.\n */\nexport interface ImageReferenceData extends Data {}\n\n/**\n * Markdown code (text) (inline).\n */\nexport interface InlineCode extends Literal {\n /**\n * Node type of mdast code (text).\n */\n type: \"inlineCode\";\n /**\n * Data associated with the mdast code (text).\n */\n data?: InlineCodeData | undefined;\n}\n\n/**\n * Info associated with mdast code (text) (inline) nodes by the ecosystem.\n */\nexport interface InlineCodeData extends Data {}\n\n/**\n * Markdown link.\n */\nexport interface Link extends Parent, Resource {\n /**\n * Node type of mdast link.\n */\n type: \"link\";\n /**\n * Children of link.\n */\n children: PhrasingContent[];\n /**\n * Data associated with the mdast link.\n */\n data?: LinkData | undefined;\n}\n\n/**\n * Info associated with mdast link nodes by the ecosystem.\n */\nexport interface LinkData extends Data {}\n\n/**\n * Markdown link reference.\n */\nexport interface LinkReference extends Parent, Reference {\n /**\n * Node type of mdast link reference.\n */\n type: \"linkReference\";\n /**\n * Children of link reference.\n */\n children: PhrasingContent[];\n /**\n * Data associated with the mdast link reference.\n */\n data?: LinkReferenceData | undefined;\n}\n\n/**\n * Info associated with mdast link reference nodes by the ecosystem.\n */\nexport interface LinkReferenceData extends Data {}\n\n/**\n * Markdown list.\n */\nexport interface List extends Parent {\n /**\n * Node type of mdast list.\n */\n type: \"list\";\n /**\n * Whether the items have been intentionally ordered (when `true`), or that\n * the order of items is not important (when `false` or not present).\n */\n ordered?: boolean | null | undefined;\n /**\n * The starting number of the list, when the `ordered` field is `true`.\n */\n start?: number | null | undefined;\n /**\n * Whether one or more of the children are separated with a blank line from\n * its siblings (when `true`), or not (when `false` or not present).\n */\n spread?: boolean | null | undefined;\n /**\n * Children of list.\n */\n children: ListContent[];\n /**\n * Data associated with the mdast list.\n */\n data?: ListData | undefined;\n}\n\n/**\n * Info associated with mdast list nodes by the ecosystem.\n */\nexport interface ListData extends Data {}\n\n/**\n * Markdown list item.\n */\nexport interface ListItem extends Parent {\n /**\n * Node type of mdast list item.\n */\n type: \"listItem\";\n /**\n * Whether the item is a tasklist item (when `boolean`).\n *\n * When `true`, the item is complete.\n * When `false`, the item is incomplete.\n */\n checked?: boolean | null | undefined;\n /**\n * Whether one or more of the children are separated with a blank line from\n * its siblings (when `true`), or not (when `false` or not present).\n */\n spread?: boolean | null | undefined;\n /**\n * Children of list item.\n */\n children: Array<BlockContent | DefinitionContent>;\n /**\n * Data associated with the mdast list item.\n */\n data?: ListItemData | undefined;\n}\n\n/**\n * Info associated with mdast list item nodes by the ecosystem.\n */\nexport interface ListItemData extends Data {}\n\n/**\n * Markdown paragraph.\n */\nexport interface Paragraph extends Parent {\n /**\n * Node type of mdast paragraph.\n */\n type: \"paragraph\";\n /**\n * Children of paragraph.\n */\n children: PhrasingContent[];\n /**\n * Data associated with the mdast paragraph.\n */\n data?: ParagraphData | undefined;\n}\n\n/**\n * Info associated with mdast paragraph nodes by the ecosystem.\n */\nexport interface ParagraphData extends Data {}\n\n/**\n * Document fragment or a whole document.\n *\n * Should be used as the root of a tree and must not be used as a child.\n */\nexport interface Root extends Parent {\n /**\n * Node type of mdast root.\n */\n type: \"root\";\n /**\n * Data associated with the mdast root.\n */\n data?: RootData | undefined;\n}\n\n/**\n * Info associated with mdast root nodes by the ecosystem.\n */\nexport interface RootData extends Data {}\n\n/**\n * Markdown strong.\n */\nexport interface Strong extends Parent {\n /**\n * Node type of mdast strong.\n */\n type: \"strong\";\n /**\n * Children of strong.\n */\n children: PhrasingContent[];\n /**\n * Data associated with the mdast strong.\n */\n data?: StrongData | undefined;\n}\n\n/**\n * Info associated with mdast strong nodes by the ecosystem.\n */\nexport interface StrongData extends Data {}\n\n/**\n * Markdown GFM table.\n */\nexport interface Table extends Parent {\n /**\n * Node type of mdast GFM table.\n */\n type: \"table\";\n /**\n * How cells in columns are aligned.\n */\n align?: AlignType[] | null | undefined;\n /**\n * Children of GFM table.\n */\n children: TableContent[];\n /**\n * Data associated with the mdast GFM table.\n */\n data?: TableData | undefined;\n}\n\n/**\n * Info associated with mdast GFM table nodes by the ecosystem.\n */\nexport interface TableData extends Data {}\n\n/**\n * Markdown GFM table row.\n */\nexport interface TableRow extends Parent {\n /**\n * Node type of mdast GFM table row.\n */\n type: \"tableRow\";\n /**\n * Children of GFM table row.\n */\n children: RowContent[];\n /**\n * Data associated with the mdast GFM table row.\n */\n data?: TableRowData | undefined;\n}\n\n/**\n * Info associated with mdast GFM table row nodes by the ecosystem.\n */\nexport interface TableRowData extends Data {}\n\n/**\n * Markdown GFM table cell.\n */\nexport interface TableCell extends Parent {\n /**\n * Node type of mdast GFM table cell.\n */\n type: \"tableCell\";\n /**\n * Children of GFM table cell.\n */\n children: PhrasingContent[];\n /**\n * Data associated with the mdast GFM table cell.\n */\n data?: TableCellData | undefined;\n}\n\n/**\n * Info associated with mdast GFM table cell nodes by the ecosystem.\n */\nexport interface TableCellData extends Data {}\n\n/**\n * Markdown text.\n */\nexport interface Text extends Literal {\n /**\n * Node type of mdast text.\n */\n type: \"text\";\n /**\n * Data associated with the mdast text.\n */\n data?: TextData | undefined;\n}\n\n/**\n * Info associated with mdast text nodes by the ecosystem.\n */\nexport interface TextData extends Data {}\n\n/**\n * Markdown thematic break (horizontal rule).\n */\nexport interface ThematicBreak extends Node {\n /**\n * Node type of mdast thematic break.\n */\n type: \"thematicBreak\";\n /**\n * Data associated with the mdast thematic break.\n */\n data?: ThematicBreakData | undefined;\n}\n\n/**\n * Info associated with mdast thematic break nodes by the ecosystem.\n */\nexport interface ThematicBreakData extends Data {}\n\n/**\n * Markdown YAML.\n */\nexport interface Yaml extends Literal {\n /**\n * Node type of mdast YAML.\n */\n type: \"yaml\";\n /**\n * Data associated with the mdast YAML.\n */\n data?: YamlData | undefined;\n}\n\n/**\n * Info associated with mdast YAML nodes by the ecosystem.\n */\nexport interface YamlData extends Data {}\n\n/**\n * Old name of `Yaml` node.\n *\n * @deprecated\n * Please use `Yaml` instead.\n */\nexport type YAML = Yaml;\n",
|
|
12624
|
+
"node_modules/@types/mdast/package.json": "{\n \"name\": \"@types/mdast\",\n \"version\": \"4.0.4\",\n \"description\": \"TypeScript definitions for mdast\",\n \"homepage\": \"https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/mdast\",\n \"license\": \"MIT\",\n \"contributors\": [\n {\n \"name\": \"Christian Murphy\",\n \"githubUsername\": \"ChristianMurphy\",\n \"url\": \"https://github.com/ChristianMurphy\"\n },\n {\n \"name\": \"Jun Lu\",\n \"githubUsername\": \"lujun2\",\n \"url\": \"https://github.com/lujun2\"\n },\n {\n \"name\": \"Remco Haszing\",\n \"githubUsername\": \"remcohaszing\",\n \"url\": \"https://github.com/remcohaszing\"\n },\n {\n \"name\": \"Titus Wormer\",\n \"githubUsername\": \"wooorm\",\n \"url\": \"https://github.com/wooorm\"\n },\n {\n \"name\": \"Remco Haszing\",\n \"githubUsername\": \"remcohaszing\",\n \"url\": \"https://github.com/remcohaszing\"\n }\n ],\n \"main\": \"\",\n \"types\": \"index.d.ts\",\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/DefinitelyTyped/DefinitelyTyped.git\",\n \"directory\": \"types/mdast\"\n },\n \"scripts\": {},\n \"dependencies\": {\n \"@types/unist\": \"*\"\n },\n \"typesPublisherContentHash\": \"1599d3ca45533e9d9248231c90843306b49c07fe13ad94ebf7345da44d8fd4bd\",\n \"typeScriptVersion\": \"4.7\"\n}",
|
|
12617
12625
|
"node_modules/@types/mime/Mime.d.ts": "import { TypeMap } from \"./index\";\n\nexport default class Mime {\n constructor(mimes: TypeMap);\n\n lookup(path: string, fallback?: string): string;\n extension(mime: string): string | undefined;\n load(filepath: string): void;\n define(mimes: TypeMap): void;\n}\n",
|
|
12618
12626
|
"node_modules/@types/mime/index.d.ts": "// Originally imported from: https://github.com/soywiz/typescript-node-definitions/mime.d.ts\n\nexport as namespace mime;\n\nexport interface TypeMap {\n [key: string]: string[];\n}\n\n/**\n * Look up a mime type based on extension.\n *\n * If not found, uses the fallback argument if provided, and otherwise\n * uses `default_type`.\n */\nexport function lookup(path: string, fallback?: string): string;\n/**\n * Return a file extensions associated with a mime type.\n */\nexport function extension(mime: string): string | undefined;\n/**\n * Load an Apache2-style \".types\" file.\n */\nexport function load(filepath: string): void;\nexport function define(mimes: TypeMap): void;\n\nexport interface Charsets {\n lookup(mime: string, fallback: string): string;\n}\n\nexport const charsets: Charsets;\nexport const default_type: string;\n",
|
|
12619
12627
|
"node_modules/@types/mime/lite.d.ts": "import { default as Mime } from \"./Mime\";\n\ndeclare const mimelite: Mime;\n\nexport as namespace mimelite;\n\nexport = mimelite;\n",
|
|
@@ -12721,6 +12729,8 @@
|
|
|
12721
12729
|
"node_modules/@types/swagger-ui-express/package.json": "{\n \"name\": \"@types/swagger-ui-express\",\n \"version\": \"4.1.8\",\n \"description\": \"TypeScript definitions for swagger-ui-express\",\n \"homepage\": \"https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/swagger-ui-express\",\n \"license\": \"MIT\",\n \"contributors\": [\n {\n \"name\": \"Dmitry Rogozhny\",\n \"githubUsername\": \"dmitryrogozhny\",\n \"url\": \"https://github.com/dmitryrogozhny\"\n },\n {\n \"name\": \"Florian Imdahl\",\n \"githubUsername\": \"ffflorian\",\n \"url\": \"https://github.com/ffflorian\"\n }\n ],\n \"main\": \"\",\n \"types\": \"index.d.ts\",\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/DefinitelyTyped/DefinitelyTyped.git\",\n \"directory\": \"types/swagger-ui-express\"\n },\n \"scripts\": {},\n \"dependencies\": {\n \"@types/express\": \"*\",\n \"@types/serve-static\": \"*\"\n },\n \"peerDependencies\": {},\n \"typesPublisherContentHash\": \"da615a60853b98ad26eb83ad15d5fe4465fb5c186f522e504476963bbf3242ec\",\n \"typeScriptVersion\": \"5.0\"\n}",
|
|
12722
12730
|
"node_modules/@types/through/index.d.ts": "/// <reference types=\"node\" />\n\nimport stream = require(\"stream\");\n\ndeclare function through(\n write?: (data: any) => void,\n end?: () => void,\n opts?: {\n autoDestroy: boolean;\n },\n): through.ThroughStream;\n\ndeclare namespace through {\n export interface ThroughStream extends stream.Transform {\n autoDestroy: boolean;\n queue: (chunk: any) => any;\n }\n}\n\nexport = through;\n",
|
|
12723
12731
|
"node_modules/@types/through/package.json": "{\n \"name\": \"@types/through\",\n \"version\": \"0.0.33\",\n \"description\": \"TypeScript definitions for through\",\n \"homepage\": \"https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/through\",\n \"license\": \"MIT\",\n \"contributors\": [\n {\n \"name\": \"Andrew Gaspar\",\n \"githubUsername\": \"AndrewGaspar\",\n \"url\": \"https://github.com/AndrewGaspar\"\n }\n ],\n \"main\": \"\",\n \"types\": \"index.d.ts\",\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/DefinitelyTyped/DefinitelyTyped.git\",\n \"directory\": \"types/through\"\n },\n \"scripts\": {},\n \"dependencies\": {\n \"@types/node\": \"*\"\n },\n \"typesPublisherContentHash\": \"06af82efbf94e1c23fc3b72d80c6c90ac6472e9b69c5e319efa0c0135f20adc5\",\n \"typeScriptVersion\": \"4.5\"\n}",
|
|
12732
|
+
"node_modules/@types/unist/index.d.ts": "// ## Interfaces\n\n/**\n * Info associated with nodes by the ecosystem.\n *\n * This space is guaranteed to never be specified by unist or specifications\n * implementing unist.\n * But you can use it in utilities and plugins to store data.\n *\n * This type can be augmented to register custom data.\n * For example:\n *\n * ```ts\n * declare module 'unist' {\n * interface Data {\n * // `someNode.data.myId` is typed as `number | undefined`\n * myId?: number | undefined\n * }\n * }\n * ```\n */\nexport interface Data {}\n\n/**\n * One place in a source file.\n */\nexport interface Point {\n /**\n * Line in a source file (1-indexed integer).\n */\n line: number;\n\n /**\n * Column in a source file (1-indexed integer).\n */\n column: number;\n /**\n * Character in a source file (0-indexed integer).\n */\n offset?: number | undefined;\n}\n\n/**\n * Position of a node in a source document.\n *\n * A position is a range between two points.\n */\nexport interface Position {\n /**\n * Place of the first character of the parsed source region.\n */\n start: Point;\n\n /**\n * Place of the first character after the parsed source region.\n */\n end: Point;\n}\n\n// ## Abstract nodes\n\n/**\n * Abstract unist node that contains the smallest possible value.\n *\n * This interface is supposed to be extended.\n *\n * For example, in HTML, a `text` node is a leaf that contains text.\n */\nexport interface Literal extends Node {\n /**\n * Plain value.\n */\n value: unknown;\n}\n\n/**\n * Abstract unist node.\n *\n * The syntactic unit in unist syntax trees are called nodes.\n *\n * This interface is supposed to be extended.\n * If you can use {@link Literal} or {@link Parent}, you should.\n * But for example in markdown, a `thematicBreak` (`***`), is neither literal\n * nor parent, but still a node.\n */\nexport interface Node {\n /**\n * Node type.\n */\n type: string;\n\n /**\n * Info from the ecosystem.\n */\n data?: Data | undefined;\n\n /**\n * Position of a node in a source document.\n *\n * Nodes that are generated (not in the original source document) must not\n * have a position.\n */\n position?: Position | undefined;\n}\n\n/**\n * Abstract unist node that contains other nodes (*children*).\n *\n * This interface is supposed to be extended.\n *\n * For example, in XML, an element is a parent of different things, such as\n * comments, text, and further elements.\n */\nexport interface Parent extends Node {\n /**\n * List of children.\n */\n children: Node[];\n}\n",
|
|
12733
|
+
"node_modules/@types/unist/package.json": "{\n \"name\": \"@types/unist\",\n \"version\": \"3.0.3\",\n \"description\": \"TypeScript definitions for unist\",\n \"homepage\": \"https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/unist\",\n \"license\": \"MIT\",\n \"contributors\": [\n {\n \"name\": \"bizen241\",\n \"githubUsername\": \"bizen241\",\n \"url\": \"https://github.com/bizen241\"\n },\n {\n \"name\": \"Jun Lu\",\n \"githubUsername\": \"lujun2\",\n \"url\": \"https://github.com/lujun2\"\n },\n {\n \"name\": \"Hernan Rajchert\",\n \"githubUsername\": \"hrajchert\",\n \"url\": \"https://github.com/hrajchert\"\n },\n {\n \"name\": \"Titus Wormer\",\n \"githubUsername\": \"wooorm\",\n \"url\": \"https://github.com/wooorm\"\n },\n {\n \"name\": \"Junyoung Choi\",\n \"githubUsername\": \"rokt33r\",\n \"url\": \"https://github.com/rokt33r\"\n },\n {\n \"name\": \"Ben Moon\",\n \"githubUsername\": \"GuiltyDolphin\",\n \"url\": \"https://github.com/GuiltyDolphin\"\n },\n {\n \"name\": \"JounQin\",\n \"githubUsername\": \"JounQin\",\n \"url\": \"https://github.com/JounQin\"\n },\n {\n \"name\": \"Remco Haszing\",\n \"githubUsername\": \"remcohaszing\",\n \"url\": \"https://github.com/remcohaszing\"\n }\n ],\n \"main\": \"\",\n \"types\": \"index.d.ts\",\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/DefinitelyTyped/DefinitelyTyped.git\",\n \"directory\": \"types/unist\"\n },\n \"scripts\": {},\n \"dependencies\": {},\n \"typesPublisherContentHash\": \"7f3d5ce8d56003f3583a5317f98d444bdc99910c7b486c6b10af4f38694e61fe\",\n \"typeScriptVersion\": \"4.8\"\n}",
|
|
12724
12734
|
"node_modules/@types/uuid/index.d.ts": "// disable automatic export\nexport {};\n\n// Uses ArrayLike to admit Uint8 and co.\ntype OutputBuffer = ArrayLike<number>;\ntype InputBuffer = ArrayLike<number>;\n\ninterface RandomOptions {\n /** `Array` of 16 random bytes (0-255) */\n random?: InputBuffer | undefined;\n}\ninterface RngOptions {\n /** Alternative to `options.random`, a `Function` that returns an `Array` of 16 random bytes (0-255) */\n rng?: (() => InputBuffer) | undefined;\n}\n\ninterface V1BaseOptions {\n /** RFC \"node\" field as an `Array[6]` of byte values (per 4.1.6) */\n node?: InputBuffer | undefined;\n /** RFC \"clock sequence\" as a `Number` between 0 - 0x3fff */\n clockseq?: number | undefined;\n /** RFC \"timestamp\" field (`Number` of milliseconds, unix epoch) */\n msecs?: number | Date | undefined;\n /** RFC \"timestamp\" field (`Number` of nanoseconds to add to msecs, should be 0-10,000) */\n nsecs?: number | undefined;\n}\ninterface V1RandomOptions extends V1BaseOptions, RandomOptions {}\ninterface V1RngOptions extends V1BaseOptions, RngOptions {}\n\nexport type V1Options = V1RandomOptions | V1RngOptions;\nexport type V4Options = RandomOptions | RngOptions;\nexport type V6Options = V1Options;\n\ninterface V7BaseOptions {\n msecs?: number | Date | undefined;\n seq?: number;\n}\nexport type V7Options = (RandomOptions | RngOptions) & V7BaseOptions;\n\ntype VToV = ((uuid: string) => string) & ((uuid: OutputBuffer) => Uint8Array);\n\ntype v1String = (options?: V1Options) => string;\ntype v1Buffer = <T extends OutputBuffer>(options: V1Options | null | undefined, buffer: T, offset?: number) => T;\ntype v1 = v1Buffer & v1String;\n\ntype v1ToV6 = VToV;\n\ntype v4String = (options?: V4Options) => string;\ntype v4Buffer = <T extends OutputBuffer>(options: V4Options | null | undefined, buffer: T, offset?: number) => T;\ntype v4 = v4Buffer & v4String;\n\ntype v3String = (name: string | InputBuffer, namespace: string | InputBuffer) => string;\ntype v3Buffer = <T extends OutputBuffer>(\n name: string | InputBuffer,\n namespace: string | InputBuffer,\n buffer: T,\n offset?: number,\n) => T;\ninterface v3Static {\n // https://github.com/uuidjs/uuid/blob/master/src/v35.js#L16\n DNS: string;\n // https://github.com/uuidjs/uuid/blob/master/src/v35.js#L17\n URL: string;\n}\ntype v3 = v3Buffer & v3String & v3Static;\n\ntype v5String = (name: string | InputBuffer, namespace: string | InputBuffer) => string;\ntype v5Buffer = <T extends OutputBuffer>(\n name: string | InputBuffer,\n namespace: string | InputBuffer,\n buffer: T,\n offset?: number,\n) => T;\ninterface v5Static {\n // https://github.com/uuidjs/uuid/blob/master/src/v35.js#L16\n DNS: string;\n // https://github.com/uuidjs/uuid/blob/master/src/v35.js#L17\n URL: string;\n}\ntype v5 = v5Buffer & v5String & v5Static;\n\ntype v6String = (options?: V6Options) => string;\ntype v6Buffer = <T extends OutputBuffer>(options: V6Options | null | undefined, buffer: T, offset?: number) => T;\ntype v6 = v6Buffer & v6String;\n\ntype v6ToV1 = VToV;\n\ntype v7String = (options?: V7Options) => string;\ntype v7Buffer = <T extends OutputBuffer>(options: V7Options | null | undefined, buffer: T, offset?: number) => T;\ntype v7 = v7Buffer & v7String;\n\ntype NIL = string;\ntype MAX = string;\n\ntype parse = (uuid: string) => Uint8Array;\ntype stringify = (buffer: InputBuffer, offset?: number) => string;\ntype validate = (uuid: string) => boolean;\ntype version = (uuid: string) => number;\n\nexport const NIL: NIL;\nexport const MAX: MAX;\nexport const parse: parse;\nexport const stringify: stringify;\nexport const v1: v1;\nexport const v1ToV6: v1ToV6;\nexport const v3: v3;\nexport const v4: v4;\nexport const v5: v5;\nexport const v6: v6;\nexport const v6ToV1: v6ToV1;\nexport const v7: v7;\nexport const validate: validate;\nexport const version: version;\n",
|
|
12725
12735
|
"node_modules/@types/uuid/package.json": "{\n \"name\": \"@types/uuid\",\n \"version\": \"10.0.0\",\n \"description\": \"TypeScript definitions for uuid\",\n \"homepage\": \"https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/uuid\",\n \"license\": \"MIT\",\n \"contributors\": [\n {\n \"name\": \"Oliver Hoffmann\",\n \"githubUsername\": \"iamolivinius\",\n \"url\": \"https://github.com/iamolivinius\"\n },\n {\n \"name\": \"Felipe Ochoa\",\n \"githubUsername\": \"felipeochoa\",\n \"url\": \"https://github.com/felipeochoa\"\n },\n {\n \"name\": \"Chris Barth\",\n \"githubUsername\": \"cjbarth\",\n \"url\": \"https://github.com/cjbarth\"\n },\n {\n \"name\": \"Linus Unnebäck\",\n \"githubUsername\": \"LinusU\",\n \"url\": \"https://github.com/LinusU\"\n },\n {\n \"name\": \"Christoph Tavan\",\n \"githubUsername\": \"ctavan\",\n \"url\": \"https://github.com/ctavan\"\n }\n ],\n \"main\": \"\",\n \"types\": \"index.d.ts\",\n \"exports\": {\n \"./package.json\": \"./package.json\",\n \".\": {\n \"types\": {\n \"import\": \"./index.d.mts\",\n \"default\": \"./index.d.ts\"\n }\n }\n },\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/DefinitelyTyped/DefinitelyTyped.git\",\n \"directory\": \"types/uuid\"\n },\n \"scripts\": {},\n \"dependencies\": {},\n \"typesPublisherContentHash\": \"08fbc5ff7d23aaac1e81b5acf98181d2544ce6ffd5578e9879e2a75f0c087d54\",\n \"typeScriptVersion\": \"4.7\"\n}",
|
|
12726
12736
|
"node_modules/@types/websocket/index.d.ts": "/// <reference types=\"node\" />\n\nimport events = require(\"events\");\nimport http = require(\"http\");\nimport https = require(\"https\");\nimport net = require(\"net\");\nimport url = require(\"url\");\n\nexport interface IStringified {\n toString: (...args: any[]) => string;\n}\n\nexport interface IConfig {\n /**\n * The maximum allowed received frame size in bytes.\n * Single frame messages will also be limited to this maximum.\n * @default 1MiB\n */\n maxReceivedFrameSize?: number | undefined;\n\n /**\n * The maximum allowed aggregate message size (for fragmented messages) in bytes\n * @default 8MiB\n */\n maxReceivedMessageSize?: number | undefined;\n\n /**\n * Whether or not to fragment outgoing messages. If true, messages will be\n * automatically fragmented into chunks of up to `fragmentationThreshold` bytes.\n * @default true\n */\n fragmentOutgoingMessages?: boolean | undefined;\n\n /**\n * The maximum size of a frame in bytes before it is automatically fragmented.\n * @default 16KiB\n */\n fragmentationThreshold?: number | undefined;\n\n /**\n * If true, fragmented messages will be automatically assembled and the full\n * message will be emitted via a `message` event. If false, each frame will be\n * emitted on the `connection` object via a `frame` event and the application\n * will be responsible for aggregating multiple fragmented frames. Single-frame\n * messages will emit a `message` event in addition to the `frame` event.\n * @default true\n */\n assembleFragments?: boolean | undefined;\n\n /**\n * The number of milliseconds to wait after sending a close frame for an\n * `acknowledgement` to come back before giving up and just closing the socket.\n * @default 5000\n */\n closeTimeout?: number | undefined;\n\n /**\n * The Nagle Algorithm makes more efficient use of network resources by introducing a\n * small delay before sending small packets so that multiple messages can be batched\n * together before going onto the wire. This however comes at the cost of latency.\n * @default true\n */\n disableNagleAlgorithm?: boolean | undefined;\n}\n\nexport interface IServerConfig extends IConfig {\n /** The http or https server instance(s) to attach to */\n httpServer: http.Server | https.Server | Array<http.Server | https.Server>;\n\n /**\n * The maximum allowed received frame size in bytes.\n * Single frame messages will also be limited to this maximum.\n * @default 64KiB\n */\n maxReceivedFrameSize?: number | undefined;\n\n /**\n * The maximum allowed aggregate message size (for fragmented messages) in bytes.\n * @default 1MiB\n */\n maxReceivedMessageSize?: number | undefined;\n\n /**\n * If true, the server will automatically send a ping to all clients every\n * `keepaliveInterval` milliseconds. Each client has an independent `keepalive`\n * timer, which is reset when any data is received from that client.\n * @default true\n */\n keepalive?: boolean | undefined;\n\n /**\n * The interval in milliseconds to send `keepalive` pings to connected clients.\n * @default 20000\n */\n keepaliveInterval?: number | undefined;\n\n /**\n * If true, the server will consider any connection that has not received any\n * data within the amount of time specified by `keepaliveGracePeriod` after a\n * `keepalive` ping has been sent. Ignored if `keepalive` is false.\n * @default true\n */\n dropConnectionOnKeepaliveTimeout?: boolean | undefined;\n\n /**\n * The amount of time to wait after sending a `keepalive` ping before closing\n * the connection if the connected peer does not respond. Ignored if `keepalive`\n * or `dropConnectionOnKeepaliveTimeout` are false. The grace period timer is\n * reset when any data is received from the client.\n * @default 10000\n */\n keepaliveGracePeriod?: number | undefined;\n\n /**\n * Whether to use native TCP keep-alive instead of WebSockets ping\n * and pong packets. Native TCP keep-alive sends smaller packets\n * on the wire and so uses bandwidth more efficiently. This may\n * be more important when talking to mobile devices.\n * If this value is set to true, then these values will be ignored:\n * keepaliveGracePeriod\n * dropConnectionOnKeepaliveTimeout\n * @default false\n */\n useNativeKeepalive?: boolean | undefined;\n\n /**\n * If this is true, websocket connections will be accepted regardless of the path\n * and protocol specified by the client. The protocol accepted will be the first\n * that was requested by the client.\n * @default false\n */\n autoAcceptConnections?: boolean | undefined;\n\n /**\n * Whether or not the X-Forwarded-For header should be respected.\n * It's important to set this to 'true' when accepting connections\n * from untrusted clients, as a malicious client could spoof its\n * IP address by simply setting this header. It's meant to be added\n * by a trusted proxy or other intermediary within your own\n * infrastructure.\n * See: http://en.wikipedia.org/wiki/X-Forwarded-For\n * @default false\n */\n ignoreXForwardedFor?: boolean | undefined;\n}\n\nexport class server extends events.EventEmitter {\n config?: IServerConfig | undefined;\n connections: connection[];\n pendingRequests: request[];\n\n constructor(serverConfig?: IServerConfig);\n\n /** Send binary or UTF-8 message for each connection */\n broadcast(data: Buffer | IStringified): void;\n /** Send binary message for each connection */\n broadcastBytes(data: Buffer): void;\n /** Send UTF-8 message for each connection */\n broadcastUTF(data: IStringified): void;\n /** Attach the `server` instance to a Node http.Server instance */\n mount(serverConfig: IServerConfig): void;\n\n /**\n * Detach the `server` instance from the Node http.Server instance.\n * All existing connections are left alone and will not be affected,\n * but no new WebSocket connections will be accepted.\n */\n unmount(): void;\n\n /** Close all open WebSocket connections */\n closeAllConnections(): void;\n /** Close all open WebSocket connections and unmount the server */\n shutDown(): void;\n\n handleUpgrade(request: http.IncomingMessage, socket: net.Socket): void;\n handleRequestAccepted(connection: connection): void;\n handleConnectionClose(connection: connection, closeReason: number, description: string): void;\n handleRequestResolved(request: request): void;\n\n // Events\n on(event: \"request\", cb: (request: request) => void): this;\n on(event: \"connect\", cb: (connection: connection) => void): this;\n on(event: \"close\", cb: (connection: connection, reason: number, desc: string) => void): this;\n addListener(event: \"request\", cb: (request: request) => void): this;\n addListener(event: \"connect\", cb: (connection: connection) => void): this;\n addListener(event: \"close\", cb: (connection: connection, reason: number, desc: string) => void): this;\n}\n\nexport interface ICookie {\n name: string;\n value: string;\n path?: string | undefined;\n domain?: string | undefined;\n expires?: Date | undefined;\n maxage?: number | undefined;\n secure?: boolean | undefined;\n httponly?: boolean | undefined;\n}\n\nexport interface IExtension {\n name: string;\n value: string;\n}\n\nexport class request extends events.EventEmitter {\n /** A reference to the original Node HTTP request object */\n httpRequest: http.IncomingMessage;\n /** This will include the port number if a non-standard port is used */\n host: string;\n /** A string containing the path that was requested by the client */\n resource: string;\n /** `Sec-WebSocket-Key` */\n key: string;\n /** Parsed resource, including the query string parameters */\n resourceURL: url.UrlWithParsedQuery;\n\n /**\n * Client's IP. If an `X-Forwarded-For` header is present, the value will be taken\n * from that header to facilitate WebSocket servers that live behind a reverse-proxy\n */\n remoteAddress: string;\n remoteAddresses: string[];\n\n /**\n * If the client is a web browser, origin will be a string containing the URL\n * of the page containing the script that opened the connection.\n * If the client is not a web browser, origin may be `null` or \"*\".\n */\n origin: string;\n\n /** The version of the WebSocket protocol requested by the client */\n webSocketVersion: number;\n /** An array containing a list of extensions requested by the client */\n requestedExtensions: any[];\n\n cookies: ICookie[];\n socket: net.Socket;\n\n /**\n * List of strings that indicate the subprotocols the client would like to speak.\n * The server should select the best one that it can support from the list and\n * pass it to the `accept` function when accepting the connection.\n * Note that all the strings in the `requestedProtocols` array will have been\n * converted to lower case.\n */\n requestedProtocols: string[];\n protocolFullCaseMap: { [key: string]: string };\n\n serverConfig: IServerConfig;\n\n _resolved: boolean;\n _socketIsClosing: boolean;\n\n constructor(socket: net.Socket, httpRequest: http.IncomingMessage, config: IServerConfig);\n\n /**\n * After inspecting the `request` properties, call this function on the\n * request object to accept the connection. If you don't have a particular subprotocol\n * you wish to speak, you may pass `null` for the `acceptedProtocol` parameter.\n *\n * @param [acceptedProtocol] case-insensitive value that was requested by the client\n */\n accept(acceptedProtocol?: string | null, allowedOrigin?: string, cookies?: ICookie[]): connection;\n\n /**\n * Reject connection.\n * You may optionally pass in an HTTP Status code (such as 404) and a textual\n * description that will be sent to the client in the form of an\n * `X-WebSocket-Reject-Reason` header.\n * Optional extra http headers can be added via Object key/values on extraHeaders.\n */\n reject(httpStatus?: number, reason?: string, extraHeaders?: object): void;\n\n // Events\n on(event: \"requestResolved\" | \"requestRejected\", cb: (request: this) => void): this;\n on(event: \"requestAccepted\", cb: (connection: connection) => void): this;\n addListener(event: \"requestResolved\" | \"requestRejected\", cb: (request: this) => void): this;\n addListener(event: \"requestAccepted\", cb: (connection: connection) => void): this;\n\n readHandshake(): void;\n\n parseExtensions(extensionString: string): string[];\n\n // eslint-disable-next-line @typescript-eslint/no-invalid-void-type\n parseCookies(str: string): ICookie[] | void;\n\n _handleSocketCloseBeforeAccept(): void;\n _removeSocketCloseListeners(): void;\n _verifyResolution(): void;\n}\n\nexport interface IUtf8Message {\n type: \"utf8\";\n utf8Data: string;\n}\n\nexport interface IBinaryMessage {\n type: \"binary\";\n binaryData: Buffer;\n}\n\nexport type Message = IUtf8Message | IBinaryMessage;\n\nexport interface IBufferList extends events.EventEmitter {\n encoding: string;\n length: number;\n write(buf: Buffer): boolean;\n end(buf: Buffer): void;\n push(): void;\n\n /**\n * For each buffer, perform some action.\n * If fn's result is a true value, cut out early.\n */\n forEach(fn: (buf: Buffer) => boolean): void;\n\n /** Create a single buffer out of all the chunks */\n join(start: number, end: number): Buffer;\n\n /** Join all the chunks to existing buffer */\n joinInto(buf: Buffer, offset: number, start: number, end: number): Buffer;\n\n /**\n * Advance the buffer stream by `n` bytes.\n * If `n` the aggregate advance offset passes the end of the buffer list,\n * operations such as `take` will return empty strings until enough data is pushed.\n */\n advance(n: number): IBufferList;\n\n /**\n * Take `n` bytes from the start of the buffers.\n * If there are less than `n` bytes in all the buffers or `n` is undefined,\n * returns the entire concatenated buffer string.\n */\n take(n: number, encoding?: string): any;\n take(encoding?: string): any;\n\n toString(): string;\n\n // Events\n on(event: \"advance\", cb: (n: number) => void): this;\n on(event: \"write\", cb: (buf: Buffer) => void): this;\n addListener(event: \"advance\", cb: (n: number) => void): this;\n addListener(event: \"write\", cb: (buf: Buffer) => void): this;\n}\n\nexport class connection extends events.EventEmitter {\n static CLOSE_REASON_NORMAL: number;\n static CLOSE_REASON_GOING_AWAY: number;\n static CLOSE_REASON_PROTOCOL_ERROR: number;\n static CLOSE_REASON_UNPROCESSABLE_INPUT: number;\n static CLOSE_REASON_RESERVED: number;\n static CLOSE_REASON_NOT_PROVIDED: number;\n static CLOSE_REASON_ABNORMAL: number;\n static CLOSE_REASON_INVALID_DATA: number;\n static CLOSE_REASON_POLICY_VIOLATION: number;\n static CLOSE_REASON_MESSAGE_TOO_BIG: number;\n static CLOSE_REASON_EXTENSION_REQUIRED: number;\n\n static CLOSE_DESCRIPTIONS: { [code: number]: string };\n\n /**\n * After the connection is closed, contains a textual description of the reason for\n * the connection closure, or `null` if the connection is still open.\n */\n closeDescription: string;\n\n /**\n * After the connection is closed, contains the numeric close reason status code,\n * or `-1` if the connection is still open.\n */\n closeReasonCode: number;\n\n /**\n * The subprotocol that was chosen to be spoken on this connection. This field\n * will have been converted to lower case.\n */\n protocol: string;\n\n config: IConfig;\n socket: net.Socket;\n maskOutgoingPackets: boolean;\n maskBytes: Buffer;\n frameHeader: Buffer;\n bufferList: IBufferList;\n currentFrame: frame;\n fragmentationSize: number;\n frameQueue: frame[];\n state: string;\n waitingForCloseResponse: boolean;\n receivedEnd: boolean;\n closeTimeout: number;\n assembleFragments: number;\n maxReceivedMessageSize: number;\n outputBufferFull: boolean;\n inputPaused: boolean;\n bytesWaitingToFlush: number;\n socketHadError: boolean;\n\n /** An array of extensions that were negotiated for this connection */\n extensions: IExtension[];\n\n /**\n * The IP address of the remote peer as a string. In the case of a server,\n * the `X-Forwarded-For` header will be respected and preferred for the purposes\n * of populating this field. If you need to get to the actual remote IP address,\n * `socket.remoteAddress` will provide it.\n */\n remoteAddress: string;\n\n /** The version of the WebSocket protocol requested by the client */\n webSocketVersion: number;\n /** Whether or not the connection is still connected. Read-only */\n connected: boolean;\n\n _pingListenerCount: number;\n\n constructor(\n socket: net.Socket,\n extensions: IExtension[],\n protocol: string,\n maskOutgoingPackets: boolean,\n config: IConfig,\n );\n\n /**\n * Close the connection. A close frame will be sent to the remote peer indicating\n * that we wish to close the connection, and we will then wait for up to\n * `config.closeTimeout` milliseconds for an acknowledgment from the remote peer\n * before terminating the underlying socket connection.\n */\n close(reasonCode?: number, description?: string): void;\n\n /**\n * Send a close frame to the remote peer and immediately close the socket without\n * waiting for a response. This should generally be used only in error conditions.\n */\n drop(reasonCode?: number, description?: string, skipCloseFrame?: boolean): void;\n\n /**\n * Immediately sends the specified string as a UTF-8 WebSocket message to the remote\n * peer. If `config.fragmentOutgoingMessages` is true the message may be sent as\n * multiple fragments if it exceeds `config.fragmentationThreshold` bytes.\n */\n sendUTF(data: IStringified, cb?: (err?: Error) => void): void;\n\n /**\n * Immediately sends the specified Node Buffer object as a Binary WebSocket message\n * to the remote peer. If config.fragmentOutgoingMessages is true the message may be\n * sent as multiple fragments if it exceeds config.fragmentationThreshold bytes.\n */\n sendBytes(buffer: Buffer, cb?: (err?: Error) => void): void;\n\n /** Auto-detect the data type and send UTF-8 or Binary message */\n send(data: Buffer | IStringified, cb?: (err?: Error) => void): void;\n\n /** Sends a ping frame. Ping frames must not exceed 125 bytes in length. */\n ping(data: Buffer | IStringified): void;\n\n /**\n * Sends a pong frame. Pong frames may be sent unsolicited and such pong frames will\n * trigger no action on the receiving peer. Pong frames sent in response to a ping\n * frame must mirror the payload data of the ping frame exactly.\n * The `connection` object handles this internally for you, so there should\n * be no need to use this method to respond to pings.\n * Pong frames must not exceed 125 bytes in length.\n */\n pong(buffer: Buffer): void;\n\n /**\n * Serializes a `frame` object into binary data and immediately sends it to\n * the remote peer. This is an advanced function, requiring you to manually compose\n * your own `frame`. You should probably use sendUTF or sendBytes instead.\n */\n sendFrame(frame: frame, cb?: (err?: Error) => void): void;\n\n /** Set or reset the `keepalive` timer when data is received */\n setKeepaliveTimer(): void;\n clearKeepaliveTimer(): void;\n handleKeepaliveTimer(): void;\n setGracePeriodTimer(): void;\n clearGracePeriodTimer(): void;\n handleGracePeriodTimer(): void;\n handleSocketData(data: Buffer): void;\n processReceivedData(): void;\n handleSocketError(error: Error): void;\n handleSocketEnd(): void;\n handleSocketClose(hadError: boolean): void;\n handleSocketDrain(): void;\n handleSocketPause(): void;\n handleSocketResume(): void;\n pause(): void;\n resume(): void;\n\n setCloseTimer(): void;\n clearCloseTimer(): void;\n handleCloseTimer(): void;\n processFrame(frame: frame): void;\n fragmentAndSend(frame: frame, cb?: (err: Error) => void): void;\n sendCloseFrame(reasonCode?: number, reasonText?: string, cb?: (err?: Error) => void): void;\n\n _addSocketEventListeners(): void;\n\n // Events\n on(event: \"message\", cb: (data: Message) => void): this;\n on(event: \"frame\", cb: (frame: frame) => void): this;\n on(event: \"close\", cb: (code: number, desc: string) => void): this;\n on(event: \"error\", cb: (err: Error) => void): this;\n on(event: \"drain\" | \"pause\" | \"resume\", cb: () => void): this;\n on(event: \"ping\", cb: (cancel: () => void, binaryPayload: Buffer) => void): this;\n on(event: \"pong\", cb: (binaryPayload: Buffer) => void): this;\n addListener(event: \"message\", cb: (data: Message) => void): this;\n addListener(event: \"frame\", cb: (frame: frame) => void): this;\n addListener(event: \"close\", cb: (code: number, desc: string) => void): this;\n addListener(event: \"error\", cb: (err: Error) => void): this;\n addListener(event: \"drain\" | \"pause\" | \"resume\", cb: () => void): this;\n addListener(event: \"ping\", cb: (cancel: () => void, binaryPayload: Buffer) => void): this;\n addListener(event: \"pong\", cb: (binaryPayload: Buffer) => void): this;\n}\n\nexport class frame {\n /** Whether or not this is last frame in a fragmentation sequence */\n fin: boolean;\n\n /**\n * Represents the RSV1 field in the framing. Setting this to true will result in\n * a Protocol Error on the receiving peer.\n */\n rsv1: boolean;\n\n /**\n * Represents the RSV1 field in the framing. Setting this to true will result in\n * a Protocol Error on the receiving peer.\n */\n rsv2: boolean;\n\n /**\n * Represents the RSV1 field in the framing. Setting this to true will result in\n * a Protocol Error on the receiving peer.\n */\n rsv3: boolean;\n\n /**\n * Whether or not this frame is (or should be) masked. For outgoing frames, when\n * connected as a client, this flag is automatically forced to true by `connection`.\n * Outgoing frames sent from the server-side of a connection are not masked.\n */\n mask: number;\n\n /**\n * Identifies which kind of frame this is.\n *\n * Hex - Dec - Description\n * 0x00 - 0 - Continuation\n * 0x01 - 1 - Text Frame\n * 0x02 - 2 - Binary Frame\n * 0x08 - 8 - Close Frame\n * 0x09 - 9 - Ping Frame\n * 0x0A - 10 - Pong Frame\n */\n opcode: number;\n\n /**\n * Identifies the length of the payload data on a received frame.\n * When sending a frame, will be automatically calculated from `binaryPayload` object.\n */\n length: number;\n\n /**\n * The binary payload data.\n * Even text frames are sent with a Buffer providing the binary payload data.\n */\n binaryPayload: Buffer;\n\n maskBytes: Buffer;\n frameHeader: Buffer;\n config: IConfig;\n maxReceivedFrameSize: number;\n protocolError: boolean;\n dropReason: string;\n frameTooLarge: boolean;\n invalidCloseFrameLength: boolean;\n parseState: number;\n closeStatus: number;\n\n addData(bufferList: IBufferList): boolean;\n throwAwayPayload(bufferList: IBufferList): boolean;\n toBuffer(nullMask: boolean): Buffer;\n toString(): string;\n}\n\nexport interface IClientConfig extends IConfig {\n /**\n * Which version of the WebSocket protocol to use when making the connection.\n * Currently supported values are 8 and 13. This option will be removed once the\n * protocol is finalized by the IETF It is only available to ease the transition\n * through the intermediate draft protocol versions. The only thing this affects\n * the name of the Origin header.\n * @default 13\n */\n webSocketVersion?: number | undefined;\n\n /**\n * Options to pass to `https.request` if connecting via TLS.\n * @see https://nodejs.org/api/https.html#https_https_request_options_callback\n */\n tlsOptions?: https.RequestOptions | undefined;\n}\n\nexport class client extends events.EventEmitter {\n constructor(ClientConfig?: IClientConfig);\n\n /**\n * Establish a connection. The remote server will select the best subprotocol that\n * it supports and send that back when establishing the connection.\n *\n * @param requestUrl should be a standard websocket url\n * @param [requestedProtocols] list of subprotocols supported by the client.\n * The remote server will select the best subprotocol that it supports and send that back when establishing the connection.\n * @param [origin] Used in user-agent scenarios to identify the page containing\n * any scripting content that caused the connection to be requested.\n * @param [headers] additional arbitrary HTTP request headers to send along with the request.\n * This may be used to pass things like access tokens, etc. so that the server can verify authentication/authorization\n * before deciding to accept and open the full WebSocket connection.\n * @param [extraRequestOptions] additional configuration options to be passed to `http.request` or `https.request`.\n * This can be used to pass a custom `agent` to enable `client` usage from behind an HTTP or HTTPS proxy server\n * using {@link https://github.com/koichik/node-tunnel|koichik/node-tunnel} or similar.\n * @example client.connect('ws://www.mygreatapp.com:1234/websocketapp/')\n */\n connect(\n requestUrl: url.Url | string,\n requestedProtocols?: string | string[],\n origin?: string,\n headers?: http.OutgoingHttpHeaders,\n extraRequestOptions?: http.RequestOptions,\n ): void;\n\n /**\n * Will cancel an in-progress connection request before either the `connect` event or the `connectFailed` event has been emitted.\n * If the `connect` or `connectFailed` event has already been emitted, calling `abort()` will do nothing.\n */\n abort(): void;\n\n // Events\n on(event: \"connect\", cb: (connection: connection) => void): this;\n on(event: \"connectFailed\", cb: (err: Error) => void): this;\n on(event: \"httpResponse\", cb: (response: http.IncomingMessage, client: client) => void): this;\n addListener(event: \"connect\", cb: (connection: connection) => void): this;\n addListener(event: \"connectFailed\", cb: (err: Error) => void): this;\n addListener(event: \"httpResponse\", cb: (response: http.IncomingMessage, client: client) => void): this;\n}\n\nexport interface IRouterRequest extends events.EventEmitter {\n webSocketRequest: request;\n protocol: string | null;\n\n /**\n * If the client is a web browser, origin will be a string containing the URL\n * of the page containing the script that opened the connection.\n * If the client is not a web browser, origin may be `null` or \"*\".\n */\n origin: string;\n\n /** A string containing the path that was requested by the client */\n resource: string;\n /** Parsed resource, including the query string parameters */\n resourceURL: url.UrlWithParsedQuery;\n\n /** A reference to the original Node HTTP request object */\n httpRequest: http.IncomingMessage;\n\n /**\n * Client's IP. If an `X-Forwarded-For` header is present, the value will be taken\n * from that header to facilitate WebSocket servers that live behind a reverse-proxy\n */\n remoteAddress: string;\n\n /** The version of the WebSocket protocol requested by the client */\n webSocketVersion: number;\n /** An array containing a list of extensions requested by the client */\n requestedExtensions: any[];\n\n cookies: ICookie[];\n\n /**\n * After inspecting the `request` properties, call this function on the\n * request object to accept the connection. If you don't have a particular subprotocol\n * you wish to speak, you may pass `null` for the `acceptedProtocol` parameter.\n *\n * @param [acceptedProtocol] case-insensitive value that was requested by the client\n */\n accept(acceptedProtocol?: string, allowedOrigin?: string, cookies?: ICookie[]): connection;\n\n /**\n * Reject connection.\n * You may optionally pass in an HTTP Status code (such as 404) and a textual\n * description that will be sent to the client in the form of an\n * `X-WebSocket-Reject-Reason` header.\n */\n reject(httpStatus?: number, reason?: string): void;\n\n // Events\n on(event: \"requestAccepted\", cb: (connection: connection) => void): this;\n on(event: \"requestRejected\", cb: (request: this) => void): this;\n addListener(event: \"requestAccepted\", cb: (connection: connection) => void): this;\n addListener(event: \"requestRejected\", cb: (request: this) => void): this;\n}\n\nexport interface IRouterConfig {\n /*\n * The WebSocketServer instance to attach to.\n */\n server: server;\n}\n\nexport interface IRouterHandler {\n path: string;\n pathString: string;\n protocol: string;\n callback: (request: IRouterRequest) => void;\n}\n\nexport class router extends events.EventEmitter {\n handlers: IRouterHandler[];\n\n constructor(config?: IRouterConfig);\n\n /** Attach to WebSocket server */\n attachServer(server: server): void;\n\n /** Detach from WebSocket server */\n detachServer(): void;\n\n mount(path: string | RegExp, protocol: string | null, callback: (request: IRouterRequest) => void): void;\n\n unmount(path: string | RegExp, protocol?: string): void;\n\n findHandlerIndex(pathString: string, protocol: string): number;\n\n pathToRegExp(path: string): RegExp;\n pathToRegEx(path: RegExp): RegExp;\n\n handleRequest(request: request): void;\n}\n\nexport interface ICloseEvent {\n code: number;\n reason: string;\n wasClean: boolean;\n}\n\nexport interface IMessageEvent {\n data: string | Buffer | ArrayBuffer;\n}\n\nexport class w3cwebsocket {\n static CONNECTING: number;\n static OPEN: number;\n static CLOSING: number;\n static CLOSED: number;\n\n _url: string;\n _readyState: number;\n _protocol?: string | undefined;\n _extensions: IExtension[];\n _bufferedAmount: number;\n _binaryType: \"arraybuffer\";\n _connection?: connection | undefined;\n _client: client;\n\n url: string;\n readyState: number;\n protocol?: string | undefined;\n extensions: IExtension[];\n bufferedAmount: number;\n\n binaryType: \"arraybuffer\";\n\n CONNECTING: number;\n OPEN: number;\n CLOSING: number;\n CLOSED: number;\n\n onopen: () => void;\n onerror: (error: Error) => void;\n onclose: (event: ICloseEvent) => void;\n onmessage: (message: IMessageEvent) => void;\n\n constructor(\n url: string,\n protocols?: string | string[],\n origin?: string,\n headers?: http.OutgoingHttpHeaders,\n requestOptions?: object,\n IClientConfig?: IClientConfig,\n );\n\n send(data: ArrayBufferView | ArrayBuffer | Buffer | IStringified): void;\n close(code?: number, reason?: string): void;\n}\n\nexport const deprecation: {\n disableWarnings: boolean;\n deprecationWarningMap: { [name: string]: string };\n warn(deprecationName: string): void;\n};\n\nexport const version: string;\n",
|
|
@@ -12867,6 +12877,8 @@
|
|
|
12867
12877
|
"node_modules/bcryptjs/types.d.ts": "// Originally imported from https://github.com/DefinitelyTyped/DefinitelyTyped/blob/8b36dbdf95b624b8a7cd7f8416f06c15d274f9e6/types/bcryptjs/index.d.ts\n// MIT license.\n\n/** Called with an error on failure or a value of type `T` upon success. */\ntype Callback<T> = (err: Error | null, result?: T) => void;\n/** Called with the percentage of rounds completed (0.0 - 1.0), maximally once per `MAX_EXECUTION_TIME = 100` ms. */\ntype ProgressCallback = (percentage: number) => void;\n/** Called to obtain random bytes when both Web Crypto API and Node.js crypto are not available. */\ntype RandomFallback = (length: number) => number[];\n\n/**\n * Sets the pseudo random number generator to use as a fallback if neither node's crypto module nor the Web Crypto API is available.\n * Please note: It is highly important that the PRNG used is cryptographically secure and that it is seeded properly!\n * @param random Function taking the number of bytes to generate as its sole argument, returning the corresponding array of cryptographically secure random byte values.\n */\nexport declare function setRandomFallback(random: RandomFallback): void;\n\n/**\n * Synchronously generates a salt.\n * @param rounds Number of rounds to use, defaults to 10 if omitted\n * @return Resulting salt\n * @throws If a random fallback is required but not set\n */\nexport declare function genSaltSync(rounds?: number): string;\n\n/**\n * Asynchronously generates a salt.\n * @param rounds Number of rounds to use, defaults to 10 if omitted\n * @return Promise with resulting salt, if callback has been omitted\n */\nexport declare function genSalt(rounds?: number): Promise<string>;\n\n/**\n * Asynchronously generates a salt.\n * @param callback Callback receiving the error, if any, and the resulting salt\n */\nexport declare function genSalt(callback: Callback<string>): void;\n\n/**\n * Asynchronously generates a salt.\n * @param rounds Number of rounds to use, defaults to 10 if omitted\n * @param callback Callback receiving the error, if any, and the resulting salt\n */\nexport declare function genSalt(\n rounds: number,\n callback: Callback<string>,\n): void;\n\n/**\n * Synchronously generates a hash for the given password.\n * @param password Password to hash\n * @param salt Salt length to generate or salt to use, default to 10\n * @return Resulting hash\n */\nexport declare function hashSync(\n password: string,\n salt?: number | string,\n): string;\n\n/**\n * Asynchronously generates a hash for the given password.\n * @param password Password to hash\n * @param salt Salt length to generate or salt to use\n * @return Promise with resulting hash, if callback has been omitted\n */\nexport declare function hash(\n password: string,\n salt: number | string,\n): Promise<string>;\n\n/**\n * Asynchronously generates a hash for the given password.\n * @param password Password to hash\n * @param salt Salt length to generate or salt to use\n * @param callback Callback receiving the error, if any, and the resulting hash\n * @param progressCallback Callback successively called with the percentage of rounds completed (0.0 - 1.0), maximally once per MAX_EXECUTION_TIME = 100 ms.\n */\nexport declare function hash(\n password: string,\n salt: number | string,\n callback?: Callback<string>,\n progressCallback?: ProgressCallback,\n): void;\n\n/**\n * Synchronously tests a password against a hash.\n * @param password Password to test\n * @param hash Hash to test against\n * @return true if matching, otherwise false\n */\nexport declare function compareSync(password: string, hash: string): boolean;\n\n/**\n * Asynchronously tests a password against a hash.\n * @param password Password to test\n * @param hash Hash to test against\n * @return Promise, if callback has been omitted\n */\nexport declare function compare(\n password: string,\n hash: string,\n): Promise<boolean>;\n\n/**\n * Asynchronously tests a password against a hash.\n * @param password Password to test\n * @param hash Hash to test against\n * @param callback Callback receiving the error, if any, otherwise the result\n * @param progressCallback Callback successively called with the percentage of rounds completed (0.0 - 1.0), maximally once per MAX_EXECUTION_TIME = 100 ms.\n */\nexport declare function compare(\n password: string,\n hash: string,\n callback?: Callback<boolean>,\n progressCallback?: ProgressCallback,\n): void;\n\n/**\n * Gets the number of rounds used to encrypt the specified hash.\n * @param hash Hash to extract the used number of rounds from\n * @return Number of rounds used\n */\nexport declare function getRounds(hash: string): number;\n\n/**\n * Gets the salt portion from a hash. Does not validate the hash.\n * @param hash Hash to extract the salt from\n * @return Extracted salt part\n */\nexport declare function getSalt(hash: string): string;\n\n/**\n * Tests if a password will be truncated when hashed, that is its length is\n * greater than 72 bytes when converted to UTF-8.\n * @param password The password to test\n * @returns `true` if truncated, otherwise `false`\n */\nexport declare function truncates(password: string): boolean;\n\n/**\n * Encodes a byte array to base64 with up to len bytes of input, using the custom bcrypt alphabet.\n * @function\n * @param b Byte array\n * @param len Maximum input length\n */\nexport declare function encodeBase64(\n b: Readonly<ArrayLike<number>>,\n len: number,\n): string;\n\n/**\n * Decodes a base64 encoded string to up to len bytes of output, using the custom bcrypt alphabet.\n * @function\n * @param s String to decode\n * @param len Maximum output length\n */\nexport declare function decodeBase64(s: string, len: number): number[];\n",
|
|
12868
12878
|
"node_modules/bcryptjs/umd/index.d.ts": "import * as bcrypt from \"./types.js\";\nexport = bcrypt;\nexport as namespace bcrypt;\n",
|
|
12869
12879
|
"node_modules/bcryptjs/umd/types.d.ts": "// Originally imported from https://github.com/DefinitelyTyped/DefinitelyTyped/blob/8b36dbdf95b624b8a7cd7f8416f06c15d274f9e6/types/bcryptjs/index.d.ts\n// MIT license.\n\n/** Called with an error on failure or a value of type `T` upon success. */\ntype Callback<T> = (err: Error | null, result?: T) => void;\n/** Called with the percentage of rounds completed (0.0 - 1.0), maximally once per `MAX_EXECUTION_TIME = 100` ms. */\ntype ProgressCallback = (percentage: number) => void;\n/** Called to obtain random bytes when both Web Crypto API and Node.js crypto are not available. */\ntype RandomFallback = (length: number) => number[];\n\n/**\n * Sets the pseudo random number generator to use as a fallback if neither node's crypto module nor the Web Crypto API is available.\n * Please note: It is highly important that the PRNG used is cryptographically secure and that it is seeded properly!\n * @param random Function taking the number of bytes to generate as its sole argument, returning the corresponding array of cryptographically secure random byte values.\n */\nexport declare function setRandomFallback(random: RandomFallback): void;\n\n/**\n * Synchronously generates a salt.\n * @param rounds Number of rounds to use, defaults to 10 if omitted\n * @return Resulting salt\n * @throws If a random fallback is required but not set\n */\nexport declare function genSaltSync(rounds?: number): string;\n\n/**\n * Asynchronously generates a salt.\n * @param rounds Number of rounds to use, defaults to 10 if omitted\n * @return Promise with resulting salt, if callback has been omitted\n */\nexport declare function genSalt(rounds?: number): Promise<string>;\n\n/**\n * Asynchronously generates a salt.\n * @param callback Callback receiving the error, if any, and the resulting salt\n */\nexport declare function genSalt(callback: Callback<string>): void;\n\n/**\n * Asynchronously generates a salt.\n * @param rounds Number of rounds to use, defaults to 10 if omitted\n * @param callback Callback receiving the error, if any, and the resulting salt\n */\nexport declare function genSalt(\n rounds: number,\n callback: Callback<string>,\n): void;\n\n/**\n * Synchronously generates a hash for the given password.\n * @param password Password to hash\n * @param salt Salt length to generate or salt to use, default to 10\n * @return Resulting hash\n */\nexport declare function hashSync(\n password: string,\n salt?: number | string,\n): string;\n\n/**\n * Asynchronously generates a hash for the given password.\n * @param password Password to hash\n * @param salt Salt length to generate or salt to use\n * @return Promise with resulting hash, if callback has been omitted\n */\nexport declare function hash(\n password: string,\n salt: number | string,\n): Promise<string>;\n\n/**\n * Asynchronously generates a hash for the given password.\n * @param password Password to hash\n * @param salt Salt length to generate or salt to use\n * @param callback Callback receiving the error, if any, and the resulting hash\n * @param progressCallback Callback successively called with the percentage of rounds completed (0.0 - 1.0), maximally once per MAX_EXECUTION_TIME = 100 ms.\n */\nexport declare function hash(\n password: string,\n salt: number | string,\n callback?: Callback<string>,\n progressCallback?: ProgressCallback,\n): void;\n\n/**\n * Synchronously tests a password against a hash.\n * @param password Password to test\n * @param hash Hash to test against\n * @return true if matching, otherwise false\n */\nexport declare function compareSync(password: string, hash: string): boolean;\n\n/**\n * Asynchronously tests a password against a hash.\n * @param password Password to test\n * @param hash Hash to test against\n * @return Promise, if callback has been omitted\n */\nexport declare function compare(\n password: string,\n hash: string,\n): Promise<boolean>;\n\n/**\n * Asynchronously tests a password against a hash.\n * @param password Password to test\n * @param hash Hash to test against\n * @param callback Callback receiving the error, if any, otherwise the result\n * @param progressCallback Callback successively called with the percentage of rounds completed (0.0 - 1.0), maximally once per MAX_EXECUTION_TIME = 100 ms.\n */\nexport declare function compare(\n password: string,\n hash: string,\n callback?: Callback<boolean>,\n progressCallback?: ProgressCallback,\n): void;\n\n/**\n * Gets the number of rounds used to encrypt the specified hash.\n * @param hash Hash to extract the used number of rounds from\n * @return Number of rounds used\n */\nexport declare function getRounds(hash: string): number;\n\n/**\n * Gets the salt portion from a hash. Does not validate the hash.\n * @param hash Hash to extract the salt from\n * @return Extracted salt part\n */\nexport declare function getSalt(hash: string): string;\n\n/**\n * Tests if a password will be truncated when hashed, that is its length is\n * greater than 72 bytes when converted to UTF-8.\n * @param password The password to test\n * @returns `true` if truncated, otherwise `false`\n */\nexport declare function truncates(password: string): boolean;\n\n/**\n * Encodes a byte array to base64 with up to len bytes of input, using the custom bcrypt alphabet.\n * @function\n * @param b Byte array\n * @param len Maximum input length\n */\nexport declare function encodeBase64(\n b: Readonly<ArrayLike<number>>,\n len: number,\n): string;\n\n/**\n * Decodes a base64 encoded string to up to len bytes of output, using the custom bcrypt alphabet.\n * @function\n * @param s String to decode\n * @param len Maximum output length\n */\nexport declare function decodeBase64(s: string, len: number): number[];\n",
|
|
12880
|
+
"node_modules/binary-searching/package.json": "{\n \"name\": \"binary-searching\",\n \"version\": \"2.0.5\",\n \"description\": \"Better binary searching\",\n \"main\": \"search-bounds.js\",\n \"typings\": \"search-bounds.d.ts\",\n \"directories\": {\n \"test\": \"test\"\n },\n \"dependencies\": {},\n \"devDependencies\": {\n \"guarded-array\": \"^1.0.0\",\n \"tape\": \"^4.0.0\"\n },\n \"scripts\": {\n \"test\": \"tape test/*.js\"\n },\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"git://github.com/hosseinmd/binary-search-bounds.git\"\n },\n \"keywords\": [\n \"binary\",\n \"search\",\n \"bounds\",\n \"least\",\n \"lower\",\n \"greatest\",\n \"upper\"\n ],\n \"author\": \"Mikola Lysenko\",\n \"license\": \"MIT\",\n \"bugs\": {\n \"url\": \"https://github.com/hosseinmd/binary-search-bounds/issues\"\n }\n}\n",
|
|
12881
|
+
"node_modules/binary-searching/search-bounds.d.ts": "declare module \"binary-searching\" {\n /**\n * Custom comparison function\n *\n * @param {*} a\n * @param {*} b\n * @returns {number} A number\n *\n * - negative if `a` precedes `b`\n * - positive if `b` precedes `a`\n * - 0 if there if `a` may be both before or after `b`\n *\n * A consistent ordering function must be anticommutative,\n * in the sense that `c(a,b) < 0` if and only if `c(b,a) > 0`.\n *\n */\n interface CompareFunc<T> {\n (a: T, b: T): number;\n }\n\n interface BSearch {\n /**\n * @param {Array<*>} array\n * @param {*} y\n * @param {[function]} compare\n * @param {number} [lo= 0] Lower bound of the search interval\n * @param {number} [hi= array.length-1] upper bound for the search interval\n * @returns {number} the last index `lo <= i <= hi`, such that the array such that\n * `array[i]` precedes `y`, or `lo - 1` if no such element exists in the specified\n * slice.\n */\n gt<T>(\n array: T[],\n y: T,\n compare?: CompareFunc<T>,\n lo?: number,\n hi?: number\n ): number;\n\n /**\n * @param {Array<*>} array\n * @param {*} y\n * @param {[function]} compare\n * @param {number} [lo= 0] Lower bound of the search interval\n * @param {number} [hi= array.length-1] upper bound for the search interval\n * @returns {number} the first index `lo <= i <= hi`, such that\n * `y` does not precede `array[i]`, or `hi + 1` if no such element exists in the\n * specified slice.\n */\n ge<T>(\n array: T[],\n y: T,\n compare?: CompareFunc<T>,\n lo?: number,\n hi?: number\n ): number;\n\n /**\n * @param {Array<*>} array\n * @param {*} y\n * @param {[function]} compare\n * @param {number} [lo= 0] Lower bound of the search interval\n * @param {number} [hi= array.length-1] upper bound for the search interval\n * @returns {number} the last index `lo <= i <= hi`, such that\n * `array[i]` precedes `y`, or `lo - 1` if no such element exists in the\n * specified slice.\n */\n lt<T>(\n array: T[],\n y: T,\n compare?: CompareFunc<T>,\n lo?: number,\n hi?: number\n ): number;\n /**\n * @param {Array<*>} array\n * @param {*} y\n * @param {[function]} compare\n * @param {number} [lo= 0] Lower bound of the search interval\n * @param {number} [hi= array.length-1] upper bound for the search interval\n * @returns {number} the last index `lo <= i <= hi`, such that\n * `y` does not precede `array[i]`, or `lo - 1` if no such element exists in the\n * specified slice.\n */\n le<T>(\n array: T[],\n y: T,\n compare?: CompareFunc<T>,\n lo?: number,\n hi?: number\n ): number;\n /**\n * @param {Array<*>} array\n * @param {*} y\n * @param {[function]} compare\n * @param {number} [lo= 0] Lower bound of the search interval\n * @param {number} [hi= array.length-1] upper bound for the search interval\n * @returns {number} the last index `lo <= i <= hi`, such that\n * `y` does not precede `array[i]`, and `array[i]` does not precede `y`,\n * or `-1` if no such element exists in the specified slice.\n */\n eq<T>(\n array: T[],\n y: T,\n compare?: CompareFunc<T>,\n lo?: number,\n hi?: number\n ): number;\n }\n const bsearch: BSearch;\n export = bsearch;\n}\n",
|
|
12870
12882
|
"node_modules/bl/package.json": "{\n \"name\": \"bl\",\n \"version\": \"4.1.0\",\n \"description\": \"Buffer List: collect buffers and access with a standard readable Buffer interface, streamable too!\",\n \"license\": \"MIT\",\n \"main\": \"bl.js\",\n \"scripts\": {\n \"lint\": \"standard *.js test/*.js\",\n \"test\": \"npm run lint && node test/test.js | faucet\"\n },\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/rvagg/bl.git\"\n },\n \"homepage\": \"https://github.com/rvagg/bl\",\n \"authors\": [\n \"Rod Vagg <rod@vagg.org> (https://github.com/rvagg)\",\n \"Matteo Collina <matteo.collina@gmail.com> (https://github.com/mcollina)\",\n \"Jarett Cruger <jcrugzz@gmail.com> (https://github.com/jcrugzz)\"\n ],\n \"keywords\": [\n \"buffer\",\n \"buffers\",\n \"stream\",\n \"awesomesauce\"\n ],\n \"dependencies\": {\n \"buffer\": \"^5.5.0\",\n \"inherits\": \"^2.0.4\",\n \"readable-stream\": \"^3.4.0\"\n },\n \"devDependencies\": {\n \"faucet\": \"~0.0.1\",\n \"standard\": \"^14.3.0\",\n \"tape\": \"^4.11.0\"\n }\n}\n",
|
|
12871
12883
|
"node_modules/iconv-lite/lib/index.d.ts": "/*---------------------------------------------------------------------------------------------\n * Copyright (c) Microsoft Corporation. All rights reserved.\n * Licensed under the MIT License.\n * REQUIREMENT: This definition is dependent on the @types/node definition.\n * Install with `npm install @types/node --save-dev`\n *--------------------------------------------------------------------------------------------*/\n\ndeclare module 'iconv-lite' {\n\texport function decode(buffer: Buffer, encoding: string, options?: Options): string;\n\n\texport function encode(content: string, encoding: string, options?: Options): Buffer;\n\n\texport function encodingExists(encoding: string): boolean;\n\n\texport function decodeStream(encoding: string, options?: Options): NodeJS.ReadWriteStream;\n\n\texport function encodeStream(encoding: string, options?: Options): NodeJS.ReadWriteStream;\n}\n\nexport interface Options {\n stripBOM?: boolean;\n addBOM?: boolean;\n defaultEncoding?: string;\n}\n",
|
|
12872
12884
|
"node_modules/iconv-lite/package.json": "{\n \"name\": \"iconv-lite\",\n \"description\": \"Convert character encodings in pure javascript.\",\n \"version\": \"0.4.24\",\n \"license\": \"MIT\",\n \"keywords\": [\n \"iconv\",\n \"convert\",\n \"charset\",\n \"icu\"\n ],\n \"author\": \"Alexander Shtuchkin <ashtuchkin@gmail.com>\",\n \"main\": \"./lib/index.js\",\n \"typings\": \"./lib/index.d.ts\",\n \"homepage\": \"https://github.com/ashtuchkin/iconv-lite\",\n \"bugs\": \"https://github.com/ashtuchkin/iconv-lite/issues\",\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"git://github.com/ashtuchkin/iconv-lite.git\"\n },\n \"engines\": {\n \"node\": \">=0.10.0\"\n },\n \"scripts\": {\n \"coverage\": \"istanbul cover _mocha -- --grep .\",\n \"coverage-open\": \"open coverage/lcov-report/index.html\",\n \"test\": \"mocha --reporter spec --grep .\"\n },\n \"browser\": {\n \"./lib/extend-node\": false,\n \"./lib/streams\": false\n },\n \"devDependencies\": {\n \"mocha\": \"^3.1.0\",\n \"request\": \"~2.87.0\",\n \"unorm\": \"*\",\n \"errto\": \"*\",\n \"async\": \"*\",\n \"istanbul\": \"*\",\n \"semver\": \"*\",\n \"iconv\": \"*\"\n },\n \"dependencies\": {\n \"safer-buffer\": \">= 2.1.2 < 3\"\n }\n}\n",
|
|
@@ -12896,6 +12908,8 @@
|
|
|
12896
12908
|
"node_modules/callsites/package.json": "{\n\t\"name\": \"callsites\",\n\t\"version\": \"3.1.0\",\n\t\"description\": \"Get callsites from the V8 stack trace API\",\n\t\"license\": \"MIT\",\n\t\"repository\": \"sindresorhus/callsites\",\n\t\"author\": {\n\t\t\"name\": \"Sindre Sorhus\",\n\t\t\"email\": \"sindresorhus@gmail.com\",\n\t\t\"url\": \"sindresorhus.com\"\n\t},\n\t\"engines\": {\n\t\t\"node\": \">=6\"\n\t},\n\t\"scripts\": {\n\t\t\"test\": \"xo && ava && tsd\"\n\t},\n\t\"files\": [\n\t\t\"index.js\",\n\t\t\"index.d.ts\"\n\t],\n\t\"keywords\": [\n\t\t\"stacktrace\",\n\t\t\"v8\",\n\t\t\"callsite\",\n\t\t\"callsites\",\n\t\t\"stack\",\n\t\t\"trace\",\n\t\t\"function\",\n\t\t\"file\",\n\t\t\"line\",\n\t\t\"debug\"\n\t],\n\t\"devDependencies\": {\n\t\t\"ava\": \"^1.4.1\",\n\t\t\"tsd\": \"^0.7.2\",\n\t\t\"xo\": \"^0.24.0\"\n\t}\n}\n",
|
|
12897
12909
|
"node_modules/chalk/index.d.ts": "/**\nBasic foreground colors.\n\n[More colors here.](https://github.com/chalk/chalk/blob/master/readme.md#256-and-truecolor-color-support)\n*/\ndeclare type ForegroundColor =\n\t| 'black'\n\t| 'red'\n\t| 'green'\n\t| 'yellow'\n\t| 'blue'\n\t| 'magenta'\n\t| 'cyan'\n\t| 'white'\n\t| 'gray'\n\t| 'grey'\n\t| 'blackBright'\n\t| 'redBright'\n\t| 'greenBright'\n\t| 'yellowBright'\n\t| 'blueBright'\n\t| 'magentaBright'\n\t| 'cyanBright'\n\t| 'whiteBright';\n\n/**\nBasic background colors.\n\n[More colors here.](https://github.com/chalk/chalk/blob/master/readme.md#256-and-truecolor-color-support)\n*/\ndeclare type BackgroundColor =\n\t| 'bgBlack'\n\t| 'bgRed'\n\t| 'bgGreen'\n\t| 'bgYellow'\n\t| 'bgBlue'\n\t| 'bgMagenta'\n\t| 'bgCyan'\n\t| 'bgWhite'\n\t| 'bgGray'\n\t| 'bgGrey'\n\t| 'bgBlackBright'\n\t| 'bgRedBright'\n\t| 'bgGreenBright'\n\t| 'bgYellowBright'\n\t| 'bgBlueBright'\n\t| 'bgMagentaBright'\n\t| 'bgCyanBright'\n\t| 'bgWhiteBright';\n\n/**\nBasic colors.\n\n[More colors here.](https://github.com/chalk/chalk/blob/master/readme.md#256-and-truecolor-color-support)\n*/\ndeclare type Color = ForegroundColor | BackgroundColor;\n\ndeclare type Modifiers =\n\t| 'reset'\n\t| 'bold'\n\t| 'dim'\n\t| 'italic'\n\t| 'underline'\n\t| 'inverse'\n\t| 'hidden'\n\t| 'strikethrough'\n\t| 'visible';\n\ndeclare namespace chalk {\n\t/**\n\tLevels:\n\t- `0` - All colors disabled.\n\t- `1` - Basic 16 colors support.\n\t- `2` - ANSI 256 colors support.\n\t- `3` - Truecolor 16 million colors support.\n\t*/\n\ttype Level = 0 | 1 | 2 | 3;\n\n\tinterface Options {\n\t\t/**\n\t\tSpecify the color support for Chalk.\n\n\t\tBy default, color support is automatically detected based on the environment.\n\n\t\tLevels:\n\t\t- `0` - All colors disabled.\n\t\t- `1` - Basic 16 colors support.\n\t\t- `2` - ANSI 256 colors support.\n\t\t- `3` - Truecolor 16 million colors support.\n\t\t*/\n\t\tlevel?: Level;\n\t}\n\n\t/**\n\tReturn a new Chalk instance.\n\t*/\n\ttype Instance = new (options?: Options) => Chalk;\n\n\t/**\n\tDetect whether the terminal supports color.\n\t*/\n\tinterface ColorSupport {\n\t\t/**\n\t\tThe color level used by Chalk.\n\t\t*/\n\t\tlevel: Level;\n\n\t\t/**\n\t\tReturn whether Chalk supports basic 16 colors.\n\t\t*/\n\t\thasBasic: boolean;\n\n\t\t/**\n\t\tReturn whether Chalk supports ANSI 256 colors.\n\t\t*/\n\t\thas256: boolean;\n\n\t\t/**\n\t\tReturn whether Chalk supports Truecolor 16 million colors.\n\t\t*/\n\t\thas16m: boolean;\n\t}\n\n\tinterface ChalkFunction {\n\t\t/**\n\t\tUse a template string.\n\n\t\t@remarks Template literals are unsupported for nested calls (see [issue #341](https://github.com/chalk/chalk/issues/341))\n\n\t\t@example\n\t\t```\n\t\timport chalk = require('chalk');\n\n\t\tlog(chalk`\n\t\tCPU: {red ${cpu.totalPercent}%}\n\t\tRAM: {green ${ram.used / ram.total * 100}%}\n\t\tDISK: {rgb(255,131,0) ${disk.used / disk.total * 100}%}\n\t\t`);\n\t\t```\n\n\t\t@example\n\t\t```\n\t\timport chalk = require('chalk');\n\n\t\tlog(chalk.red.bgBlack`2 + 3 = {bold ${2 + 3}}`)\n\t\t```\n\t\t*/\n\t\t(text: TemplateStringsArray, ...placeholders: unknown[]): string;\n\n\t\t(...text: unknown[]): string;\n\t}\n\n\tinterface Chalk extends ChalkFunction {\n\t\t/**\n\t\tReturn a new Chalk instance.\n\t\t*/\n\t\tInstance: Instance;\n\n\t\t/**\n\t\tThe color support for Chalk.\n\n\t\tBy default, color support is automatically detected based on the environment.\n\n\t\tLevels:\n\t\t- `0` - All colors disabled.\n\t\t- `1` - Basic 16 colors support.\n\t\t- `2` - ANSI 256 colors support.\n\t\t- `3` - Truecolor 16 million colors support.\n\t\t*/\n\t\tlevel: Level;\n\n\t\t/**\n\t\tUse HEX value to set text color.\n\n\t\t@param color - Hexadecimal value representing the desired color.\n\n\t\t@example\n\t\t```\n\t\timport chalk = require('chalk');\n\n\t\tchalk.hex('#DEADED');\n\t\t```\n\t\t*/\n\t\thex(color: string): Chalk;\n\n\t\t/**\n\t\tUse keyword color value to set text color.\n\n\t\t@param color - Keyword value representing the desired color.\n\n\t\t@example\n\t\t```\n\t\timport chalk = require('chalk');\n\n\t\tchalk.keyword('orange');\n\t\t```\n\t\t*/\n\t\tkeyword(color: string): Chalk;\n\n\t\t/**\n\t\tUse RGB values to set text color.\n\t\t*/\n\t\trgb(red: number, green: number, blue: number): Chalk;\n\n\t\t/**\n\t\tUse HSL values to set text color.\n\t\t*/\n\t\thsl(hue: number, saturation: number, lightness: number): Chalk;\n\n\t\t/**\n\t\tUse HSV values to set text color.\n\t\t*/\n\t\thsv(hue: number, saturation: number, value: number): Chalk;\n\n\t\t/**\n\t\tUse HWB values to set text color.\n\t\t*/\n\t\thwb(hue: number, whiteness: number, blackness: number): Chalk;\n\n\t\t/**\n\t\tUse a [Select/Set Graphic Rendition](https://en.wikipedia.org/wiki/ANSI_escape_code#SGR_parameters) (SGR) [color code number](https://en.wikipedia.org/wiki/ANSI_escape_code#3/4_bit) to set text color.\n\n\t\t30 <= code && code < 38 || 90 <= code && code < 98\n\t\tFor example, 31 for red, 91 for redBright.\n\t\t*/\n\t\tansi(code: number): Chalk;\n\n\t\t/**\n\t\tUse a [8-bit unsigned number](https://en.wikipedia.org/wiki/ANSI_escape_code#8-bit) to set text color.\n\t\t*/\n\t\tansi256(index: number): Chalk;\n\n\t\t/**\n\t\tUse HEX value to set background color.\n\n\t\t@param color - Hexadecimal value representing the desired color.\n\n\t\t@example\n\t\t```\n\t\timport chalk = require('chalk');\n\n\t\tchalk.bgHex('#DEADED');\n\t\t```\n\t\t*/\n\t\tbgHex(color: string): Chalk;\n\n\t\t/**\n\t\tUse keyword color value to set background color.\n\n\t\t@param color - Keyword value representing the desired color.\n\n\t\t@example\n\t\t```\n\t\timport chalk = require('chalk');\n\n\t\tchalk.bgKeyword('orange');\n\t\t```\n\t\t*/\n\t\tbgKeyword(color: string): Chalk;\n\n\t\t/**\n\t\tUse RGB values to set background color.\n\t\t*/\n\t\tbgRgb(red: number, green: number, blue: number): Chalk;\n\n\t\t/**\n\t\tUse HSL values to set background color.\n\t\t*/\n\t\tbgHsl(hue: number, saturation: number, lightness: number): Chalk;\n\n\t\t/**\n\t\tUse HSV values to set background color.\n\t\t*/\n\t\tbgHsv(hue: number, saturation: number, value: number): Chalk;\n\n\t\t/**\n\t\tUse HWB values to set background color.\n\t\t*/\n\t\tbgHwb(hue: number, whiteness: number, blackness: number): Chalk;\n\n\t\t/**\n\t\tUse a [Select/Set Graphic Rendition](https://en.wikipedia.org/wiki/ANSI_escape_code#SGR_parameters) (SGR) [color code number](https://en.wikipedia.org/wiki/ANSI_escape_code#3/4_bit) to set background color.\n\n\t\t30 <= code && code < 38 || 90 <= code && code < 98\n\t\tFor example, 31 for red, 91 for redBright.\n\t\tUse the foreground code, not the background code (for example, not 41, nor 101).\n\t\t*/\n\t\tbgAnsi(code: number): Chalk;\n\n\t\t/**\n\t\tUse a [8-bit unsigned number](https://en.wikipedia.org/wiki/ANSI_escape_code#8-bit) to set background color.\n\t\t*/\n\t\tbgAnsi256(index: number): Chalk;\n\n\t\t/**\n\t\tModifier: Resets the current color chain.\n\t\t*/\n\t\treadonly reset: Chalk;\n\n\t\t/**\n\t\tModifier: Make text bold.\n\t\t*/\n\t\treadonly bold: Chalk;\n\n\t\t/**\n\t\tModifier: Emitting only a small amount of light.\n\t\t*/\n\t\treadonly dim: Chalk;\n\n\t\t/**\n\t\tModifier: Make text italic. (Not widely supported)\n\t\t*/\n\t\treadonly italic: Chalk;\n\n\t\t/**\n\t\tModifier: Make text underline. (Not widely supported)\n\t\t*/\n\t\treadonly underline: Chalk;\n\n\t\t/**\n\t\tModifier: Inverse background and foreground colors.\n\t\t*/\n\t\treadonly inverse: Chalk;\n\n\t\t/**\n\t\tModifier: Prints the text, but makes it invisible.\n\t\t*/\n\t\treadonly hidden: Chalk;\n\n\t\t/**\n\t\tModifier: Puts a horizontal line through the center of the text. (Not widely supported)\n\t\t*/\n\t\treadonly strikethrough: Chalk;\n\n\t\t/**\n\t\tModifier: Prints the text only when Chalk has a color support level > 0.\n\t\tCan be useful for things that are purely cosmetic.\n\t\t*/\n\t\treadonly visible: Chalk;\n\n\t\treadonly black: Chalk;\n\t\treadonly red: Chalk;\n\t\treadonly green: Chalk;\n\t\treadonly yellow: Chalk;\n\t\treadonly blue: Chalk;\n\t\treadonly magenta: Chalk;\n\t\treadonly cyan: Chalk;\n\t\treadonly white: Chalk;\n\n\t\t/*\n\t\tAlias for `blackBright`.\n\t\t*/\n\t\treadonly gray: Chalk;\n\n\t\t/*\n\t\tAlias for `blackBright`.\n\t\t*/\n\t\treadonly grey: Chalk;\n\n\t\treadonly blackBright: Chalk;\n\t\treadonly redBright: Chalk;\n\t\treadonly greenBright: Chalk;\n\t\treadonly yellowBright: Chalk;\n\t\treadonly blueBright: Chalk;\n\t\treadonly magentaBright: Chalk;\n\t\treadonly cyanBright: Chalk;\n\t\treadonly whiteBright: Chalk;\n\n\t\treadonly bgBlack: Chalk;\n\t\treadonly bgRed: Chalk;\n\t\treadonly bgGreen: Chalk;\n\t\treadonly bgYellow: Chalk;\n\t\treadonly bgBlue: Chalk;\n\t\treadonly bgMagenta: Chalk;\n\t\treadonly bgCyan: Chalk;\n\t\treadonly bgWhite: Chalk;\n\n\t\t/*\n\t\tAlias for `bgBlackBright`.\n\t\t*/\n\t\treadonly bgGray: Chalk;\n\n\t\t/*\n\t\tAlias for `bgBlackBright`.\n\t\t*/\n\t\treadonly bgGrey: Chalk;\n\n\t\treadonly bgBlackBright: Chalk;\n\t\treadonly bgRedBright: Chalk;\n\t\treadonly bgGreenBright: Chalk;\n\t\treadonly bgYellowBright: Chalk;\n\t\treadonly bgBlueBright: Chalk;\n\t\treadonly bgMagentaBright: Chalk;\n\t\treadonly bgCyanBright: Chalk;\n\t\treadonly bgWhiteBright: Chalk;\n\t}\n}\n\n/**\nMain Chalk object that allows to chain styles together.\nCall the last one as a method with a string argument.\nOrder doesn't matter, and later styles take precedent in case of a conflict.\nThis simply means that `chalk.red.yellow.green` is equivalent to `chalk.green`.\n*/\ndeclare const chalk: chalk.Chalk & chalk.ChalkFunction & {\n\tsupportsColor: chalk.ColorSupport | false;\n\tLevel: chalk.Level;\n\tColor: Color;\n\tForegroundColor: ForegroundColor;\n\tBackgroundColor: BackgroundColor;\n\tModifiers: Modifiers;\n\tstderr: chalk.Chalk & {supportsColor: chalk.ColorSupport | false};\n};\n\nexport = chalk;\n",
|
|
12898
12910
|
"node_modules/chalk/package.json": "{\n\t\"name\": \"chalk\",\n\t\"version\": \"4.1.2\",\n\t\"description\": \"Terminal string styling done right\",\n\t\"license\": \"MIT\",\n\t\"repository\": \"chalk/chalk\",\n\t\"funding\": \"https://github.com/chalk/chalk?sponsor=1\",\n\t\"main\": \"source\",\n\t\"engines\": {\n\t\t\"node\": \">=10\"\n\t},\n\t\"scripts\": {\n\t\t\"test\": \"xo && nyc ava && tsd\",\n\t\t\"bench\": \"matcha benchmark.js\"\n\t},\n\t\"files\": [\n\t\t\"source\",\n\t\t\"index.d.ts\"\n\t],\n\t\"keywords\": [\n\t\t\"color\",\n\t\t\"colour\",\n\t\t\"colors\",\n\t\t\"terminal\",\n\t\t\"console\",\n\t\t\"cli\",\n\t\t\"string\",\n\t\t\"str\",\n\t\t\"ansi\",\n\t\t\"style\",\n\t\t\"styles\",\n\t\t\"tty\",\n\t\t\"formatting\",\n\t\t\"rgb\",\n\t\t\"256\",\n\t\t\"shell\",\n\t\t\"xterm\",\n\t\t\"log\",\n\t\t\"logging\",\n\t\t\"command-line\",\n\t\t\"text\"\n\t],\n\t\"dependencies\": {\n\t\t\"ansi-styles\": \"^4.1.0\",\n\t\t\"supports-color\": \"^7.1.0\"\n\t},\n\t\"devDependencies\": {\n\t\t\"ava\": \"^2.4.0\",\n\t\t\"coveralls\": \"^3.0.7\",\n\t\t\"execa\": \"^4.0.0\",\n\t\t\"import-fresh\": \"^3.1.0\",\n\t\t\"matcha\": \"^0.7.0\",\n\t\t\"nyc\": \"^15.0.0\",\n\t\t\"resolve-from\": \"^5.0.0\",\n\t\t\"tsd\": \"^0.7.4\",\n\t\t\"xo\": \"^0.28.2\"\n\t},\n\t\"xo\": {\n\t\t\"rules\": {\n\t\t\t\"unicorn/prefer-string-slice\": \"off\",\n\t\t\t\"unicorn/prefer-includes\": \"off\",\n\t\t\t\"@typescript-eslint/member-ordering\": \"off\",\n\t\t\t\"no-redeclare\": \"off\",\n\t\t\t\"unicorn/string-content\": \"off\",\n\t\t\t\"unicorn/better-regex\": \"off\"\n\t\t}\n\t}\n}\n",
|
|
12911
|
+
"node_modules/character-entities/index.d.ts": "/**\n * Map of named character references.\n *\n * @type {Record<string, string>}\n */\nexport const characterEntities: Record<string, string>\n",
|
|
12912
|
+
"node_modules/character-entities/package.json": "{\n \"name\": \"character-entities\",\n \"version\": \"2.0.2\",\n \"description\": \"Map of named character references\",\n \"license\": \"MIT\",\n \"keywords\": [\n \"html\",\n \"entity\",\n \"entities\",\n \"character\",\n \"reference\",\n \"name\",\n \"replacement\"\n ],\n \"repository\": \"wooorm/character-entities\",\n \"bugs\": \"https://github.com/wooorm/character-entities/issues\",\n \"funding\": {\n \"type\": \"github\",\n \"url\": \"https://github.com/sponsors/wooorm\"\n },\n \"author\": \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\",\n \"contributors\": [\n \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\"\n ],\n \"sideEffects\": false,\n \"type\": \"module\",\n \"main\": \"index.js\",\n \"types\": \"index.d.ts\",\n \"files\": [\n \"index.d.ts\",\n \"index.js\"\n ],\n \"devDependencies\": {\n \"@types/tape\": \"^4.0.0\",\n \"bail\": \"^2.0.0\",\n \"c8\": \"^7.0.0\",\n \"concat-stream\": \"^2.0.0\",\n \"prettier\": \"^2.0.0\",\n \"remark-cli\": \"^10.0.0\",\n \"remark-preset-wooorm\": \"^9.0.0\",\n \"rimraf\": \"^3.0.0\",\n \"tape\": \"^5.0.0\",\n \"type-coverage\": \"^2.0.0\",\n \"typescript\": \"^4.0.0\",\n \"xo\": \"^0.50.0\"\n },\n \"scripts\": {\n \"generate\": \"node build\",\n \"prepublishOnly\": \"npm run build && npm run format\",\n \"build\": \"rimraf \\\"*.d.ts\\\" && tsc && type-coverage\",\n \"format\": \"remark . -qfo && prettier . -w --loglevel warn && xo --fix\",\n \"test-api\": \"node --conditions development test.js\",\n \"test-coverage\": \"c8 --check-coverage --branches 100 --functions 100 --lines 100 --statements 100 --reporter lcov npm run test-api\",\n \"test\": \"npm run generate && npm run build && npm run format && npm run test-coverage\"\n },\n \"prettier\": {\n \"tabWidth\": 2,\n \"useTabs\": false,\n \"singleQuote\": true,\n \"bracketSpacing\": false,\n \"semi\": false,\n \"trailingComma\": \"none\"\n },\n \"xo\": {\n \"prettier\": true\n },\n \"remarkConfig\": {\n \"plugins\": [\n \"preset-wooorm\"\n ]\n },\n \"typeCoverage\": {\n \"atLeast\": 100,\n \"detail\": true,\n \"strict\": true,\n \"ignoreCatch\": true\n }\n}\n",
|
|
12899
12913
|
"node_modules/chardet/package.json": "{\n \"name\": \"chardet\",\n \"version\": \"0.7.0\",\n \"homepage\": \"https://github.com/runk/node-chardet\",\n \"description\": \"Character detector\",\n \"keywords\": [\n \"encoding\",\n \"character\",\n \"utf8\",\n \"detector\",\n \"chardet\",\n \"icu\"\n ],\n \"author\": \"Dmitry Shirokov <deadrunk@gmail.com>\",\n \"contributors\": [\n \"@spikying\",\n \"@wtgtybhertgeghgtwtg\",\n \"@suisho\",\n \"@seangarner\",\n \"@zevanty\"\n ],\n \"devDependencies\": {\n \"github-publish-release\": \"^5.0.0\",\n \"mocha\": \"^5.2.0\"\n },\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"git@github.com:runk/node-chardet.git\"\n },\n \"bugs\": {\n \"mail\": \"deadrunk@gmail.com\",\n \"url\": \"http://github.com/runk/node-chardet/issues\"\n },\n \"scripts\": {\n \"test\": \"mocha -R spec --recursive --bail\",\n \"release\": \"scripts/release\"\n },\n \"main\": \"index.js\",\n \"engine\": {\n \"node\": \">=4\"\n },\n \"readmeFilename\": \"README.md\",\n \"directories\": {\n \"test\": \"test\"\n },\n \"license\": \"MIT\"\n}\n",
|
|
12900
12914
|
"node_modules/cli/package.json": "{ \"name\" : \"cli\",\n \"description\" : \"A tool for rapidly building command line apps\",\n \"version\" : \"1.0.1\",\n \"homepage\" : \"http://github.com/node-js-libs/cli\",\n \"keywords\" : [\"cli\",\"command line\",\"opts\",\"parseopt\",\"opt\",\"args\",\"console\",\"argsparse\",\"optparse\",\"autocomplete\",\"command\",\"autocompletion\"],\n \"author\" : \"Chris O'Hara <cohara87@gmail.com>\",\n \"main\" : \"cli.js\",\n \"bugs\": {\n \"mail\": \"cohara87@gmail.com\",\n \"url\": \"http://github.com/node-js-libs/cli/issues\"\n },\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"http://github.com/node-js-libs/cli.git\"\n },\n \"dependencies\": {\n \"glob\": \"^7.1.1\",\n \"exit\": \"0.1.2\"\n },\n \"contributors\": [\n { \"name\": \"Douglas Meyer\", \"github\": \"https://github.com/DouglasMeyer\" }\n ],\n \"engines\": { \"node\": \">=0.2.5\" },\n \"license\": \"MIT\"\n}\n",
|
|
12901
12915
|
"node_modules/cli-cursor/index.d.ts": "/// <reference types=\"node\"/>\n\n/**\nShow cursor.\n\n@param stream - Default: `process.stderr`.\n\n@example\n```\nimport * as cliCursor from 'cli-cursor';\n\ncliCursor.show();\n```\n*/\nexport function show(stream?: NodeJS.WritableStream): void;\n\n/**\nHide cursor.\n\n@param stream - Default: `process.stderr`.\n\n@example\n```\nimport * as cliCursor from 'cli-cursor';\n\ncliCursor.hide();\n```\n*/\nexport function hide(stream?: NodeJS.WritableStream): void;\n\n/**\nToggle cursor visibility.\n\n@param force - Is useful to show or hide the cursor based on a boolean.\n@param stream - Default: `process.stderr`.\n\n@example\n```\nimport * as cliCursor from 'cli-cursor';\n\nconst unicornsAreAwesome = true;\ncliCursor.toggle(unicornsAreAwesome);\n```\n*/\nexport function toggle(force?: boolean, stream?: NodeJS.WritableStream): void;\n",
|
|
@@ -12910,6 +12924,43 @@
|
|
|
12910
12924
|
"node_modules/color-name/package.json": "{\r\n \"name\": \"color-name\",\r\n \"version\": \"1.1.4\",\r\n \"description\": \"A list of color names and its values\",\r\n \"main\": \"index.js\",\r\n \"files\": [\r\n \"index.js\"\r\n ],\r\n \"scripts\": {\r\n \"test\": \"node test.js\"\r\n },\r\n \"repository\": {\r\n \"type\": \"git\",\r\n \"url\": \"git@github.com:colorjs/color-name.git\"\r\n },\r\n \"keywords\": [\r\n \"color-name\",\r\n \"color\",\r\n \"color-keyword\",\r\n \"keyword\"\r\n ],\r\n \"author\": \"DY <dfcreative@gmail.com>\",\r\n \"license\": \"MIT\",\r\n \"bugs\": {\r\n \"url\": \"https://github.com/colorjs/color-name/issues\"\r\n },\r\n \"homepage\": \"https://github.com/colorjs/color-name\"\r\n}\r\n",
|
|
12911
12925
|
"node_modules/comment-json/index.d.ts": "// Original from DefinitelyTyped. Thanks a million\n// Type definitions for comment-json 1.1\n// Project: https://github.com/kaelzhang/node-comment-json\n// Definitions by: Jason Dent <https://github.com/Jason3S>\n// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped\n\ndeclare const commentSymbol: unique symbol\n\nexport type CommentPrefix = 'before'\n | 'after-prop'\n | 'after-colon'\n | 'after-value'\n | 'after'\n\nexport type CommentDescriptor = `${CommentPrefix}:${string}`\n | 'before'\n | 'before-all'\n | 'after-all'\n\nexport type CommentSymbol = typeof commentSymbol\n\nexport class CommentArray<TValue> extends Array<TValue> {\n [commentSymbol]: CommentToken[]\n}\n\nexport type CommentJSONValue = number\n | string\n | null\n | boolean\n | CommentArray<CommentJSONValue>\n | CommentObject\n\nexport interface CommentObject {\n [key: string]: CommentJSONValue\n [commentSymbol]: CommentToken[]\n}\n\nexport interface CommentToken {\n type: 'BlockComment' | 'LineComment'\n // The content of the comment, including whitespaces and line breaks\n value: string\n // If the start location is the same line as the previous token,\n // then `inline` is `true`\n inline: boolean\n // But pay attention that,\n // locations will NOT be maintained when stringified\n loc: CommentLocation\n}\n\nexport interface CommentLocation {\n // The start location begins at the `//` or `/*` symbol\n start: Location\n // The end location of multi-line comment ends at the `*/` symbol\n end: Location\n}\n\nexport interface Location {\n line: number\n column: number\n}\n\nexport type Reviver = (k: number | string, v: unknown) => unknown\n\n/**\n * Converts a JavaScript Object Notation (JSON) string into an object.\n * @param json A valid JSON string.\n * @param reviver A function that transforms the results. This function is called for each member of the object.\n * @param removesComments If true, the comments won't be maintained, which is often used when we want to get a clean object.\n * If a member contains nested objects, the nested objects are transformed before the parent object is.\n */\nexport function parse(\n json: string,\n reviver?: Reviver | null,\n removesComments?: boolean\n): CommentJSONValue\n\n/**\n * Converts a JavaScript value to a JavaScript Object Notation (JSON) string.\n * @param value A JavaScript value, usually an object or array, to be converted.\n * @param replacer A function that transforms the results or an array of strings and numbers that acts as a approved list for selecting the object properties that will be stringified.\n * @param space Adds indentation, white space, and line break characters to the return-value JSON text to make it easier to read.\n */\nexport function stringify(\n value: unknown,\n replacer?: (\n (key: string, value: unknown) => unknown\n ) | Array<number | string> | null,\n space?: string | number\n): string\n\n\nexport function tokenize(input: string, config?: TokenizeOptions): Token[]\n\nexport interface Token {\n type: string\n value: string\n}\n\nexport interface TokenizeOptions {\n tolerant?: boolean\n range?: boolean\n loc?: boolean\n comment?: boolean\n}\n\nexport function assign<TTarget, TSource>(\n target: TTarget,\n source: TSource,\n // Although it actually accepts more key types and filters then`,\n // we set the type of `keys` stricter\n keys?: readonly (number | string)[]\n): TTarget\n",
|
|
12912
12926
|
"node_modules/comment-json/package.json": "{\n \"name\": \"comment-json\",\n \"version\": \"4.2.5\",\n \"description\": \"Parse and stringify JSON with comments. It will retain comments even after saved!\",\n \"main\": \"src/index.js\",\n \"types\": \"index.d.ts\",\n \"scripts\": {\n \"test\": \"npm run test:only\",\n \"test:only\": \"npm run test:ts && npm run test:node\",\n \"test:ts\": \"tsc -b test/ts/tsconfig.build.json && node test/ts/test-ts.js\",\n \"test:node\": \"NODE_DEBUG=comment-json nyc ava --timeout=10s --verbose\",\n \"test:dev\": \"npm run test:only && npm run report:dev\",\n \"lint\": \"eslint .\",\n \"fix\": \"eslint . --fix\",\n \"posttest\": \"npm run report\",\n \"report\": \"nyc report --reporter=text-lcov > coverage.lcov && codecov\",\n \"report:dev\": \"nyc report --reporter=html && npm run report:open\",\n \"report:open\": \"open coverage/index.html\"\n },\n \"files\": [\n \"src/\",\n \"index.d.ts\"\n ],\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"git://github.com/kaelzhang/node-comment-json.git\"\n },\n \"keywords\": [\n \"comment-json\",\n \"comments\",\n \"annotations\",\n \"json\",\n \"json-stringify\",\n \"json-parse\",\n \"parser\",\n \"comments-json\",\n \"json-comments\"\n ],\n \"engines\": {\n \"node\": \">= 6\"\n },\n \"ava\": {\n \"files\": [\n \"test/*.test.js\"\n ]\n },\n \"author\": \"kaelzhang\",\n \"license\": \"MIT\",\n \"bugs\": {\n \"url\": \"https://github.com/kaelzhang/node-comment-json/issues\"\n },\n \"devDependencies\": {\n \"@ostai/eslint-config\": \"^3.6.0\",\n \"ava\": \"^4.0.1\",\n \"codecov\": \"^3.8.2\",\n \"eslint\": \"^8.8.0\",\n \"eslint-plugin-import\": \"^2.25.4\",\n \"nyc\": \"^15.1.0\",\n \"test-fixture\": \"^2.4.1\",\n \"typescript\": \"^4.5.5\"\n },\n \"dependencies\": {\n \"array-timsort\": \"^1.0.3\",\n \"core-util-is\": \"^1.0.3\",\n \"esprima\": \"^4.0.1\",\n \"has-own-prop\": \"^2.0.0\",\n \"repeat-string\": \"^1.6.1\"\n }\n}\n",
|
|
12927
|
+
"node_modules/comment-parser/es6/index.d.ts": "import { Options as ParserOptions } from './parser/index.js';\nimport descriptionTokenizer from './parser/tokenizers/description.js';\nimport nameTokenizer from './parser/tokenizers/name.js';\nimport tagTokenizer from './parser/tokenizers/tag.js';\nimport typeTokenizer from './parser/tokenizers/type.js';\nimport alignTransform from './transforms/align.js';\nimport indentTransform from './transforms/indent.js';\nimport crlfTransform from './transforms/crlf.js';\nimport { flow as flowTransform } from './transforms/index.js';\nimport { rewireSpecs, rewireSource, seedBlock, seedTokens } from './util.js';\nexport * from './primitives.js';\nexport declare function parse(source: string, options?: Partial<ParserOptions>): import(\"./primitives.js\").Block[];\nexport declare const stringify: import(\"./stringifier/index.js\").Stringifier;\nexport { default as inspect } from './stringifier/inspect.js';\nexport declare const transforms: {\n flow: typeof flowTransform;\n align: typeof alignTransform;\n indent: typeof indentTransform;\n crlf: typeof crlfTransform;\n};\nexport declare const tokenizers: {\n tag: typeof tagTokenizer;\n type: typeof typeTokenizer;\n name: typeof nameTokenizer;\n description: typeof descriptionTokenizer;\n};\nexport declare const util: {\n rewireSpecs: typeof rewireSpecs;\n rewireSource: typeof rewireSource;\n seedBlock: typeof seedBlock;\n seedTokens: typeof seedTokens;\n};\n",
|
|
12928
|
+
"node_modules/comment-parser/es6/parser/block-parser.d.ts": "import { Line } from '../primitives.js';\n/**\n * Groups source lines in sections representing tags.\n * First section is a block description if present. Last section captures lines starting with\n * the last tag to the end of the block, including dangling closing marker.\n * @param {Line[]} block souce lines making a single comment block\n */\nexport type Parser = (block: Line[]) => Line[][];\n/**\n * Predicate telling if string contains opening/closing escaping sequence\n * @param {string} source raw source line\n */\nexport type Fencer = (source: string) => boolean;\n/**\n * `Parser` configuration options\n */\nexport interface Options {\n fence: string | Fencer;\n}\n/**\n * Creates configured `Parser`\n * @param {Partial<Options>} options\n */\nexport default function getParser({ fence, }?: Partial<Options>): Parser;\n",
|
|
12929
|
+
"node_modules/comment-parser/es6/parser/index.d.ts": "import { Block, BlockMarkers } from '../primitives.js';\nimport { Tokenizer } from './tokenizers/index.js';\nexport interface Options {\n startLine: number;\n fence: string;\n spacing: 'compact' | 'preserve';\n markers: BlockMarkers;\n tokenizers: Tokenizer[];\n}\nexport type Parser = (source: string) => Block[];\nexport default function getParser({ startLine, fence, spacing, markers, tokenizers, }?: Partial<Options>): Parser;\n",
|
|
12930
|
+
"node_modules/comment-parser/es6/parser/source-parser.d.ts": "import { Line, BlockMarkers } from '../primitives.js';\nexport interface Options {\n startLine: number;\n markers: BlockMarkers;\n}\nexport type Parser = (source: string) => Line[] | null;\nexport default function getParser({ startLine, markers, }?: Partial<Options>): Parser;\n",
|
|
12931
|
+
"node_modules/comment-parser/es6/parser/spec-parser.d.ts": "import { Line, Spec } from '../primitives.js';\nimport { Tokenizer } from './tokenizers/index.js';\nexport type Parser = (source: Line[]) => Spec;\nexport interface Options {\n tokenizers: Tokenizer[];\n}\nexport default function getParser({ tokenizers }: Options): Parser;\n",
|
|
12932
|
+
"node_modules/comment-parser/es6/parser/tokenizers/description.d.ts": "import { Line, BlockMarkers, Markers } from '../../primitives.js';\nimport { Tokenizer } from './index.js';\n/**\n * Walks over provided lines joining description token into a single string.\n * */\nexport type Joiner = (lines: Line[], markers?: BlockMarkers) => string;\n/**\n * Shortcut for standard Joiners\n * compact - strip surrounding whitespace and concat lines using a single string\n * preserve - preserves original whitespace and line breaks as is\n */\nexport type Spacing = 'compact' | 'preserve' | Joiner;\n/**\n * Makes no changes to `spec.lines[].tokens` but joins them into `spec.description`\n * following given spacing srtategy\n * @param {Spacing} spacing tells how to handle the whitespace\n * @param {BlockMarkers} markers tells how to handle comment block delimitation\n */\nexport default function descriptionTokenizer(spacing?: Spacing, markers?: typeof Markers): Tokenizer;\nexport declare function getJoiner(spacing: Spacing): Joiner;\n",
|
|
12933
|
+
"node_modules/comment-parser/es6/parser/tokenizers/index.d.ts": "import { Spec } from '../../primitives.js';\n/**\n * Splits `spect.lines[].token.description` into other tokens,\n * and populates the spec.{tag, name, type, description}. Invoked in a chaing\n * with other tokens, operations listed above can be moved to separate tokenizers\n */\nexport type Tokenizer = (spec: Spec) => Spec;\n",
|
|
12934
|
+
"node_modules/comment-parser/es6/parser/tokenizers/name.d.ts": "import { Tokenizer } from './index.js';\n/**\n * Splits remaining `spec.lines[].tokens.description` into `name` and `descriptions` tokens,\n * and populates the `spec.name`\n */\nexport default function nameTokenizer(): Tokenizer;\n",
|
|
12935
|
+
"node_modules/comment-parser/es6/parser/tokenizers/tag.d.ts": "import { Tokenizer } from './index.js';\n/**\n * Splits the `@prefix` from remaining `Spec.lines[].token.description` into the `tag` token,\n * and populates `spec.tag`\n */\nexport default function tagTokenizer(): Tokenizer;\n",
|
|
12936
|
+
"node_modules/comment-parser/es6/parser/tokenizers/type.d.ts": "import { Tokenizer } from './index.js';\n/**\n * Joiner is a function taking collected type token string parts,\n * and joining them together. In most of the cases this will be\n * a single piece like {type-name}, but type may go over multipe line\n * ```\n * @tag {function(\n * number,\n * string\n * )}\n * ```\n */\nexport type Joiner = (parts: string[]) => string;\n/**\n * Shortcut for standard Joiners\n * compact - trim surrounding space, replace line breaks with a single space\n * preserve - concat as is\n */\nexport type Spacing = 'compact' | 'preserve' | Joiner;\n/**\n * Sets splits remaining `Spec.lines[].tokes.description` into `type` and `description`\n * tokens and populates Spec.type`\n *\n * @param {Spacing} spacing tells how to deal with a whitespace\n * for type values going over multiple lines\n */\nexport default function typeTokenizer(spacing?: Spacing): Tokenizer;\n",
|
|
12937
|
+
"node_modules/comment-parser/es6/primitives.d.ts": "/** @deprecated */\nexport declare enum Markers {\n start = \"/**\",\n nostart = \"/***\",\n delim = \"*\",\n end = \"*/\"\n}\nexport interface BlockMarkers {\n start: string;\n nostart: string;\n delim: string;\n end: string;\n}\nexport interface Block {\n description: string;\n tags: Spec[];\n source: Line[];\n problems: Problem[];\n}\nexport interface Spec {\n tag: string;\n name: string;\n default?: string;\n type: string;\n optional: boolean;\n description: string;\n problems: Problem[];\n source: Line[];\n}\nexport interface Line {\n number: number;\n source: string;\n tokens: Tokens;\n}\nexport interface Tokens {\n start: string;\n delimiter: string;\n postDelimiter: string;\n tag: string;\n postTag: string;\n name: string;\n postName: string;\n type: string;\n postType: string;\n description: string;\n end: string;\n lineEnd: string;\n}\nexport interface Problem {\n code: 'unhandled' | 'custom' | 'source:startline' | 'spec:tag:prefix' | 'spec:type:unpaired-curlies' | 'spec:name:unpaired-brackets' | 'spec:name:empty-name' | 'spec:name:invalid-default' | 'spec:name:empty-default';\n message: string;\n line: number;\n critical: boolean;\n}\n",
|
|
12938
|
+
"node_modules/comment-parser/es6/stringifier/index.d.ts": "import { Block } from '../primitives.js';\nexport type Stringifier = (block: Block) => string;\nexport default function getStringifier(): Stringifier;\n",
|
|
12939
|
+
"node_modules/comment-parser/es6/stringifier/inspect.d.ts": "import { Block } from '../primitives.js';\nexport default function inspect({ source }: Block): string;\n",
|
|
12940
|
+
"node_modules/comment-parser/es6/transforms/align.d.ts": "import { Transform } from './index.js';\nimport { Markers } from '../primitives.js';\nexport default function align(markers?: typeof Markers): Transform;\n",
|
|
12941
|
+
"node_modules/comment-parser/es6/transforms/crlf.d.ts": "import { Transform } from './index.js';\nexport type Ending = 'LF' | 'CRLF';\nexport default function crlf(ending: Ending): Transform;\n",
|
|
12942
|
+
"node_modules/comment-parser/es6/transforms/indent.d.ts": "import { Transform } from './index.js';\nexport default function indent(pos: number): Transform;\n",
|
|
12943
|
+
"node_modules/comment-parser/es6/transforms/index.d.ts": "import { Block } from '../primitives.js';\nexport type Transform = (Block: Block) => Block;\nexport declare function flow(...transforms: Transform[]): Transform;\n",
|
|
12944
|
+
"node_modules/comment-parser/es6/util.d.ts": "import { Block, Tokens, Spec } from './primitives.js';\nexport declare function isSpace(source: string): boolean;\nexport declare function hasCR(source: string): boolean;\nexport declare function splitCR(source: string): [string, string];\nexport declare function splitSpace(source: string): [string, string];\nexport declare function splitLines(source: string): string[];\nexport declare function seedBlock(block?: Partial<Block>): Block;\nexport declare function seedSpec(spec?: Partial<Spec>): Spec;\nexport declare function seedTokens(tokens?: Partial<Tokens>): Tokens;\n/**\n * Assures Block.tags[].source contains references to the Block.source items,\n * using Block.source as a source of truth. This is a counterpart of rewireSpecs\n * @param block parsed coments block\n */\nexport declare function rewireSource(block: Block): Block;\n/**\n * Assures Block.source contains references to the Block.tags[].source items,\n * using Block.tags[].source as a source of truth. This is a counterpart of rewireSource\n * @param block parsed coments block\n */\nexport declare function rewireSpecs(block: Block): Block;\n",
|
|
12945
|
+
"node_modules/comment-parser/lib/index.d.ts": "import { Options as ParserOptions } from './parser/index.js';\nimport descriptionTokenizer from './parser/tokenizers/description.js';\nimport nameTokenizer from './parser/tokenizers/name.js';\nimport tagTokenizer from './parser/tokenizers/tag.js';\nimport typeTokenizer from './parser/tokenizers/type.js';\nimport alignTransform from './transforms/align.js';\nimport indentTransform from './transforms/indent.js';\nimport crlfTransform from './transforms/crlf.js';\nimport { flow as flowTransform } from './transforms/index.js';\nimport { rewireSpecs, rewireSource, seedBlock, seedTokens } from './util.js';\nexport * from './primitives.js';\nexport declare function parse(source: string, options?: Partial<ParserOptions>): import(\"./primitives.js\").Block[];\nexport declare const stringify: import(\"./stringifier/index.js\").Stringifier;\nexport { default as inspect } from './stringifier/inspect.js';\nexport declare const transforms: {\n flow: typeof flowTransform;\n align: typeof alignTransform;\n indent: typeof indentTransform;\n crlf: typeof crlfTransform;\n};\nexport declare const tokenizers: {\n tag: typeof tagTokenizer;\n type: typeof typeTokenizer;\n name: typeof nameTokenizer;\n description: typeof descriptionTokenizer;\n};\nexport declare const util: {\n rewireSpecs: typeof rewireSpecs;\n rewireSource: typeof rewireSource;\n seedBlock: typeof seedBlock;\n seedTokens: typeof seedTokens;\n};\n",
|
|
12946
|
+
"node_modules/comment-parser/lib/parser/block-parser.d.ts": "import { Line } from '../primitives.js';\n/**\n * Groups source lines in sections representing tags.\n * First section is a block description if present. Last section captures lines starting with\n * the last tag to the end of the block, including dangling closing marker.\n * @param {Line[]} block souce lines making a single comment block\n */\nexport type Parser = (block: Line[]) => Line[][];\n/**\n * Predicate telling if string contains opening/closing escaping sequence\n * @param {string} source raw source line\n */\nexport type Fencer = (source: string) => boolean;\n/**\n * `Parser` configuration options\n */\nexport interface Options {\n fence: string | Fencer;\n}\n/**\n * Creates configured `Parser`\n * @param {Partial<Options>} options\n */\nexport default function getParser({ fence, }?: Partial<Options>): Parser;\n",
|
|
12947
|
+
"node_modules/comment-parser/lib/parser/index.d.ts": "import { Block, BlockMarkers } from '../primitives.js';\nimport { Tokenizer } from './tokenizers/index.js';\nexport interface Options {\n startLine: number;\n fence: string;\n spacing: 'compact' | 'preserve';\n markers: BlockMarkers;\n tokenizers: Tokenizer[];\n}\nexport type Parser = (source: string) => Block[];\nexport default function getParser({ startLine, fence, spacing, markers, tokenizers, }?: Partial<Options>): Parser;\n",
|
|
12948
|
+
"node_modules/comment-parser/lib/parser/source-parser.d.ts": "import { Line, BlockMarkers } from '../primitives.js';\nexport interface Options {\n startLine: number;\n markers: BlockMarkers;\n}\nexport type Parser = (source: string) => Line[] | null;\nexport default function getParser({ startLine, markers, }?: Partial<Options>): Parser;\n",
|
|
12949
|
+
"node_modules/comment-parser/lib/parser/spec-parser.d.ts": "import { Line, Spec } from '../primitives.js';\nimport { Tokenizer } from './tokenizers/index.js';\nexport type Parser = (source: Line[]) => Spec;\nexport interface Options {\n tokenizers: Tokenizer[];\n}\nexport default function getParser({ tokenizers }: Options): Parser;\n",
|
|
12950
|
+
"node_modules/comment-parser/lib/parser/tokenizers/description.d.ts": "import { Line, BlockMarkers, Markers } from '../../primitives.js';\nimport { Tokenizer } from './index.js';\n/**\n * Walks over provided lines joining description token into a single string.\n * */\nexport type Joiner = (lines: Line[], markers?: BlockMarkers) => string;\n/**\n * Shortcut for standard Joiners\n * compact - strip surrounding whitespace and concat lines using a single string\n * preserve - preserves original whitespace and line breaks as is\n */\nexport type Spacing = 'compact' | 'preserve' | Joiner;\n/**\n * Makes no changes to `spec.lines[].tokens` but joins them into `spec.description`\n * following given spacing srtategy\n * @param {Spacing} spacing tells how to handle the whitespace\n * @param {BlockMarkers} markers tells how to handle comment block delimitation\n */\nexport default function descriptionTokenizer(spacing?: Spacing, markers?: typeof Markers): Tokenizer;\nexport declare function getJoiner(spacing: Spacing): Joiner;\n",
|
|
12951
|
+
"node_modules/comment-parser/lib/parser/tokenizers/index.d.ts": "import { Spec } from '../../primitives.js';\n/**\n * Splits `spect.lines[].token.description` into other tokens,\n * and populates the spec.{tag, name, type, description}. Invoked in a chaing\n * with other tokens, operations listed above can be moved to separate tokenizers\n */\nexport type Tokenizer = (spec: Spec) => Spec;\n",
|
|
12952
|
+
"node_modules/comment-parser/lib/parser/tokenizers/name.d.ts": "import { Tokenizer } from './index.js';\n/**\n * Splits remaining `spec.lines[].tokens.description` into `name` and `descriptions` tokens,\n * and populates the `spec.name`\n */\nexport default function nameTokenizer(): Tokenizer;\n",
|
|
12953
|
+
"node_modules/comment-parser/lib/parser/tokenizers/tag.d.ts": "import { Tokenizer } from './index.js';\n/**\n * Splits the `@prefix` from remaining `Spec.lines[].token.description` into the `tag` token,\n * and populates `spec.tag`\n */\nexport default function tagTokenizer(): Tokenizer;\n",
|
|
12954
|
+
"node_modules/comment-parser/lib/parser/tokenizers/type.d.ts": "import { Tokenizer } from './index.js';\n/**\n * Joiner is a function taking collected type token string parts,\n * and joining them together. In most of the cases this will be\n * a single piece like {type-name}, but type may go over multipe line\n * ```\n * @tag {function(\n * number,\n * string\n * )}\n * ```\n */\nexport type Joiner = (parts: string[]) => string;\n/**\n * Shortcut for standard Joiners\n * compact - trim surrounding space, replace line breaks with a single space\n * preserve - concat as is\n */\nexport type Spacing = 'compact' | 'preserve' | Joiner;\n/**\n * Sets splits remaining `Spec.lines[].tokes.description` into `type` and `description`\n * tokens and populates Spec.type`\n *\n * @param {Spacing} spacing tells how to deal with a whitespace\n * for type values going over multiple lines\n */\nexport default function typeTokenizer(spacing?: Spacing): Tokenizer;\n",
|
|
12955
|
+
"node_modules/comment-parser/lib/primitives.d.ts": "/** @deprecated */\nexport declare enum Markers {\n start = \"/**\",\n nostart = \"/***\",\n delim = \"*\",\n end = \"*/\"\n}\nexport interface BlockMarkers {\n start: string;\n nostart: string;\n delim: string;\n end: string;\n}\nexport interface Block {\n description: string;\n tags: Spec[];\n source: Line[];\n problems: Problem[];\n}\nexport interface Spec {\n tag: string;\n name: string;\n default?: string;\n type: string;\n optional: boolean;\n description: string;\n problems: Problem[];\n source: Line[];\n}\nexport interface Line {\n number: number;\n source: string;\n tokens: Tokens;\n}\nexport interface Tokens {\n start: string;\n delimiter: string;\n postDelimiter: string;\n tag: string;\n postTag: string;\n name: string;\n postName: string;\n type: string;\n postType: string;\n description: string;\n end: string;\n lineEnd: string;\n}\nexport interface Problem {\n code: 'unhandled' | 'custom' | 'source:startline' | 'spec:tag:prefix' | 'spec:type:unpaired-curlies' | 'spec:name:unpaired-brackets' | 'spec:name:empty-name' | 'spec:name:invalid-default' | 'spec:name:empty-default';\n message: string;\n line: number;\n critical: boolean;\n}\n",
|
|
12956
|
+
"node_modules/comment-parser/lib/stringifier/index.d.ts": "import { Block } from '../primitives.js';\nexport type Stringifier = (block: Block) => string;\nexport default function getStringifier(): Stringifier;\n",
|
|
12957
|
+
"node_modules/comment-parser/lib/stringifier/inspect.d.ts": "import { Block } from '../primitives.js';\nexport default function inspect({ source }: Block): string;\n",
|
|
12958
|
+
"node_modules/comment-parser/lib/transforms/align.d.ts": "import { Transform } from './index.js';\nimport { Markers } from '../primitives.js';\nexport default function align(markers?: typeof Markers): Transform;\n",
|
|
12959
|
+
"node_modules/comment-parser/lib/transforms/crlf.d.ts": "import { Transform } from './index.js';\nexport type Ending = 'LF' | 'CRLF';\nexport default function crlf(ending: Ending): Transform;\n",
|
|
12960
|
+
"node_modules/comment-parser/lib/transforms/indent.d.ts": "import { Transform } from './index.js';\nexport default function indent(pos: number): Transform;\n",
|
|
12961
|
+
"node_modules/comment-parser/lib/transforms/index.d.ts": "import { Block } from '../primitives.js';\nexport type Transform = (Block: Block) => Block;\nexport declare function flow(...transforms: Transform[]): Transform;\n",
|
|
12962
|
+
"node_modules/comment-parser/lib/util.d.ts": "import { Block, Tokens, Spec } from './primitives.js';\nexport declare function isSpace(source: string): boolean;\nexport declare function hasCR(source: string): boolean;\nexport declare function splitCR(source: string): [string, string];\nexport declare function splitSpace(source: string): [string, string];\nexport declare function splitLines(source: string): string[];\nexport declare function seedBlock(block?: Partial<Block>): Block;\nexport declare function seedSpec(spec?: Partial<Spec>): Spec;\nexport declare function seedTokens(tokens?: Partial<Tokens>): Tokens;\n/**\n * Assures Block.tags[].source contains references to the Block.source items,\n * using Block.source as a source of truth. This is a counterpart of rewireSpecs\n * @param block parsed coments block\n */\nexport declare function rewireSource(block: Block): Block;\n/**\n * Assures Block.source contains references to the Block.tags[].source items,\n * using Block.tags[].source as a source of truth. This is a counterpart of rewireSource\n * @param block parsed coments block\n */\nexport declare function rewireSpecs(block: Block): Block;\n",
|
|
12963
|
+
"node_modules/comment-parser/package.json": "{\n \"name\": \"comment-parser\",\n \"version\": \"1.4.1\",\n \"description\": \"Generic JSDoc-like comment parser\",\n \"type\": \"module\",\n \"main\": \"lib/index.cjs\",\n \"exports\": {\n \".\": {\n \"import\": \"./es6/index.js\",\n \"require\": \"./lib/index.cjs\"\n },\n \"./primitives\": {\n \"import\": \"./es6/primitives.js\",\n \"require\": \"./lib/primitives.cjs\"\n },\n \"./util\": {\n \"import\": \"./es6/util.js\",\n \"require\": \"./lib/util.cjs\"\n },\n \"./parser/*\": {\n \"import\": \"./es6/parser/*.js\",\n \"require\": \"./lib/parser/*.cjs\"\n },\n \"./stringifier/*\": {\n \"import\": \"./es6/stringifier/*.js\",\n \"require\": \"./lib/stringifier/*.cjs\"\n },\n \"./transforms/*\": {\n \"import\": \"./es6/transforms/*.js\",\n \"require\": \"./lib/transforms/*.cjs\"\n }\n },\n \"types\": \"lib/index.d.ts\",\n \"directories\": {\n \"test\": \"tests\"\n },\n \"devDependencies\": {\n \"@types/jest\": \"^26.0.23\",\n \"convert-extension\": \"^0.3.0\",\n \"jest\": \"^27.0.5\",\n \"prettier\": \"2.3.1\",\n \"rimraf\": \"^3.0.2\",\n \"rollup\": \"^2.52.2\",\n \"ts-jest\": \"^27.0.3\",\n \"typescript\": \"^4.9.5\"\n },\n \"engines\": {\n \"node\": \">= 12.0.0\"\n },\n \"scripts\": {\n \"build\": \"rimraf lib es6 browser; tsc -p tsconfig.json && tsc -p tsconfig.node.json && rollup -o browser/index.js -f iife --context window -n CommentParser es6/index.js && convert-extension cjs lib/\",\n \"format\": \"prettier --write src tests\",\n \"pretest\": \"rimraf coverage; npm run build\",\n \"test\": \"prettier --check src tests && jest --verbose\",\n \"preversion\": \"npm run build\"\n },\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"git@github.com:yavorskiy/comment-parser.git\"\n },\n \"keywords\": [\n \"jsdoc\",\n \"comments\",\n \"parser\"\n ],\n \"author\": \"Sergiy Yavorsky <sergiy@yavorsky.me> (https://github.com/syavorsky)\",\n \"contributors\": [\n \"Alex Grozav (https://github.com/alexgrozav)\",\n \"Alexej Yaroshevich (https://github.com/zxqfox)\",\n \"Andre Wachsmuth (https://github.com/blutorange)\",\n \"Brett Zamir (https://github.com/brettz9)\",\n \"Dieter Oberkofler (https://github.com/doberkofler)\",\n \"Evgeny Reznichenko (https://github.com/zxcabs)\",\n \"Javier \\\"Ciberma\\\" Mora (https://github.com/jhm-ciberman)\",\n \"Jayden Seric (https://github.com/jaydenseric)\",\n \"Jordan Harband (https://github.com/ljharb)\",\n \"tengattack (https://github.com/tengattack)\"\n ],\n \"license\": \"MIT\",\n \"bugs\": {\n \"url\": \"https://github.com/syavorsky/comment-parser/issues\"\n },\n \"homepage\": \"https://github.com/syavorsky/comment-parser\"\n}\n",
|
|
12913
12964
|
"node_modules/concat-map/package.json": "{\n \"name\" : \"concat-map\",\n \"description\" : \"concatenative mapdashery\",\n \"version\" : \"0.0.1\",\n \"repository\" : {\n \"type\" : \"git\",\n \"url\" : \"git://github.com/substack/node-concat-map.git\"\n },\n \"main\" : \"index.js\",\n \"keywords\" : [\n \"concat\",\n \"concatMap\",\n \"map\",\n \"functional\",\n \"higher-order\"\n ],\n \"directories\" : {\n \"example\" : \"example\",\n \"test\" : \"test\"\n },\n \"scripts\" : {\n \"test\" : \"tape test/*.js\"\n },\n \"devDependencies\" : {\n \"tape\" : \"~2.4.0\"\n },\n \"license\" : \"MIT\",\n \"author\" : {\n \"name\" : \"James Halliday\",\n \"email\" : \"mail@substack.net\",\n \"url\" : \"http://substack.net\"\n },\n \"testling\" : {\n \"files\" : \"test/*.js\",\n \"browsers\" : {\n \"ie\" : [ 6, 7, 8, 9 ],\n \"ff\" : [ 3.5, 10, 15.0 ],\n \"chrome\" : [ 10, 22 ],\n \"safari\" : [ 5.1 ],\n \"opera\" : [ 12 ]\n }\n }\n}\n",
|
|
12914
12965
|
"node_modules/readable-stream/package.json": "{\n \"name\": \"readable-stream\",\n \"version\": \"3.6.2\",\n \"description\": \"Streams3, a user-land copy of the stream library from Node.js\",\n \"main\": \"readable.js\",\n \"engines\": {\n \"node\": \">= 6\"\n },\n \"dependencies\": {\n \"inherits\": \"^2.0.3\",\n \"string_decoder\": \"^1.1.1\",\n \"util-deprecate\": \"^1.0.1\"\n },\n \"devDependencies\": {\n \"@babel/cli\": \"^7.2.0\",\n \"@babel/core\": \"^7.2.0\",\n \"@babel/polyfill\": \"^7.0.0\",\n \"@babel/preset-env\": \"^7.2.0\",\n \"airtap\": \"0.0.9\",\n \"assert\": \"^1.4.0\",\n \"bl\": \"^2.0.0\",\n \"deep-strict-equal\": \"^0.2.0\",\n \"events.once\": \"^2.0.2\",\n \"glob\": \"^7.1.2\",\n \"gunzip-maybe\": \"^1.4.1\",\n \"hyperquest\": \"^2.1.3\",\n \"lolex\": \"^2.6.0\",\n \"nyc\": \"^11.0.0\",\n \"pump\": \"^3.0.0\",\n \"rimraf\": \"^2.6.2\",\n \"tap\": \"^12.0.0\",\n \"tape\": \"^4.9.0\",\n \"tar-fs\": \"^1.16.2\",\n \"util-promisify\": \"^2.1.0\"\n },\n \"scripts\": {\n \"test\": \"tap -J --no-esm test/parallel/*.js test/ours/*.js\",\n \"ci\": \"TAP=1 tap --no-esm test/parallel/*.js test/ours/*.js | tee test.tap\",\n \"test-browsers\": \"airtap --sauce-connect --loopback airtap.local -- test/browser.js\",\n \"test-browser-local\": \"airtap --open --local -- test/browser.js\",\n \"cover\": \"nyc npm test\",\n \"report\": \"nyc report --reporter=lcov\",\n \"update-browser-errors\": \"babel -o errors-browser.js errors.js\"\n },\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"git://github.com/nodejs/readable-stream\"\n },\n \"keywords\": [\n \"readable\",\n \"stream\",\n \"pipe\"\n ],\n \"browser\": {\n \"util\": false,\n \"worker_threads\": false,\n \"./errors\": \"./errors-browser.js\",\n \"./readable.js\": \"./readable-browser.js\",\n \"./lib/internal/streams/from.js\": \"./lib/internal/streams/from-browser.js\",\n \"./lib/internal/streams/stream.js\": \"./lib/internal/streams/stream-browser.js\"\n },\n \"nyc\": {\n \"include\": [\n \"lib/**.js\"\n ]\n },\n \"license\": \"MIT\"\n}\n",
|
|
12915
12966
|
"node_modules/safe-buffer/index.d.ts": "declare module \"safe-buffer\" {\n export class Buffer {\n length: number\n write(string: string, offset?: number, length?: number, encoding?: string): number;\n toString(encoding?: string, start?: number, end?: number): string;\n toJSON(): { type: 'Buffer', data: any[] };\n equals(otherBuffer: Buffer): boolean;\n compare(otherBuffer: Buffer, targetStart?: number, targetEnd?: number, sourceStart?: number, sourceEnd?: number): number;\n copy(targetBuffer: Buffer, targetStart?: number, sourceStart?: number, sourceEnd?: number): number;\n slice(start?: number, end?: number): Buffer;\n writeUIntLE(value: number, offset: number, byteLength: number, noAssert?: boolean): number;\n writeUIntBE(value: number, offset: number, byteLength: number, noAssert?: boolean): number;\n writeIntLE(value: number, offset: number, byteLength: number, noAssert?: boolean): number;\n writeIntBE(value: number, offset: number, byteLength: number, noAssert?: boolean): number;\n readUIntLE(offset: number, byteLength: number, noAssert?: boolean): number;\n readUIntBE(offset: number, byteLength: number, noAssert?: boolean): number;\n readIntLE(offset: number, byteLength: number, noAssert?: boolean): number;\n readIntBE(offset: number, byteLength: number, noAssert?: boolean): number;\n readUInt8(offset: number, noAssert?: boolean): number;\n readUInt16LE(offset: number, noAssert?: boolean): number;\n readUInt16BE(offset: number, noAssert?: boolean): number;\n readUInt32LE(offset: number, noAssert?: boolean): number;\n readUInt32BE(offset: number, noAssert?: boolean): number;\n readInt8(offset: number, noAssert?: boolean): number;\n readInt16LE(offset: number, noAssert?: boolean): number;\n readInt16BE(offset: number, noAssert?: boolean): number;\n readInt32LE(offset: number, noAssert?: boolean): number;\n readInt32BE(offset: number, noAssert?: boolean): number;\n readFloatLE(offset: number, noAssert?: boolean): number;\n readFloatBE(offset: number, noAssert?: boolean): number;\n readDoubleLE(offset: number, noAssert?: boolean): number;\n readDoubleBE(offset: number, noAssert?: boolean): number;\n swap16(): Buffer;\n swap32(): Buffer;\n swap64(): Buffer;\n writeUInt8(value: number, offset: number, noAssert?: boolean): number;\n writeUInt16LE(value: number, offset: number, noAssert?: boolean): number;\n writeUInt16BE(value: number, offset: number, noAssert?: boolean): number;\n writeUInt32LE(value: number, offset: number, noAssert?: boolean): number;\n writeUInt32BE(value: number, offset: number, noAssert?: boolean): number;\n writeInt8(value: number, offset: number, noAssert?: boolean): number;\n writeInt16LE(value: number, offset: number, noAssert?: boolean): number;\n writeInt16BE(value: number, offset: number, noAssert?: boolean): number;\n writeInt32LE(value: number, offset: number, noAssert?: boolean): number;\n writeInt32BE(value: number, offset: number, noAssert?: boolean): number;\n writeFloatLE(value: number, offset: number, noAssert?: boolean): number;\n writeFloatBE(value: number, offset: number, noAssert?: boolean): number;\n writeDoubleLE(value: number, offset: number, noAssert?: boolean): number;\n writeDoubleBE(value: number, offset: number, noAssert?: boolean): number;\n fill(value: any, offset?: number, end?: number): this;\n indexOf(value: string | number | Buffer, byteOffset?: number, encoding?: string): number;\n lastIndexOf(value: string | number | Buffer, byteOffset?: number, encoding?: string): number;\n includes(value: string | number | Buffer, byteOffset?: number, encoding?: string): boolean;\n\n /**\n * Allocates a new buffer containing the given {str}.\n *\n * @param str String to store in buffer.\n * @param encoding encoding to use, optional. Default is 'utf8'\n */\n constructor (str: string, encoding?: string);\n /**\n * Allocates a new buffer of {size} octets.\n *\n * @param size count of octets to allocate.\n */\n constructor (size: number);\n /**\n * Allocates a new buffer containing the given {array} of octets.\n *\n * @param array The octets to store.\n */\n constructor (array: Uint8Array);\n /**\n * Produces a Buffer backed by the same allocated memory as\n * the given {ArrayBuffer}.\n *\n *\n * @param arrayBuffer The ArrayBuffer with which to share memory.\n */\n constructor (arrayBuffer: ArrayBuffer);\n /**\n * Allocates a new buffer containing the given {array} of octets.\n *\n * @param array The octets to store.\n */\n constructor (array: any[]);\n /**\n * Copies the passed {buffer} data onto a new {Buffer} instance.\n *\n * @param buffer The buffer to copy.\n */\n constructor (buffer: Buffer);\n prototype: Buffer;\n /**\n * Allocates a new Buffer using an {array} of octets.\n *\n * @param array\n */\n static from(array: any[]): Buffer;\n /**\n * When passed a reference to the .buffer property of a TypedArray instance,\n * the newly created Buffer will share the same allocated memory as the TypedArray.\n * The optional {byteOffset} and {length} arguments specify a memory range\n * within the {arrayBuffer} that will be shared by the Buffer.\n *\n * @param arrayBuffer The .buffer property of a TypedArray or a new ArrayBuffer()\n * @param byteOffset\n * @param length\n */\n static from(arrayBuffer: ArrayBuffer, byteOffset?: number, length?: number): Buffer;\n /**\n * Copies the passed {buffer} data onto a new Buffer instance.\n *\n * @param buffer\n */\n static from(buffer: Buffer): Buffer;\n /**\n * Creates a new Buffer containing the given JavaScript string {str}.\n * If provided, the {encoding} parameter identifies the character encoding.\n * If not provided, {encoding} defaults to 'utf8'.\n *\n * @param str\n */\n static from(str: string, encoding?: string): Buffer;\n /**\n * Returns true if {obj} is a Buffer\n *\n * @param obj object to test.\n */\n static isBuffer(obj: any): obj is Buffer;\n /**\n * Returns true if {encoding} is a valid encoding argument.\n * Valid string encodings in Node 0.12: 'ascii'|'utf8'|'utf16le'|'ucs2'(alias of 'utf16le')|'base64'|'binary'(deprecated)|'hex'\n *\n * @param encoding string to test.\n */\n static isEncoding(encoding: string): boolean;\n /**\n * Gives the actual byte length of a string. encoding defaults to 'utf8'.\n * This is not the same as String.prototype.length since that returns the number of characters in a string.\n *\n * @param string string to test.\n * @param encoding encoding used to evaluate (defaults to 'utf8')\n */\n static byteLength(string: string, encoding?: string): number;\n /**\n * Returns a buffer which is the result of concatenating all the buffers in the list together.\n *\n * If the list has no items, or if the totalLength is 0, then it returns a zero-length buffer.\n * If the list has exactly one item, then the first item of the list is returned.\n * If the list has more than one item, then a new Buffer is created.\n *\n * @param list An array of Buffer objects to concatenate\n * @param totalLength Total length of the buffers when concatenated.\n * If totalLength is not provided, it is read from the buffers in the list. However, this adds an additional loop to the function, so it is faster to provide the length explicitly.\n */\n static concat(list: Buffer[], totalLength?: number): Buffer;\n /**\n * The same as buf1.compare(buf2).\n */\n static compare(buf1: Buffer, buf2: Buffer): number;\n /**\n * Allocates a new buffer of {size} octets.\n *\n * @param size count of octets to allocate.\n * @param fill if specified, buffer will be initialized by calling buf.fill(fill).\n * If parameter is omitted, buffer will be filled with zeros.\n * @param encoding encoding used for call to buf.fill while initalizing\n */\n static alloc(size: number, fill?: string | Buffer | number, encoding?: string): Buffer;\n /**\n * Allocates a new buffer of {size} octets, leaving memory not initialized, so the contents\n * of the newly created Buffer are unknown and may contain sensitive data.\n *\n * @param size count of octets to allocate\n */\n static allocUnsafe(size: number): Buffer;\n /**\n * Allocates a new non-pooled buffer of {size} octets, leaving memory not initialized, so the contents\n * of the newly created Buffer are unknown and may contain sensitive data.\n *\n * @param size count of octets to allocate\n */\n static allocUnsafeSlow(size: number): Buffer;\n }\n}",
|
|
@@ -12961,6 +13012,9 @@
|
|
|
12961
13012
|
"node_modules/csv-parse/lib/sync.d.ts": "\nimport { Options } from './index.js';\n\ndeclare function parse(input: Buffer | string, options?: Options): any;\n// export default parse;\nexport { parse };\n\nexport {\n CastingContext, CastingFunction, CastingDateFunction,\n ColumnOption, Options, Info, CsvErrorCode, CsvError\n} from './index.js';\n",
|
|
12962
13013
|
"node_modules/csv-parse/package.json": "{\n \"version\": \"5.6.0\",\n \"name\": \"csv-parse\",\n \"description\": \"CSV parsing implementing the Node.js `stream.Transform` API\",\n \"keywords\": [\n \"csv\",\n \"parse\",\n \"parser\",\n \"convert\",\n \"tsv\",\n \"stream\",\n \"backend\",\n \"frontend\"\n ],\n \"author\": \"David Worms <david@adaltas.com> (https://www.adaltas.com)\",\n \"contributors\": [\n \"David Worms <david@adaltas.com> (https://www.adaltas.com)\",\n \"Will White (https://github.com/willwhite)\",\n \"Justin Latimer (https://github.com/justinlatimer)\",\n \"jonseymour (https://github.com/jonseymour)\",\n \"pascalopitz (https://github.com/pascalopitz)\",\n \"Josh Pschorr (https://github.com/jpschorr)\",\n \"Elad Ben-Israel (https://github.com/eladb)\",\n \"Philippe Plantier (https://github.com/phipla)\",\n \"Tim Oxley (https://github.com/timoxley)\",\n \"Damon Oehlman (https://github.com/DamonOehlman)\",\n \"Alexandru Topliceanu (https://github.com/topliceanu)\",\n \"Visup (https://github.com/visup)\",\n \"Edmund von der Burg (https://github.com/evdb)\",\n \"Douglas Christopher Wilson (https://github.com/dougwilson)\",\n \"Joe Eaves (https://github.com/Joeasaurus)\",\n \"Mark Stosberg (https://github.com/markstos)\"\n ],\n \"exports\": {\n \".\": {\n \"import\": {\n \"types\": \"./lib/index.d.ts\",\n \"default\": \"./lib/index.js\"\n },\n \"require\": {\n \"types\": \"./dist/cjs/index.d.cts\",\n \"default\": \"./dist/cjs/index.cjs\"\n }\n },\n \"./sync\": {\n \"import\": {\n \"types\": \"./lib/sync.d.ts\",\n \"default\": \"./lib/sync.js\"\n },\n \"require\": {\n \"types\": \"./dist/cjs/sync.d.cts\",\n \"default\": \"./dist/cjs/sync.cjs\"\n }\n },\n \"./stream\": {\n \"import\": {\n \"types\": \"./lib/stream.d.ts\",\n \"default\": \"./lib/stream.js\"\n },\n \"require\": {\n \"types\": \"./dist/cjs/stream.d.cts\",\n \"default\": \"./dist/cjs/stream.cjs\"\n }\n },\n \"./browser/esm\": {\n \"types\": \"./dist/esm/index.d.ts\",\n \"default\": \"./dist/esm/index.js\"\n },\n \"./browser/esm/sync\": {\n \"types\": \"./dist/esm/sync.d.ts\",\n \"default\": \"./dist/esm/sync.js\"\n }\n },\n \"devDependencies\": {\n \"@eslint/js\": \"^9.15.0\",\n \"@rollup/plugin-node-resolve\": \"^15.3.0\",\n \"@types/mocha\": \"^10.0.9\",\n \"@types/node\": \"^22.9.1\",\n \"coffeescript\": \"^2.7.0\",\n \"csv-generate\": \"^4.4.2\",\n \"csv-spectrum\": \"^2.0.0\",\n \"each\": \"^2.7.2\",\n \"eslint\": \"^9.15.0\",\n \"eslint-config-prettier\": \"^9.1.0\",\n \"eslint-plugin-mocha\": \"^10.5.0\",\n \"eslint-plugin-prettier\": \"^5.2.1\",\n \"mocha\": \"^10.8.2\",\n \"pad\": \"^3.3.0\",\n \"prettier\": \"^3.3.3\",\n \"rollup\": \"^4.27.3\",\n \"rollup-plugin-node-builtins\": \"^2.1.2\",\n \"rollup-plugin-node-globals\": \"^1.4.0\",\n \"should\": \"^13.2.3\",\n \"stream-transform\": \"^3.3.3\",\n \"ts-node\": \"^10.9.2\",\n \"typescript\": \"^5.6.3\"\n },\n \"files\": [\n \"dist\",\n \"lib\"\n ],\n \"homepage\": \"https://csv.js.org/parse\",\n \"license\": \"MIT\",\n \"main\": \"./dist/cjs/index.cjs\",\n \"mocha\": {\n \"inline-diffs\": true,\n \"loader\": \"./test/loaders/all.js\",\n \"recursive\": true,\n \"reporter\": \"spec\",\n \"require\": [\n \"should\"\n ],\n \"throw-deprecation\": false,\n \"timeout\": 40000\n },\n \"lint-staged\": {\n \"*.js\": \"npm run lint:fix\",\n \"*.md\": \"prettier -w\"\n },\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/adaltas/node-csv.git\",\n \"directory\": \"packages/csv-parse\"\n },\n \"scripts\": {\n \"build\": \"npm run build:rollup && npm run build:ts\",\n \"build:rollup\": \"npx rollup -c\",\n \"build:ts\": \"cp lib/index.d.ts dist/cjs/index.d.cts && cp lib/sync.d.ts dist/cjs/sync.d.cts && cp lib/*.ts dist/esm\",\n \"postbuild:ts\": \"find dist/cjs -name '*.d.cts' -exec sh -c \\\"sed -i \\\"s/\\\\.js'/\\\\.cjs'/g\\\" {} || sed -i '' \\\"s/\\\\.js'/\\\\.cjs'/g\\\" {}\\\" \\\\;\",\n \"lint:check\": \"eslint\",\n \"lint:fix\": \"eslint --fix\",\n \"lint:ts\": \"tsc --noEmit true\",\n \"preversion\": \"npm run build && git add dist\",\n \"test\": \"mocha 'test/**/*.{coffee,ts}'\",\n \"test:legacy\": \"mocha --ignore test/api.web_stream.coffee --ignore test/api.web_stream.ts --ignore test/api.stream.finished.coffee --ignore test/api.stream.iterator.coffee --loader=./test/loaders/legacy/all.js 'test/**/*.{coffee,ts}'\"\n },\n \"type\": \"module\",\n \"types\": \"dist/esm/index.d.ts\",\n \"typesVersions\": {\n \"*\": {\n \".\": [\n \"dist/esm/index.d.ts\"\n ],\n \"sync\": [\n \"dist/esm/sync.d.ts\"\n ],\n \"browser/esm\": [\n \"dist/esm/index.d.ts\"\n ],\n \"browser/esm/sync\": [\n \"dist/esm/sync.d.ts\"\n ]\n }\n },\n \"gitHead\": \"cc1235a58de98dd9eab0665c7b1d03213e9633c7\"\n}\n",
|
|
12963
13014
|
"node_modules/debug/package.json": "{\n \"name\": \"debug\",\n \"version\": \"4.4.0\",\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"git://github.com/debug-js/debug.git\"\n },\n \"description\": \"Lightweight debugging utility for Node.js and the browser\",\n \"keywords\": [\n \"debug\",\n \"log\",\n \"debugger\"\n ],\n \"files\": [\n \"src\",\n \"LICENSE\",\n \"README.md\"\n ],\n \"author\": \"Josh Junon (https://github.com/qix-)\",\n \"contributors\": [\n \"TJ Holowaychuk <tj@vision-media.ca>\",\n \"Nathan Rajlich <nathan@tootallnate.net> (http://n8.io)\",\n \"Andrew Rhyne <rhyneandrew@gmail.com>\"\n ],\n \"license\": \"MIT\",\n \"scripts\": {\n \"lint\": \"xo\",\n \"test\": \"npm run test:node && npm run test:browser && npm run lint\",\n \"test:node\": \"istanbul cover _mocha -- test.js test.node.js\",\n \"test:browser\": \"karma start --single-run\",\n \"test:coverage\": \"cat ./coverage/lcov.info | coveralls\"\n },\n \"dependencies\": {\n \"ms\": \"^2.1.3\"\n },\n \"devDependencies\": {\n \"brfs\": \"^2.0.1\",\n \"browserify\": \"^16.2.3\",\n \"coveralls\": \"^3.0.2\",\n \"istanbul\": \"^0.4.5\",\n \"karma\": \"^3.1.4\",\n \"karma-browserify\": \"^6.0.0\",\n \"karma-chrome-launcher\": \"^2.2.0\",\n \"karma-mocha\": \"^1.3.0\",\n \"mocha\": \"^5.2.0\",\n \"mocha-lcov-reporter\": \"^1.2.0\",\n \"sinon\": \"^14.0.0\",\n \"xo\": \"^0.23.0\"\n },\n \"peerDependenciesMeta\": {\n \"supports-color\": {\n \"optional\": true\n }\n },\n \"main\": \"./src/index.js\",\n \"browser\": \"./src/browser.js\",\n \"engines\": {\n \"node\": \">=6.0\"\n },\n \"xo\": {\n \"rules\": {\n \"import/extensions\": \"off\"\n }\n }\n}\n",
|
|
13015
|
+
"node_modules/decode-named-character-reference/index.d.ts": "/**\n * Decode a single character reference (without the `&` or `;`).\n * You probably only need this when you’re building parsers yourself that follow\n * different rules compared to HTML.\n * This is optimized to be tiny in browsers.\n *\n * @param {string} value\n * `notin` (named), `#123` (deci), `#x123` (hexa).\n * @returns {string|false}\n * Decoded reference.\n */\nexport function decodeNamedCharacterReference(value: string): string | false;\n//# sourceMappingURL=index.d.ts.map",
|
|
13016
|
+
"node_modules/decode-named-character-reference/index.dom.d.ts": "/**\n * @param {string} value\n * @returns {string | false}\n */\nexport function decodeNamedCharacterReference(value: string): string | false;\n//# sourceMappingURL=index.dom.d.ts.map",
|
|
13017
|
+
"node_modules/decode-named-character-reference/package.json": "{\n \"author\": \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\",\n \"bugs\": \"https://github.com/wooorm/decode-named-character-reference/issues\",\n \"contributors\": [\n \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\"\n ],\n \"dependencies\": {\n \"character-entities\": \"^2.0.0\"\n },\n \"description\": \"Decode named character references\",\n \"devDependencies\": {\n \"@types/node\": \"^22.0.0\",\n \"c8\": \"^10.0.0\",\n \"prettier\": \"^3.0.0\",\n \"remark-cli\": \"^12.0.0\",\n \"remark-preset-wooorm\": \"^11.0.0\",\n \"type-coverage\": \"^2.0.0\",\n \"typescript\": \"^5.0.0\",\n \"xo\": \"^0.60.0\"\n },\n \"exports\": {\n \"deno\": \"./index.js\",\n \"edge-light\": \"./index.js\",\n \"react-native\": \"./index.js\",\n \"worker\": \"./index.js\",\n \"browser\": \"./index.dom.js\",\n \"default\": \"./index.js\"\n },\n \"files\": [\n \"index.d.ts.map\",\n \"index.d.ts\",\n \"index.dom.d.ts.map\",\n \"index.dom.d.ts\",\n \"index.dom.js\",\n \"index.js\"\n ],\n \"funding\": {\n \"type\": \"github\",\n \"url\": \"https://github.com/sponsors/wooorm\"\n },\n \"keywords\": [\n \"character\",\n \"decode\",\n \"named\",\n \"references\"\n ],\n \"license\": \"MIT\",\n \"main#\": \"to do: next major: remove field\",\n \"main\": \"index.js\",\n \"name\": \"decode-named-character-reference\",\n \"prettier\": {\n \"bracketSpacing\": false,\n \"semi\": false,\n \"singleQuote\": true,\n \"tabWidth\": 2,\n \"trailingComma\": \"none\",\n \"useTabs\": false\n },\n \"remarkConfig\": {\n \"plugins\": [\n \"remark-preset-wooorm\"\n ]\n },\n \"repository\": \"wooorm/decode-named-character-reference\",\n \"scripts\": {\n \"build\": \"tsc --build --clean && tsc --build && type-coverage\",\n \"format\": \"remark --frail --output --quiet -- . && prettier --log-level warn --write -- . && xo --fix\",\n \"test-api\": \"node --conditions development test.js\",\n \"test-coverage\": \"c8 --100 --reporter lcov -- npm run test-api\",\n \"test\": \"npm run build && npm run format && npm run test-coverage\"\n },\n \"sideEffects\": false,\n \"typeCoverage\": {\n \"atLeast\": 100,\n \"ignoreCatch\": true\n },\n \"types#\": \"to do: next major: remove field\",\n \"types\": \"index.d.ts\",\n \"type\": \"module\",\n \"version\": \"1.1.0\",\n \"xo\": {\n \"prettier\": true,\n \"rules\": {\n \"unicorn/prefer-code-point\": \"off\"\n }\n }\n}\n",
|
|
12964
13018
|
"node_modules/defaults/package.json": "{\n\t\"name\": \"defaults\",\n\t\"version\": \"1.0.4\",\n\t\"description\": \"merge single level defaults over a config object\",\n\t\"main\": \"index.js\",\n\t\"funding\": \"https://github.com/sponsors/sindresorhus\",\n\t\"scripts\": {\n\t\t\"test\": \"node test.js\"\n\t},\n\t\"repository\": {\n\t\t\"type\": \"git\",\n\t\t\"url\": \"git://github.com/sindresorhus/node-defaults.git\"\n\t},\n\t\"keywords\": [\n\t\t\"config\",\n\t\t\"defaults\",\n\t\t\"options\",\n\t\t\"object\",\n\t\t\"merge\",\n\t\t\"assign\",\n\t\t\"properties\",\n\t\t\"deep\"\n\t],\n\t\"author\": \"Elijah Insua <tmpvar@gmail.com>\",\n\t\"license\": \"MIT\",\n\t\"readmeFilename\": \"README.md\",\n\t\"dependencies\": {\n\t\t\"clone\": \"^1.0.2\"\n\t},\n\t\"devDependencies\": {\n\t\t\"tap\": \"^2.0.0\"\n\t}\n}\n",
|
|
12965
13019
|
"node_modules/depd/package.json": "{\n \"name\": \"depd\",\n \"description\": \"Deprecate all the things\",\n \"version\": \"2.0.0\",\n \"author\": \"Douglas Christopher Wilson <doug@somethingdoug.com>\",\n \"license\": \"MIT\",\n \"keywords\": [\n \"deprecate\",\n \"deprecated\"\n ],\n \"repository\": \"dougwilson/nodejs-depd\",\n \"browser\": \"lib/browser/index.js\",\n \"devDependencies\": {\n \"benchmark\": \"2.1.4\",\n \"beautify-benchmark\": \"0.2.4\",\n \"eslint\": \"5.7.0\",\n \"eslint-config-standard\": \"12.0.0\",\n \"eslint-plugin-import\": \"2.14.0\",\n \"eslint-plugin-markdown\": \"1.0.0-beta.7\",\n \"eslint-plugin-node\": \"7.0.1\",\n \"eslint-plugin-promise\": \"4.0.1\",\n \"eslint-plugin-standard\": \"4.0.0\",\n \"istanbul\": \"0.4.5\",\n \"mocha\": \"5.2.0\",\n \"safe-buffer\": \"5.1.2\",\n \"uid-safe\": \"2.1.5\"\n },\n \"files\": [\n \"lib/\",\n \"History.md\",\n \"LICENSE\",\n \"index.js\",\n \"Readme.md\"\n ],\n \"engines\": {\n \"node\": \">= 0.8\"\n },\n \"scripts\": {\n \"bench\": \"node benchmark/index.js\",\n \"lint\": \"eslint --plugin markdown --ext js,md .\",\n \"test\": \"mocha --reporter spec --bail test/\",\n \"test-ci\": \"istanbul cover --print=none node_modules/mocha/bin/_mocha -- --reporter spec test/ && istanbul report lcovonly text-summary\",\n \"test-cov\": \"istanbul cover --print=none node_modules/mocha/bin/_mocha -- --reporter dot test/ && istanbul report lcov text-summary\"\n }\n}\n",
|
|
12966
13020
|
"node_modules/dequal/index.d.ts": "export function dequal(foo: any, bar: any): boolean;",
|
|
@@ -12968,6 +13022,8 @@
|
|
|
12968
13022
|
"node_modules/dequal/package.json": "{\n \"name\": \"dequal\",\n \"version\": \"2.0.3\",\n \"repository\": \"lukeed/dequal\",\n \"description\": \"A tiny (304B to 489B) utility for check for deep equality\",\n \"unpkg\": \"dist/index.min.js\",\n \"module\": \"dist/index.mjs\",\n \"main\": \"dist/index.js\",\n \"types\": \"index.d.ts\",\n \"license\": \"MIT\",\n \"author\": {\n \"name\": \"Luke Edwards\",\n \"email\": \"luke.edwards05@gmail.com\",\n \"url\": \"https://lukeed.com\"\n },\n \"engines\": {\n \"node\": \">=6\"\n },\n \"scripts\": {\n \"build\": \"bundt\",\n \"pretest\": \"npm run build\",\n \"postbuild\": \"echo \\\"lite\\\" | xargs -n1 cp -v index.d.ts\",\n \"test\": \"uvu -r esm test\"\n },\n \"files\": [\n \"*.d.ts\",\n \"dist\",\n \"lite\"\n ],\n \"exports\": {\n \".\": {\n \"types\": \"./index.d.ts\",\n \"import\": \"./dist/index.mjs\",\n \"require\": \"./dist/index.js\"\n },\n \"./lite\": {\n \"types\": \"./index.d.ts\",\n \"import\": \"./lite/index.mjs\",\n \"require\": \"./lite/index.js\"\n },\n \"./package.json\": \"./package.json\"\n },\n \"modes\": {\n \"lite\": \"src/lite.js\",\n \"default\": \"src/index.js\"\n },\n \"keywords\": [\n \"deep\",\n \"deep-equal\",\n \"equality\"\n ],\n \"devDependencies\": {\n \"bundt\": \"1.0.2\",\n \"esm\": \"3.2.25\",\n \"uvu\": \"0.3.2\"\n }\n}\n",
|
|
12969
13023
|
"node_modules/detect-ts-node/package.json": "{\n \"name\": \"detect-ts-node\",\n \"version\": \"1.0.5\",\n \"description\": \"Detect whether the code is running in TS Node\",\n \"main\": \"index.js\",\n \"typings\": \"./types/index.d.ts\",\n \"scripts\": {\n \"test\": \"echo \\\"Error: no test specified\\\" && exit 1\"\n },\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"git+https://github.com/yorickdevries/detect-ts-node.git\"\n },\n \"keywords\": [\n \"detect\",\n \"ts-node\"\n ],\n \"author\": \"Yorick de Vries\",\n \"license\": \"ISC\",\n \"bugs\": {\n \"url\": \"https://github.com/yorickdevries/detect-ts-node/issues\"\n },\n \"homepage\": \"https://github.com/yorickdevries/detect-ts-node#readme\"\n}\n",
|
|
12970
13024
|
"node_modules/detect-ts-node/types/index.d.ts": "export declare const detectTSNode: boolean;\n",
|
|
13025
|
+
"node_modules/devlop/lib/development.d.ts": "/**\n * Wrap a function or class to show a deprecation message when first called.\n *\n * > 👉 **Important**: only shows a message when the `development` condition is\n * > used, does nothing in production.\n *\n * When the resulting wrapped `fn` is called, emits a warning once to\n * `console.error` (`stderr`).\n * If a code is given, one warning message will be emitted in total per code.\n *\n * @template {Function} T\n * Function or class kind.\n * @param {T} fn\n * Function or class.\n * @param {string} message\n * Message explaining deprecation.\n * @param {string | null | undefined} [code]\n * Deprecation identifier (optional); deprecation messages will be generated\n * only once per code.\n * @returns {T}\n * Wrapped `fn`.\n */\nexport function deprecate<T extends Function>(\n fn: T,\n message: string,\n code?: string | null | undefined\n): T\n/**\n * Assert deep strict equivalence.\n *\n * > 👉 **Important**: only asserts when the `development` condition is used,\n * > does nothing in production.\n *\n * @template {unknown} T\n * Expected kind.\n * @param {unknown} actual\n * Value.\n * @param {T} expected\n * Baseline.\n * @param {Error | string | null | undefined} [message]\n * Message for assertion error (default: `'Expected values to be deeply equal'`).\n * @returns {asserts actual is T}\n * Nothing; throws when `actual` is not deep strict equal to `expected`.\n * @throws {AssertionError}\n * Throws when `actual` is not deep strict equal to `expected`.\n */\nexport function equal<T extends unknown>(\n actual: unknown,\n expected: T,\n message?: Error | string | null | undefined\n): asserts actual is T\n/**\n * Assert if `value` is truthy.\n *\n * > 👉 **Important**: only asserts when the `development` condition is used,\n * > does nothing in production.\n *\n * @param {unknown} value\n * Value to assert.\n * @param {Error | string | null | undefined} [message]\n * Message for assertion error (default: `'Expected value to be truthy'`).\n * @returns {asserts value}\n * Nothing; throws when `value` is falsey.\n * @throws {AssertionError}\n * Throws when `value` is falsey.\n */\nexport function ok(\n value: unknown,\n message?: Error | string | null | undefined\n): asserts value\n/**\n * Assert that a code path never happens.\n *\n * > 👉 **Important**: only asserts when the `development` condition is used,\n * > does nothing in production.\n *\n * @param {Error | string | null | undefined} [message]\n * Message for assertion error (default: `'Unreachable'`).\n * @returns {never}\n * Nothing; always throws.\n * @throws {AssertionError}\n * Throws when `value` is falsey.\n */\nexport function unreachable(message?: Error | string | null | undefined): never\n",
|
|
13026
|
+
"node_modules/devlop/package.json": "{\n \"name\": \"devlop\",\n \"version\": \"1.1.0\",\n \"description\": \"Do things in development and nothing otherwise\",\n \"license\": \"MIT\",\n \"keywords\": [\n \"assert\",\n \"deprecate\",\n \"develop\",\n \"development\"\n ],\n \"repository\": \"wooorm/devlop\",\n \"bugs\": \"https://github.com/wooorm/devlop/issues\",\n \"funding\": {\n \"type\": \"github\",\n \"url\": \"https://github.com/sponsors/wooorm\"\n },\n \"author\": \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\",\n \"contributors\": [\n \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\"\n ],\n \"sideEffects\": false,\n \"type\": \"module\",\n \"exports\": {\n \"types\": \"./lib/development.d.ts\",\n \"development\": \"./lib/development.js\",\n \"default\": \"./lib/default.js\"\n },\n \"files\": [\n \"lib/\"\n ],\n \"dependencies\": {\n \"dequal\": \"^2.0.0\"\n },\n \"devDependencies\": {\n \"@rollup/plugin-node-resolve\": \"^15.1.0\",\n \"@rollup/plugin-terser\": \"^0.4.3\",\n \"@types/node\": \"^20.0.0\",\n \"c8\": \"^8.0.0\",\n \"esbuild\": \"^0.18.0\",\n \"prettier\": \"^2.0.0\",\n \"remark-cli\": \"^11.0.0\",\n \"remark-preset-wooorm\": \"^9.0.0\",\n \"type-coverage\": \"^2.0.0\",\n \"typescript\": \"^5.0.0\",\n \"xo\": \"^0.54.0\"\n },\n \"scripts\": {\n \"prepack\": \"npm run build && npm run format\",\n \"build\": \"tsc --build --clean && tsc --build && type-coverage\",\n \"format\": \"remark . -qfo && prettier . -w --loglevel warn && xo --fix\",\n \"test-api-development\": \"node --conditions development test-development.js\",\n \"test-api-default\": \"node test-default.js\",\n \"test-api\": \"npm run test-api-development && npm run test-api-default\",\n \"test-coverage\": \"c8 --100 --reporter lcov npm run test-api\",\n \"test\": \"npm run build && npm run format && npm run test-coverage\"\n },\n \"prettier\": {\n \"bracketSpacing\": false,\n \"semi\": false,\n \"singleQuote\": true,\n \"tabWidth\": 2,\n \"trailingComma\": \"none\",\n \"useTabs\": false\n },\n \"remarkConfig\": {\n \"plugins\": [\n \"remark-preset-wooorm\"\n ]\n },\n \"typeCoverage\": {\n \"atLeast\": 100,\n \"detail\": true,\n \"ignoreCatch\": true,\n \"strict\": true\n },\n \"xo\": {\n \"prettier\": true\n }\n}\n",
|
|
12971
13027
|
"node_modules/diff/package.json": "{\n \"name\": \"diff\",\n \"version\": \"4.0.2\",\n \"description\": \"A javascript text diff implementation.\",\n \"keywords\": [\n \"diff\",\n \"javascript\"\n ],\n \"maintainers\": [\n \"Kevin Decker <kpdecker@gmail.com> (http://incaseofstairs.com)\"\n ],\n \"bugs\": {\n \"email\": \"kpdecker@gmail.com\",\n \"url\": \"http://github.com/kpdecker/jsdiff/issues\"\n },\n \"license\": \"BSD-3-Clause\",\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"git://github.com/kpdecker/jsdiff.git\"\n },\n \"engines\": {\n \"node\": \">=0.3.1\"\n },\n \"main\": \"./lib/index.js\",\n \"module\": \"./lib/index.es6.js\",\n \"browser\": \"./dist/diff.js\",\n \"scripts\": {\n \"clean\": \"rm -rf lib/ dist/\",\n \"build:node\": \"yarn babel --out-dir lib --source-maps=inline src\",\n \"test\": \"grunt\"\n },\n \"devDependencies\": {\n \"@babel/cli\": \"^7.2.3\",\n \"@babel/core\": \"^7.2.2\",\n \"@babel/plugin-transform-modules-commonjs\": \"^7.2.0\",\n \"@babel/preset-env\": \"^7.2.3\",\n \"@babel/register\": \"^7.0.0\",\n \"babel-eslint\": \"^10.0.1\",\n \"babel-loader\": \"^8.0.5\",\n \"chai\": \"^4.2.0\",\n \"colors\": \"^1.3.3\",\n \"eslint\": \"^5.12.0\",\n \"grunt\": \"^1.0.3\",\n \"grunt-babel\": \"^8.0.0\",\n \"grunt-clean\": \"^0.4.0\",\n \"grunt-cli\": \"^1.3.2\",\n \"grunt-contrib-clean\": \"^2.0.0\",\n \"grunt-contrib-copy\": \"^1.0.0\",\n \"grunt-contrib-uglify\": \"^4.0.0\",\n \"grunt-contrib-watch\": \"^1.1.0\",\n \"grunt-eslint\": \"^21.0.0\",\n \"grunt-exec\": \"^3.0.0\",\n \"grunt-karma\": \"^3.0.1\",\n \"grunt-mocha-istanbul\": \"^5.0.2\",\n \"grunt-mocha-test\": \"^0.13.3\",\n \"grunt-webpack\": \"^3.1.3\",\n \"istanbul\": \"github:kpdecker/istanbul\",\n \"karma\": \"^3.1.4\",\n \"karma-chrome-launcher\": \"^2.2.0\",\n \"karma-mocha\": \"^1.3.0\",\n \"karma-mocha-reporter\": \"^2.0.0\",\n \"karma-sauce-launcher\": \"^2.0.2\",\n \"karma-sourcemap-loader\": \"^0.3.6\",\n \"karma-webpack\": \"^3.0.5\",\n \"mocha\": \"^5.2.0\",\n \"rollup\": \"^1.0.2\",\n \"rollup-plugin-babel\": \"^4.2.0\",\n \"semver\": \"^5.6.0\",\n \"webpack\": \"^4.28.3\",\n \"webpack-dev-server\": \"^3.1.14\"\n },\n \"optionalDependencies\": {}\n}\n",
|
|
12972
13028
|
"node_modules/dom-helpers/cjs/activeElement.d.ts": "/**\n * Returns the actively focused element safely.\n *\n * @param doc the document to check\n */\nexport default function activeElement(doc?: Document): Element | null;\n",
|
|
12973
13029
|
"node_modules/dom-helpers/cjs/addClass.d.ts": "/**\n * Adds a CSS class to a given element.\n *\n * @param element the element\n * @param className the CSS class name\n */\nexport default function addClass(element: Element | SVGElement, className: string): void;\n",
|
|
@@ -13246,6 +13302,7 @@
|
|
|
13246
13302
|
"node_modules/iterare/lib/zip.d.ts": "export declare class ZipIterator<A, B> implements Iterator<[A, B]> {\n private a;\n private b;\n constructor(a: Iterator<A>, b: Iterator<B>);\n next(): IteratorResult<[A, B]>;\n}\n//# sourceMappingURL=zip.d.ts.map",
|
|
13247
13303
|
"node_modules/iterare/lib/zip.test.d.ts": "export {};\n//# sourceMappingURL=zip.test.d.ts.map",
|
|
13248
13304
|
"node_modules/iterare/package.json": "{\n \"name\": \"iterare\",\n \"version\": \"1.2.1\",\n \"description\": \"Array methods for ES6 Iterators\",\n \"main\": \"lib/index.js\",\n \"typings\": \"lib/index.d.ts\",\n \"engines\": {\n \"node\": \">=6\"\n },\n \"scripts\": {\n \"tslint\": \"tslint -c tslint.json -p tsconfig.json 'src/**/*.ts'\",\n \"prettier\": \"prettier --write --list-different '**/*.{ts,json,js,md,yml}'\",\n \"test\": \"nyc mocha\",\n \"build\": \"tsc\",\n \"watch\": \"tsc -w\",\n \"typedoc\": \"typedoc --out typedoc --tsconfig tsconfig.json --ignoreCompilerErrors --mode file --excludeExternals src\",\n \"semantic-release\": \"semantic-release\"\n },\n \"nyc\": {\n \"all\": true,\n \"extension\": [\n \".ts\"\n ],\n \"include\": [\n \"src/**/*.ts\"\n ],\n \"exclude\": [\n \"src/**/*.test.ts\"\n ],\n \"reporter\": [\n \"text\",\n \"json\"\n ]\n },\n \"mocha\": {\n \"spec\": \"src/**/*.test.ts\",\n \"require\": \"ts-node/register\"\n },\n \"husky\": {\n \"hooks\": {\n \"commit-msg\": \"commitlint -e $HUSKY_GIT_PARAMS\"\n }\n },\n \"commitlint\": {\n \"extends\": [\n \"@commitlint/config-conventional\"\n ]\n },\n \"keywords\": [\n \"iterator\",\n \"iteration\",\n \"functional\",\n \"es6\",\n \"collection\",\n \"array\",\n \"map\",\n \"set\",\n \"filter\",\n \"reduce\",\n \"flatten\",\n \"concat\",\n \"every\",\n \"some\"\n ],\n \"author\": \"Felix Becker <felix.b@outlook.com>\",\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/felixfbecker/iterare\"\n },\n \"bugs\": {\n \"url\": \"https://github.com/felixfbecker/iterare/issues\"\n },\n \"license\": \"ISC\",\n \"devDependencies\": {\n \"@commitlint/cli\": \"^8.0.0\",\n \"@commitlint/config-conventional\": \"^8.0.0\",\n \"@reactivex/ix-es2015-cjs\": \"^2.5.3\",\n \"@types/benchmark\": \"^1.0.31\",\n \"@types/lodash\": \"^4.14.134\",\n \"@types/mocha\": \"^5.2.7\",\n \"@types/node\": \"^7.10.6\",\n \"benchmark\": \"^2.1.4\",\n \"husky\": \"^2.4.0\",\n \"ix\": \"^2.5.3\",\n \"lodash\": \"^4.17.11\",\n \"mocha\": \"^6.1.4\",\n \"nyc\": \"^14.1.1\",\n \"prettier\": \"^1.18.1\",\n \"rxjs\": \"^6.5.2\",\n \"semantic-release\": \"^15.13.12\",\n \"ts-node\": \"^8.2.0\",\n \"tslint\": \"^5.17.0\",\n \"tslint-config-prettier\": \"^1.18.0\",\n \"typedoc\": \"^0.14.2\",\n \"typescript\": \"~3.5.1\"\n }\n}\n",
|
|
13305
|
+
"node_modules/javascript-natural-sort/package.json": "{\n \"name\": \"javascript-natural-sort\",\n \"version\": \"0.7.1\",\n \"description\": \"Natural Sort algorithm for Javascript - Version 0.7 - Released under MIT license\",\n \"main\": \"naturalSort.js\",\n \"scripts\": {\n \"test\": \"echo \\\"Error: no test specified\\\" && exit 1\"\n },\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/Bill4Time/javascript-natural-sort.git\"\n },\n \"keywords\": [\n \"natural\",\n \"sort\",\n \"javascript\",\n \"array\",\n \"sort\",\n \"sorting\"\n ],\n \"author\": \"Jim Palmer (based on chunking idea from Dave Koelle, packaged by @khous of Bill4Time)\",\n \"license\": \"MIT\",\n \"bugs\": {\n \"url\": \"https://github.com/Bill4Time/javascript-natural-sort/issues\"\n },\n \"homepage\": \"https://github.com/Bill4Time/javascript-natural-sort\"\n}\n",
|
|
13249
13306
|
"node_modules/js-tokens/package.json": "{\n \"name\": \"js-tokens\",\n \"version\": \"4.0.0\",\n \"author\": \"Simon Lydell\",\n \"license\": \"MIT\",\n \"description\": \"A regex that tokenizes JavaScript.\",\n \"keywords\": [\n \"JavaScript\",\n \"js\",\n \"token\",\n \"tokenize\",\n \"regex\"\n ],\n \"files\": [\n \"index.js\"\n ],\n \"repository\": \"lydell/js-tokens\",\n \"scripts\": {\n \"test\": \"mocha --ui tdd\",\n \"esprima-compare\": \"node esprima-compare ./index.js everything.js/es5.js\",\n \"build\": \"node generate-index.js\",\n \"dev\": \"npm run build && npm test\"\n },\n \"devDependencies\": {\n \"coffeescript\": \"2.1.1\",\n \"esprima\": \"4.0.0\",\n \"everything.js\": \"1.0.3\",\n \"mocha\": \"5.0.0\"\n }\n}\n",
|
|
13250
13307
|
"node_modules/js-yaml/package.json": "{\n \"name\": \"js-yaml\",\n \"version\": \"4.1.0\",\n \"description\": \"YAML 1.2 parser and serializer\",\n \"keywords\": [\n \"yaml\",\n \"parser\",\n \"serializer\",\n \"pyyaml\"\n ],\n \"author\": \"Vladimir Zapparov <dervus.grim@gmail.com>\",\n \"contributors\": [\n \"Aleksey V Zapparov <ixti@member.fsf.org> (http://www.ixti.net/)\",\n \"Vitaly Puzrin <vitaly@rcdesign.ru> (https://github.com/puzrin)\",\n \"Martin Grenfell <martin.grenfell@gmail.com> (http://got-ravings.blogspot.com)\"\n ],\n \"license\": \"MIT\",\n \"repository\": \"nodeca/js-yaml\",\n \"files\": [\n \"index.js\",\n \"lib/\",\n \"bin/\",\n \"dist/\"\n ],\n \"bin\": {\n \"js-yaml\": \"bin/js-yaml.js\"\n },\n \"module\": \"./dist/js-yaml.mjs\",\n \"exports\": {\n \".\": {\n \"import\": \"./dist/js-yaml.mjs\",\n \"require\": \"./index.js\"\n },\n \"./package.json\": \"./package.json\"\n },\n \"scripts\": {\n \"lint\": \"eslint .\",\n \"test\": \"npm run lint && mocha\",\n \"coverage\": \"npm run lint && nyc mocha && nyc report --reporter html\",\n \"demo\": \"npm run lint && node support/build_demo.js\",\n \"gh-demo\": \"npm run demo && gh-pages -d demo -f\",\n \"browserify\": \"rollup -c support/rollup.config.js\",\n \"prepublishOnly\": \"npm run gh-demo\"\n },\n \"unpkg\": \"dist/js-yaml.min.js\",\n \"jsdelivr\": \"dist/js-yaml.min.js\",\n \"dependencies\": {\n \"argparse\": \"^2.0.1\"\n },\n \"devDependencies\": {\n \"@rollup/plugin-commonjs\": \"^17.0.0\",\n \"@rollup/plugin-node-resolve\": \"^11.0.0\",\n \"ansi\": \"^0.3.1\",\n \"benchmark\": \"^2.1.4\",\n \"codemirror\": \"^5.13.4\",\n \"eslint\": \"^7.0.0\",\n \"fast-check\": \"^2.8.0\",\n \"gh-pages\": \"^3.1.0\",\n \"mocha\": \"^8.2.1\",\n \"nyc\": \"^15.1.0\",\n \"rollup\": \"^2.34.1\",\n \"rollup-plugin-node-polyfills\": \"^0.2.1\",\n \"rollup-plugin-terser\": \"^7.0.2\",\n \"shelljs\": \"^0.8.4\"\n }\n}\n",
|
|
13251
13308
|
"node_modules/jsesc/package.json": "{\n \"name\": \"jsesc\",\n \"version\": \"3.1.0\",\n \"description\": \"Given some data, jsesc returns the shortest possible stringified & ASCII-safe representation of that data.\",\n \"homepage\": \"https://mths.be/jsesc\",\n \"engines\": {\n \"node\": \">=6\"\n },\n \"main\": \"jsesc.js\",\n \"bin\": \"bin/jsesc\",\n \"man\": \"man/jsesc.1\",\n \"keywords\": [\n \"buffer\",\n \"escape\",\n \"javascript\",\n \"json\",\n \"map\",\n \"set\",\n \"string\",\n \"stringify\",\n \"tool\"\n ],\n \"license\": \"MIT\",\n \"author\": {\n \"name\": \"Mathias Bynens\",\n \"url\": \"https://mathiasbynens.be/\"\n },\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/mathiasbynens/jsesc.git\"\n },\n \"bugs\": \"https://github.com/mathiasbynens/jsesc/issues\",\n \"files\": [\n \"LICENSE-MIT.txt\",\n \"jsesc.js\",\n \"bin/\",\n \"man/\"\n ],\n \"scripts\": {\n \"build\": \"grunt template\",\n \"coveralls\": \"istanbul cover --verbose --dir 'coverage' 'tests/tests.js' && coveralls < coverage/lcov.info'\",\n \"cover\": \"istanbul cover --report 'html' --verbose --dir 'coverage' 'tests/tests.js'\",\n \"test\": \"mocha tests\"\n },\n \"devDependencies\": {\n \"coveralls\": \"^2.11.6\",\n \"grunt\": \"^0.4.5\",\n \"grunt-cli\": \"^1.3.2\",\n \"grunt-template\": \"^0.2.3\",\n \"istanbul\": \"^0.4.2\",\n \"mocha\": \"^5.2.0\",\n \"regenerate\": \"^1.3.0\",\n \"requirejs\": \"^2.1.22\",\n \"unicode-13.0.0\": \"0.8.0\"\n }\n}\n",
|
|
@@ -13292,9 +13349,148 @@
|
|
|
13292
13349
|
"node_modules/math-intrinsics/pow.d.ts": "export = Math.pow;",
|
|
13293
13350
|
"node_modules/math-intrinsics/round.d.ts": "export = Math.round;",
|
|
13294
13351
|
"node_modules/math-intrinsics/sign.d.ts": "declare function sign(x: number): number;\n\nexport = sign;",
|
|
13352
|
+
"node_modules/mdast-util-from-markdown/dev/index.d.ts": "export type {Encoding, Token, Value} from 'micromark-util-types'\nexport type {\n CompileContext,\n CompileData,\n Extension,\n Handles,\n Handle,\n OnEnterError,\n OnExitError,\n Options,\n Transform\n} from './lib/types.js'\nexport {fromMarkdown} from './lib/index.js'\n\ndeclare module 'micromark-util-types' {\n interface TokenTypeMap {\n listItem: 'listItem'\n }\n\n interface Token {\n _spread?: boolean\n }\n}\n",
|
|
13353
|
+
"node_modules/mdast-util-from-markdown/dev/lib/index.d.ts": "/**\n * Turn markdown into a syntax tree.\n *\n * @overload\n * @param {Value} value\n * @param {Encoding | null | undefined} [encoding]\n * @param {Options | null | undefined} [options]\n * @returns {Root}\n *\n * @overload\n * @param {Value} value\n * @param {Options | null | undefined} [options]\n * @returns {Root}\n *\n * @param {Value} value\n * Markdown to parse.\n * @param {Encoding | Options | null | undefined} [encoding]\n * Character encoding for when `value` is `Buffer`.\n * @param {Options | null | undefined} [options]\n * Configuration.\n * @returns {Root}\n * mdast tree.\n */\nexport function fromMarkdown(value: Value, encoding?: Encoding | null | undefined, options?: Options | null | undefined): Root;\n/**\n * Turn markdown into a syntax tree.\n *\n * @overload\n * @param {Value} value\n * @param {Encoding | null | undefined} [encoding]\n * @param {Options | null | undefined} [options]\n * @returns {Root}\n *\n * @overload\n * @param {Value} value\n * @param {Options | null | undefined} [options]\n * @returns {Root}\n *\n * @param {Value} value\n * Markdown to parse.\n * @param {Encoding | Options | null | undefined} [encoding]\n * Character encoding for when `value` is `Buffer`.\n * @param {Options | null | undefined} [options]\n * Configuration.\n * @returns {Root}\n * mdast tree.\n */\nexport function fromMarkdown(value: Value, options?: Options | null | undefined): Root;\nimport type { Value } from 'micromark-util-types';\nimport type { Encoding } from 'micromark-util-types';\nimport type { Options } from './types.js';\nimport type { Root } from 'mdast';\n//# sourceMappingURL=index.d.ts.map",
|
|
13354
|
+
"node_modules/mdast-util-from-markdown/dev/lib/types.d.ts": "import type {Nodes, Parent, PhrasingContent, Root} from 'mdast'\nimport type {ParseOptions, Token} from 'micromark-util-types'\n\n/**\n * Compiler context.\n */\nexport interface CompileContext {\n /**\n * Configuration.\n */\n config: Config\n /**\n * Info passed around;\n * key/value store.\n */\n data: CompileData\n /**\n * Stack of nodes.\n */\n stack: Array<Fragment | Nodes>\n /**\n * Stack of tokens.\n */\n tokenStack: Array<TokenTuple>\n\n /**\n * Capture some of the output data.\n *\n * @param this\n * Context.\n * @returns\n * Nothing.\n */\n buffer(this: CompileContext): undefined\n\n /**\n * Enter a node.\n *\n * @param this\n * Context.\n * @param node\n * Node.\n * @param token\n * Token.\n * @param onError\n * Error handler.\n * @returns\n * Nothing.\n */\n enter(\n this: CompileContext,\n node: Nodes,\n token: Token,\n onError?: OnEnterError | null | undefined\n ): undefined\n\n /**\n * Exit a node.\n *\n * @param this\n * Context.\n * @param token\n * Token.\n * @param onError\n * Error handler.\n * @returns\n * Nothing.\n */\n exit(\n this: CompileContext,\n token: Token,\n onError?: OnExitError | null | undefined\n ): undefined\n\n /**\n * Stop capturing and access the output data.\n *\n * @param this\n * Context.\n * @returns\n * Nothing.\n */\n resume(this: CompileContext): string\n\n /**\n * Get the source text that spans a token (or location).\n *\n * @param token\n * Start/end in stream.\n * @param expandTabs\n * Whether to expand tabs.\n * @returns\n * Serialized chunks.\n */\n sliceSerialize(\n token: Pick<Token, 'end' | 'start'>,\n expandTabs?: boolean | undefined\n ): string\n}\n\n/**\n * Interface of tracked data.\n *\n * When working on extensions that use more data, extend the corresponding\n * interface to register their types:\n *\n * ```ts\n * declare module 'mdast-util-from-markdown' {\n * interface CompileData {\n * // Register a new field.\n * mathFlowInside?: boolean | undefined\n * }\n * }\n * ```\n */\nexport interface CompileData {\n /**\n * Whether we’re inside a hard break.\n */\n atHardBreak?: boolean | undefined\n\n /**\n * Current character reference type.\n */\n characterReferenceType?:\n | 'characterReferenceMarkerHexadecimal'\n | 'characterReferenceMarkerNumeric'\n | undefined\n\n /**\n * Whether a first list item value (`1` in `1. a`) is expected.\n */\n expectingFirstListItemValue?: boolean | undefined\n\n /**\n * Whether we’re in flow code.\n */\n flowCodeInside?: boolean | undefined\n\n /**\n * Whether we’re in a reference.\n */\n inReference?: boolean | undefined\n\n /**\n * Whether we’re expecting a line ending from a setext heading, which can be slurped.\n */\n setextHeadingSlurpLineEnding?: boolean | undefined\n\n /**\n * Current reference.\n */\n referenceType?: 'collapsed' | 'full' | undefined\n}\n\n/**\n * Configuration.\n *\n * We have our defaults, but extensions will add more.\n */\nexport interface Config {\n /**\n * Token types where line endings are used.\n */\n canContainEols: Array<string>\n /**\n * Opening handles.\n */\n enter: Handles\n /**\n * Closing handles.\n */\n exit: Handles\n /**\n * Tree transforms.\n */\n transforms: Array<Transform>\n}\n\n/**\n * Change how markdown tokens from micromark are turned into mdast.\n */\nexport interface Extension {\n /**\n * Token types where line endings are used.\n */\n canContainEols?: Array<string> | null | undefined\n /**\n * Opening handles.\n */\n enter?: Handles | null | undefined\n /**\n * Closing handles.\n */\n exit?: Handles | null | undefined\n /**\n * Tree transforms.\n */\n transforms?: Array<Transform> | null | undefined\n}\n\n/**\n * Internal fragment.\n */\nexport interface Fragment extends Parent {\n /**\n * Node type.\n */\n type: 'fragment'\n /**\n * Children.\n */\n children: Array<PhrasingContent>\n}\n\n/**\n * Token types mapping to handles\n */\nexport type Handles = Record<string, Handle>\n\n/**\n * Handle a token.\n *\n * @param this\n * Context.\n * @param token\n * Current token.\n * @returns\n * Nothing.\n */\nexport type Handle = (this: CompileContext, token: Token) => undefined | void\n\n/**\n * Handle the case where the `right` token is open, but it is closed (by the\n * `left` token) or because we reached the end of the document.\n *\n * @param this\n * Context.\n * @param left\n * Left token.\n * @param right\n * Right token.\n * @returns\n * Nothing.\n */\nexport type OnEnterError = (\n this: Omit<CompileContext, 'sliceSerialize'>,\n left: Token | undefined,\n right: Token\n) => undefined\n\n/**\n * Handle the case where the `right` token is open but it is closed by\n * exiting the `left` token.\n *\n * @param this\n * Context.\n * @param left\n * Left token.\n * @param right\n * Right token.\n * @returns\n * Nothing.\n */\nexport type OnExitError = (\n this: Omit<CompileContext, 'sliceSerialize'>,\n left: Token,\n right: Token\n) => undefined\n\n/**\n * Configuration.\n */\nexport interface Options extends ParseOptions {\n /**\n * Extensions for this utility to change how tokens are turned into a tree.\n */\n mdastExtensions?: Array<Extension | Array<Extension>> | null | undefined\n}\n\n/**\n * Open token on the stack,\n * with an optional error handler for when that token isn’t closed properly.\n */\nexport type TokenTuple = [token: Token, onError: OnEnterError | undefined]\n\n/**\n * Extra transform, to change the AST afterwards.\n *\n * @param tree\n * Tree to transform.\n * @returns\n * New tree or nothing (in which case the current tree is used).\n */\nexport type Transform = (tree: Root) => Root | null | undefined | void\n",
|
|
13355
|
+
"node_modules/mdast-util-from-markdown/index.d.ts": "export type {Encoding, Token, Value} from 'micromark-util-types'\nexport type {\n CompileContext,\n CompileData,\n Extension,\n Handles,\n Handle,\n OnEnterError,\n OnExitError,\n Options,\n Transform\n} from './lib/types.js'\nexport {fromMarkdown} from './lib/index.js'\n\ndeclare module 'micromark-util-types' {\n interface TokenTypeMap {\n listItem: 'listItem'\n }\n\n interface Token {\n _spread?: boolean\n }\n}\n",
|
|
13356
|
+
"node_modules/mdast-util-from-markdown/lib/index.d.ts": "/**\n * Turn markdown into a syntax tree.\n *\n * @overload\n * @param {Value} value\n * @param {Encoding | null | undefined} [encoding]\n * @param {Options | null | undefined} [options]\n * @returns {Root}\n *\n * @overload\n * @param {Value} value\n * @param {Options | null | undefined} [options]\n * @returns {Root}\n *\n * @param {Value} value\n * Markdown to parse.\n * @param {Encoding | Options | null | undefined} [encoding]\n * Character encoding for when `value` is `Buffer`.\n * @param {Options | null | undefined} [options]\n * Configuration.\n * @returns {Root}\n * mdast tree.\n */\nexport function fromMarkdown(value: Value, encoding?: Encoding | null | undefined, options?: Options | null | undefined): Root;\n/**\n * Turn markdown into a syntax tree.\n *\n * @overload\n * @param {Value} value\n * @param {Encoding | null | undefined} [encoding]\n * @param {Options | null | undefined} [options]\n * @returns {Root}\n *\n * @overload\n * @param {Value} value\n * @param {Options | null | undefined} [options]\n * @returns {Root}\n *\n * @param {Value} value\n * Markdown to parse.\n * @param {Encoding | Options | null | undefined} [encoding]\n * Character encoding for when `value` is `Buffer`.\n * @param {Options | null | undefined} [options]\n * Configuration.\n * @returns {Root}\n * mdast tree.\n */\nexport function fromMarkdown(value: Value, options?: Options | null | undefined): Root;\nimport type { Value } from 'micromark-util-types';\nimport type { Encoding } from 'micromark-util-types';\nimport type { Options } from './types.js';\nimport type { Root } from 'mdast';\n//# sourceMappingURL=index.d.ts.map",
|
|
13357
|
+
"node_modules/mdast-util-from-markdown/lib/types.d.ts": "import type {Nodes, Parent, PhrasingContent, Root} from 'mdast'\nimport type {ParseOptions, TokenizeContext, Token} from 'micromark-util-types'\n\n/**\n * Compiler context.\n */\nexport interface CompileContext {\n /**\n * Configuration.\n */\n config: Config\n /**\n * Info passed around;\n * key/value store.\n */\n data: CompileData\n /**\n * Stack of nodes.\n */\n stack: Array<Fragment | Nodes>\n /**\n * Stack of tokens.\n */\n tokenStack: Array<TokenTuple>\n\n /**\n * Capture some of the output data.\n *\n * @param this\n * Context.\n * @returns\n * Nothing.\n */\n buffer(this: CompileContext): undefined\n\n /**\n * Enter a node.\n *\n * @param this\n * Context.\n * @param node\n * Node.\n * @param token\n * Token.\n * @param onError\n * Error handler.\n * @returns\n * Nothing.\n */\n enter(\n this: CompileContext,\n node: Nodes,\n token: Token,\n onError?: OnEnterError | null | undefined\n ): undefined\n\n /**\n * Exit a node.\n *\n * @param this\n * Context.\n * @param token\n * Token.\n * @param onError\n * Error handler.\n * @returns\n * Nothing.\n */\n exit(\n this: CompileContext,\n token: Token,\n onError?: OnExitError | null | undefined\n ): undefined\n\n /**\n * Stop capturing and access the output data.\n *\n * @param this\n * Context.\n * @returns\n * Nothing.\n */\n resume(this: CompileContext): string\n\n /**\n * Get the source text that spans a token (or location).\n *\n * @param token\n * Start/end in stream.\n * @param expandTabs\n * Whether to expand tabs.\n * @returns\n * Serialized chunks.\n */\n sliceSerialize(\n token: Pick<Token, 'end' | 'start'>,\n expandTabs?: boolean | undefined\n ): string\n}\n\n/**\n * Interface of tracked data.\n *\n * When working on extensions that use more data, extend the corresponding\n * interface to register their types:\n *\n * ```ts\n * declare module 'mdast-util-from-markdown' {\n * interface CompileData {\n * // Register a new field.\n * mathFlowInside?: boolean | undefined\n * }\n * }\n * ```\n */\nexport interface CompileData {\n /**\n * Whether we’re inside a hard break.\n */\n atHardBreak?: boolean | undefined\n\n /**\n * Current character reference type.\n */\n characterReferenceType?:\n | 'characterReferenceMarkerHexadecimal'\n | 'characterReferenceMarkerNumeric'\n | undefined\n\n /**\n * Whether a first list item value (`1` in `1. a`) is expected.\n */\n expectingFirstListItemValue?: boolean | undefined\n\n /**\n * Whether we’re in flow code.\n */\n flowCodeInside?: boolean | undefined\n\n /**\n * Whether we’re in a reference.\n */\n inReference?: boolean | undefined\n\n /**\n * Whether we’re expecting a line ending from a setext heading, which can be slurped.\n */\n setextHeadingSlurpLineEnding?: boolean | undefined\n\n /**\n * Current reference.\n */\n referenceType?: 'collapsed' | 'full' | undefined\n}\n\n/**\n * Configuration.\n *\n * We have our defaults, but extensions will add more.\n */\nexport interface Config {\n /**\n * Token types where line endings are used.\n */\n canContainEols: Array<string>\n /**\n * Opening handles.\n */\n enter: Handles\n /**\n * Closing handles.\n */\n exit: Handles\n /**\n * Tree transforms.\n */\n transforms: Array<Transform>\n}\n\n/**\n * Change how markdown tokens from micromark are turned into mdast.\n */\nexport interface Extension {\n /**\n * Token types where line endings are used.\n */\n canContainEols?: Array<string> | null | undefined\n /**\n * Opening handles.\n */\n enter?: Handles | null | undefined\n /**\n * Closing handles.\n */\n exit?: Handles | null | undefined\n /**\n * Tree transforms.\n */\n transforms?: Array<Transform> | null | undefined\n}\n\n/**\n * Internal fragment.\n */\nexport interface Fragment extends Parent {\n /**\n * Node type.\n */\n type: 'fragment'\n /**\n * Children.\n */\n children: Array<PhrasingContent>\n}\n\n/**\n * Token types mapping to handles\n */\nexport type Handles = Record<string, Handle>\n\n/**\n * Handle a token.\n *\n * @param this\n * Context.\n * @param token\n * Current token.\n * @returns\n * Nothing.\n */\nexport type Handle = (this: CompileContext, token: Token) => undefined | void\n\n/**\n * Handle the case where the `right` token is open, but it is closed (by the\n * `left` token) or because we reached the end of the document.\n *\n * @param this\n * Context.\n * @param left\n * Left token.\n * @param right\n * Right token.\n * @returns\n * Nothing.\n */\nexport type OnEnterError = (\n this: Omit<CompileContext, 'sliceSerialize'>,\n left: Token | undefined,\n right: Token\n) => undefined\n\n/**\n * Handle the case where the `right` token is open but it is closed by\n * exiting the `left` token.\n *\n * @param this\n * Context.\n * @param left\n * Left token.\n * @param right\n * Right token.\n * @returns\n * Nothing.\n */\nexport type OnExitError = (\n this: Omit<CompileContext, 'sliceSerialize'>,\n left: Token,\n right: Token\n) => undefined\n\n/**\n * Configuration.\n */\nexport interface Options extends ParseOptions {\n /**\n * Extensions for this utility to change how tokens are turned into a tree.\n */\n mdastExtensions?: Array<Extension | Array<Extension>> | null | undefined\n}\n\n/**\n * Open token on the stack,\n * with an optional error handler for when that token isn’t closed properly.\n */\nexport type TokenTuple = [token: Token, onError: OnEnterError | undefined]\n\n/**\n * Extra transform, to change the AST afterwards.\n *\n * @param tree\n * Tree to transform.\n * @returns\n * New tree or nothing (in which case the current tree is used).\n */\nexport type Transform = (tree: Root) => Root | null | undefined | void\n",
|
|
13358
|
+
"node_modules/mdast-util-from-markdown/package.json": "{\n \"author\": \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\",\n \"bugs\": \"https://github.com/syntax-tree/mdast-util-from-markdown/issues\",\n \"contributors\": [\n \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\"\n ],\n \"dependencies\": {\n \"@types/mdast\": \"^4.0.0\",\n \"@types/unist\": \"^3.0.0\",\n \"decode-named-character-reference\": \"^1.0.0\",\n \"devlop\": \"^1.0.0\",\n \"mdast-util-to-string\": \"^4.0.0\",\n \"micromark\": \"^4.0.0\",\n \"micromark-util-decode-numeric-character-reference\": \"^2.0.0\",\n \"micromark-util-decode-string\": \"^2.0.0\",\n \"micromark-util-normalize-identifier\": \"^2.0.0\",\n \"micromark-util-symbol\": \"^2.0.0\",\n \"micromark-util-types\": \"^2.0.0\",\n \"unist-util-stringify-position\": \"^4.0.0\"\n },\n \"description\": \"mdast utility to parse markdown\",\n \"devDependencies\": {\n \"@types/node\": \"^22.0.0\",\n \"c8\": \"^10.0.0\",\n \"commonmark.json\": \"^0.31.0\",\n \"esbuild\": \"^0.24.0\",\n \"gzip-size-cli\": \"^5.0.0\",\n \"hast-util-from-html\": \"^2.0.0\",\n \"hast-util-to-html\": \"^9.0.0\",\n \"mdast-util-to-hast\": \"^13.0.0\",\n \"micromark-build\": \"^2.0.0\",\n \"prettier\": \"^3.0.0\",\n \"remark-cli\": \"^12.0.0\",\n \"remark-preset-wooorm\": \"^10.0.0\",\n \"terser\": \"^5.0.0\",\n \"type-coverage\": \"^2.0.0\",\n \"typescript\": \"^5.0.0\",\n \"xo\": \"^0.59.0\"\n },\n \"exports\": {\n \"development\": \"./dev/index.js\",\n \"default\": \"./index.js\"\n },\n \"files\": [\n \"dev/\",\n \"lib/\",\n \"index.d.ts\",\n \"index.js\"\n ],\n \"funding\": {\n \"type\": \"opencollective\",\n \"url\": \"https://opencollective.com/unified\"\n },\n \"keywords\": [\n \"ast\",\n \"markdown\",\n \"markup\",\n \"mdast-util\",\n \"mdast\",\n \"parse\",\n \"syntax\",\n \"tree\",\n \"unist\",\n \"utility\",\n \"util\"\n ],\n \"license\": \"MIT\",\n \"name\": \"mdast-util-from-markdown\",\n \"prettier\": {\n \"bracketSpacing\": false,\n \"semi\": false,\n \"singleQuote\": true,\n \"tabWidth\": 2,\n \"trailingComma\": \"none\",\n \"useTabs\": false\n },\n \"remarkConfig\": {\n \"plugins\": [\n \"remark-preset-wooorm\"\n ]\n },\n \"repository\": \"syntax-tree/mdast-util-from-markdown\",\n \"scripts\": {\n \"build\": \"tsc --build --clean && tsc --build && type-coverage && micromark-build && esbuild . --bundle --minify | terser | gzip-size --raw\",\n \"format\": \"remark --frail --quiet --output -- . && prettier --log-level warn --write -- . && xo --fix\",\n \"test-api-dev\": \"node --conditions development test/index.js\",\n \"test-api-prod\": \"node --conditions production test/index.js\",\n \"test-api\": \"npm run test-api-dev && npm run test-api-prod\",\n \"test-coverage\": \"c8 --100 --reporter lcov -- npm run test-api\",\n \"test\": \"npm run build && npm run format && npm run test-coverage\"\n },\n \"sideEffects\": false,\n \"typeCoverage\": {\n \"atLeast\": 100,\n \"strict\": true\n },\n \"type\": \"module\",\n \"version\": \"2.0.2\",\n \"xo\": {\n \"overrides\": [\n {\n \"files\": [\n \"**/*.d.ts\"\n ],\n \"rules\": {\n \"@typescript-eslint/array-type\": [\n \"error\",\n {\n \"default\": \"generic\"\n }\n ],\n \"@typescript-eslint/ban-types\": [\n \"error\",\n {\n \"extendDefaults\": true\n }\n ],\n \"@typescript-eslint/consistent-type-definitions\": [\n \"error\",\n \"interface\"\n ]\n }\n },\n {\n \"files\": \"test/**/*.js\",\n \"rules\": {\n \"no-await-in-loop\": \"off\"\n }\n }\n ],\n \"prettier\": true,\n \"rules\": {\n \"complexity\": \"off\",\n \"max-depth\": \"off\",\n \"unicorn/prefer-at\": \"off\",\n \"unicorn/prefer-string-replace-all\": \"off\"\n }\n }\n}\n",
|
|
13359
|
+
"node_modules/mdast-util-to-string/index.d.ts": "export {toString} from './lib/index.js'\nexport type Options = import('./lib/index.js').Options\n",
|
|
13360
|
+
"node_modules/mdast-util-to-string/lib/index.d.ts": "/**\n * Get the text content of a node or list of nodes.\n *\n * Prefers the node’s plain-text fields, otherwise serializes its children,\n * and if the given value is an array, serialize the nodes in it.\n *\n * @param {unknown} [value]\n * Thing to serialize, typically `Node`.\n * @param {Options | null | undefined} [options]\n * Configuration (optional).\n * @returns {string}\n * Serialized `value`.\n */\nexport function toString(\n value?: unknown,\n options?: Options | null | undefined\n): string\nexport type Nodes = import('mdast').Nodes\n/**\n * Configuration (optional).\n */\nexport type Options = {\n /**\n * Whether to use `alt` for `image`s (default: `true`).\n */\n includeImageAlt?: boolean | null | undefined\n /**\n * Whether to use `value` of HTML (default: `true`).\n */\n includeHtml?: boolean | null | undefined\n}\n",
|
|
13361
|
+
"node_modules/mdast-util-to-string/package.json": "{\n \"name\": \"mdast-util-to-string\",\n \"version\": \"4.0.0\",\n \"description\": \"mdast utility to get the plain text content of a node\",\n \"license\": \"MIT\",\n \"keywords\": [\n \"unist\",\n \"mdast\",\n \"mdast-util\",\n \"util\",\n \"utility\",\n \"markdown\",\n \"node\",\n \"string\",\n \"serialize\"\n ],\n \"repository\": \"syntax-tree/mdast-util-to-string\",\n \"bugs\": \"https://github.com/syntax-tree/mdast-util-to-string/issues\",\n \"funding\": {\n \"type\": \"opencollective\",\n \"url\": \"https://opencollective.com/unified\"\n },\n \"author\": \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\",\n \"contributors\": [\n \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\"\n ],\n \"sideEffects\": false,\n \"type\": \"module\",\n \"exports\": \"./index.js\",\n \"files\": [\n \"lib/\",\n \"index.d.ts\",\n \"index.js\"\n ],\n \"dependencies\": {\n \"@types/mdast\": \"^4.0.0\"\n },\n \"devDependencies\": {\n \"@types/node\": \"^20.0.0\",\n \"c8\": \"^8.0.0\",\n \"prettier\": \"^2.0.0\",\n \"remark-cli\": \"^11.0.0\",\n \"remark-preset-wooorm\": \"^9.0.0\",\n \"type-coverage\": \"^2.0.0\",\n \"typescript\": \"^5.0.0\",\n \"xo\": \"^0.54.0\"\n },\n \"scripts\": {\n \"prepack\": \"npm run build && npm run format\",\n \"build\": \"tsc --build --clean && tsc --build && type-coverage\",\n \"format\": \"remark . -qfo && prettier . -w --loglevel warn && xo --fix\",\n \"test-api\": \"node --conditions development test.js\",\n \"test-coverage\": \"c8 --100 --reporter lcov npm run test-api\",\n \"test\": \"npm run build && npm run format && npm run test-coverage\"\n },\n \"prettier\": {\n \"bracketSpacing\": false,\n \"semi\": false,\n \"singleQuote\": true,\n \"tabWidth\": 2,\n \"trailingComma\": \"none\",\n \"useTabs\": false\n },\n \"remarkConfig\": {\n \"plugins\": [\n \"remark-preset-wooorm\"\n ]\n },\n \"typeCoverage\": {\n \"atLeast\": 100,\n \"detail\": true,\n \"ignoreCatch\": true,\n \"strict\": true\n },\n \"xo\": {\n \"prettier\": true\n }\n}\n",
|
|
13295
13362
|
"node_modules/media-typer/package.json": "{\n \"name\": \"media-typer\",\n \"description\": \"Simple RFC 6838 media type parser and formatter\",\n \"version\": \"0.3.0\",\n \"author\": \"Douglas Christopher Wilson <doug@somethingdoug.com>\",\n \"license\": \"MIT\",\n \"repository\": \"jshttp/media-typer\",\n \"devDependencies\": {\n \"istanbul\": \"0.3.2\",\n \"mocha\": \"~1.21.4\",\n \"should\": \"~4.0.4\"\n },\n \"files\": [\n \"LICENSE\",\n \"HISTORY.md\",\n \"index.js\"\n ],\n \"engines\": {\n \"node\": \">= 0.6\"\n },\n \"scripts\": {\n \"test\": \"mocha --reporter spec --check-leaks --bail test/\",\n \"test-cov\": \"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/\",\n \"test-travis\": \"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/\"\n }\n}\n",
|
|
13296
13363
|
"node_modules/merge-descriptors/index.d.ts": "/**\nMerges \"own\" properties from a source to a destination object, including non-enumerable and accessor-defined properties. It retains original values and descriptors, ensuring the destination receives a complete and accurate copy of the source's properties.\n\n@param destination - The object to receive properties.\n@param source - The object providing properties.\n@param overwrite - Optional boolean to control overwriting of existing properties. Defaults to true.\n@returns The modified destination object.\n*/\ndeclare function mergeDescriptors<T, U>(destination: T, source: U, overwrite?: boolean): T & U;\n\nexport = mergeDescriptors;\n",
|
|
13297
13364
|
"node_modules/merge-descriptors/package.json": "{\n\t\"name\": \"merge-descriptors\",\n\t\"version\": \"2.0.0\",\n\t\"description\": \"Merge objects using their property descriptors\",\n\t\"license\": \"MIT\",\n\t\"repository\": \"sindresorhus/merge-descriptors\",\n\t\"funding\": \"https://github.com/sponsors/sindresorhus\",\n\t\"contributors\": [\n\t\t\"Jonathan Ong <me@jongleberry.com>\",\n\t\t\"Douglas Christopher Wilson <doug@somethingdoug.com>\",\n\t\t\"Mike Grabowski <grabbou@gmail.com>\",\n\t\t\"Sindre Sorhus <sindresorhus@gmail.com>\"\n\t],\n\t\"exports\": {\n\t\t\"types\": \"./index.d.ts\",\n\t\t\"default\": \"./index.js\"\n\t},\n\t\"main\": \"./index.js\",\n\t\"types\": \"./index.d.ts\",\n\t\"sideEffects\": false,\n\t\"engines\": {\n\t\t\"node\": \">=18\"\n\t},\n\t\"scripts\": {\n\t\t\"test\": \"xo && ava\"\n\t},\n\t\"files\": [\n\t\t\"index.js\",\n\t\t\"index.d.ts\"\n\t],\n\t\"keywords\": [\n\t\t\"merge\",\n\t\t\"descriptors\",\n\t\t\"object\",\n\t\t\"property\",\n\t\t\"properties\",\n\t\t\"merging\",\n\t\t\"getter\",\n\t\t\"setter\"\n\t],\n\t\"devDependencies\": {\n\t\t\"ava\": \"^5.3.1\",\n\t\t\"xo\": \"^0.56.0\"\n\t},\n\t\"xo\": {\n\t\t\"rules\": {\n\t\t\t\"unicorn/prefer-module\": \"off\"\n\t\t}\n\t}\n}\n",
|
|
13365
|
+
"node_modules/micromark/dev/index.d.ts": "/**\n * Compile markdown to HTML.\n *\n * > Note: which encodings are supported depends on the engine.\n * > For info on Node.js, see:\n * > <https://nodejs.org/api/util.html#whatwg-supported-encodings>.\n *\n * @overload\n * @param {Value} value\n * Markdown to parse (`string` or `Uint8Array`).\n * @param {Encoding | null | undefined} encoding\n * Character encoding to understand `value` as when it’s a `Uint8Array`\n * (`string`, default: `'utf8'`).\n * @param {Options | null | undefined} [options]\n * Configuration.\n * @returns {string}\n * Compiled HTML.\n *\n * @overload\n * @param {Value} value\n * Markdown to parse (`string` or `Uint8Array`).\n * @param {Options | null | undefined} [options]\n * Configuration.\n * @returns {string}\n * Compiled HTML.\n *\n * @param {Value} value\n * Markdown to parse (`string` or `Uint8Array`).\n * @param {Encoding | Options | null | undefined} [encoding]\n * Character encoding to understand `value` as when it’s a `Uint8Array`\n * (`string`, default: `'utf8'`).\n * @param {Options | null | undefined} [options]\n * Configuration.\n * @returns {string}\n * Compiled HTML.\n */\nexport function micromark(value: Value, encoding: Encoding | null | undefined, options?: Options | null | undefined): string;\n/**\n * Compile markdown to HTML.\n *\n * > Note: which encodings are supported depends on the engine.\n * > For info on Node.js, see:\n * > <https://nodejs.org/api/util.html#whatwg-supported-encodings>.\n *\n * @overload\n * @param {Value} value\n * Markdown to parse (`string` or `Uint8Array`).\n * @param {Encoding | null | undefined} encoding\n * Character encoding to understand `value` as when it’s a `Uint8Array`\n * (`string`, default: `'utf8'`).\n * @param {Options | null | undefined} [options]\n * Configuration.\n * @returns {string}\n * Compiled HTML.\n *\n * @overload\n * @param {Value} value\n * Markdown to parse (`string` or `Uint8Array`).\n * @param {Options | null | undefined} [options]\n * Configuration.\n * @returns {string}\n * Compiled HTML.\n *\n * @param {Value} value\n * Markdown to parse (`string` or `Uint8Array`).\n * @param {Encoding | Options | null | undefined} [encoding]\n * Character encoding to understand `value` as when it’s a `Uint8Array`\n * (`string`, default: `'utf8'`).\n * @param {Options | null | undefined} [options]\n * Configuration.\n * @returns {string}\n * Compiled HTML.\n */\nexport function micromark(value: Value, options?: Options | null | undefined): string;\nexport { compile } from \"./lib/compile.js\";\nexport { parse } from \"./lib/parse.js\";\nexport { postprocess } from \"./lib/postprocess.js\";\nexport { preprocess } from \"./lib/preprocess.js\";\nexport type Options = import(\"micromark-util-types\").Options;\nimport type { Value } from 'micromark-util-types';\nimport type { Encoding } from 'micromark-util-types';\n//# sourceMappingURL=index.d.ts.map",
|
|
13366
|
+
"node_modules/micromark/dev/lib/compile.d.ts": "/**\n * @param {CompileOptions | null | undefined} [options]\n * @returns {Compile}\n */\nexport function compile(options?: CompileOptions | null | undefined): Compile;\nexport type Media = {\n image?: boolean | undefined;\n labelId?: string | undefined;\n label?: string | undefined;\n referenceId?: string | undefined;\n destination?: string | undefined;\n title?: string | undefined;\n};\nimport type { CompileOptions } from 'micromark-util-types';\nimport type { Compile } from 'micromark-util-types';\n//# sourceMappingURL=compile.d.ts.map",
|
|
13367
|
+
"node_modules/micromark/dev/lib/constructs.d.ts": "/** @satisfies {Extension['document']} */\nexport const document: {\n 42: import(\"micromark-util-types\").Construct;\n 43: import(\"micromark-util-types\").Construct;\n 45: import(\"micromark-util-types\").Construct;\n 48: import(\"micromark-util-types\").Construct;\n 49: import(\"micromark-util-types\").Construct;\n 50: import(\"micromark-util-types\").Construct;\n 51: import(\"micromark-util-types\").Construct;\n 52: import(\"micromark-util-types\").Construct;\n 53: import(\"micromark-util-types\").Construct;\n 54: import(\"micromark-util-types\").Construct;\n 55: import(\"micromark-util-types\").Construct;\n 56: import(\"micromark-util-types\").Construct;\n 57: import(\"micromark-util-types\").Construct;\n 62: import(\"micromark-util-types\").Construct;\n};\n/** @satisfies {Extension['contentInitial']} */\nexport const contentInitial: {\n 91: import(\"micromark-util-types\").Construct;\n};\n/** @satisfies {Extension['flowInitial']} */\nexport const flowInitial: {\n [-2]: import(\"micromark-util-types\").Construct;\n [-1]: import(\"micromark-util-types\").Construct;\n 32: import(\"micromark-util-types\").Construct;\n};\n/** @satisfies {Extension['flow']} */\nexport const flow: {\n 35: import(\"micromark-util-types\").Construct;\n 42: import(\"micromark-util-types\").Construct;\n 45: import(\"micromark-util-types\").Construct[];\n 60: import(\"micromark-util-types\").Construct;\n 61: import(\"micromark-util-types\").Construct;\n 95: import(\"micromark-util-types\").Construct;\n 96: import(\"micromark-util-types\").Construct;\n 126: import(\"micromark-util-types\").Construct;\n};\n/** @satisfies {Extension['string']} */\nexport const string: {\n 38: import(\"micromark-util-types\").Construct;\n 92: import(\"micromark-util-types\").Construct;\n};\n/** @satisfies {Extension['text']} */\nexport const text: {\n [-5]: import(\"micromark-util-types\").Construct;\n [-4]: import(\"micromark-util-types\").Construct;\n [-3]: import(\"micromark-util-types\").Construct;\n 33: import(\"micromark-util-types\").Construct;\n 38: import(\"micromark-util-types\").Construct;\n 42: import(\"micromark-util-types\").Construct;\n 60: import(\"micromark-util-types\").Construct[];\n 91: import(\"micromark-util-types\").Construct;\n 92: import(\"micromark-util-types\").Construct[];\n 93: import(\"micromark-util-types\").Construct;\n 95: import(\"micromark-util-types\").Construct;\n 96: import(\"micromark-util-types\").Construct;\n};\nexport namespace insideSpan {\n let _null: (import(\"micromark-util-types\").Construct | {\n resolveAll: import(\"micromark-util-types\").Resolver;\n })[];\n export { _null as null };\n}\nexport namespace attentionMarkers {\n let _null_1: (42 | 95)[];\n export { _null_1 as null };\n}\nexport namespace disable {\n let _null_2: never[];\n export { _null_2 as null };\n}\n//# sourceMappingURL=constructs.d.ts.map",
|
|
13368
|
+
"node_modules/micromark/dev/lib/create-tokenizer.d.ts": "/**\n * Create a tokenizer.\n * Tokenizers deal with one type of data (e.g., containers, flow, text).\n * The parser is the object dealing with it all.\n * `initialize` works like other constructs, except that only its `tokenize`\n * function is used, in which case it doesn’t receive an `ok` or `nok`.\n * `from` can be given to set the point before the first character, although\n * when further lines are indented, they must be set with `defineSkip`.\n *\n * @param {ParseContext} parser\n * Parser.\n * @param {InitialConstruct} initialize\n * Construct.\n * @param {Omit<Point, '_bufferIndex' | '_index'> | undefined} [from]\n * Point (optional).\n * @returns {TokenizeContext}\n * Context.\n */\nexport function createTokenizer(parser: ParseContext, initialize: InitialConstruct, from?: Omit<Point, \"_bufferIndex\" | \"_index\"> | undefined): TokenizeContext;\n/**\n * Restore the state.\n */\nexport type Restore = () => undefined;\n/**\n * Info.\n */\nexport type Info = {\n /**\n * Restore.\n */\n restore: Restore;\n /**\n * From.\n */\n from: number;\n};\n/**\n * Handle a successful run.\n */\nexport type ReturnHandle = (construct: Construct, info: Info) => undefined;\nimport type { ParseContext } from 'micromark-util-types';\nimport type { InitialConstruct } from 'micromark-util-types';\nimport type { Point } from 'micromark-util-types';\nimport type { TokenizeContext } from 'micromark-util-types';\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=create-tokenizer.d.ts.map",
|
|
13369
|
+
"node_modules/micromark/dev/lib/initialize/content.d.ts": "/** @type {InitialConstruct} */\nexport const content: InitialConstruct;\nimport type { InitialConstruct } from 'micromark-util-types';\n//# sourceMappingURL=content.d.ts.map",
|
|
13370
|
+
"node_modules/micromark/dev/lib/initialize/document.d.ts": "/** @type {InitialConstruct} */\nexport const document: InitialConstruct;\n/**\n * Construct and its state.\n */\nexport type StackItem = [Construct, ContainerState];\nimport type { InitialConstruct } from 'micromark-util-types';\nimport type { Construct } from 'micromark-util-types';\nimport type { ContainerState } from 'micromark-util-types';\n//# sourceMappingURL=document.d.ts.map",
|
|
13371
|
+
"node_modules/micromark/dev/lib/initialize/flow.d.ts": "/** @type {InitialConstruct} */\nexport const flow: InitialConstruct;\nimport type { InitialConstruct } from 'micromark-util-types';\n//# sourceMappingURL=flow.d.ts.map",
|
|
13372
|
+
"node_modules/micromark/dev/lib/initialize/text.d.ts": "export namespace resolver {\n let resolveAll: Resolver;\n}\nexport const string: InitialConstruct;\nexport const text: InitialConstruct;\nimport type { Resolver } from 'micromark-util-types';\nimport type { InitialConstruct } from 'micromark-util-types';\n//# sourceMappingURL=text.d.ts.map",
|
|
13373
|
+
"node_modules/micromark/dev/lib/parse.d.ts": "/**\n * @param {ParseOptions | null | undefined} [options]\n * Configuration (optional).\n * @returns {ParseContext}\n * Parser.\n */\nexport function parse(options?: ParseOptions | null | undefined): ParseContext;\nimport type { ParseOptions } from 'micromark-util-types';\nimport type { ParseContext } from 'micromark-util-types';\n//# sourceMappingURL=parse.d.ts.map",
|
|
13374
|
+
"node_modules/micromark/dev/lib/postprocess.d.ts": "/**\n * @param {Array<Event>} events\n * Events.\n * @returns {Array<Event>}\n * Events.\n */\nexport function postprocess(events: Array<Event>): Array<Event>;\nimport type { Event } from 'micromark-util-types';\n//# sourceMappingURL=postprocess.d.ts.map",
|
|
13375
|
+
"node_modules/micromark/dev/lib/preprocess.d.ts": "/**\n * @returns {Preprocessor}\n * Preprocess a value.\n */\nexport function preprocess(): Preprocessor;\n/**\n * Preprocess a value.\n */\nexport type Preprocessor = (value: Value, encoding?: Encoding | null | undefined, end?: boolean | null | undefined) => Array<Chunk>;\nimport type { Value } from 'micromark-util-types';\nimport type { Encoding } from 'micromark-util-types';\nimport type { Chunk } from 'micromark-util-types';\n//# sourceMappingURL=preprocess.d.ts.map",
|
|
13376
|
+
"node_modules/micromark/dev/stream.d.ts": "/**\n * Create a duplex (readable and writable) stream.\n *\n * Some of the work to parse markdown can be done streaming, but in the\n * end buffering is required.\n *\n * micromark does not handle errors for you, so you must handle errors on whatever\n * streams you pipe into it.\n * As markdown does not know errors, `micromark` itself does not emit errors.\n *\n * @param {Options | null | undefined} [options]\n * Configuration (optional).\n * @returns {MinimalDuplex}\n * Duplex stream.\n */\nexport function stream(options?: Options | null | undefined): MinimalDuplex;\nexport type Options = import(\"micromark-util-types\").Options;\n/**\n * Function called when write was successful.\n */\nexport type Callback = () => undefined;\n/**\n * Configuration for piping.\n */\nexport type PipeOptions = {\n /**\n * Whether to end the destination stream when the source stream ends.\n */\n end?: boolean | null | undefined;\n};\n/**\n * Duplex stream.\n */\nexport type MinimalDuplex = Omit<NodeJS.ReadableStream & NodeJS.WritableStream, \"isPaused\" | \"pause\" | \"read\" | \"resume\" | \"setEncoding\" | \"unpipe\" | \"unshift\" | \"wrap\">;\n//# sourceMappingURL=stream.d.ts.map",
|
|
13377
|
+
"node_modules/micromark/index.d.ts": "/**\n * Compile markdown to HTML.\n *\n * > Note: which encodings are supported depends on the engine.\n * > For info on Node.js, see:\n * > <https://nodejs.org/api/util.html#whatwg-supported-encodings>.\n *\n * @overload\n * @param {Value} value\n * Markdown to parse (`string` or `Uint8Array`).\n * @param {Encoding | null | undefined} encoding\n * Character encoding to understand `value` as when it’s a `Uint8Array`\n * (`string`, default: `'utf8'`).\n * @param {Options | null | undefined} [options]\n * Configuration.\n * @returns {string}\n * Compiled HTML.\n *\n * @overload\n * @param {Value} value\n * Markdown to parse (`string` or `Uint8Array`).\n * @param {Options | null | undefined} [options]\n * Configuration.\n * @returns {string}\n * Compiled HTML.\n *\n * @param {Value} value\n * Markdown to parse (`string` or `Uint8Array`).\n * @param {Encoding | Options | null | undefined} [encoding]\n * Character encoding to understand `value` as when it’s a `Uint8Array`\n * (`string`, default: `'utf8'`).\n * @param {Options | null | undefined} [options]\n * Configuration.\n * @returns {string}\n * Compiled HTML.\n */\nexport function micromark(value: Value, encoding: Encoding | null | undefined, options?: Options | null | undefined): string;\n/**\n * Compile markdown to HTML.\n *\n * > Note: which encodings are supported depends on the engine.\n * > For info on Node.js, see:\n * > <https://nodejs.org/api/util.html#whatwg-supported-encodings>.\n *\n * @overload\n * @param {Value} value\n * Markdown to parse (`string` or `Uint8Array`).\n * @param {Encoding | null | undefined} encoding\n * Character encoding to understand `value` as when it’s a `Uint8Array`\n * (`string`, default: `'utf8'`).\n * @param {Options | null | undefined} [options]\n * Configuration.\n * @returns {string}\n * Compiled HTML.\n *\n * @overload\n * @param {Value} value\n * Markdown to parse (`string` or `Uint8Array`).\n * @param {Options | null | undefined} [options]\n * Configuration.\n * @returns {string}\n * Compiled HTML.\n *\n * @param {Value} value\n * Markdown to parse (`string` or `Uint8Array`).\n * @param {Encoding | Options | null | undefined} [encoding]\n * Character encoding to understand `value` as when it’s a `Uint8Array`\n * (`string`, default: `'utf8'`).\n * @param {Options | null | undefined} [options]\n * Configuration.\n * @returns {string}\n * Compiled HTML.\n */\nexport function micromark(value: Value, options?: Options | null | undefined): string;\nexport { compile } from \"./lib/compile.js\";\nexport { parse } from \"./lib/parse.js\";\nexport { postprocess } from \"./lib/postprocess.js\";\nexport { preprocess } from \"./lib/preprocess.js\";\nexport type Options = import(\"micromark-util-types\").Options;\nimport type { Value } from 'micromark-util-types';\nimport type { Encoding } from 'micromark-util-types';\n//# sourceMappingURL=index.d.ts.map",
|
|
13378
|
+
"node_modules/micromark/lib/compile.d.ts": "/**\n * @param {CompileOptions | null | undefined} [options]\n * @returns {Compile}\n */\nexport function compile(options?: CompileOptions | null | undefined): Compile;\nexport type Media = {\n image?: boolean | undefined;\n labelId?: string | undefined;\n label?: string | undefined;\n referenceId?: string | undefined;\n destination?: string | undefined;\n title?: string | undefined;\n};\nimport type { CompileOptions } from 'micromark-util-types';\nimport type { Compile } from 'micromark-util-types';\n//# sourceMappingURL=compile.d.ts.map",
|
|
13379
|
+
"node_modules/micromark/lib/constructs.d.ts": "/** @satisfies {Extension['document']} */\nexport const document: {\n 42: import(\"micromark-util-types\").Construct;\n 43: import(\"micromark-util-types\").Construct;\n 45: import(\"micromark-util-types\").Construct;\n 48: import(\"micromark-util-types\").Construct;\n 49: import(\"micromark-util-types\").Construct;\n 50: import(\"micromark-util-types\").Construct;\n 51: import(\"micromark-util-types\").Construct;\n 52: import(\"micromark-util-types\").Construct;\n 53: import(\"micromark-util-types\").Construct;\n 54: import(\"micromark-util-types\").Construct;\n 55: import(\"micromark-util-types\").Construct;\n 56: import(\"micromark-util-types\").Construct;\n 57: import(\"micromark-util-types\").Construct;\n 62: import(\"micromark-util-types\").Construct;\n};\n/** @satisfies {Extension['contentInitial']} */\nexport const contentInitial: {\n 91: import(\"micromark-util-types\").Construct;\n};\n/** @satisfies {Extension['flowInitial']} */\nexport const flowInitial: {\n [-2]: import(\"micromark-util-types\").Construct;\n [-1]: import(\"micromark-util-types\").Construct;\n 32: import(\"micromark-util-types\").Construct;\n};\n/** @satisfies {Extension['flow']} */\nexport const flow: {\n 35: import(\"micromark-util-types\").Construct;\n 42: import(\"micromark-util-types\").Construct;\n 45: import(\"micromark-util-types\").Construct[];\n 60: import(\"micromark-util-types\").Construct;\n 61: import(\"micromark-util-types\").Construct;\n 95: import(\"micromark-util-types\").Construct;\n 96: import(\"micromark-util-types\").Construct;\n 126: import(\"micromark-util-types\").Construct;\n};\n/** @satisfies {Extension['string']} */\nexport const string: {\n 38: import(\"micromark-util-types\").Construct;\n 92: import(\"micromark-util-types\").Construct;\n};\n/** @satisfies {Extension['text']} */\nexport const text: {\n [-5]: import(\"micromark-util-types\").Construct;\n [-4]: import(\"micromark-util-types\").Construct;\n [-3]: import(\"micromark-util-types\").Construct;\n 33: import(\"micromark-util-types\").Construct;\n 38: import(\"micromark-util-types\").Construct;\n 42: import(\"micromark-util-types\").Construct;\n 60: import(\"micromark-util-types\").Construct[];\n 91: import(\"micromark-util-types\").Construct;\n 92: import(\"micromark-util-types\").Construct[];\n 93: import(\"micromark-util-types\").Construct;\n 95: import(\"micromark-util-types\").Construct;\n 96: import(\"micromark-util-types\").Construct;\n};\nexport namespace insideSpan {\n let _null: (import(\"micromark-util-types\").Construct | {\n resolveAll: import(\"micromark-util-types\").Resolver;\n })[];\n export { _null as null };\n}\nexport namespace attentionMarkers {\n let _null_1: (42 | 95)[];\n export { _null_1 as null };\n}\nexport namespace disable {\n let _null_2: never[];\n export { _null_2 as null };\n}\n//# sourceMappingURL=constructs.d.ts.map",
|
|
13380
|
+
"node_modules/micromark/lib/create-tokenizer.d.ts": "/**\n * Create a tokenizer.\n * Tokenizers deal with one type of data (e.g., containers, flow, text).\n * The parser is the object dealing with it all.\n * `initialize` works like other constructs, except that only its `tokenize`\n * function is used, in which case it doesn’t receive an `ok` or `nok`.\n * `from` can be given to set the point before the first character, although\n * when further lines are indented, they must be set with `defineSkip`.\n *\n * @param {ParseContext} parser\n * Parser.\n * @param {InitialConstruct} initialize\n * Construct.\n * @param {Omit<Point, '_bufferIndex' | '_index'> | undefined} [from]\n * Point (optional).\n * @returns {TokenizeContext}\n * Context.\n */\nexport function createTokenizer(parser: ParseContext, initialize: InitialConstruct, from?: Omit<Point, \"_bufferIndex\" | \"_index\"> | undefined): TokenizeContext;\n/**\n * Restore the state.\n */\nexport type Restore = () => undefined;\n/**\n * Info.\n */\nexport type Info = {\n /**\n * Restore.\n */\n restore: Restore;\n /**\n * From.\n */\n from: number;\n};\n/**\n * Handle a successful run.\n */\nexport type ReturnHandle = (construct: Construct, info: Info) => undefined;\nimport type { ParseContext } from 'micromark-util-types';\nimport type { InitialConstruct } from 'micromark-util-types';\nimport type { Point } from 'micromark-util-types';\nimport type { TokenizeContext } from 'micromark-util-types';\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=create-tokenizer.d.ts.map",
|
|
13381
|
+
"node_modules/micromark/lib/initialize/content.d.ts": "/** @type {InitialConstruct} */\nexport const content: InitialConstruct;\nimport type { InitialConstruct } from 'micromark-util-types';\n//# sourceMappingURL=content.d.ts.map",
|
|
13382
|
+
"node_modules/micromark/lib/initialize/document.d.ts": "/** @type {InitialConstruct} */\nexport const document: InitialConstruct;\n/**\n * Construct and its state.\n */\nexport type StackItem = [Construct, ContainerState];\nimport type { InitialConstruct } from 'micromark-util-types';\nimport type { Construct } from 'micromark-util-types';\nimport type { ContainerState } from 'micromark-util-types';\n//# sourceMappingURL=document.d.ts.map",
|
|
13383
|
+
"node_modules/micromark/lib/initialize/flow.d.ts": "/** @type {InitialConstruct} */\nexport const flow: InitialConstruct;\nimport type { InitialConstruct } from 'micromark-util-types';\n//# sourceMappingURL=flow.d.ts.map",
|
|
13384
|
+
"node_modules/micromark/lib/initialize/text.d.ts": "export namespace resolver {\n let resolveAll: Resolver;\n}\nexport const string: InitialConstruct;\nexport const text: InitialConstruct;\nimport type { Resolver } from 'micromark-util-types';\nimport type { InitialConstruct } from 'micromark-util-types';\n//# sourceMappingURL=text.d.ts.map",
|
|
13385
|
+
"node_modules/micromark/lib/parse.d.ts": "/**\n * @param {ParseOptions | null | undefined} [options]\n * Configuration (optional).\n * @returns {ParseContext}\n * Parser.\n */\nexport function parse(options?: ParseOptions | null | undefined): ParseContext;\nimport type { ParseOptions } from 'micromark-util-types';\nimport type { ParseContext } from 'micromark-util-types';\n//# sourceMappingURL=parse.d.ts.map",
|
|
13386
|
+
"node_modules/micromark/lib/postprocess.d.ts": "/**\n * @param {Array<Event>} events\n * Events.\n * @returns {Array<Event>}\n * Events.\n */\nexport function postprocess(events: Array<Event>): Array<Event>;\nimport type { Event } from 'micromark-util-types';\n//# sourceMappingURL=postprocess.d.ts.map",
|
|
13387
|
+
"node_modules/micromark/lib/preprocess.d.ts": "/**\n * @returns {Preprocessor}\n * Preprocess a value.\n */\nexport function preprocess(): Preprocessor;\n/**\n * Preprocess a value.\n */\nexport type Preprocessor = (value: Value, encoding?: Encoding | null | undefined, end?: boolean | null | undefined) => Array<Chunk>;\nimport type { Value } from 'micromark-util-types';\nimport type { Encoding } from 'micromark-util-types';\nimport type { Chunk } from 'micromark-util-types';\n//# sourceMappingURL=preprocess.d.ts.map",
|
|
13388
|
+
"node_modules/micromark/package.json": "{\n \"name\": \"micromark\",\n \"version\": \"4.0.2\",\n \"description\": \"small commonmark compliant markdown parser with positional info and concrete tokens\",\n \"license\": \"MIT\",\n \"keywords\": [\n \"commonmark\",\n \"compiler\",\n \"gfm\",\n \"html\",\n \"lexer\",\n \"markdown\",\n \"markup\",\n \"md\",\n \"unified\",\n \"parse\",\n \"parser\",\n \"plugin\",\n \"process\",\n \"remark\",\n \"render\",\n \"renderer\",\n \"token\",\n \"tokenizer\"\n ],\n \"repository\": \"https://github.com/micromark/micromark/tree/main/packages/micromark\",\n \"bugs\": \"https://github.com/micromark/micromark/issues\",\n \"funding\": [\n {\n \"type\": \"GitHub Sponsors\",\n \"url\": \"https://github.com/sponsors/unifiedjs\"\n },\n {\n \"type\": \"OpenCollective\",\n \"url\": \"https://opencollective.com/unified\"\n }\n ],\n \"author\": \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\",\n \"contributors\": [\n \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\"\n ],\n \"sideEffects\": false,\n \"type\": \"module\",\n \"files\": [\n \"dev/\",\n \"lib/\",\n \"index.d.ts.map\",\n \"index.d.ts\",\n \"index.js\",\n \"stream.d.ts.map\",\n \"stream.d.ts\",\n \"stream.js\"\n ],\n \"exports\": {\n \".\": {\n \"development\": \"./dev/index.js\",\n \"default\": \"./index.js\"\n },\n \"./stream\": {\n \"development\": \"./dev/stream.js\",\n \"default\": \"./stream.js\"\n }\n },\n \"dependencies\": {\n \"@types/debug\": \"^4.0.0\",\n \"debug\": \"^4.0.0\",\n \"decode-named-character-reference\": \"^1.0.0\",\n \"devlop\": \"^1.0.0\",\n \"micromark-core-commonmark\": \"^2.0.0\",\n \"micromark-factory-space\": \"^2.0.0\",\n \"micromark-util-character\": \"^2.0.0\",\n \"micromark-util-chunked\": \"^2.0.0\",\n \"micromark-util-combine-extensions\": \"^2.0.0\",\n \"micromark-util-decode-numeric-character-reference\": \"^2.0.0\",\n \"micromark-util-encode\": \"^2.0.0\",\n \"micromark-util-normalize-identifier\": \"^2.0.0\",\n \"micromark-util-resolve-all\": \"^2.0.0\",\n \"micromark-util-sanitize-uri\": \"^2.0.0\",\n \"micromark-util-subtokenize\": \"^2.0.0\",\n \"micromark-util-symbol\": \"^2.0.0\",\n \"micromark-util-types\": \"^2.0.0\"\n },\n \"scripts\": {\n \"build\": \"micromark-build\"\n },\n \"xo\": {\n \"envs\": [\n \"shared-node-browser\"\n ],\n \"prettier\": true,\n \"rules\": {\n \"logical-assignment-operators\": \"off\",\n \"max-depth\": \"off\",\n \"unicorn/no-this-assignment\": \"off\",\n \"unicorn/prefer-at\": \"off\",\n \"unicorn/prefer-code-point\": \"off\",\n \"unicorn/prefer-event-target\": \"off\"\n }\n }\n}\n",
|
|
13389
|
+
"node_modules/micromark/stream.d.ts": "/**\n * Create a duplex (readable and writable) stream.\n *\n * Some of the work to parse markdown can be done streaming, but in the\n * end buffering is required.\n *\n * micromark does not handle errors for you, so you must handle errors on whatever\n * streams you pipe into it.\n * As markdown does not know errors, `micromark` itself does not emit errors.\n *\n * @param {Options | null | undefined} [options]\n * Configuration (optional).\n * @returns {MinimalDuplex}\n * Duplex stream.\n */\nexport function stream(options?: Options | null | undefined): MinimalDuplex;\nexport type Options = import(\"micromark-util-types\").Options;\n/**\n * Function called when write was successful.\n */\nexport type Callback = () => undefined;\n/**\n * Configuration for piping.\n */\nexport type PipeOptions = {\n /**\n * Whether to end the destination stream when the source stream ends.\n */\n end?: boolean | null | undefined;\n};\n/**\n * Duplex stream.\n */\nexport type MinimalDuplex = Omit<NodeJS.ReadableStream & NodeJS.WritableStream, \"isPaused\" | \"pause\" | \"read\" | \"resume\" | \"setEncoding\" | \"unpipe\" | \"unshift\" | \"wrap\">;\n//# sourceMappingURL=stream.d.ts.map",
|
|
13390
|
+
"node_modules/micromark-core-commonmark/dev/index.d.ts": "export { attention } from \"./lib/attention.js\";\nexport { autolink } from \"./lib/autolink.js\";\nexport { blankLine } from \"./lib/blank-line.js\";\nexport { blockQuote } from \"./lib/block-quote.js\";\nexport { characterEscape } from \"./lib/character-escape.js\";\nexport { characterReference } from \"./lib/character-reference.js\";\nexport { codeFenced } from \"./lib/code-fenced.js\";\nexport { codeIndented } from \"./lib/code-indented.js\";\nexport { codeText } from \"./lib/code-text.js\";\nexport { content } from \"./lib/content.js\";\nexport { definition } from \"./lib/definition.js\";\nexport { hardBreakEscape } from \"./lib/hard-break-escape.js\";\nexport { headingAtx } from \"./lib/heading-atx.js\";\nexport { htmlFlow } from \"./lib/html-flow.js\";\nexport { htmlText } from \"./lib/html-text.js\";\nexport { labelEnd } from \"./lib/label-end.js\";\nexport { labelStartImage } from \"./lib/label-start-image.js\";\nexport { labelStartLink } from \"./lib/label-start-link.js\";\nexport { lineEnding } from \"./lib/line-ending.js\";\nexport { list } from \"./lib/list.js\";\nexport { setextUnderline } from \"./lib/setext-underline.js\";\nexport { thematicBreak } from \"./lib/thematic-break.js\";\n//# sourceMappingURL=index.d.ts.map",
|
|
13391
|
+
"node_modules/micromark-core-commonmark/dev/lib/attention.d.ts": "/** @type {Construct} */\nexport const attention: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=attention.d.ts.map",
|
|
13392
|
+
"node_modules/micromark-core-commonmark/dev/lib/autolink.d.ts": "/** @type {Construct} */\nexport const autolink: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=autolink.d.ts.map",
|
|
13393
|
+
"node_modules/micromark-core-commonmark/dev/lib/blank-line.d.ts": "/** @type {Construct} */\nexport const blankLine: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=blank-line.d.ts.map",
|
|
13394
|
+
"node_modules/micromark-core-commonmark/dev/lib/block-quote.d.ts": "/** @type {Construct} */\nexport const blockQuote: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=block-quote.d.ts.map",
|
|
13395
|
+
"node_modules/micromark-core-commonmark/dev/lib/character-escape.d.ts": "/** @type {Construct} */\nexport const characterEscape: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=character-escape.d.ts.map",
|
|
13396
|
+
"node_modules/micromark-core-commonmark/dev/lib/character-reference.d.ts": "/** @type {Construct} */\nexport const characterReference: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=character-reference.d.ts.map",
|
|
13397
|
+
"node_modules/micromark-core-commonmark/dev/lib/code-fenced.d.ts": "/** @type {Construct} */\nexport const codeFenced: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=code-fenced.d.ts.map",
|
|
13398
|
+
"node_modules/micromark-core-commonmark/dev/lib/code-indented.d.ts": "/** @type {Construct} */\nexport const codeIndented: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=code-indented.d.ts.map",
|
|
13399
|
+
"node_modules/micromark-core-commonmark/dev/lib/code-text.d.ts": "/** @type {Construct} */\nexport const codeText: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=code-text.d.ts.map",
|
|
13400
|
+
"node_modules/micromark-core-commonmark/dev/lib/content.d.ts": "/**\n * No name because it must not be turned off.\n * @type {Construct}\n */\nexport const content: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=content.d.ts.map",
|
|
13401
|
+
"node_modules/micromark-core-commonmark/dev/lib/definition.d.ts": "/** @type {Construct} */\nexport const definition: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=definition.d.ts.map",
|
|
13402
|
+
"node_modules/micromark-core-commonmark/dev/lib/hard-break-escape.d.ts": "/** @type {Construct} */\nexport const hardBreakEscape: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=hard-break-escape.d.ts.map",
|
|
13403
|
+
"node_modules/micromark-core-commonmark/dev/lib/heading-atx.d.ts": "/** @type {Construct} */\nexport const headingAtx: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=heading-atx.d.ts.map",
|
|
13404
|
+
"node_modules/micromark-core-commonmark/dev/lib/html-flow.d.ts": "/** @type {Construct} */\nexport const htmlFlow: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=html-flow.d.ts.map",
|
|
13405
|
+
"node_modules/micromark-core-commonmark/dev/lib/html-text.d.ts": "/** @type {Construct} */\nexport const htmlText: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=html-text.d.ts.map",
|
|
13406
|
+
"node_modules/micromark-core-commonmark/dev/lib/label-end.d.ts": "/** @type {Construct} */\nexport const labelEnd: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=label-end.d.ts.map",
|
|
13407
|
+
"node_modules/micromark-core-commonmark/dev/lib/label-start-image.d.ts": "/** @type {Construct} */\nexport const labelStartImage: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=label-start-image.d.ts.map",
|
|
13408
|
+
"node_modules/micromark-core-commonmark/dev/lib/label-start-link.d.ts": "/** @type {Construct} */\nexport const labelStartLink: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=label-start-link.d.ts.map",
|
|
13409
|
+
"node_modules/micromark-core-commonmark/dev/lib/line-ending.d.ts": "/** @type {Construct} */\nexport const lineEnding: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=line-ending.d.ts.map",
|
|
13410
|
+
"node_modules/micromark-core-commonmark/dev/lib/list.d.ts": "/** @type {Construct} */\nexport const list: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=list.d.ts.map",
|
|
13411
|
+
"node_modules/micromark-core-commonmark/dev/lib/setext-underline.d.ts": "/** @type {Construct} */\nexport const setextUnderline: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=setext-underline.d.ts.map",
|
|
13412
|
+
"node_modules/micromark-core-commonmark/dev/lib/thematic-break.d.ts": "/** @type {Construct} */\nexport const thematicBreak: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=thematic-break.d.ts.map",
|
|
13413
|
+
"node_modules/micromark-core-commonmark/index.d.ts": "export { attention } from \"./lib/attention.js\";\nexport { autolink } from \"./lib/autolink.js\";\nexport { blankLine } from \"./lib/blank-line.js\";\nexport { blockQuote } from \"./lib/block-quote.js\";\nexport { characterEscape } from \"./lib/character-escape.js\";\nexport { characterReference } from \"./lib/character-reference.js\";\nexport { codeFenced } from \"./lib/code-fenced.js\";\nexport { codeIndented } from \"./lib/code-indented.js\";\nexport { codeText } from \"./lib/code-text.js\";\nexport { content } from \"./lib/content.js\";\nexport { definition } from \"./lib/definition.js\";\nexport { hardBreakEscape } from \"./lib/hard-break-escape.js\";\nexport { headingAtx } from \"./lib/heading-atx.js\";\nexport { htmlFlow } from \"./lib/html-flow.js\";\nexport { htmlText } from \"./lib/html-text.js\";\nexport { labelEnd } from \"./lib/label-end.js\";\nexport { labelStartImage } from \"./lib/label-start-image.js\";\nexport { labelStartLink } from \"./lib/label-start-link.js\";\nexport { lineEnding } from \"./lib/line-ending.js\";\nexport { list } from \"./lib/list.js\";\nexport { setextUnderline } from \"./lib/setext-underline.js\";\nexport { thematicBreak } from \"./lib/thematic-break.js\";\n//# sourceMappingURL=index.d.ts.map",
|
|
13414
|
+
"node_modules/micromark-core-commonmark/lib/attention.d.ts": "/** @type {Construct} */\nexport const attention: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=attention.d.ts.map",
|
|
13415
|
+
"node_modules/micromark-core-commonmark/lib/autolink.d.ts": "/** @type {Construct} */\nexport const autolink: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=autolink.d.ts.map",
|
|
13416
|
+
"node_modules/micromark-core-commonmark/lib/blank-line.d.ts": "/** @type {Construct} */\nexport const blankLine: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=blank-line.d.ts.map",
|
|
13417
|
+
"node_modules/micromark-core-commonmark/lib/block-quote.d.ts": "/** @type {Construct} */\nexport const blockQuote: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=block-quote.d.ts.map",
|
|
13418
|
+
"node_modules/micromark-core-commonmark/lib/character-escape.d.ts": "/** @type {Construct} */\nexport const characterEscape: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=character-escape.d.ts.map",
|
|
13419
|
+
"node_modules/micromark-core-commonmark/lib/character-reference.d.ts": "/** @type {Construct} */\nexport const characterReference: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=character-reference.d.ts.map",
|
|
13420
|
+
"node_modules/micromark-core-commonmark/lib/code-fenced.d.ts": "/** @type {Construct} */\nexport const codeFenced: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=code-fenced.d.ts.map",
|
|
13421
|
+
"node_modules/micromark-core-commonmark/lib/code-indented.d.ts": "/** @type {Construct} */\nexport const codeIndented: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=code-indented.d.ts.map",
|
|
13422
|
+
"node_modules/micromark-core-commonmark/lib/code-text.d.ts": "/** @type {Construct} */\nexport const codeText: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=code-text.d.ts.map",
|
|
13423
|
+
"node_modules/micromark-core-commonmark/lib/content.d.ts": "/**\n * No name because it must not be turned off.\n * @type {Construct}\n */\nexport const content: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=content.d.ts.map",
|
|
13424
|
+
"node_modules/micromark-core-commonmark/lib/definition.d.ts": "/** @type {Construct} */\nexport const definition: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=definition.d.ts.map",
|
|
13425
|
+
"node_modules/micromark-core-commonmark/lib/hard-break-escape.d.ts": "/** @type {Construct} */\nexport const hardBreakEscape: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=hard-break-escape.d.ts.map",
|
|
13426
|
+
"node_modules/micromark-core-commonmark/lib/heading-atx.d.ts": "/** @type {Construct} */\nexport const headingAtx: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=heading-atx.d.ts.map",
|
|
13427
|
+
"node_modules/micromark-core-commonmark/lib/html-flow.d.ts": "/** @type {Construct} */\nexport const htmlFlow: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=html-flow.d.ts.map",
|
|
13428
|
+
"node_modules/micromark-core-commonmark/lib/html-text.d.ts": "/** @type {Construct} */\nexport const htmlText: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=html-text.d.ts.map",
|
|
13429
|
+
"node_modules/micromark-core-commonmark/lib/label-end.d.ts": "/** @type {Construct} */\nexport const labelEnd: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=label-end.d.ts.map",
|
|
13430
|
+
"node_modules/micromark-core-commonmark/lib/label-start-image.d.ts": "/** @type {Construct} */\nexport const labelStartImage: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=label-start-image.d.ts.map",
|
|
13431
|
+
"node_modules/micromark-core-commonmark/lib/label-start-link.d.ts": "/** @type {Construct} */\nexport const labelStartLink: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=label-start-link.d.ts.map",
|
|
13432
|
+
"node_modules/micromark-core-commonmark/lib/line-ending.d.ts": "/** @type {Construct} */\nexport const lineEnding: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=line-ending.d.ts.map",
|
|
13433
|
+
"node_modules/micromark-core-commonmark/lib/list.d.ts": "/** @type {Construct} */\nexport const list: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=list.d.ts.map",
|
|
13434
|
+
"node_modules/micromark-core-commonmark/lib/setext-underline.d.ts": "/** @type {Construct} */\nexport const setextUnderline: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=setext-underline.d.ts.map",
|
|
13435
|
+
"node_modules/micromark-core-commonmark/lib/thematic-break.d.ts": "/** @type {Construct} */\nexport const thematicBreak: Construct;\nimport type { Construct } from 'micromark-util-types';\n//# sourceMappingURL=thematic-break.d.ts.map",
|
|
13436
|
+
"node_modules/micromark-core-commonmark/package.json": "{\n \"name\": \"micromark-core-commonmark\",\n \"version\": \"2.0.3\",\n \"description\": \"The CommonMark markdown constructs\",\n \"license\": \"MIT\",\n \"keywords\": [\n \"micromark\",\n \"core\",\n \"commonmark\"\n ],\n \"repository\": \"https://github.com/micromark/micromark/tree/main/packages/micromark-core-commonmark\",\n \"bugs\": \"https://github.com/micromark/micromark/issues\",\n \"funding\": [\n {\n \"type\": \"GitHub Sponsors\",\n \"url\": \"https://github.com/sponsors/unifiedjs\"\n },\n {\n \"type\": \"OpenCollective\",\n \"url\": \"https://opencollective.com/unified\"\n }\n ],\n \"author\": \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\",\n \"contributors\": [\n \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\"\n ],\n \"sideEffects\": false,\n \"type\": \"module\",\n \"files\": [\n \"dev/\",\n \"lib/\",\n \"index.d.ts.map\",\n \"index.d.ts\",\n \"index.js\"\n ],\n \"exports\": {\n \"development\": \"./dev/index.js\",\n \"default\": \"./index.js\"\n },\n \"dependencies\": {\n \"decode-named-character-reference\": \"^1.0.0\",\n \"devlop\": \"^1.0.0\",\n \"micromark-factory-destination\": \"^2.0.0\",\n \"micromark-factory-label\": \"^2.0.0\",\n \"micromark-factory-space\": \"^2.0.0\",\n \"micromark-factory-title\": \"^2.0.0\",\n \"micromark-factory-whitespace\": \"^2.0.0\",\n \"micromark-util-character\": \"^2.0.0\",\n \"micromark-util-chunked\": \"^2.0.0\",\n \"micromark-util-classify-character\": \"^2.0.0\",\n \"micromark-util-html-tag-name\": \"^2.0.0\",\n \"micromark-util-normalize-identifier\": \"^2.0.0\",\n \"micromark-util-resolve-all\": \"^2.0.0\",\n \"micromark-util-subtokenize\": \"^2.0.0\",\n \"micromark-util-symbol\": \"^2.0.0\",\n \"micromark-util-types\": \"^2.0.0\"\n },\n \"scripts\": {\n \"build\": \"micromark-build\"\n },\n \"xo\": {\n \"envs\": [\n \"shared-node-browser\"\n ],\n \"prettier\": true,\n \"rules\": {\n \"logical-assignment-operators\": \"off\",\n \"max-depth\": \"off\",\n \"unicorn/no-this-assignment\": \"off\",\n \"unicorn/prefer-at\": \"off\",\n \"unicorn/prefer-code-point\": \"off\"\n }\n }\n}\n",
|
|
13437
|
+
"node_modules/micromark-factory-destination/dev/index.d.ts": "/**\n * Parse destinations.\n *\n * ###### Examples\n *\n * ```markdown\n * <a>\n * <a\\>b>\n * <a b>\n * <a)>\n * a\n * a\\)b\n * a(b)c\n * a(b)\n * ```\n *\n * @param {Effects} effects\n * Context.\n * @param {State} ok\n * State switched to when successful.\n * @param {State} nok\n * State switched to when unsuccessful.\n * @param {TokenType} type\n * Type for whole (`<a>` or `b`).\n * @param {TokenType} literalType\n * Type when enclosed (`<a>`).\n * @param {TokenType} literalMarkerType\n * Type for enclosing (`<` and `>`).\n * @param {TokenType} rawType\n * Type when not enclosed (`b`).\n * @param {TokenType} stringType\n * Type for the value (`a` or `b`).\n * @param {number | undefined} [max=Infinity]\n * Depth of nested parens (inclusive).\n * @returns {State}\n * Start state.\n */\nexport function factoryDestination(effects: Effects, ok: State, nok: State, type: TokenType, literalType: TokenType, literalMarkerType: TokenType, rawType: TokenType, stringType: TokenType, max?: number | undefined): State;\nimport type { Effects } from 'micromark-util-types';\nimport type { State } from 'micromark-util-types';\nimport type { TokenType } from 'micromark-util-types';\n//# sourceMappingURL=index.d.ts.map",
|
|
13438
|
+
"node_modules/micromark-factory-destination/index.d.ts": "/**\n * Parse destinations.\n *\n * ###### Examples\n *\n * ```markdown\n * <a>\n * <a\\>b>\n * <a b>\n * <a)>\n * a\n * a\\)b\n * a(b)c\n * a(b)\n * ```\n *\n * @param {Effects} effects\n * Context.\n * @param {State} ok\n * State switched to when successful.\n * @param {State} nok\n * State switched to when unsuccessful.\n * @param {TokenType} type\n * Type for whole (`<a>` or `b`).\n * @param {TokenType} literalType\n * Type when enclosed (`<a>`).\n * @param {TokenType} literalMarkerType\n * Type for enclosing (`<` and `>`).\n * @param {TokenType} rawType\n * Type when not enclosed (`b`).\n * @param {TokenType} stringType\n * Type for the value (`a` or `b`).\n * @param {number | undefined} [max=Infinity]\n * Depth of nested parens (inclusive).\n * @returns {State}\n * Start state.\n */\nexport function factoryDestination(effects: Effects, ok: State, nok: State, type: TokenType, literalType: TokenType, literalMarkerType: TokenType, rawType: TokenType, stringType: TokenType, max?: number | undefined): State;\nimport type { Effects } from 'micromark-util-types';\nimport type { State } from 'micromark-util-types';\nimport type { TokenType } from 'micromark-util-types';\n//# sourceMappingURL=index.d.ts.map",
|
|
13439
|
+
"node_modules/micromark-factory-destination/package.json": "{\n \"name\": \"micromark-factory-destination\",\n \"version\": \"2.0.1\",\n \"description\": \"micromark factory to parse destinations (found in resources, definitions)\",\n \"license\": \"MIT\",\n \"keywords\": [\n \"micromark\",\n \"factory\",\n \"destination\"\n ],\n \"repository\": \"https://github.com/micromark/micromark/tree/main/packages/micromark-factory-destination\",\n \"bugs\": \"https://github.com/micromark/micromark/issues\",\n \"funding\": [\n {\n \"type\": \"GitHub Sponsors\",\n \"url\": \"https://github.com/sponsors/unifiedjs\"\n },\n {\n \"type\": \"OpenCollective\",\n \"url\": \"https://opencollective.com/unified\"\n }\n ],\n \"author\": \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\",\n \"contributors\": [\n \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\"\n ],\n \"sideEffects\": false,\n \"type\": \"module\",\n \"files\": [\n \"dev/\",\n \"index.d.ts.map\",\n \"index.d.ts\",\n \"index.js\"\n ],\n \"exports\": {\n \"development\": \"./dev/index.js\",\n \"default\": \"./index.js\"\n },\n \"dependencies\": {\n \"micromark-util-character\": \"^2.0.0\",\n \"micromark-util-symbol\": \"^2.0.0\",\n \"micromark-util-types\": \"^2.0.0\"\n },\n \"scripts\": {\n \"build\": \"micromark-build\"\n },\n \"xo\": {\n \"envs\": [\n \"shared-node-browser\"\n ],\n \"prettier\": true,\n \"rules\": {\n \"max-params\": \"off\",\n \"unicorn/prefer-code-point\": \"off\"\n }\n }\n}\n",
|
|
13440
|
+
"node_modules/micromark-factory-label/dev/index.d.ts": "/**\n * Parse labels.\n *\n * > 👉 **Note**: labels in markdown are capped at 999 characters in the string.\n *\n * ###### Examples\n *\n * ```markdown\n * [a]\n * [a\n * b]\n * [a\\]b]\n * ```\n *\n * @this {TokenizeContext}\n * Tokenize context.\n * @param {Effects} effects\n * Context.\n * @param {State} ok\n * State switched to when successful.\n * @param {State} nok\n * State switched to when unsuccessful.\n * @param {TokenType} type\n * Type of the whole label (`[a]`).\n * @param {TokenType} markerType\n * Type for the markers (`[` and `]`).\n * @param {TokenType} stringType\n * Type for the identifier (`a`).\n * @returns {State}\n * Start state.\n */\nexport function factoryLabel(this: TokenizeContext, effects: Effects, ok: State, nok: State, type: TokenType, markerType: TokenType, stringType: TokenType): State;\nimport type { Effects } from 'micromark-util-types';\nimport type { State } from 'micromark-util-types';\nimport type { TokenType } from 'micromark-util-types';\nimport type { TokenizeContext } from 'micromark-util-types';\n//# sourceMappingURL=index.d.ts.map",
|
|
13441
|
+
"node_modules/micromark-factory-label/index.d.ts": "/**\n * Parse labels.\n *\n * > 👉 **Note**: labels in markdown are capped at 999 characters in the string.\n *\n * ###### Examples\n *\n * ```markdown\n * [a]\n * [a\n * b]\n * [a\\]b]\n * ```\n *\n * @this {TokenizeContext}\n * Tokenize context.\n * @param {Effects} effects\n * Context.\n * @param {State} ok\n * State switched to when successful.\n * @param {State} nok\n * State switched to when unsuccessful.\n * @param {TokenType} type\n * Type of the whole label (`[a]`).\n * @param {TokenType} markerType\n * Type for the markers (`[` and `]`).\n * @param {TokenType} stringType\n * Type for the identifier (`a`).\n * @returns {State}\n * Start state.\n */\nexport function factoryLabel(this: TokenizeContext, effects: Effects, ok: State, nok: State, type: TokenType, markerType: TokenType, stringType: TokenType): State;\nimport type { Effects } from 'micromark-util-types';\nimport type { State } from 'micromark-util-types';\nimport type { TokenType } from 'micromark-util-types';\nimport type { TokenizeContext } from 'micromark-util-types';\n//# sourceMappingURL=index.d.ts.map",
|
|
13442
|
+
"node_modules/micromark-factory-label/package.json": "{\n \"name\": \"micromark-factory-label\",\n \"version\": \"2.0.1\",\n \"description\": \"micromark factory to parse labels (found in media, definitions)\",\n \"license\": \"MIT\",\n \"keywords\": [\n \"micromark\",\n \"factory\",\n \"label\"\n ],\n \"repository\": \"https://github.com/micromark/micromark/tree/main/packages/micromark-factory-label\",\n \"bugs\": \"https://github.com/micromark/micromark/issues\",\n \"funding\": [\n {\n \"type\": \"GitHub Sponsors\",\n \"url\": \"https://github.com/sponsors/unifiedjs\"\n },\n {\n \"type\": \"OpenCollective\",\n \"url\": \"https://opencollective.com/unified\"\n }\n ],\n \"author\": \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\",\n \"contributors\": [\n \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\"\n ],\n \"sideEffects\": false,\n \"type\": \"module\",\n \"files\": [\n \"dev/\",\n \"index.d.ts.map\",\n \"index.d.ts\",\n \"index.js\"\n ],\n \"exports\": {\n \"development\": \"./dev/index.js\",\n \"default\": \"./index.js\"\n },\n \"dependencies\": {\n \"devlop\": \"^1.0.0\",\n \"micromark-util-character\": \"^2.0.0\",\n \"micromark-util-symbol\": \"^2.0.0\",\n \"micromark-util-types\": \"^2.0.0\"\n },\n \"scripts\": {\n \"build\": \"micromark-build\"\n },\n \"xo\": {\n \"envs\": [\n \"shared-node-browser\"\n ],\n \"prettier\": true,\n \"rules\": {\n \"logical-assignment-operators\": \"off\",\n \"max-params\": \"off\",\n \"unicorn/no-this-assignment\": \"off\",\n \"unicorn/prefer-code-point\": \"off\"\n }\n }\n}\n",
|
|
13443
|
+
"node_modules/micromark-factory-space/dev/index.d.ts": "/**\n * Parse spaces and tabs.\n *\n * There is no `nok` parameter:\n *\n * * spaces in markdown are often optional, in which case this factory can be\n * used and `ok` will be switched to whether spaces were found or not\n * * one line ending or space can be detected with `markdownSpace(code)` right\n * before using `factorySpace`\n *\n * ###### Examples\n *\n * Where `␉` represents a tab (plus how much it expands) and `␠` represents a\n * single space.\n *\n * ```markdown\n * ␉\n * ␠␠␠␠\n * ␉␠\n * ```\n *\n * @param {Effects} effects\n * Context.\n * @param {State} ok\n * State switched to when successful.\n * @param {TokenType} type\n * Type (`' \\t'`).\n * @param {number | undefined} [max=Infinity]\n * Max (exclusive).\n * @returns {State}\n * Start state.\n */\nexport function factorySpace(effects: Effects, ok: State, type: TokenType, max?: number | undefined): State;\nimport type { Effects } from 'micromark-util-types';\nimport type { State } from 'micromark-util-types';\nimport type { TokenType } from 'micromark-util-types';\n//# sourceMappingURL=index.d.ts.map",
|
|
13444
|
+
"node_modules/micromark-factory-space/index.d.ts": "/**\n * Parse spaces and tabs.\n *\n * There is no `nok` parameter:\n *\n * * spaces in markdown are often optional, in which case this factory can be\n * used and `ok` will be switched to whether spaces were found or not\n * * one line ending or space can be detected with `markdownSpace(code)` right\n * before using `factorySpace`\n *\n * ###### Examples\n *\n * Where `␉` represents a tab (plus how much it expands) and `␠` represents a\n * single space.\n *\n * ```markdown\n * ␉\n * ␠␠␠␠\n * ␉␠\n * ```\n *\n * @param {Effects} effects\n * Context.\n * @param {State} ok\n * State switched to when successful.\n * @param {TokenType} type\n * Type (`' \\t'`).\n * @param {number | undefined} [max=Infinity]\n * Max (exclusive).\n * @returns {State}\n * Start state.\n */\nexport function factorySpace(effects: Effects, ok: State, type: TokenType, max?: number | undefined): State;\nimport type { Effects } from 'micromark-util-types';\nimport type { State } from 'micromark-util-types';\nimport type { TokenType } from 'micromark-util-types';\n//# sourceMappingURL=index.d.ts.map",
|
|
13445
|
+
"node_modules/micromark-factory-space/package.json": "{\n \"name\": \"micromark-factory-space\",\n \"version\": \"2.0.1\",\n \"description\": \"micromark factory to parse markdown space (found in lots of places)\",\n \"license\": \"MIT\",\n \"keywords\": [\n \"micromark\",\n \"factory\",\n \"space\"\n ],\n \"repository\": \"https://github.com/micromark/micromark/tree/main/packages/micromark-factory-space\",\n \"bugs\": \"https://github.com/micromark/micromark/issues\",\n \"funding\": [\n {\n \"type\": \"GitHub Sponsors\",\n \"url\": \"https://github.com/sponsors/unifiedjs\"\n },\n {\n \"type\": \"OpenCollective\",\n \"url\": \"https://opencollective.com/unified\"\n }\n ],\n \"author\": \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\",\n \"contributors\": [\n \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\"\n ],\n \"sideEffects\": false,\n \"type\": \"module\",\n \"files\": [\n \"dev/\",\n \"index.d.ts.map\",\n \"index.d.ts\",\n \"index.js\"\n ],\n \"exports\": {\n \"development\": \"./dev/index.js\",\n \"default\": \"./index.js\"\n },\n \"dependencies\": {\n \"micromark-util-character\": \"^2.0.0\",\n \"micromark-util-types\": \"^2.0.0\"\n },\n \"scripts\": {\n \"build\": \"micromark-build\"\n },\n \"xo\": {\n \"envs\": [\n \"shared-node-browser\"\n ],\n \"prettier\": true,\n \"rules\": {\n \"unicorn/prefer-code-point\": \"off\"\n }\n }\n}\n",
|
|
13446
|
+
"node_modules/micromark-factory-title/dev/index.d.ts": "/**\n * Parse titles.\n *\n * ###### Examples\n *\n * ```markdown\n * \"a\"\n * 'b'\n * (c)\n * \"a\n * b\"\n * 'a\n * b'\n * (a\\)b)\n * ```\n *\n * @param {Effects} effects\n * Context.\n * @param {State} ok\n * State switched to when successful.\n * @param {State} nok\n * State switched to when unsuccessful.\n * @param {TokenType} type\n * Type of the whole title (`\"a\"`, `'b'`, `(c)`).\n * @param {TokenType} markerType\n * Type for the markers (`\"`, `'`, `(`, and `)`).\n * @param {TokenType} stringType\n * Type for the value (`a`).\n * @returns {State}\n * Start state.\n */\nexport function factoryTitle(effects: Effects, ok: State, nok: State, type: TokenType, markerType: TokenType, stringType: TokenType): State;\nimport type { Effects } from 'micromark-util-types';\nimport type { State } from 'micromark-util-types';\nimport type { TokenType } from 'micromark-util-types';\n//# sourceMappingURL=index.d.ts.map",
|
|
13447
|
+
"node_modules/micromark-factory-title/index.d.ts": "/**\n * Parse titles.\n *\n * ###### Examples\n *\n * ```markdown\n * \"a\"\n * 'b'\n * (c)\n * \"a\n * b\"\n * 'a\n * b'\n * (a\\)b)\n * ```\n *\n * @param {Effects} effects\n * Context.\n * @param {State} ok\n * State switched to when successful.\n * @param {State} nok\n * State switched to when unsuccessful.\n * @param {TokenType} type\n * Type of the whole title (`\"a\"`, `'b'`, `(c)`).\n * @param {TokenType} markerType\n * Type for the markers (`\"`, `'`, `(`, and `)`).\n * @param {TokenType} stringType\n * Type for the value (`a`).\n * @returns {State}\n * Start state.\n */\nexport function factoryTitle(effects: Effects, ok: State, nok: State, type: TokenType, markerType: TokenType, stringType: TokenType): State;\nimport type { Effects } from 'micromark-util-types';\nimport type { State } from 'micromark-util-types';\nimport type { TokenType } from 'micromark-util-types';\n//# sourceMappingURL=index.d.ts.map",
|
|
13448
|
+
"node_modules/micromark-factory-title/package.json": "{\n \"name\": \"micromark-factory-title\",\n \"version\": \"2.0.1\",\n \"description\": \"micromark factory to parse markdown titles (found in resources, definitions)\",\n \"license\": \"MIT\",\n \"keywords\": [\n \"micromark\",\n \"factory\",\n \"title\"\n ],\n \"repository\": \"https://github.com/micromark/micromark/tree/main/packages/micromark-factory-title\",\n \"bugs\": \"https://github.com/micromark/micromark/issues\",\n \"funding\": [\n {\n \"type\": \"GitHub Sponsors\",\n \"url\": \"https://github.com/sponsors/unifiedjs\"\n },\n {\n \"type\": \"OpenCollective\",\n \"url\": \"https://opencollective.com/unified\"\n }\n ],\n \"author\": \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\",\n \"contributors\": [\n \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\"\n ],\n \"sideEffects\": false,\n \"type\": \"module\",\n \"files\": [\n \"dev/\",\n \"index.d.ts.map\",\n \"index.d.ts\",\n \"index.js\"\n ],\n \"exports\": {\n \"development\": \"./dev/index.js\",\n \"default\": \"./index.js\"\n },\n \"dependencies\": {\n \"micromark-factory-space\": \"^2.0.0\",\n \"micromark-util-character\": \"^2.0.0\",\n \"micromark-util-symbol\": \"^2.0.0\",\n \"micromark-util-types\": \"^2.0.0\"\n },\n \"scripts\": {\n \"build\": \"micromark-build\"\n },\n \"xo\": {\n \"envs\": [\n \"shared-node-browser\"\n ],\n \"prettier\": true,\n \"rules\": {\n \"max-params\": \"off\",\n \"unicorn/prefer-code-point\": \"off\"\n }\n }\n}\n",
|
|
13449
|
+
"node_modules/micromark-factory-whitespace/dev/index.d.ts": "/**\n * Parse spaces and tabs.\n *\n * There is no `nok` parameter:\n *\n * * line endings or spaces in markdown are often optional, in which case this\n * factory can be used and `ok` will be switched to whether spaces were found\n * or not\n * * one line ending or space can be detected with\n * `markdownLineEndingOrSpace(code)` right before using `factoryWhitespace`\n *\n * @param {Effects} effects\n * Context.\n * @param {State} ok\n * State switched to when successful.\n * @returns {State}\n * Start state.\n */\nexport function factoryWhitespace(effects: Effects, ok: State): State;\nimport type { Effects } from 'micromark-util-types';\nimport type { State } from 'micromark-util-types';\n//# sourceMappingURL=index.d.ts.map",
|
|
13450
|
+
"node_modules/micromark-factory-whitespace/index.d.ts": "/**\n * Parse spaces and tabs.\n *\n * There is no `nok` parameter:\n *\n * * line endings or spaces in markdown are often optional, in which case this\n * factory can be used and `ok` will be switched to whether spaces were found\n * or not\n * * one line ending or space can be detected with\n * `markdownLineEndingOrSpace(code)` right before using `factoryWhitespace`\n *\n * @param {Effects} effects\n * Context.\n * @param {State} ok\n * State switched to when successful.\n * @returns {State}\n * Start state.\n */\nexport function factoryWhitespace(effects: Effects, ok: State): State;\nimport type { Effects } from 'micromark-util-types';\nimport type { State } from 'micromark-util-types';\n//# sourceMappingURL=index.d.ts.map",
|
|
13451
|
+
"node_modules/micromark-factory-whitespace/package.json": "{\n \"name\": \"micromark-factory-whitespace\",\n \"version\": \"2.0.1\",\n \"description\": \"micromark factory to parse markdown whitespace (found in lots of places)\",\n \"license\": \"MIT\",\n \"keywords\": [\n \"micromark\",\n \"factory\",\n \"whitespace\"\n ],\n \"repository\": \"https://github.com/micromark/micromark/tree/main/packages/micromark-factory-whitespace\",\n \"bugs\": \"https://github.com/micromark/micromark/issues\",\n \"funding\": [\n {\n \"type\": \"GitHub Sponsors\",\n \"url\": \"https://github.com/sponsors/unifiedjs\"\n },\n {\n \"type\": \"OpenCollective\",\n \"url\": \"https://opencollective.com/unified\"\n }\n ],\n \"author\": \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\",\n \"contributors\": [\n \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\"\n ],\n \"sideEffects\": false,\n \"type\": \"module\",\n \"files\": [\n \"dev/\",\n \"index.d.ts.map\",\n \"index.d.ts\",\n \"index.js\"\n ],\n \"exports\": {\n \"development\": \"./dev/index.js\",\n \"default\": \"./index.js\"\n },\n \"dependencies\": {\n \"micromark-factory-space\": \"^2.0.0\",\n \"micromark-util-character\": \"^2.0.0\",\n \"micromark-util-symbol\": \"^2.0.0\",\n \"micromark-util-types\": \"^2.0.0\"\n },\n \"scripts\": {\n \"build\": \"micromark-build\"\n },\n \"xo\": {\n \"envs\": [\n \"shared-node-browser\"\n ],\n \"prettier\": true,\n \"rules\": {\n \"unicorn/prefer-code-point\": \"off\"\n }\n }\n}\n",
|
|
13452
|
+
"node_modules/micromark-util-character/dev/index.d.ts": "/**\n * Check whether a character code is an ASCII control character.\n *\n * An **ASCII control** is a character in the inclusive range U+0000 NULL (NUL)\n * to U+001F (US), or U+007F (DEL).\n *\n * @param {Code} code\n * Code.\n * @returns {boolean}\n * Whether it matches.\n */\nexport function asciiControl(code: Code): boolean;\n/**\n * Check whether a character code is a markdown line ending.\n *\n * A **markdown line ending** is the virtual characters M-0003 CARRIAGE RETURN\n * LINE FEED (CRLF), M-0004 LINE FEED (LF) and M-0005 CARRIAGE RETURN (CR).\n *\n * In micromark, the actual character U+000A LINE FEED (LF) and U+000D CARRIAGE\n * RETURN (CR) are replaced by these virtual characters depending on whether\n * they occurred together.\n *\n * @param {Code} code\n * Code.\n * @returns {boolean}\n * Whether it matches.\n */\nexport function markdownLineEnding(code: Code): boolean;\n/**\n * Check whether a character code is a markdown line ending (see\n * `markdownLineEnding`) or markdown space (see `markdownSpace`).\n *\n * @param {Code} code\n * Code.\n * @returns {boolean}\n * Whether it matches.\n */\nexport function markdownLineEndingOrSpace(code: Code): boolean;\n/**\n * Check whether a character code is a markdown space.\n *\n * A **markdown space** is the concrete character U+0020 SPACE (SP) and the\n * virtual characters M-0001 VIRTUAL SPACE (VS) and M-0002 HORIZONTAL TAB (HT).\n *\n * In micromark, the actual character U+0009 CHARACTER TABULATION (HT) is\n * replaced by one M-0002 HORIZONTAL TAB (HT) and between 0 and 3 M-0001 VIRTUAL\n * SPACE (VS) characters, depending on the column at which the tab occurred.\n *\n * @param {Code} code\n * Code.\n * @returns {boolean}\n * Whether it matches.\n */\nexport function markdownSpace(code: Code): boolean;\n/**\n * Check whether the character code represents an ASCII alpha (`a` through `z`,\n * case insensitive).\n *\n * An **ASCII alpha** is an ASCII upper alpha or ASCII lower alpha.\n *\n * An **ASCII upper alpha** is a character in the inclusive range U+0041 (`A`)\n * to U+005A (`Z`).\n *\n * An **ASCII lower alpha** is a character in the inclusive range U+0061 (`a`)\n * to U+007A (`z`).\n *\n * @param code\n * Code.\n * @returns {boolean}\n * Whether it matches.\n */\nexport const asciiAlpha: (code: Code) => boolean;\n/**\n * Check whether the character code represents an ASCII alphanumeric (`a`\n * through `z`, case insensitive, or `0` through `9`).\n *\n * An **ASCII alphanumeric** is an ASCII digit (see `asciiDigit`) or ASCII alpha\n * (see `asciiAlpha`).\n *\n * @param code\n * Code.\n * @returns {boolean}\n * Whether it matches.\n */\nexport const asciiAlphanumeric: (code: Code) => boolean;\n/**\n * Check whether the character code represents an ASCII atext.\n *\n * atext is an ASCII alphanumeric (see `asciiAlphanumeric`), or a character in\n * the inclusive ranges U+0023 NUMBER SIGN (`#`) to U+0027 APOSTROPHE (`'`),\n * U+002A ASTERISK (`*`), U+002B PLUS SIGN (`+`), U+002D DASH (`-`), U+002F\n * SLASH (`/`), U+003D EQUALS TO (`=`), U+003F QUESTION MARK (`?`), U+005E\n * CARET (`^`) to U+0060 GRAVE ACCENT (`` ` ``), or U+007B LEFT CURLY BRACE\n * (`{`) to U+007E TILDE (`~`).\n *\n * See:\n * **\\[RFC5322]**:\n * [Internet Message Format](https://tools.ietf.org/html/rfc5322).\n * P. Resnick.\n * IETF.\n *\n * @param code\n * Code.\n * @returns {boolean}\n * Whether it matches.\n */\nexport const asciiAtext: (code: Code) => boolean;\n/**\n * Check whether the character code represents an ASCII digit (`0` through `9`).\n *\n * An **ASCII digit** is a character in the inclusive range U+0030 (`0`) to\n * U+0039 (`9`).\n *\n * @param code\n * Code.\n * @returns {boolean}\n * Whether it matches.\n */\nexport const asciiDigit: (code: Code) => boolean;\n/**\n * Check whether the character code represents an ASCII hex digit (`a` through\n * `f`, case insensitive, or `0` through `9`).\n *\n * An **ASCII hex digit** is an ASCII digit (see `asciiDigit`), ASCII upper hex\n * digit, or an ASCII lower hex digit.\n *\n * An **ASCII upper hex digit** is a character in the inclusive range U+0041\n * (`A`) to U+0046 (`F`).\n *\n * An **ASCII lower hex digit** is a character in the inclusive range U+0061\n * (`a`) to U+0066 (`f`).\n *\n * @param code\n * Code.\n * @returns {boolean}\n * Whether it matches.\n */\nexport const asciiHexDigit: (code: Code) => boolean;\n/**\n * Check whether the character code represents ASCII punctuation.\n *\n * An **ASCII punctuation** is a character in the inclusive ranges U+0021\n * EXCLAMATION MARK (`!`) to U+002F SLASH (`/`), U+003A COLON (`:`) to U+0040 AT\n * SIGN (`@`), U+005B LEFT SQUARE BRACKET (`[`) to U+0060 GRAVE ACCENT\n * (`` ` ``), or U+007B LEFT CURLY BRACE (`{`) to U+007E TILDE (`~`).\n *\n * @param code\n * Code.\n * @returns {boolean}\n * Whether it matches.\n */\nexport const asciiPunctuation: (code: Code) => boolean;\n/**\n * Check whether the character code represents Unicode punctuation.\n *\n * A **Unicode punctuation** is a character in the Unicode `Pc` (Punctuation,\n * Connector), `Pd` (Punctuation, Dash), `Pe` (Punctuation, Close), `Pf`\n * (Punctuation, Final quote), `Pi` (Punctuation, Initial quote), `Po`\n * (Punctuation, Other), or `Ps` (Punctuation, Open) categories, or an ASCII\n * punctuation (see `asciiPunctuation`).\n *\n * See:\n * **\\[UNICODE]**:\n * [The Unicode Standard](https://www.unicode.org/versions/).\n * Unicode Consortium.\n *\n * @param code\n * Code.\n * @returns\n * Whether it matches.\n */\nexport const unicodePunctuation: (code: Code) => boolean;\n/**\n * Check whether the character code represents Unicode whitespace.\n *\n * Note that this does handle micromark specific markdown whitespace characters.\n * See `markdownLineEndingOrSpace` to check that.\n *\n * A **Unicode whitespace** is a character in the Unicode `Zs` (Separator,\n * Space) category, or U+0009 CHARACTER TABULATION (HT), U+000A LINE FEED (LF),\n * U+000C (FF), or U+000D CARRIAGE RETURN (CR) (**\\[UNICODE]**).\n *\n * See:\n * **\\[UNICODE]**:\n * [The Unicode Standard](https://www.unicode.org/versions/).\n * Unicode Consortium.\n *\n * @param code\n * Code.\n * @returns\n * Whether it matches.\n */\nexport const unicodeWhitespace: (code: Code) => boolean;\nimport type { Code } from 'micromark-util-types';\n//# sourceMappingURL=index.d.ts.map",
|
|
13453
|
+
"node_modules/micromark-util-character/index.d.ts": "/**\n * Check whether a character code is an ASCII control character.\n *\n * An **ASCII control** is a character in the inclusive range U+0000 NULL (NUL)\n * to U+001F (US), or U+007F (DEL).\n *\n * @param {Code} code\n * Code.\n * @returns {boolean}\n * Whether it matches.\n */\nexport function asciiControl(code: Code): boolean;\n/**\n * Check whether a character code is a markdown line ending.\n *\n * A **markdown line ending** is the virtual characters M-0003 CARRIAGE RETURN\n * LINE FEED (CRLF), M-0004 LINE FEED (LF) and M-0005 CARRIAGE RETURN (CR).\n *\n * In micromark, the actual character U+000A LINE FEED (LF) and U+000D CARRIAGE\n * RETURN (CR) are replaced by these virtual characters depending on whether\n * they occurred together.\n *\n * @param {Code} code\n * Code.\n * @returns {boolean}\n * Whether it matches.\n */\nexport function markdownLineEnding(code: Code): boolean;\n/**\n * Check whether a character code is a markdown line ending (see\n * `markdownLineEnding`) or markdown space (see `markdownSpace`).\n *\n * @param {Code} code\n * Code.\n * @returns {boolean}\n * Whether it matches.\n */\nexport function markdownLineEndingOrSpace(code: Code): boolean;\n/**\n * Check whether a character code is a markdown space.\n *\n * A **markdown space** is the concrete character U+0020 SPACE (SP) and the\n * virtual characters M-0001 VIRTUAL SPACE (VS) and M-0002 HORIZONTAL TAB (HT).\n *\n * In micromark, the actual character U+0009 CHARACTER TABULATION (HT) is\n * replaced by one M-0002 HORIZONTAL TAB (HT) and between 0 and 3 M-0001 VIRTUAL\n * SPACE (VS) characters, depending on the column at which the tab occurred.\n *\n * @param {Code} code\n * Code.\n * @returns {boolean}\n * Whether it matches.\n */\nexport function markdownSpace(code: Code): boolean;\n/**\n * Check whether the character code represents an ASCII alpha (`a` through `z`,\n * case insensitive).\n *\n * An **ASCII alpha** is an ASCII upper alpha or ASCII lower alpha.\n *\n * An **ASCII upper alpha** is a character in the inclusive range U+0041 (`A`)\n * to U+005A (`Z`).\n *\n * An **ASCII lower alpha** is a character in the inclusive range U+0061 (`a`)\n * to U+007A (`z`).\n *\n * @param code\n * Code.\n * @returns {boolean}\n * Whether it matches.\n */\nexport const asciiAlpha: (code: Code) => boolean;\n/**\n * Check whether the character code represents an ASCII alphanumeric (`a`\n * through `z`, case insensitive, or `0` through `9`).\n *\n * An **ASCII alphanumeric** is an ASCII digit (see `asciiDigit`) or ASCII alpha\n * (see `asciiAlpha`).\n *\n * @param code\n * Code.\n * @returns {boolean}\n * Whether it matches.\n */\nexport const asciiAlphanumeric: (code: Code) => boolean;\n/**\n * Check whether the character code represents an ASCII atext.\n *\n * atext is an ASCII alphanumeric (see `asciiAlphanumeric`), or a character in\n * the inclusive ranges U+0023 NUMBER SIGN (`#`) to U+0027 APOSTROPHE (`'`),\n * U+002A ASTERISK (`*`), U+002B PLUS SIGN (`+`), U+002D DASH (`-`), U+002F\n * SLASH (`/`), U+003D EQUALS TO (`=`), U+003F QUESTION MARK (`?`), U+005E\n * CARET (`^`) to U+0060 GRAVE ACCENT (`` ` ``), or U+007B LEFT CURLY BRACE\n * (`{`) to U+007E TILDE (`~`).\n *\n * See:\n * **\\[RFC5322]**:\n * [Internet Message Format](https://tools.ietf.org/html/rfc5322).\n * P. Resnick.\n * IETF.\n *\n * @param code\n * Code.\n * @returns {boolean}\n * Whether it matches.\n */\nexport const asciiAtext: (code: Code) => boolean;\n/**\n * Check whether the character code represents an ASCII digit (`0` through `9`).\n *\n * An **ASCII digit** is a character in the inclusive range U+0030 (`0`) to\n * U+0039 (`9`).\n *\n * @param code\n * Code.\n * @returns {boolean}\n * Whether it matches.\n */\nexport const asciiDigit: (code: Code) => boolean;\n/**\n * Check whether the character code represents an ASCII hex digit (`a` through\n * `f`, case insensitive, or `0` through `9`).\n *\n * An **ASCII hex digit** is an ASCII digit (see `asciiDigit`), ASCII upper hex\n * digit, or an ASCII lower hex digit.\n *\n * An **ASCII upper hex digit** is a character in the inclusive range U+0041\n * (`A`) to U+0046 (`F`).\n *\n * An **ASCII lower hex digit** is a character in the inclusive range U+0061\n * (`a`) to U+0066 (`f`).\n *\n * @param code\n * Code.\n * @returns {boolean}\n * Whether it matches.\n */\nexport const asciiHexDigit: (code: Code) => boolean;\n/**\n * Check whether the character code represents ASCII punctuation.\n *\n * An **ASCII punctuation** is a character in the inclusive ranges U+0021\n * EXCLAMATION MARK (`!`) to U+002F SLASH (`/`), U+003A COLON (`:`) to U+0040 AT\n * SIGN (`@`), U+005B LEFT SQUARE BRACKET (`[`) to U+0060 GRAVE ACCENT\n * (`` ` ``), or U+007B LEFT CURLY BRACE (`{`) to U+007E TILDE (`~`).\n *\n * @param code\n * Code.\n * @returns {boolean}\n * Whether it matches.\n */\nexport const asciiPunctuation: (code: Code) => boolean;\n/**\n * Check whether the character code represents Unicode punctuation.\n *\n * A **Unicode punctuation** is a character in the Unicode `Pc` (Punctuation,\n * Connector), `Pd` (Punctuation, Dash), `Pe` (Punctuation, Close), `Pf`\n * (Punctuation, Final quote), `Pi` (Punctuation, Initial quote), `Po`\n * (Punctuation, Other), or `Ps` (Punctuation, Open) categories, or an ASCII\n * punctuation (see `asciiPunctuation`).\n *\n * See:\n * **\\[UNICODE]**:\n * [The Unicode Standard](https://www.unicode.org/versions/).\n * Unicode Consortium.\n *\n * @param code\n * Code.\n * @returns\n * Whether it matches.\n */\nexport const unicodePunctuation: (code: Code) => boolean;\n/**\n * Check whether the character code represents Unicode whitespace.\n *\n * Note that this does handle micromark specific markdown whitespace characters.\n * See `markdownLineEndingOrSpace` to check that.\n *\n * A **Unicode whitespace** is a character in the Unicode `Zs` (Separator,\n * Space) category, or U+0009 CHARACTER TABULATION (HT), U+000A LINE FEED (LF),\n * U+000C (FF), or U+000D CARRIAGE RETURN (CR) (**\\[UNICODE]**).\n *\n * See:\n * **\\[UNICODE]**:\n * [The Unicode Standard](https://www.unicode.org/versions/).\n * Unicode Consortium.\n *\n * @param code\n * Code.\n * @returns\n * Whether it matches.\n */\nexport const unicodeWhitespace: (code: Code) => boolean;\nimport type { Code } from 'micromark-util-types';\n//# sourceMappingURL=index.d.ts.map",
|
|
13454
|
+
"node_modules/micromark-util-character/package.json": "{\n \"name\": \"micromark-util-character\",\n \"version\": \"2.1.1\",\n \"description\": \"micromark utility to handle character codes\",\n \"license\": \"MIT\",\n \"keywords\": [\n \"micromark\",\n \"util\",\n \"utility\",\n \"character\"\n ],\n \"repository\": \"https://github.com/micromark/micromark/tree/main/packages/micromark-util-character\",\n \"bugs\": \"https://github.com/micromark/micromark/issues\",\n \"funding\": [\n {\n \"type\": \"GitHub Sponsors\",\n \"url\": \"https://github.com/sponsors/unifiedjs\"\n },\n {\n \"type\": \"OpenCollective\",\n \"url\": \"https://opencollective.com/unified\"\n }\n ],\n \"author\": \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\",\n \"contributors\": [\n \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\"\n ],\n \"sideEffects\": false,\n \"type\": \"module\",\n \"files\": [\n \"dev/\",\n \"lib/\",\n \"index.d.ts.map\",\n \"index.d.ts\",\n \"index.js\"\n ],\n \"exports\": {\n \"development\": \"./dev/index.js\",\n \"default\": \"./index.js\"\n },\n \"dependencies\": {\n \"micromark-util-symbol\": \"^2.0.0\",\n \"micromark-util-types\": \"^2.0.0\"\n },\n \"scripts\": {\n \"build\": \"micromark-build\"\n },\n \"xo\": {\n \"envs\": [\n \"shared-node-browser\"\n ],\n \"prettier\": true,\n \"rules\": {\n \"unicorn/prefer-code-point\": \"off\"\n }\n }\n}\n",
|
|
13455
|
+
"node_modules/micromark-util-chunked/dev/index.d.ts": "/**\n * Like `Array#splice`, but smarter for giant arrays.\n *\n * `Array#splice` takes all items to be inserted as individual argument which\n * causes a stack overflow in V8 when trying to insert 100k items for instance.\n *\n * Otherwise, this does not return the removed items, and takes `items` as an\n * array instead of rest parameters.\n *\n * @template {unknown} T\n * Item type.\n * @param {Array<T>} list\n * List to operate on.\n * @param {number} start\n * Index to remove/insert at (can be negative).\n * @param {number} remove\n * Number of items to remove.\n * @param {Array<T>} items\n * Items to inject into `list`.\n * @returns {undefined}\n * Nothing.\n */\nexport function splice<T extends unknown>(list: Array<T>, start: number, remove: number, items: Array<T>): undefined;\n/**\n * Append `items` (an array) at the end of `list` (another array).\n * When `list` was empty, returns `items` instead.\n *\n * This prevents a potentially expensive operation when `list` is empty,\n * and adds items in batches to prevent V8 from hanging.\n *\n * @template {unknown} T\n * Item type.\n * @param {Array<T>} list\n * List to operate on.\n * @param {Array<T>} items\n * Items to add to `list`.\n * @returns {Array<T>}\n * Either `list` or `items`.\n */\nexport function push<T extends unknown>(list: Array<T>, items: Array<T>): Array<T>;\n//# sourceMappingURL=index.d.ts.map",
|
|
13456
|
+
"node_modules/micromark-util-chunked/index.d.ts": "/**\n * Like `Array#splice`, but smarter for giant arrays.\n *\n * `Array#splice` takes all items to be inserted as individual argument which\n * causes a stack overflow in V8 when trying to insert 100k items for instance.\n *\n * Otherwise, this does not return the removed items, and takes `items` as an\n * array instead of rest parameters.\n *\n * @template {unknown} T\n * Item type.\n * @param {Array<T>} list\n * List to operate on.\n * @param {number} start\n * Index to remove/insert at (can be negative).\n * @param {number} remove\n * Number of items to remove.\n * @param {Array<T>} items\n * Items to inject into `list`.\n * @returns {undefined}\n * Nothing.\n */\nexport function splice<T extends unknown>(list: Array<T>, start: number, remove: number, items: Array<T>): undefined;\n/**\n * Append `items` (an array) at the end of `list` (another array).\n * When `list` was empty, returns `items` instead.\n *\n * This prevents a potentially expensive operation when `list` is empty,\n * and adds items in batches to prevent V8 from hanging.\n *\n * @template {unknown} T\n * Item type.\n * @param {Array<T>} list\n * List to operate on.\n * @param {Array<T>} items\n * Items to add to `list`.\n * @returns {Array<T>}\n * Either `list` or `items`.\n */\nexport function push<T extends unknown>(list: Array<T>, items: Array<T>): Array<T>;\n//# sourceMappingURL=index.d.ts.map",
|
|
13457
|
+
"node_modules/micromark-util-chunked/package.json": "{\n \"name\": \"micromark-util-chunked\",\n \"version\": \"2.0.1\",\n \"description\": \"micromark utility to splice and push with giant arrays\",\n \"license\": \"MIT\",\n \"keywords\": [\n \"micromark\",\n \"util\",\n \"utility\",\n \"chunk\",\n \"splice\",\n \"push\"\n ],\n \"repository\": \"https://github.com/micromark/micromark/tree/main/packages/micromark-util-chunked\",\n \"bugs\": \"https://github.com/micromark/micromark/issues\",\n \"funding\": [\n {\n \"type\": \"GitHub Sponsors\",\n \"url\": \"https://github.com/sponsors/unifiedjs\"\n },\n {\n \"type\": \"OpenCollective\",\n \"url\": \"https://opencollective.com/unified\"\n }\n ],\n \"author\": \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\",\n \"contributors\": [\n \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\"\n ],\n \"sideEffects\": false,\n \"type\": \"module\",\n \"files\": [\n \"dev/\",\n \"index.d.ts.map\",\n \"index.d.ts\",\n \"index.js\"\n ],\n \"exports\": {\n \"development\": \"./dev/index.js\",\n \"default\": \"./index.js\"\n },\n \"dependencies\": {\n \"micromark-util-symbol\": \"^2.0.0\"\n },\n \"scripts\": {\n \"build\": \"micromark-build\"\n },\n \"xo\": {\n \"envs\": [\n \"shared-node-browser\"\n ],\n \"prettier\": true,\n \"rules\": {\n \"unicorn/prefer-code-point\": \"off\"\n }\n }\n}\n",
|
|
13458
|
+
"node_modules/micromark-util-classify-character/dev/index.d.ts": "/**\n * Classify whether a code represents whitespace, punctuation, or something\n * else.\n *\n * Used for attention (emphasis, strong), whose sequences can open or close\n * based on the class of surrounding characters.\n *\n * > 👉 **Note**: eof (`null`) is seen as whitespace.\n *\n * @param {Code} code\n * Code.\n * @returns {typeof constants.characterGroupWhitespace | typeof constants.characterGroupPunctuation | undefined}\n * Group.\n */\nexport function classifyCharacter(code: Code): typeof constants.characterGroupWhitespace | typeof constants.characterGroupPunctuation | undefined;\nimport type { Code } from 'micromark-util-types';\nimport { constants } from 'micromark-util-symbol';\n//# sourceMappingURL=index.d.ts.map",
|
|
13459
|
+
"node_modules/micromark-util-classify-character/index.d.ts": "/**\n * Classify whether a code represents whitespace, punctuation, or something\n * else.\n *\n * Used for attention (emphasis, strong), whose sequences can open or close\n * based on the class of surrounding characters.\n *\n * > 👉 **Note**: eof (`null`) is seen as whitespace.\n *\n * @param {Code} code\n * Code.\n * @returns {typeof constants.characterGroupWhitespace | typeof constants.characterGroupPunctuation | undefined}\n * Group.\n */\nexport function classifyCharacter(code: Code): typeof constants.characterGroupWhitespace | typeof constants.characterGroupPunctuation | undefined;\nimport type { Code } from 'micromark-util-types';\nimport { constants } from 'micromark-util-symbol';\n//# sourceMappingURL=index.d.ts.map",
|
|
13460
|
+
"node_modules/micromark-util-classify-character/package.json": "{\n \"name\": \"micromark-util-classify-character\",\n \"version\": \"2.0.1\",\n \"description\": \"micromark utility to classify whether a character is whitespace or punctuation\",\n \"license\": \"MIT\",\n \"keywords\": [\n \"micromark\",\n \"util\",\n \"utility\",\n \"attention\",\n \"classify\",\n \"character\"\n ],\n \"repository\": \"https://github.com/micromark/micromark/tree/main/packages/micromark-util-classify-character\",\n \"bugs\": \"https://github.com/micromark/micromark/issues\",\n \"funding\": [\n {\n \"type\": \"GitHub Sponsors\",\n \"url\": \"https://github.com/sponsors/unifiedjs\"\n },\n {\n \"type\": \"OpenCollective\",\n \"url\": \"https://opencollective.com/unified\"\n }\n ],\n \"author\": \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\",\n \"contributors\": [\n \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\"\n ],\n \"sideEffects\": false,\n \"type\": \"module\",\n \"files\": [\n \"dev/\",\n \"index.d.ts.map\",\n \"index.d.ts\",\n \"index.js\"\n ],\n \"exports\": {\n \"development\": \"./dev/index.js\",\n \"default\": \"./index.js\"\n },\n \"dependencies\": {\n \"micromark-util-character\": \"^2.0.0\",\n \"micromark-util-symbol\": \"^2.0.0\",\n \"micromark-util-types\": \"^2.0.0\"\n },\n \"scripts\": {\n \"build\": \"micromark-build\"\n },\n \"xo\": {\n \"envs\": [\n \"shared-node-browser\"\n ],\n \"prettier\": true,\n \"rules\": {\n \"unicorn/prefer-code-point\": \"off\"\n }\n }\n}\n",
|
|
13461
|
+
"node_modules/micromark-util-combine-extensions/index.d.ts": "/**\n * Combine multiple syntax extensions into one.\n *\n * @param {ReadonlyArray<Extension>} extensions\n * List of syntax extensions.\n * @returns {NormalizedExtension}\n * A single combined extension.\n */\nexport function combineExtensions(extensions: ReadonlyArray<Extension>): NormalizedExtension;\n/**\n * Combine multiple HTML extensions into one.\n *\n * @param {ReadonlyArray<HtmlExtension>} htmlExtensions\n * List of HTML extensions.\n * @returns {HtmlExtension}\n * Single combined HTML extension.\n */\nexport function combineHtmlExtensions(htmlExtensions: ReadonlyArray<HtmlExtension>): HtmlExtension;\nimport type { Extension } from 'micromark-util-types';\nimport type { NormalizedExtension } from 'micromark-util-types';\nimport type { HtmlExtension } from 'micromark-util-types';\n//# sourceMappingURL=index.d.ts.map",
|
|
13462
|
+
"node_modules/micromark-util-combine-extensions/package.json": "{\n \"name\": \"micromark-util-combine-extensions\",\n \"version\": \"2.0.1\",\n \"description\": \"micromark utility to combine syntax or html extensions\",\n \"license\": \"MIT\",\n \"keywords\": [\n \"micromark\",\n \"util\",\n \"utility\",\n \"extension\",\n \"combine\",\n \"merge\"\n ],\n \"repository\": \"https://github.com/micromark/micromark/tree/main/packages/micromark-util-combine-extensions\",\n \"bugs\": \"https://github.com/micromark/micromark/issues\",\n \"funding\": [\n {\n \"type\": \"GitHub Sponsors\",\n \"url\": \"https://github.com/sponsors/unifiedjs\"\n },\n {\n \"type\": \"OpenCollective\",\n \"url\": \"https://opencollective.com/unified\"\n }\n ],\n \"author\": \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\",\n \"contributors\": [\n \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\"\n ],\n \"sideEffects\": false,\n \"type\": \"module\",\n \"files\": [\n \"index.d.ts.map\",\n \"index.d.ts\",\n \"index.js\"\n ],\n \"exports\": \"./index.js\",\n \"dependencies\": {\n \"micromark-util-chunked\": \"^2.0.0\",\n \"micromark-util-types\": \"^2.0.0\"\n },\n \"xo\": {\n \"envs\": [\n \"shared-node-browser\"\n ],\n \"prettier\": true,\n \"rules\": {\n \"guard-for-in\": \"off\",\n \"unicorn/prefer-code-point\": \"off\"\n }\n }\n}\n",
|
|
13463
|
+
"node_modules/micromark-util-decode-numeric-character-reference/dev/index.d.ts": "/**\n * Turn the number (in string form as either hexa- or plain decimal) coming from\n * a numeric character reference into a character.\n *\n * Sort of like `String.fromCodePoint(Number.parseInt(value, base))`, but makes\n * non-characters and control characters safe.\n *\n * @param {string} value\n * Value to decode.\n * @param {number} base\n * Numeric base.\n * @returns {string}\n * Character.\n */\nexport function decodeNumericCharacterReference(value: string, base: number): string;\n//# sourceMappingURL=index.d.ts.map",
|
|
13464
|
+
"node_modules/micromark-util-decode-numeric-character-reference/index.d.ts": "/**\n * Turn the number (in string form as either hexa- or plain decimal) coming from\n * a numeric character reference into a character.\n *\n * Sort of like `String.fromCodePoint(Number.parseInt(value, base))`, but makes\n * non-characters and control characters safe.\n *\n * @param {string} value\n * Value to decode.\n * @param {number} base\n * Numeric base.\n * @returns {string}\n * Character.\n */\nexport function decodeNumericCharacterReference(value: string, base: number): string;\n//# sourceMappingURL=index.d.ts.map",
|
|
13465
|
+
"node_modules/micromark-util-decode-numeric-character-reference/package.json": "{\n \"name\": \"micromark-util-decode-numeric-character-reference\",\n \"version\": \"2.0.2\",\n \"description\": \"micromark utility to decode numeric character references\",\n \"license\": \"MIT\",\n \"keywords\": [\n \"micromark\",\n \"util\",\n \"utility\",\n \"decode\",\n \"numeric\",\n \"number\",\n \"character\",\n \"reference\"\n ],\n \"repository\": \"https://github.com/micromark/micromark/tree/main/packages/micromark-util-decode-numeric-character-reference\",\n \"bugs\": \"https://github.com/micromark/micromark/issues\",\n \"funding\": [\n {\n \"type\": \"GitHub Sponsors\",\n \"url\": \"https://github.com/sponsors/unifiedjs\"\n },\n {\n \"type\": \"OpenCollective\",\n \"url\": \"https://opencollective.com/unified\"\n }\n ],\n \"author\": \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\",\n \"contributors\": [\n \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\"\n ],\n \"sideEffects\": false,\n \"type\": \"module\",\n \"files\": [\n \"dev/\",\n \"index.d.ts.map\",\n \"index.d.ts\",\n \"index.js\"\n ],\n \"exports\": {\n \"development\": \"./dev/index.js\",\n \"default\": \"./index.js\"\n },\n \"dependencies\": {\n \"micromark-util-symbol\": \"^2.0.0\"\n },\n \"scripts\": {\n \"build\": \"micromark-build\"\n },\n \"xo\": {\n \"envs\": [\n \"shared-node-browser\"\n ],\n \"prettier\": true,\n \"rules\": {\n \"unicorn/prefer-code-point\": \"off\"\n }\n }\n}\n",
|
|
13466
|
+
"node_modules/micromark-util-decode-string/dev/index.d.ts": "/**\n * Decode markdown strings (which occur in places such as fenced code info\n * strings, destinations, labels, and titles).\n *\n * The “string” content type allows character escapes and -references.\n * This decodes those.\n *\n * @param {string} value\n * Value to decode.\n * @returns {string}\n * Decoded value.\n */\nexport function decodeString(value: string): string;\n//# sourceMappingURL=index.d.ts.map",
|
|
13467
|
+
"node_modules/micromark-util-decode-string/index.d.ts": "/**\n * Decode markdown strings (which occur in places such as fenced code info\n * strings, destinations, labels, and titles).\n *\n * The “string” content type allows character escapes and -references.\n * This decodes those.\n *\n * @param {string} value\n * Value to decode.\n * @returns {string}\n * Decoded value.\n */\nexport function decodeString(value: string): string;\n//# sourceMappingURL=index.d.ts.map",
|
|
13468
|
+
"node_modules/micromark-util-decode-string/package.json": "{\n \"name\": \"micromark-util-decode-string\",\n \"version\": \"2.0.1\",\n \"description\": \"micromark utility to decode markdown strings\",\n \"license\": \"MIT\",\n \"keywords\": [\n \"micromark\",\n \"util\",\n \"utility\",\n \"decode\",\n \"character\",\n \"reference\",\n \"escape\",\n \"string\"\n ],\n \"repository\": \"https://github.com/micromark/micromark/tree/main/packages/micromark-util-decode-string\",\n \"bugs\": \"https://github.com/micromark/micromark/issues\",\n \"funding\": [\n {\n \"type\": \"GitHub Sponsors\",\n \"url\": \"https://github.com/sponsors/unifiedjs\"\n },\n {\n \"type\": \"OpenCollective\",\n \"url\": \"https://opencollective.com/unified\"\n }\n ],\n \"author\": \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\",\n \"contributors\": [\n \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\"\n ],\n \"sideEffects\": false,\n \"type\": \"module\",\n \"files\": [\n \"dev/\",\n \"index.d.ts.map\",\n \"index.d.ts\",\n \"index.js\"\n ],\n \"exports\": {\n \"development\": \"./dev/index.js\",\n \"default\": \"./index.js\"\n },\n \"dependencies\": {\n \"micromark-util-character\": \"^2.0.0\",\n \"micromark-util-decode-numeric-character-reference\": \"^2.0.0\",\n \"micromark-util-symbol\": \"^2.0.0\",\n \"decode-named-character-reference\": \"^1.0.0\"\n },\n \"scripts\": {\n \"build\": \"micromark-build\"\n },\n \"xo\": {\n \"envs\": [\n \"shared-node-browser\"\n ],\n \"prettier\": true,\n \"rules\": {\n \"unicorn/prefer-code-point\": \"off\",\n \"unicorn/prefer-string-replace-all\": \"off\"\n }\n }\n}\n",
|
|
13469
|
+
"node_modules/micromark-util-encode/index.d.ts": "/**\n * Encode only the dangerous HTML characters.\n *\n * This ensures that certain characters which have special meaning in HTML are\n * dealt with.\n * Technically, we can skip `>` and `\"` in many cases, but CM includes them.\n *\n * @param {string} value\n * Value to encode.\n * @returns {string}\n * Encoded value.\n */\nexport function encode(value: string): string;\n//# sourceMappingURL=index.d.ts.map",
|
|
13470
|
+
"node_modules/micromark-util-encode/package.json": "{\n \"name\": \"micromark-util-encode\",\n \"version\": \"2.0.1\",\n \"description\": \"micromark utility to encode dangerous html characters\",\n \"license\": \"MIT\",\n \"keywords\": [\n \"micromark\",\n \"util\",\n \"utility\",\n \"html\",\n \"encode\"\n ],\n \"repository\": \"https://github.com/micromark/micromark/tree/main/packages/micromark-util-encode\",\n \"bugs\": \"https://github.com/micromark/micromark/issues\",\n \"funding\": [\n {\n \"type\": \"GitHub Sponsors\",\n \"url\": \"https://github.com/sponsors/unifiedjs\"\n },\n {\n \"type\": \"OpenCollective\",\n \"url\": \"https://opencollective.com/unified\"\n }\n ],\n \"author\": \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\",\n \"contributors\": [\n \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\"\n ],\n \"sideEffects\": false,\n \"type\": \"module\",\n \"files\": [\n \"index.d.ts.map\",\n \"index.d.ts\",\n \"index.js\"\n ],\n \"exports\": \"./index.js\",\n \"xo\": {\n \"envs\": [\n \"shared-node-browser\"\n ],\n \"prettier\": true,\n \"rules\": {\n \"unicorn/prefer-string-replace-all\": \"off\",\n \"unicorn/prefer-code-point\": \"off\"\n }\n }\n}\n",
|
|
13471
|
+
"node_modules/micromark-util-html-tag-name/index.d.ts": "/**\n * List of lowercase HTML “block” tag names.\n *\n * The list, when parsing HTML (flow), results in more relaxed rules (condition\n * 6).\n * Because they are known blocks, the HTML-like syntax doesn’t have to be\n * strictly parsed.\n * For tag names not in this list, a more strict algorithm (condition 7) is used\n * to detect whether the HTML-like syntax is seen as HTML (flow) or not.\n *\n * This is copied from:\n * <https://spec.commonmark.org/0.30/#html-blocks>.\n *\n * > 👉 **Note**: `search` was added in `CommonMark@0.31`.\n */\nexport const htmlBlockNames: string[];\n/**\n * List of lowercase HTML “raw” tag names.\n *\n * The list, when parsing HTML (flow), results in HTML that can include lines\n * without exiting, until a closing tag also in this list is found (condition\n * 1).\n *\n * This module is copied from:\n * <https://spec.commonmark.org/0.30/#html-blocks>.\n *\n * > 👉 **Note**: `textarea` was added in `CommonMark@0.30`.\n */\nexport const htmlRawNames: string[];\n//# sourceMappingURL=index.d.ts.map",
|
|
13472
|
+
"node_modules/micromark-util-html-tag-name/package.json": "{\n \"name\": \"micromark-util-html-tag-name\",\n \"version\": \"2.0.1\",\n \"description\": \"micromark utility with list of html tag names\",\n \"license\": \"MIT\",\n \"keywords\": [\n \"micromark\",\n \"util\",\n \"utility\",\n \"html\",\n \"tag\",\n \"name\"\n ],\n \"repository\": \"https://github.com/micromark/micromark/tree/main/packages/micromark-util-html-tag-name\",\n \"bugs\": \"https://github.com/micromark/micromark/issues\",\n \"funding\": [\n {\n \"type\": \"GitHub Sponsors\",\n \"url\": \"https://github.com/sponsors/unifiedjs\"\n },\n {\n \"type\": \"OpenCollective\",\n \"url\": \"https://opencollective.com/unified\"\n }\n ],\n \"author\": \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\",\n \"contributors\": [\n \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\"\n ],\n \"sideEffects\": false,\n \"type\": \"module\",\n \"files\": [\n \"index.d.ts.map\",\n \"index.d.ts\",\n \"index.js\"\n ],\n \"exports\": \"./index.js\",\n \"xo\": {\n \"envs\": [\n \"shared-node-browser\"\n ],\n \"prettier\": true,\n \"rules\": {\n \"unicorn/prefer-code-point\": \"off\"\n }\n }\n}\n",
|
|
13473
|
+
"node_modules/micromark-util-normalize-identifier/dev/index.d.ts": "/**\n * Normalize an identifier (as found in references, definitions).\n *\n * Collapses markdown whitespace, trim, and then lower- and uppercase.\n *\n * Some characters are considered “uppercase”, such as U+03F4 (`ϴ`), but if their\n * lowercase counterpart (U+03B8 (`θ`)) is uppercased will result in a different\n * uppercase character (U+0398 (`Θ`)).\n * So, to get a canonical form, we perform both lower- and uppercase.\n *\n * Using uppercase last makes sure keys will never interact with default\n * prototypal values (such as `constructor`): nothing in the prototype of\n * `Object` is uppercase.\n *\n * @param {string} value\n * Identifier to normalize.\n * @returns {string}\n * Normalized identifier.\n */\nexport function normalizeIdentifier(value: string): string;\n//# sourceMappingURL=index.d.ts.map",
|
|
13474
|
+
"node_modules/micromark-util-normalize-identifier/index.d.ts": "/**\n * Normalize an identifier (as found in references, definitions).\n *\n * Collapses markdown whitespace, trim, and then lower- and uppercase.\n *\n * Some characters are considered “uppercase”, such as U+03F4 (`ϴ`), but if their\n * lowercase counterpart (U+03B8 (`θ`)) is uppercased will result in a different\n * uppercase character (U+0398 (`Θ`)).\n * So, to get a canonical form, we perform both lower- and uppercase.\n *\n * Using uppercase last makes sure keys will never interact with default\n * prototypal values (such as `constructor`): nothing in the prototype of\n * `Object` is uppercase.\n *\n * @param {string} value\n * Identifier to normalize.\n * @returns {string}\n * Normalized identifier.\n */\nexport function normalizeIdentifier(value: string): string;\n//# sourceMappingURL=index.d.ts.map",
|
|
13475
|
+
"node_modules/micromark-util-normalize-identifier/package.json": "{\n \"name\": \"micromark-util-normalize-identifier\",\n \"version\": \"2.0.1\",\n \"description\": \"micromark utility normalize identifiers (as found in references, definitions)\",\n \"license\": \"MIT\",\n \"keywords\": [\n \"micromark\",\n \"util\",\n \"utility\",\n \"normalize\",\n \"id\",\n \"identifier\"\n ],\n \"repository\": \"https://github.com/micromark/micromark/tree/main/packages/micromark-util-normalize-identifier\",\n \"bugs\": \"https://github.com/micromark/micromark/issues\",\n \"funding\": [\n {\n \"type\": \"GitHub Sponsors\",\n \"url\": \"https://github.com/sponsors/unifiedjs\"\n },\n {\n \"type\": \"OpenCollective\",\n \"url\": \"https://opencollective.com/unified\"\n }\n ],\n \"author\": \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\",\n \"contributors\": [\n \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\"\n ],\n \"sideEffects\": false,\n \"type\": \"module\",\n \"files\": [\n \"dev/\",\n \"index.d.ts.map\",\n \"index.d.ts\",\n \"index.js\"\n ],\n \"exports\": {\n \"development\": \"./dev/index.js\",\n \"default\": \"./index.js\"\n },\n \"dependencies\": {\n \"micromark-util-symbol\": \"^2.0.0\"\n },\n \"scripts\": {\n \"build\": \"micromark-build\"\n },\n \"xo\": {\n \"envs\": [\n \"shared-node-browser\"\n ],\n \"prettier\": true,\n \"rules\": {\n \"unicorn/prefer-code-point\": \"off\",\n \"unicorn/prefer-string-replace-all\": \"off\"\n }\n }\n}\n",
|
|
13476
|
+
"node_modules/micromark-util-resolve-all/index.d.ts": "/**\n * @import {Event, Resolver, TokenizeContext} from 'micromark-util-types'\n */\n/**\n * Call all `resolveAll`s.\n *\n * @param {ReadonlyArray<{resolveAll?: Resolver | undefined}>} constructs\n * List of constructs, optionally with `resolveAll`s.\n * @param {Array<Event>} events\n * List of events.\n * @param {TokenizeContext} context\n * Context used by `tokenize`.\n * @returns {Array<Event>}\n * Changed events.\n */\nexport function resolveAll(constructs: ReadonlyArray<{\n resolveAll?: Resolver | undefined;\n}>, events: Array<Event>, context: TokenizeContext): Array<Event>;\nimport type { Resolver } from 'micromark-util-types';\nimport type { Event } from 'micromark-util-types';\nimport type { TokenizeContext } from 'micromark-util-types';\n//# sourceMappingURL=index.d.ts.map",
|
|
13477
|
+
"node_modules/micromark-util-resolve-all/package.json": "{\n \"name\": \"micromark-util-resolve-all\",\n \"version\": \"2.0.1\",\n \"description\": \"micromark utility to resolve subtokens\",\n \"license\": \"MIT\",\n \"keywords\": [\n \"micromark\",\n \"util\",\n \"utility\",\n \"resolve\"\n ],\n \"repository\": \"https://github.com/micromark/micromark/tree/main/packages/micromark-util-resolve-all\",\n \"bugs\": \"https://github.com/micromark/micromark/issues\",\n \"funding\": [\n {\n \"type\": \"GitHub Sponsors\",\n \"url\": \"https://github.com/sponsors/unifiedjs\"\n },\n {\n \"type\": \"OpenCollective\",\n \"url\": \"https://opencollective.com/unified\"\n }\n ],\n \"author\": \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\",\n \"contributors\": [\n \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\"\n ],\n \"sideEffects\": false,\n \"type\": \"module\",\n \"files\": [\n \"index.d.ts.map\",\n \"index.d.ts\",\n \"index.js\"\n ],\n \"exports\": \"./index.js\",\n \"dependencies\": {\n \"micromark-util-types\": \"^2.0.0\"\n },\n \"xo\": {\n \"envs\": [\n \"shared-node-browser\"\n ],\n \"prettier\": true,\n \"rules\": {\n \"unicorn/prefer-code-point\": \"off\"\n }\n }\n}\n",
|
|
13478
|
+
"node_modules/micromark-util-sanitize-uri/dev/index.d.ts": "/**\n * Make a value safe for injection as a URL.\n *\n * This encodes unsafe characters with percent-encoding and skips already\n * encoded sequences (see `normalizeUri`).\n * Further unsafe characters are encoded as character references (see\n * `micromark-util-encode`).\n *\n * A regex of allowed protocols can be given, in which case the URL is\n * sanitized.\n * For example, `/^(https?|ircs?|mailto|xmpp)$/i` can be used for `a[href]`, or\n * `/^https?$/i` for `img[src]` (this is what `github.com` allows).\n * If the URL includes an unknown protocol (one not matched by `protocol`, such\n * as a dangerous example, `javascript:`), the value is ignored.\n *\n * @param {string | null | undefined} url\n * URI to sanitize.\n * @param {RegExp | null | undefined} [protocol]\n * Allowed protocols.\n * @returns {string}\n * Sanitized URI.\n */\nexport function sanitizeUri(url: string | null | undefined, protocol?: RegExp | null | undefined): string;\n/**\n * Normalize a URL.\n *\n * Encode unsafe characters with percent-encoding, skipping already encoded\n * sequences.\n *\n * @param {string} value\n * URI to normalize.\n * @returns {string}\n * Normalized URI.\n */\nexport function normalizeUri(value: string): string;\n//# sourceMappingURL=index.d.ts.map",
|
|
13479
|
+
"node_modules/micromark-util-sanitize-uri/index.d.ts": "/**\n * Make a value safe for injection as a URL.\n *\n * This encodes unsafe characters with percent-encoding and skips already\n * encoded sequences (see `normalizeUri`).\n * Further unsafe characters are encoded as character references (see\n * `micromark-util-encode`).\n *\n * A regex of allowed protocols can be given, in which case the URL is\n * sanitized.\n * For example, `/^(https?|ircs?|mailto|xmpp)$/i` can be used for `a[href]`, or\n * `/^https?$/i` for `img[src]` (this is what `github.com` allows).\n * If the URL includes an unknown protocol (one not matched by `protocol`, such\n * as a dangerous example, `javascript:`), the value is ignored.\n *\n * @param {string | null | undefined} url\n * URI to sanitize.\n * @param {RegExp | null | undefined} [protocol]\n * Allowed protocols.\n * @returns {string}\n * Sanitized URI.\n */\nexport function sanitizeUri(url: string | null | undefined, protocol?: RegExp | null | undefined): string;\n/**\n * Normalize a URL.\n *\n * Encode unsafe characters with percent-encoding, skipping already encoded\n * sequences.\n *\n * @param {string} value\n * URI to normalize.\n * @returns {string}\n * Normalized URI.\n */\nexport function normalizeUri(value: string): string;\n//# sourceMappingURL=index.d.ts.map",
|
|
13480
|
+
"node_modules/micromark-util-sanitize-uri/package.json": "{\n \"name\": \"micromark-util-sanitize-uri\",\n \"version\": \"2.0.1\",\n \"description\": \"micromark utility to sanitize urls\",\n \"license\": \"MIT\",\n \"keywords\": [\n \"micromark\",\n \"util\",\n \"utility\",\n \"sanitize\",\n \"clear\",\n \"url\"\n ],\n \"repository\": \"https://github.com/micromark/micromark/tree/main/packages/micromark-util-sanitize-uri\",\n \"bugs\": \"https://github.com/micromark/micromark/issues\",\n \"funding\": [\n {\n \"type\": \"GitHub Sponsors\",\n \"url\": \"https://github.com/sponsors/unifiedjs\"\n },\n {\n \"type\": \"OpenCollective\",\n \"url\": \"https://opencollective.com/unified\"\n }\n ],\n \"author\": \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\",\n \"contributors\": [\n \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\"\n ],\n \"sideEffects\": false,\n \"type\": \"module\",\n \"files\": [\n \"dev/\",\n \"index.d.ts.map\",\n \"index.d.ts\",\n \"index.js\"\n ],\n \"exports\": {\n \"development\": \"./dev/index.js\",\n \"default\": \"./index.js\"\n },\n \"dependencies\": {\n \"micromark-util-character\": \"^2.0.0\",\n \"micromark-util-encode\": \"^2.0.0\",\n \"micromark-util-symbol\": \"^2.0.0\"\n },\n \"scripts\": {\n \"build\": \"micromark-build\"\n },\n \"xo\": {\n \"envs\": [\n \"shared-node-browser\"\n ],\n \"prettier\": true,\n \"rules\": {\n \"unicorn/prefer-code-point\": \"off\"\n }\n }\n}\n",
|
|
13481
|
+
"node_modules/micromark-util-subtokenize/dev/index.d.ts": "/**\n * Tokenize subcontent.\n *\n * @param {Array<Event>} eventsArray\n * List of events.\n * @returns {boolean}\n * Whether subtokens were found.\n */\nexport function subtokenize(eventsArray: Array<Event>): boolean;\nexport { SpliceBuffer } from \"./lib/splice-buffer.js\";\nimport type { Event } from 'micromark-util-types';\n//# sourceMappingURL=index.d.ts.map",
|
|
13482
|
+
"node_modules/micromark-util-subtokenize/dev/lib/splice-buffer.d.ts": "/**\n * Some of the internal operations of micromark do lots of editing\n * operations on very large arrays. This runs into problems with two\n * properties of most circa-2020 JavaScript interpreters:\n *\n * - Array-length modifications at the high end of an array (push/pop) are\n * expected to be common and are implemented in (amortized) time\n * proportional to the number of elements added or removed, whereas\n * other operations (shift/unshift and splice) are much less efficient.\n * - Function arguments are passed on the stack, so adding tens of thousands\n * of elements to an array with `arr.push(...newElements)` will frequently\n * cause stack overflows. (see <https://stackoverflow.com/questions/22123769/rangeerror-maximum-call-stack-size-exceeded-why>)\n *\n * SpliceBuffers are an implementation of gap buffers, which are a\n * generalization of the \"queue made of two stacks\" idea. The splice buffer\n * maintains a cursor, and moving the cursor has cost proportional to the\n * distance the cursor moves, but inserting, deleting, or splicing in\n * new information at the cursor is as efficient as the push/pop operation.\n * This allows for an efficient sequence of splices (or pushes, pops, shifts,\n * or unshifts) as long such edits happen at the same part of the array or\n * generally sweep through the array from the beginning to the end.\n *\n * The interface for splice buffers also supports large numbers of inputs by\n * passing a single array argument rather passing multiple arguments on the\n * function call stack.\n *\n * @template T\n * Item type.\n */\nexport class SpliceBuffer<T> {\n /**\n * @param {ReadonlyArray<T> | null | undefined} [initial]\n * Initial items (optional).\n * @returns\n * Splice buffer.\n */\n constructor(initial?: ReadonlyArray<T> | null | undefined);\n /** @type {Array<T>} */\n left: Array<T>;\n /** @type {Array<T>} */\n right: Array<T>;\n /**\n * Array access;\n * does not move the cursor.\n *\n * @param {number} index\n * Index.\n * @return {T}\n * Item.\n */\n get(index: number): T;\n /**\n * The length of the splice buffer, one greater than the largest index in the\n * array.\n */\n get length(): number;\n /**\n * Remove and return `list[0]`;\n * moves the cursor to `0`.\n *\n * @returns {T | undefined}\n * Item, optional.\n */\n shift(): T | undefined;\n /**\n * Slice the buffer to get an array;\n * does not move the cursor.\n *\n * @param {number} start\n * Start.\n * @param {number | null | undefined} [end]\n * End (optional).\n * @returns {Array<T>}\n * Array of items.\n */\n slice(start: number, end?: number | null | undefined): Array<T>;\n /**\n * Mimics the behavior of Array.prototype.splice() except for the change of\n * interface necessary to avoid segfaults when patching in very large arrays.\n *\n * This operation moves cursor is moved to `start` and results in the cursor\n * placed after any inserted items.\n *\n * @param {number} start\n * Start;\n * zero-based index at which to start changing the array;\n * negative numbers count backwards from the end of the array and values\n * that are out-of bounds are clamped to the appropriate end of the array.\n * @param {number | null | undefined} [deleteCount=0]\n * Delete count (default: `0`);\n * maximum number of elements to delete, starting from start.\n * @param {Array<T> | null | undefined} [items=[]]\n * Items to include in place of the deleted items (default: `[]`).\n * @return {Array<T>}\n * Any removed items.\n */\n splice(start: number, deleteCount?: number | null | undefined, items?: Array<T> | null | undefined): Array<T>;\n /**\n * Remove and return the highest-numbered item in the array, so\n * `list[list.length - 1]`;\n * Moves the cursor to `length`.\n *\n * @returns {T | undefined}\n * Item, optional.\n */\n pop(): T | undefined;\n /**\n * Inserts a single item to the high-numbered side of the array;\n * moves the cursor to `length`.\n *\n * @param {T} item\n * Item.\n * @returns {undefined}\n * Nothing.\n */\n push(item: T): undefined;\n /**\n * Inserts many items to the high-numbered side of the array.\n * Moves the cursor to `length`.\n *\n * @param {Array<T>} items\n * Items.\n * @returns {undefined}\n * Nothing.\n */\n pushMany(items: Array<T>): undefined;\n /**\n * Inserts a single item to the low-numbered side of the array;\n * Moves the cursor to `0`.\n *\n * @param {T} item\n * Item.\n * @returns {undefined}\n * Nothing.\n */\n unshift(item: T): undefined;\n /**\n * Inserts many items to the low-numbered side of the array;\n * moves the cursor to `0`.\n *\n * @param {Array<T>} items\n * Items.\n * @returns {undefined}\n * Nothing.\n */\n unshiftMany(items: Array<T>): undefined;\n /**\n * Move the cursor to a specific position in the array. Requires\n * time proportional to the distance moved.\n *\n * If `n < 0`, the cursor will end up at the beginning.\n * If `n > length`, the cursor will end up at the end.\n *\n * @param {number} n\n * Position.\n * @return {undefined}\n * Nothing.\n */\n setCursor(n: number): undefined;\n}\n//# sourceMappingURL=splice-buffer.d.ts.map",
|
|
13483
|
+
"node_modules/micromark-util-subtokenize/index.d.ts": "/**\n * Tokenize subcontent.\n *\n * @param {Array<Event>} eventsArray\n * List of events.\n * @returns {boolean}\n * Whether subtokens were found.\n */\nexport function subtokenize(eventsArray: Array<Event>): boolean;\nexport { SpliceBuffer } from \"./lib/splice-buffer.js\";\nimport type { Event } from 'micromark-util-types';\n//# sourceMappingURL=index.d.ts.map",
|
|
13484
|
+
"node_modules/micromark-util-subtokenize/lib/splice-buffer.d.ts": "/**\n * Some of the internal operations of micromark do lots of editing\n * operations on very large arrays. This runs into problems with two\n * properties of most circa-2020 JavaScript interpreters:\n *\n * - Array-length modifications at the high end of an array (push/pop) are\n * expected to be common and are implemented in (amortized) time\n * proportional to the number of elements added or removed, whereas\n * other operations (shift/unshift and splice) are much less efficient.\n * - Function arguments are passed on the stack, so adding tens of thousands\n * of elements to an array with `arr.push(...newElements)` will frequently\n * cause stack overflows. (see <https://stackoverflow.com/questions/22123769/rangeerror-maximum-call-stack-size-exceeded-why>)\n *\n * SpliceBuffers are an implementation of gap buffers, which are a\n * generalization of the \"queue made of two stacks\" idea. The splice buffer\n * maintains a cursor, and moving the cursor has cost proportional to the\n * distance the cursor moves, but inserting, deleting, or splicing in\n * new information at the cursor is as efficient as the push/pop operation.\n * This allows for an efficient sequence of splices (or pushes, pops, shifts,\n * or unshifts) as long such edits happen at the same part of the array or\n * generally sweep through the array from the beginning to the end.\n *\n * The interface for splice buffers also supports large numbers of inputs by\n * passing a single array argument rather passing multiple arguments on the\n * function call stack.\n *\n * @template T\n * Item type.\n */\nexport class SpliceBuffer<T> {\n /**\n * @param {ReadonlyArray<T> | null | undefined} [initial]\n * Initial items (optional).\n * @returns\n * Splice buffer.\n */\n constructor(initial?: ReadonlyArray<T> | null | undefined);\n /** @type {Array<T>} */\n left: Array<T>;\n /** @type {Array<T>} */\n right: Array<T>;\n /**\n * Array access;\n * does not move the cursor.\n *\n * @param {number} index\n * Index.\n * @return {T}\n * Item.\n */\n get(index: number): T;\n /**\n * The length of the splice buffer, one greater than the largest index in the\n * array.\n */\n get length(): number;\n /**\n * Remove and return `list[0]`;\n * moves the cursor to `0`.\n *\n * @returns {T | undefined}\n * Item, optional.\n */\n shift(): T | undefined;\n /**\n * Slice the buffer to get an array;\n * does not move the cursor.\n *\n * @param {number} start\n * Start.\n * @param {number | null | undefined} [end]\n * End (optional).\n * @returns {Array<T>}\n * Array of items.\n */\n slice(start: number, end?: number | null | undefined): Array<T>;\n /**\n * Mimics the behavior of Array.prototype.splice() except for the change of\n * interface necessary to avoid segfaults when patching in very large arrays.\n *\n * This operation moves cursor is moved to `start` and results in the cursor\n * placed after any inserted items.\n *\n * @param {number} start\n * Start;\n * zero-based index at which to start changing the array;\n * negative numbers count backwards from the end of the array and values\n * that are out-of bounds are clamped to the appropriate end of the array.\n * @param {number | null | undefined} [deleteCount=0]\n * Delete count (default: `0`);\n * maximum number of elements to delete, starting from start.\n * @param {Array<T> | null | undefined} [items=[]]\n * Items to include in place of the deleted items (default: `[]`).\n * @return {Array<T>}\n * Any removed items.\n */\n splice(start: number, deleteCount?: number | null | undefined, items?: Array<T> | null | undefined): Array<T>;\n /**\n * Remove and return the highest-numbered item in the array, so\n * `list[list.length - 1]`;\n * Moves the cursor to `length`.\n *\n * @returns {T | undefined}\n * Item, optional.\n */\n pop(): T | undefined;\n /**\n * Inserts a single item to the high-numbered side of the array;\n * moves the cursor to `length`.\n *\n * @param {T} item\n * Item.\n * @returns {undefined}\n * Nothing.\n */\n push(item: T): undefined;\n /**\n * Inserts many items to the high-numbered side of the array.\n * Moves the cursor to `length`.\n *\n * @param {Array<T>} items\n * Items.\n * @returns {undefined}\n * Nothing.\n */\n pushMany(items: Array<T>): undefined;\n /**\n * Inserts a single item to the low-numbered side of the array;\n * Moves the cursor to `0`.\n *\n * @param {T} item\n * Item.\n * @returns {undefined}\n * Nothing.\n */\n unshift(item: T): undefined;\n /**\n * Inserts many items to the low-numbered side of the array;\n * moves the cursor to `0`.\n *\n * @param {Array<T>} items\n * Items.\n * @returns {undefined}\n * Nothing.\n */\n unshiftMany(items: Array<T>): undefined;\n /**\n * Move the cursor to a specific position in the array. Requires\n * time proportional to the distance moved.\n *\n * If `n < 0`, the cursor will end up at the beginning.\n * If `n > length`, the cursor will end up at the end.\n *\n * @param {number} n\n * Position.\n * @return {undefined}\n * Nothing.\n */\n setCursor(n: number): undefined;\n}\n//# sourceMappingURL=splice-buffer.d.ts.map",
|
|
13485
|
+
"node_modules/micromark-util-subtokenize/package.json": "{\n \"name\": \"micromark-util-subtokenize\",\n \"version\": \"2.1.0\",\n \"description\": \"micromark utility to tokenize subtokens\",\n \"license\": \"MIT\",\n \"keywords\": [\n \"micromark\",\n \"util\",\n \"utility\",\n \"tokenize\"\n ],\n \"repository\": \"https://github.com/micromark/micromark/tree/main/packages/micromark-util-subtokenize\",\n \"bugs\": \"https://github.com/micromark/micromark/issues\",\n \"funding\": [\n {\n \"type\": \"GitHub Sponsors\",\n \"url\": \"https://github.com/sponsors/unifiedjs\"\n },\n {\n \"type\": \"OpenCollective\",\n \"url\": \"https://opencollective.com/unified\"\n }\n ],\n \"author\": \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\",\n \"contributors\": [\n \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\"\n ],\n \"sideEffects\": false,\n \"type\": \"module\",\n \"files\": [\n \"dev/\",\n \"lib/\",\n \"index.d.ts.map\",\n \"index.d.ts\",\n \"index.js\"\n ],\n \"exports\": {\n \"development\": \"./dev/index.js\",\n \"default\": \"./index.js\"\n },\n \"dependencies\": {\n \"devlop\": \"^1.0.0\",\n \"micromark-util-chunked\": \"^2.0.0\",\n \"micromark-util-symbol\": \"^2.0.0\",\n \"micromark-util-types\": \"^2.0.0\"\n },\n \"scripts\": {\n \"build\": \"micromark-build\"\n },\n \"xo\": {\n \"envs\": [\n \"shared-node-browser\"\n ],\n \"prettier\": true,\n \"rules\": {\n \"max-depth\": \"off\",\n \"unicorn/prefer-code-point\": \"off\"\n }\n }\n}\n",
|
|
13486
|
+
"node_modules/micromark-util-symbol/lib/codes.d.ts": "export namespace codes {\n let carriageReturn: -5;\n let lineFeed: -4;\n let carriageReturnLineFeed: -3;\n let horizontalTab: -2;\n let virtualSpace: -1;\n let eof: null;\n let nul: 0;\n let soh: 1;\n let stx: 2;\n let etx: 3;\n let eot: 4;\n let enq: 5;\n let ack: 6;\n let bel: 7;\n let bs: 8;\n let ht: 9;\n let lf: 10;\n let vt: 11;\n let ff: 12;\n let cr: 13;\n let so: 14;\n let si: 15;\n let dle: 16;\n let dc1: 17;\n let dc2: 18;\n let dc3: 19;\n let dc4: 20;\n let nak: 21;\n let syn: 22;\n let etb: 23;\n let can: 24;\n let em: 25;\n let sub: 26;\n let esc: 27;\n let fs: 28;\n let gs: 29;\n let rs: 30;\n let us: 31;\n let space: 32;\n let exclamationMark: 33;\n let quotationMark: 34;\n let numberSign: 35;\n let dollarSign: 36;\n let percentSign: 37;\n let ampersand: 38;\n let apostrophe: 39;\n let leftParenthesis: 40;\n let rightParenthesis: 41;\n let asterisk: 42;\n let plusSign: 43;\n let comma: 44;\n let dash: 45;\n let dot: 46;\n let slash: 47;\n let digit0: 48;\n let digit1: 49;\n let digit2: 50;\n let digit3: 51;\n let digit4: 52;\n let digit5: 53;\n let digit6: 54;\n let digit7: 55;\n let digit8: 56;\n let digit9: 57;\n let colon: 58;\n let semicolon: 59;\n let lessThan: 60;\n let equalsTo: 61;\n let greaterThan: 62;\n let questionMark: 63;\n let atSign: 64;\n let uppercaseA: 65;\n let uppercaseB: 66;\n let uppercaseC: 67;\n let uppercaseD: 68;\n let uppercaseE: 69;\n let uppercaseF: 70;\n let uppercaseG: 71;\n let uppercaseH: 72;\n let uppercaseI: 73;\n let uppercaseJ: 74;\n let uppercaseK: 75;\n let uppercaseL: 76;\n let uppercaseM: 77;\n let uppercaseN: 78;\n let uppercaseO: 79;\n let uppercaseP: 80;\n let uppercaseQ: 81;\n let uppercaseR: 82;\n let uppercaseS: 83;\n let uppercaseT: 84;\n let uppercaseU: 85;\n let uppercaseV: 86;\n let uppercaseW: 87;\n let uppercaseX: 88;\n let uppercaseY: 89;\n let uppercaseZ: 90;\n let leftSquareBracket: 91;\n let backslash: 92;\n let rightSquareBracket: 93;\n let caret: 94;\n let underscore: 95;\n let graveAccent: 96;\n let lowercaseA: 97;\n let lowercaseB: 98;\n let lowercaseC: 99;\n let lowercaseD: 100;\n let lowercaseE: 101;\n let lowercaseF: 102;\n let lowercaseG: 103;\n let lowercaseH: 104;\n let lowercaseI: 105;\n let lowercaseJ: 106;\n let lowercaseK: 107;\n let lowercaseL: 108;\n let lowercaseM: 109;\n let lowercaseN: 110;\n let lowercaseO: 111;\n let lowercaseP: 112;\n let lowercaseQ: 113;\n let lowercaseR: 114;\n let lowercaseS: 115;\n let lowercaseT: 116;\n let lowercaseU: 117;\n let lowercaseV: 118;\n let lowercaseW: 119;\n let lowercaseX: 120;\n let lowercaseY: 121;\n let lowercaseZ: 122;\n let leftCurlyBrace: 123;\n let verticalBar: 124;\n let rightCurlyBrace: 125;\n let tilde: 126;\n let del: 127;\n let byteOrderMarker: 65279;\n let replacementCharacter: 65533;\n}\n//# sourceMappingURL=codes.d.ts.map",
|
|
13487
|
+
"node_modules/micromark-util-symbol/lib/constants.d.ts": "export namespace constants {\n let attentionSideAfter: 2;\n let attentionSideBefore: 1;\n let atxHeadingOpeningFenceSizeMax: 6;\n let autolinkDomainSizeMax: 63;\n let autolinkSchemeSizeMax: 32;\n let cdataOpeningString: \"CDATA[\";\n let characterGroupPunctuation: 2;\n let characterGroupWhitespace: 1;\n let characterReferenceDecimalSizeMax: 7;\n let characterReferenceHexadecimalSizeMax: 6;\n let characterReferenceNamedSizeMax: 31;\n let codeFencedSequenceSizeMin: 3;\n let contentTypeContent: \"content\";\n let contentTypeDocument: \"document\";\n let contentTypeFlow: \"flow\";\n let contentTypeString: \"string\";\n let contentTypeText: \"text\";\n let hardBreakPrefixSizeMin: 2;\n let htmlBasic: 6;\n let htmlCdata: 5;\n let htmlComment: 2;\n let htmlComplete: 7;\n let htmlDeclaration: 4;\n let htmlInstruction: 3;\n let htmlRawSizeMax: 8;\n let htmlRaw: 1;\n let linkResourceDestinationBalanceMax: 32;\n let linkReferenceSizeMax: 999;\n let listItemValueSizeMax: 10;\n let numericBaseDecimal: 10;\n let numericBaseHexadecimal: 16;\n let tabSize: 4;\n let thematicBreakMarkerCountMin: 3;\n let v8MaxSafeChunkSize: 10000;\n}\n//# sourceMappingURL=constants.d.ts.map",
|
|
13488
|
+
"node_modules/micromark-util-symbol/lib/default.d.ts": "export { codes } from \"./codes.js\";\nexport { constants } from \"./constants.js\";\nexport { types } from \"./types.js\";\nexport { values } from \"./values.js\";\n//# sourceMappingURL=default.d.ts.map",
|
|
13489
|
+
"node_modules/micromark-util-symbol/lib/types.d.ts": "export namespace types {\n let data: \"data\";\n let whitespace: \"whitespace\";\n let lineEnding: \"lineEnding\";\n let lineEndingBlank: \"lineEndingBlank\";\n let linePrefix: \"linePrefix\";\n let lineSuffix: \"lineSuffix\";\n let atxHeading: \"atxHeading\";\n let atxHeadingSequence: \"atxHeadingSequence\";\n let atxHeadingText: \"atxHeadingText\";\n let autolink: \"autolink\";\n let autolinkEmail: \"autolinkEmail\";\n let autolinkMarker: \"autolinkMarker\";\n let autolinkProtocol: \"autolinkProtocol\";\n let characterEscape: \"characterEscape\";\n let characterEscapeValue: \"characterEscapeValue\";\n let characterReference: \"characterReference\";\n let characterReferenceMarker: \"characterReferenceMarker\";\n let characterReferenceMarkerNumeric: \"characterReferenceMarkerNumeric\";\n let characterReferenceMarkerHexadecimal: \"characterReferenceMarkerHexadecimal\";\n let characterReferenceValue: \"characterReferenceValue\";\n let codeFenced: \"codeFenced\";\n let codeFencedFence: \"codeFencedFence\";\n let codeFencedFenceSequence: \"codeFencedFenceSequence\";\n let codeFencedFenceInfo: \"codeFencedFenceInfo\";\n let codeFencedFenceMeta: \"codeFencedFenceMeta\";\n let codeFlowValue: \"codeFlowValue\";\n let codeIndented: \"codeIndented\";\n let codeText: \"codeText\";\n let codeTextData: \"codeTextData\";\n let codeTextPadding: \"codeTextPadding\";\n let codeTextSequence: \"codeTextSequence\";\n let content: \"content\";\n let definition: \"definition\";\n let definitionDestination: \"definitionDestination\";\n let definitionDestinationLiteral: \"definitionDestinationLiteral\";\n let definitionDestinationLiteralMarker: \"definitionDestinationLiteralMarker\";\n let definitionDestinationRaw: \"definitionDestinationRaw\";\n let definitionDestinationString: \"definitionDestinationString\";\n let definitionLabel: \"definitionLabel\";\n let definitionLabelMarker: \"definitionLabelMarker\";\n let definitionLabelString: \"definitionLabelString\";\n let definitionMarker: \"definitionMarker\";\n let definitionTitle: \"definitionTitle\";\n let definitionTitleMarker: \"definitionTitleMarker\";\n let definitionTitleString: \"definitionTitleString\";\n let emphasis: \"emphasis\";\n let emphasisSequence: \"emphasisSequence\";\n let emphasisText: \"emphasisText\";\n let escapeMarker: \"escapeMarker\";\n let hardBreakEscape: \"hardBreakEscape\";\n let hardBreakTrailing: \"hardBreakTrailing\";\n let htmlFlow: \"htmlFlow\";\n let htmlFlowData: \"htmlFlowData\";\n let htmlText: \"htmlText\";\n let htmlTextData: \"htmlTextData\";\n let image: \"image\";\n let label: \"label\";\n let labelText: \"labelText\";\n let labelLink: \"labelLink\";\n let labelImage: \"labelImage\";\n let labelMarker: \"labelMarker\";\n let labelImageMarker: \"labelImageMarker\";\n let labelEnd: \"labelEnd\";\n let link: \"link\";\n let paragraph: \"paragraph\";\n let reference: \"reference\";\n let referenceMarker: \"referenceMarker\";\n let referenceString: \"referenceString\";\n let resource: \"resource\";\n let resourceDestination: \"resourceDestination\";\n let resourceDestinationLiteral: \"resourceDestinationLiteral\";\n let resourceDestinationLiteralMarker: \"resourceDestinationLiteralMarker\";\n let resourceDestinationRaw: \"resourceDestinationRaw\";\n let resourceDestinationString: \"resourceDestinationString\";\n let resourceMarker: \"resourceMarker\";\n let resourceTitle: \"resourceTitle\";\n let resourceTitleMarker: \"resourceTitleMarker\";\n let resourceTitleString: \"resourceTitleString\";\n let setextHeading: \"setextHeading\";\n let setextHeadingText: \"setextHeadingText\";\n let setextHeadingLine: \"setextHeadingLine\";\n let setextHeadingLineSequence: \"setextHeadingLineSequence\";\n let strong: \"strong\";\n let strongSequence: \"strongSequence\";\n let strongText: \"strongText\";\n let thematicBreak: \"thematicBreak\";\n let thematicBreakSequence: \"thematicBreakSequence\";\n let blockQuote: \"blockQuote\";\n let blockQuotePrefix: \"blockQuotePrefix\";\n let blockQuoteMarker: \"blockQuoteMarker\";\n let blockQuotePrefixWhitespace: \"blockQuotePrefixWhitespace\";\n let listOrdered: \"listOrdered\";\n let listUnordered: \"listUnordered\";\n let listItemIndent: \"listItemIndent\";\n let listItemMarker: \"listItemMarker\";\n let listItemPrefix: \"listItemPrefix\";\n let listItemPrefixWhitespace: \"listItemPrefixWhitespace\";\n let listItemValue: \"listItemValue\";\n let chunkDocument: \"chunkDocument\";\n let chunkContent: \"chunkContent\";\n let chunkFlow: \"chunkFlow\";\n let chunkText: \"chunkText\";\n let chunkString: \"chunkString\";\n}\n//# sourceMappingURL=types.d.ts.map",
|
|
13490
|
+
"node_modules/micromark-util-symbol/lib/values.d.ts": "export namespace values {\n let ht: \"\\t\";\n let lf: \"\\n\";\n let cr: \"\\r\";\n let space: \" \";\n let exclamationMark: \"!\";\n let quotationMark: \"\\\"\";\n let numberSign: \"#\";\n let dollarSign: \"$\";\n let percentSign: \"%\";\n let ampersand: \"&\";\n let apostrophe: \"'\";\n let leftParenthesis: \"(\";\n let rightParenthesis: \")\";\n let asterisk: \"*\";\n let plusSign: \"+\";\n let comma: \",\";\n let dash: \"-\";\n let dot: \".\";\n let slash: \"/\";\n let digit0: \"0\";\n let digit1: \"1\";\n let digit2: \"2\";\n let digit3: \"3\";\n let digit4: \"4\";\n let digit5: \"5\";\n let digit6: \"6\";\n let digit7: \"7\";\n let digit8: \"8\";\n let digit9: \"9\";\n let colon: \":\";\n let semicolon: \";\";\n let lessThan: \"<\";\n let equalsTo: \"=\";\n let greaterThan: \">\";\n let questionMark: \"?\";\n let atSign: \"@\";\n let uppercaseA: \"A\";\n let uppercaseB: \"B\";\n let uppercaseC: \"C\";\n let uppercaseD: \"D\";\n let uppercaseE: \"E\";\n let uppercaseF: \"F\";\n let uppercaseG: \"G\";\n let uppercaseH: \"H\";\n let uppercaseI: \"I\";\n let uppercaseJ: \"J\";\n let uppercaseK: \"K\";\n let uppercaseL: \"L\";\n let uppercaseM: \"M\";\n let uppercaseN: \"N\";\n let uppercaseO: \"O\";\n let uppercaseP: \"P\";\n let uppercaseQ: \"Q\";\n let uppercaseR: \"R\";\n let uppercaseS: \"S\";\n let uppercaseT: \"T\";\n let uppercaseU: \"U\";\n let uppercaseV: \"V\";\n let uppercaseW: \"W\";\n let uppercaseX: \"X\";\n let uppercaseY: \"Y\";\n let uppercaseZ: \"Z\";\n let leftSquareBracket: \"[\";\n let backslash: \"\\\\\";\n let rightSquareBracket: \"]\";\n let caret: \"^\";\n let underscore: \"_\";\n let graveAccent: \"`\";\n let lowercaseA: \"a\";\n let lowercaseB: \"b\";\n let lowercaseC: \"c\";\n let lowercaseD: \"d\";\n let lowercaseE: \"e\";\n let lowercaseF: \"f\";\n let lowercaseG: \"g\";\n let lowercaseH: \"h\";\n let lowercaseI: \"i\";\n let lowercaseJ: \"j\";\n let lowercaseK: \"k\";\n let lowercaseL: \"l\";\n let lowercaseM: \"m\";\n let lowercaseN: \"n\";\n let lowercaseO: \"o\";\n let lowercaseP: \"p\";\n let lowercaseQ: \"q\";\n let lowercaseR: \"r\";\n let lowercaseS: \"s\";\n let lowercaseT: \"t\";\n let lowercaseU: \"u\";\n let lowercaseV: \"v\";\n let lowercaseW: \"w\";\n let lowercaseX: \"x\";\n let lowercaseY: \"y\";\n let lowercaseZ: \"z\";\n let leftCurlyBrace: \"{\";\n let verticalBar: \"|\";\n let rightCurlyBrace: \"}\";\n let tilde: \"~\";\n let replacementCharacter: \"�\";\n}\n//# sourceMappingURL=values.d.ts.map",
|
|
13491
|
+
"node_modules/micromark-util-symbol/package.json": "{\n \"name\": \"micromark-util-symbol\",\n \"version\": \"2.0.1\",\n \"description\": \"micromark utility with symbols\",\n \"license\": \"MIT\",\n \"keywords\": [\n \"micromark\",\n \"util\",\n \"utility\",\n \"symbol\"\n ],\n \"repository\": \"https://github.com/micromark/micromark/tree/main/packages/micromark-util-symbol\",\n \"bugs\": \"https://github.com/micromark/micromark/issues\",\n \"funding\": [\n {\n \"type\": \"GitHub Sponsors\",\n \"url\": \"https://github.com/sponsors/unifiedjs\"\n },\n {\n \"type\": \"OpenCollective\",\n \"url\": \"https://opencollective.com/unified\"\n }\n ],\n \"author\": \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\",\n \"contributors\": [\n \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\"\n ],\n \"sideEffects\": false,\n \"type\": \"module\",\n \"files\": [\n \"lib/\"\n ],\n \"exports\": \"./lib/default.js\",\n \"xo\": {\n \"envs\": [\n \"shared-node-browser\"\n ],\n \"prettier\": true,\n \"rules\": {\n \"unicorn/prefer-code-point\": \"off\"\n }\n }\n}\n",
|
|
13492
|
+
"node_modules/micromark-util-types/index.d.ts": "// Note: this file is authored manually, not generated from `index.js`.\n\n/**\n * A character code.\n *\n * This is often the same as what `String#charCodeAt()` yields but micromark\n * adds meaning to certain other values.\n *\n * `null` represents the end of the input stream (called eof).\n * Negative integers are used instead of certain sequences of characters (such\n * as line endings and tabs).\n */\nexport type Code = number | null\n\n/**\n * A chunk is either a character code or a slice of a buffer in the form of a\n * string.\n *\n * Chunks are used because strings are more efficient storage that character\n * codes, but limited in what they can represent.\n */\nexport type Chunk = Code | string\n\n/**\n * Enumeration of the content types.\n *\n * Technically `document` is also a content type, which includes containers\n * (lists, block quotes) and flow.\n * As `ContentType` is used on tokens to define the type of subcontent but\n * `document` is the highest level of content, so it’s not listed here.\n *\n * Containers in markdown come from the margin and include more constructs\n * on the lines that define them.\n * Take for example a block quote with a paragraph inside it (such as\n * `> asd`).\n *\n * `flow` represents the sections, such as headings, code, and content, which\n * is also parsed per line\n * An example is HTML, which has a certain starting condition (such as\n * `<script>` on its own line), then continues for a while, until an end\n * condition is found (such as `</style>`).\n * If that line with an end condition is never found, that flow goes until\n * the end.\n *\n * `content` is zero or more definitions, and then zero or one paragraph.\n * It’s a weird one, and needed to make certain edge cases around definitions\n * spec compliant.\n * Definitions are unlike other things in markdown, in that they behave like\n * `text` in that they can contain arbitrary line endings, but *have* to end\n * at a line ending.\n * If they end in something else, the whole definition instead is seen as a\n * paragraph.\n *\n * The content in markdown first needs to be parsed up to this level to\n * figure out which things are defined, for the whole document, before\n * continuing on with `text`, as whether a link or image reference forms or\n * not depends on whether it’s defined.\n * This unfortunately prevents a true streaming markdown to HTML compiler.\n *\n * `text` contains phrasing content such as attention (emphasis, strong),\n * media (links, images), and actual text.\n *\n * `string` is a limited `text` like content type which only allows character\n * references and character escapes.\n * It exists in things such as identifiers (media references, definitions),\n * titles, or URLs.\n */\nexport type ContentType = 'content' | 'document' | 'flow' | 'string' | 'text'\n\n/**\n * A location in the document (`line`/`column`/`offset`) and chunk (`_index`,\n * `_bufferIndex`).\n *\n * `_bufferIndex` is `-1` when `_index` points to a code chunk and it’s a\n * non-negative integer when pointing to a string chunk.\n *\n * The interface for the location in the document comes from unist `Point`:\n * <https://github.com/syntax-tree/unist#point>\n */\nexport interface Point {\n /**\n * Position in a string chunk (or `-1` when pointing to a numeric chunk).\n */\n _bufferIndex: number\n\n /**\n * Position in a list of chunks.\n */\n _index: number\n\n /**\n * 1-indexed column number.\n */\n column: number\n\n /**\n * 1-indexed line number.\n */\n line: number\n\n /**\n * 0-indexed position in the document.\n */\n offset: number\n}\n\n/**\n * A token: a span of chunks.\n *\n * Tokens are what the core of micromark produces: the built in HTML compiler\n * or other tools can turn them into different things.\n *\n * Tokens are essentially names attached to a slice of chunks, such as\n * `lineEndingBlank` for certain line endings, or `codeFenced` for a whole\n * fenced code.\n *\n * Sometimes, more info is attached to tokens, such as `_open` and `_close`\n * by `attention` (strong, emphasis) to signal whether the sequence can open\n * or close an attention run.\n *\n * Linked tokens are used because outer constructs are parsed first.\n * Take for example:\n *\n * ```markdown\n * > *a\n * b*.\n * ```\n *\n * 1. The block quote marker and the space after it is parsed first\n * 2. The rest of the line is a `chunkFlow` token\n * 3. The two spaces on the second line are a `linePrefix`\n * 4. The rest of the line is another `chunkFlow` token\n *\n * The two `chunkFlow` tokens are linked together.\n * The chunks they span are then passed through the flow tokenizer.\n */\nexport interface Token {\n /**\n * Token type.\n */\n type: TokenType\n\n /**\n * Point where the token starts.\n */\n start: Point\n\n /**\n * Point where the token ends.\n */\n end: Point\n\n /**\n * The previous token in a list of linked tokens.\n */\n previous?: Token | undefined\n\n /**\n * The next token in a list of linked tokens.\n */\n next?: Token | undefined\n\n /**\n * Declares a token as having content of a certain type.\n */\n contentType?: ContentType | undefined\n\n /**\n * Declares that trailing whitespace is sensitive,\n * is allowed,\n * when `contentType` is `text` (or `string`).\n * Normally,\n * trailing spaces and tabs are dropped.\n */\n _contentTypeTextTrailing?: boolean | undefined\n\n /**\n * Connected tokenizer.\n *\n * Used when dealing with linked tokens.\n * A child tokenizer is needed to tokenize them, which is stored on those\n * tokens.\n */\n _tokenizer?: TokenizeContext | undefined\n\n /**\n * Field to help parse attention.\n *\n * Depending on the character before sequences (`**`), the sequence can open,\n * close, both, or none.\n */\n _open?: boolean | undefined\n\n /**\n * Field to help parse attention.\n *\n * Depending on the character before sequences (`**`), the sequence can open,\n * close, both, or none.\n */\n _close?: boolean | undefined\n\n /**\n * Field to help parse GFM task lists.\n *\n * This boolean is used internally to figure out if a token is in the first\n * content of a list item construct.\n */\n _isInFirstContentOfListItem?: boolean | undefined\n\n /**\n * Field to help parse containers.\n *\n * This boolean is used internally to figure out if a token is a container\n * token.\n */\n _container?: boolean | undefined\n\n /**\n * Field to help parse lists.\n *\n * This boolean is used internally to figure out if a list is loose or not.\n */\n _loose?: boolean | undefined\n\n /**\n * Field to help parse links.\n *\n * This boolean is used internally to figure out if a link opening\n * can’t be used (because links in links are incorrect).\n */\n _inactive?: boolean | undefined\n\n /**\n * Field to help parse links.\n *\n * This boolean is used internally to figure out if a link opening is\n * balanced: it’s not a link opening but has a balanced closing.\n */\n _balanced?: boolean | undefined\n}\n\n/**\n * The start or end of a token amongst other events.\n *\n * Tokens can “contain” other tokens, even though they are stored in a flat\n * list, through `enter`ing before them, and `exit`ing after them.\n */\nexport type Event = ['enter' | 'exit', Token, TokenizeContext]\n\n/**\n * Open a token.\n *\n * @param type\n * Token type.\n * @param fields\n * Extra fields.\n * @returns {Token}\n * Token.\n */\nexport type Enter = (\n type: TokenType,\n fields?: Omit<Partial<Token>, 'type'> | undefined\n) => Token\n\n/**\n * Close a token.\n *\n * @param type\n * Token type.\n * @returns\n * Token.\n */\nexport type Exit = (type: TokenType) => Token\n\n/**\n * Deal with the character and move to the next.\n *\n * @param code\n * Current code.\n */\nexport type Consume = (code: Code) => undefined\n\n/**\n * Attempt deals with several values, and tries to parse according to those\n * values.\n *\n * If a value resulted in `ok`, it worked, the tokens that were made are used,\n * and `ok` is switched to.\n * If the result is `nok`, the attempt failed, so we revert to the original\n * state, and `nok` is used.\n *\n * @param construct\n * Construct(s) to try.\n * @param ok\n * State to move to when successful.\n * @param nok\n * State to move to when unsuccessful.\n * @returns\n * Next state.\n */\nexport type Attempt = (\n construct: Array<Construct> | ConstructRecord | Construct,\n ok: State,\n nok?: State | undefined\n) => State\n\n/**\n * A context object to transition the state machine.\n */\nexport interface Effects {\n /**\n * Try to tokenize a construct.\n */\n attempt: Attempt\n\n /**\n * Attempt, then revert.\n */\n check: Attempt\n\n /**\n * Deal with the character and move to the next.\n */\n consume: Consume\n\n /**\n * Start a new token.\n */\n enter: Enter\n\n /**\n * End a started token.\n */\n exit: Exit\n\n /**\n * Interrupt is used for stuff right after a line of content.\n */\n interrupt: Attempt\n}\n\n/**\n * The main unit in the state machine: a function that gets a character code\n * and has certain effects.\n *\n * A state function should return another function: the next\n * state-as-a-function to go to.\n *\n * But there is one case where they return `undefined`: for the eof character\n * code (at the end of a value).\n * The reason being: well, there isn’t any state that makes sense, so\n * `undefined` works well.\n * Practically that has also helped: if for some reason it was a mistake, then\n * an exception is throw because there is no next function, meaning it\n * surfaces early.\n *\n * @param code\n * Current code.\n * @returns\n * Next state.\n */\nexport type State = (code: Code) => State | undefined\n\n/**\n * A resolver handles and cleans events coming from `tokenize`.\n *\n * @param events\n * List of events.\n * @param context\n * Tokenize context.\n * @returns\n * The given, modified, events.\n */\nexport type Resolver = (\n events: Array<Event>,\n context: TokenizeContext\n) => Array<Event>\n\n/**\n * A tokenize function sets up a state machine to handle character codes streaming in.\n *\n * @param this\n * Tokenize context.\n * @param effects\n * Effects.\n * @param ok\n * State to go to when successful.\n * @param nok\n * State to go to when unsuccessful.\n * @returns\n * First state.\n */\nexport type Tokenizer = (\n this: TokenizeContext,\n effects: Effects,\n ok: State,\n nok: State\n) => State\n\n/**\n * Like a tokenizer, but without `ok` or `nok`.\n *\n * @param this\n * Tokenize context.\n * @param effects\n * Effects.\n * @returns\n * First state.\n */\nexport type Initializer = (this: TokenizeContext, effects: Effects) => State\n\n/**\n * Like a tokenizer, but without `ok` or `nok`, and returning `undefined`.\n *\n * This is the final hook when a container must be closed.\n *\n * @param this\n * Tokenize context.\n * @param effects\n * Effects.\n * @returns\n * Nothing.\n */\nexport type Exiter = (this: TokenizeContext, effects: Effects) => undefined\n\n/**\n * Guard whether `code` can come before the construct.\n *\n * In certain cases a construct can hook into many potential start characters.\n * Instead of setting up an attempt to parse that construct for most\n * characters, this is a speedy way to reduce that.\n *\n * @param this\n * Tokenize context.\n * @param code\n * Previous code.\n * @returns\n * Whether `code` is allowed before.\n */\nexport type Previous = (this: TokenizeContext, code: Code) => boolean\n\n/**\n * An object describing how to parse a markdown construct.\n */\nexport interface Construct {\n /**\n * Whether the construct, when in a `ConstructRecord`, precedes over existing\n * constructs for the same character code when merged.\n *\n * The default is that new constructs precede over existing ones.\n */\n add?: 'after' | 'before' | undefined\n\n /**\n * Concrete constructs cannot be interrupted by more containers.\n *\n * For example, when parsing the document (containers, such as block quotes\n * and lists) and this construct is parsing fenced code:\n *\n * ````markdown\n * > ```js\n * > - list?\n * ````\n *\n * …then `- list?` cannot form if this fenced code construct is concrete.\n *\n * An example of a construct that is not concrete is a GFM table:\n *\n * ````markdown\n * | a |\n * | - |\n * > | b |\n * ````\n *\n * …`b` is not part of the table.\n */\n concrete?: boolean | undefined\n\n /**\n * For containers, a continuation construct.\n */\n continuation?: Construct | undefined\n\n /**\n * For containers, a final hook.\n */\n exit?: Exiter | undefined\n\n /**\n * Name of the construct, used to toggle constructs off.\n *\n * Named constructs must not be `partial`.\n */\n name?: string | undefined\n\n /**\n * Whether this construct represents a partial construct.\n *\n * Partial constructs must not have a `name`.\n */\n partial?: boolean | undefined\n\n /**\n * Guard whether the previous character can come before the construct.\n */\n previous?: Previous | undefined\n\n /**\n * Resolve all events when the content is complete, from the start to the end.\n * Only used if `tokenize` is successful once in the content.\n *\n * For example, if we’re currently parsing a link title and this construct\n * parses character references, then `resolveAll` is called *if* at least one\n * character reference is found, ranging from the start to the end of the link\n * title to the end.\n */\n resolveAll?: Resolver | undefined\n\n /**\n * Resolve the events from the start of the content (which includes other\n * constructs) to the last one parsed by `tokenize`.\n *\n * For example, if we’re currently parsing a link title and this construct\n * parses character references, then `resolveTo` is called with the events\n * ranging from the start of the link title to the end of a character\n * reference each time one is found.\n */\n resolveTo?: Resolver | undefined\n\n /**\n * Resolve the events parsed by `tokenize`.\n *\n * For example, if we’re currently parsing a link title and this construct\n * parses character references, then `resolve` is called with the events\n * ranging from the start to the end of a character reference each time one is\n * found.\n */\n resolve?: Resolver | undefined\n\n /**\n * Set up a state machine to handle character codes streaming in.\n */\n tokenize: Tokenizer\n}\n\n/**\n * Like a construct, but `tokenize` does not accept `ok` or `nok`.\n */\nexport interface InitialConstruct extends Omit<Construct, 'tokenize'> {\n tokenize: Initializer\n}\n\n/**\n * Several constructs, mapped from their initial codes.\n */\nexport type ConstructRecord = Record<\n string,\n Array<Construct> | Construct | undefined\n>\n\n/**\n * State shared between container calls.\n */\nexport interface ContainerState {\n /**\n * Special field to close the current flow (or containers).\n */\n _closeFlow?: boolean | undefined\n\n /**\n * Whether there are further blank lines, used by lists.\n */\n furtherBlankLines?: boolean | undefined\n\n /**\n * Whether there first line is blank, used by lists.\n */\n initialBlankLine?: boolean | undefined\n\n /**\n * Current marker, used by lists.\n */\n marker?: Code | undefined\n\n /**\n * Used by block quotes.\n */\n open?: boolean | undefined\n\n /**\n * Current size, used by lists.\n */\n size?: number | undefined\n\n /**\n * Current token type, used by lists.\n */\n type?: TokenType | undefined\n}\n\n/**\n * A context object that helps w/ tokenizing markdown constructs.\n */\nexport interface TokenizeContext {\n // To do: next major: remove `_gfmTableDynamicInterruptHack` (no longer\n // needed in micromark-extension-gfm-table@1.0.6).\n /**\n * Internal boolean shared with `micromark-extension-gfm-table` whose body\n * rows are not affected by normal interruption rules.\n * “Normal” rules are, for example, that an empty list item can’t interrupt:\n *\n * ````markdown\n * a\n * *\n * ````\n *\n * The above is one paragraph.\n * These rules don’t apply to table body rows:\n *\n * ````markdown\n * | a |\n * | - |\n * *\n * ````\n *\n * The above list interrupts the table.\n */\n _gfmTableDynamicInterruptHack?: boolean\n\n /**\n * Internal boolean shared with `micromark-extension-gfm-task-list-item` to\n * signal whether the tokenizer is tokenizing the first content of a list item\n * construct.\n */\n _gfmTasklistFirstContentOfListItem?: boolean | undefined\n\n /**\n * Declares that trailing whitespace is sensitive,\n * is allowed,\n * when tokenizing `text` (or `string`).\n * Normally,\n * trailing spaces and tabs are dropped.\n */\n _contentTypeTextTrailing?: boolean | undefined\n\n /**\n * Current code.\n */\n code: Code\n\n /**\n * Share state set when parsing containers.\n *\n * Containers are parsed in separate phases: their first line (`tokenize`),\n * continued lines (`continuation.tokenize`), and finally `exit`.\n * This record can be used to store some information between these hooks.\n */\n containerState?: ContainerState | undefined\n\n /**\n * The current construct.\n *\n * Constructs that are not `partial` are set here.\n */\n currentConstruct?: Construct | undefined\n\n /**\n * Current list of events.\n */\n events: Array<Event>\n\n /**\n * Whether we’re currently interrupting.\n *\n * Take for example:\n *\n * ```markdown\n * a\n * # b\n * ```\n *\n * At 2:1, we’re “interrupting”.\n */\n interrupt?: boolean | undefined\n\n /**\n * The relevant parsing context.\n */\n parser: ParseContext\n\n /**\n * The previous code.\n */\n previous: Code\n\n /**\n * Define a skip\n *\n * As containers (block quotes, lists), “nibble” a prefix from the margins,\n * where a line starts after that prefix is defined here.\n * When the tokenizers moves after consuming a line ending corresponding to\n * the line number in the given point, the tokenizer shifts past the prefix\n * based on the column in the shifted point.\n *\n * @param point\n * Skip.\n * @returns\n * Nothing.\n */\n defineSkip(point: Point): undefined\n\n /**\n * Get the current place.\n *\n * @returns\n * Current point.\n */\n now(): Point\n\n /**\n * Get the source text that spans a token (or location).\n *\n * @param token\n * Start/end in stream.\n * @param expandTabs\n * Whether to expand tabs.\n * @returns\n * Serialized chunks.\n */\n sliceSerialize(\n token: Pick<Token, 'end' | 'start'>,\n expandTabs?: boolean | undefined\n ): string\n\n /**\n * Get the chunks that span a token (or location).\n *\n * @param token\n * Start/end in stream.\n * @returns\n * List of chunks.\n */\n sliceStream(token: Pick<Token, 'end' | 'start'>): Array<Chunk>\n\n /**\n * Write a slice of chunks.\n *\n * The eof code (`null`) can be used to signal the end of the stream.\n *\n * @param slice\n * Chunks.\n * @returns\n * Events.\n */\n write(slice: Array<Chunk>): Array<Event>\n}\n\n/**\n * Encodings supported by `TextEncoder`.\n *\n * Arbitrary encodings can be supported depending on how the engine is built.\n * So any string *could* be valid.\n * But you probably want `utf-8`.\n */\nexport type Encoding =\n // Encodings supported in Node by default or when built with the small-icu option.\n // Does not include aliases.\n | 'utf-8' // Always supported in Node.\n | 'utf-16le' // Always supported in Node.\n | 'utf-16be' // Not supported when ICU is disabled.\n // Everything else (depends on browser, or full ICU data).\n // eslint-disable-next-line @typescript-eslint/ban-types\n | (string & {})\n\n/**\n * Contents of the file.\n *\n * Can either be text, or a `Uint8Array` like structure.\n */\nexport type Value = Uint8Array | string\n\n/**\n * A syntax extension changes how markdown is tokenized.\n *\n * See: <https://github.com/micromark/micromark#syntaxextension>\n */\nexport interface Extension {\n attentionMarkers?: {null?: Array<Code> | undefined} | undefined\n contentInitial?: ConstructRecord | undefined\n disable?: {null?: Array<string> | undefined} | undefined\n document?: ConstructRecord | undefined\n flowInitial?: ConstructRecord | undefined\n flow?: ConstructRecord | undefined\n insideSpan?:\n | {null?: Array<Pick<Construct, 'resolveAll'>> | undefined}\n | undefined\n string?: ConstructRecord | undefined\n text?: ConstructRecord | undefined\n}\n\n/**\n * A filtered, combined, extension.\n */\nexport type NormalizedExtension = {\n [Key in keyof Extension]: Exclude<Extension[Key], undefined>\n}\n\n/**\n * A full, filtereed, normalized, extension.\n */\nexport type FullNormalizedExtension = {\n [Key in keyof Extension]-?: Exclude<Extension[Key], undefined>\n}\n\n/**\n * Create a context.\n *\n * @param from\n * Where to create from.\n * @returns\n * Context.\n */\nexport type Create = (\n from?: Omit<Point, '_bufferIndex' | '_index'> | undefined\n) => TokenizeContext\n\n/**\n * Config defining how to parse.\n */\nexport interface ParseOptions {\n /**\n * Array of syntax extensions (default: `[]`).\n */\n extensions?: Array<Extension> | null | undefined\n}\n\n/**\n * A context object that helps w/ parsing markdown.\n */\nexport interface ParseContext {\n /**\n * All constructs.\n */\n constructs: FullNormalizedExtension\n\n /**\n * List of defined identifiers.\n */\n defined: Array<string>\n\n /**\n * Map of line numbers to whether they are lazy (as opposed to the line before\n * them).\n * Take for example:\n *\n * ```markdown\n * > a\n * b\n * ```\n *\n * L1 here is not lazy, L2 is.\n */\n lazy: Record<number, boolean>\n\n /**\n * Create a content tokenizer.\n */\n content: Create\n\n /**\n * Create a document tokenizer.\n */\n document: Create\n\n /**\n * Create a flow tokenizer.\n */\n flow: Create\n\n /**\n * Create a string tokenizer.\n */\n string: Create\n\n /**\n * Create a text tokenizer.\n */\n text: Create\n}\n\n/**\n * HTML compiler context.\n */\nexport interface CompileContext {\n /**\n * Configuration passed by the user.\n */\n options: CompileOptions\n\n /**\n * Capture some of the output data.\n *\n * @returns\n * Nothing.\n */\n buffer(): undefined\n\n /**\n * Make a value safe for injection in HTML (except w/ `ignoreEncode`).\n *\n * @param value\n * Raw value.\n * @returns\n * Safe value.\n */\n encode(value: string): string\n\n /**\n * Get data from the key-value store.\n *\n * @param key\n * Key.\n * @returns\n * Value at `key` in compile data.\n */\n getData<Key extends keyof CompileData>(key: Key): CompileData[Key]\n\n /**\n * Output an extra line ending if the previous value wasn’t EOF/EOL.\n *\n * @returns\n * Nothing.\n */\n lineEndingIfNeeded(): undefined\n\n /**\n * Output raw data.\n *\n * @param value\n * Raw value.\n * @returns\n * Nothing.\n */\n raw(value: string): undefined\n\n /**\n * Stop capturing and access the output data.\n *\n * @returns\n * Captured data.\n */\n resume(): string\n\n /**\n * Set data into the key-value store.\n *\n * @param key\n * Key.\n * @param value\n * Value.\n * @returns\n * Nothing.\n */\n setData<Key extends keyof CompileData>(\n key: Key,\n value?: CompileData[Key]\n ): undefined\n\n /**\n * Get the string value of a token.\n *\n * @param token\n * Start/end in stream.\n * @param expandTabs\n * Whether to expand tabs.\n * @returns\n * Serialized chunks.\n */\n sliceSerialize(\n token: Pick<Token, 'end' | 'start'>,\n expandTabs?: boolean | undefined\n ): string\n\n /**\n * Output (parts of) HTML tags.\n *\n * @param value\n * Raw value.\n * @returns\n * Nothing.\n */\n tag(value: string): undefined\n}\n\n/**\n * Serialize micromark events as HTML.\n */\nexport type Compile = (events: Array<Event>) => string\n\n/**\n * Handle one token.\n *\n * @param token\n * Token.\n * @returns\n * Nothing.\n */\nexport type Handle = (this: CompileContext, token: Token) => undefined\n\n/**\n * Handle the whole document.\n *\n * @returns\n * Nothing.\n */\nexport type DocumentHandle = (\n this: Omit<CompileContext, 'sliceSerialize'>\n) => undefined\n\n/**\n * Token types mapping to handles.\n */\nexport interface Handles extends Partial<Record<TokenType, Handle>> {\n /**\n * Document handle.\n */\n null?: DocumentHandle\n}\n\n/**\n * Normalized extenion.\n */\nexport interface HtmlExtension {\n enter?: Handles | undefined\n exit?: Handles | undefined\n}\n\n/**\n * An HTML extension changes how markdown tokens are serialized.\n */\nexport type NormalizedHtmlExtension = {\n [Key in keyof HtmlExtension]-?: Exclude<HtmlExtension[Key], undefined>\n}\n\n/**\n * Definition.\n */\nexport interface Definition {\n /**\n * Destination.\n */\n destination?: string | undefined\n /**\n * Title.\n */\n title?: string | undefined\n}\n\n/**\n * State tracked to compile events as HTML.\n */\nexport interface CompileData {\n /**\n * Whether the first list item is expected, used by lists.\n */\n expectFirstItem?: boolean | undefined\n\n /**\n * Current character reference kind.\n */\n characterReferenceType?: string | undefined\n\n /**\n * Collected definitions.\n */\n definitions: Record<string, Definition>\n\n /**\n * Whether we’re in fenced code, used by code (fenced).\n */\n fencedCodeInside?: boolean | undefined\n\n /**\n * Number of fences that were seen, used by code (fenced).\n */\n fencesCount?: number | undefined\n\n /**\n * Whether we’ve seen code data, used by code (fenced, indented).\n */\n flowCodeSeenData?: boolean | undefined\n\n /**\n * Current heading rank, used by heading (atx, setext).\n */\n headingRank?: number | undefined\n\n /**\n * Ignore encoding unsafe characters, used for example for URLs which are\n * first percent encoded, or by HTML when supporting it.\n */\n ignoreEncode?: boolean | undefined\n\n /**\n * Whether we’re in code data, used by code (text).\n */\n inCodeText?: boolean | undefined\n\n /**\n * Whether the last emitted value was a tag.\n */\n lastWasTag?: boolean | undefined\n\n /**\n * Whether to slurp all future line endings (has to be unset manually).\n */\n slurpAllLineEndings?: boolean | undefined\n\n /**\n * Whether to slurp the next line ending (resets itself on the next line\n * ending).\n */\n slurpOneLineEnding?: boolean | undefined\n\n /**\n * Stack of containers, whether they’re tight or not.\n */\n tightStack: Array<boolean>\n}\n\n/**\n * Type of line ending in markdown.\n */\nexport type LineEnding = '\\r' | '\\n' | '\\r\\n'\n\n/**\n * Compile options.\n */\nexport interface CompileOptions {\n /**\n * Whether to allow (dangerous) HTML (`boolean`, default: `false`).\n *\n * The default is `false`, which still parses the HTML according to\n * `CommonMark` but shows the HTML as text instead of as elements.\n *\n * Pass `true` for trusted content to get actual HTML elements.\n */\n allowDangerousHtml?: boolean | null | undefined\n\n /**\n * Whether to allow dangerous protocols in links and images (`boolean`,\n * default: `false`).\n *\n * The default is `false`, which drops URLs in links and images that use\n * dangerous protocols.\n *\n * Pass `true` for trusted content to support all protocols.\n *\n * URLs that have no protocol (which means it’s relative to the current page,\n * such as `./some/page.html`) and URLs that have a safe protocol (for\n * images: `http`, `https`; for links: `http`, `https`, `irc`, `ircs`,\n * `mailto`, `xmpp`), are safe.\n * All other URLs are dangerous and dropped.\n */\n allowDangerousProtocol?: boolean | null | undefined\n\n /**\n * Default line ending to use when compiling to HTML, for line endings not in\n * `value`.\n *\n * Generally, `micromark` copies line endings (`\\r`, `\\n`, `\\r\\n`) in the\n * markdown document over to the compiled HTML.\n * In some cases, such as `> a`, CommonMark requires that extra line endings\n * are added: `<blockquote>\\n<p>a</p>\\n</blockquote>`.\n *\n * To create that line ending, the document is checked for the first line\n * ending that is used.\n * If there is no line ending, `defaultLineEnding` is used.\n * If that isn’t configured, `\\n` is used.\n */\n defaultLineEnding?: LineEnding | null | undefined\n\n /**\n * Array of HTML extensions (default: `[]`).\n */\n htmlExtensions?: Array<HtmlExtension> | null | undefined\n}\n\n/**\n * Configuration.\n */\nexport type Options = CompileOptions & ParseOptions\n\n/**\n * Enum of allowed token types.\n */\nexport type TokenType = keyof TokenTypeMap\n\n// Note: when changing the next interface, you likely also have to change\n// `micromark-util-symbol`.\n/**\n * Map of allowed token types.\n */\nexport interface TokenTypeMap {\n // Note: these are compiled away.\n attentionSequence: 'attentionSequence' // To do: remove.\n space: 'space' // To do: remove.\n\n data: 'data'\n whitespace: 'whitespace'\n lineEnding: 'lineEnding'\n lineEndingBlank: 'lineEndingBlank'\n linePrefix: 'linePrefix'\n lineSuffix: 'lineSuffix'\n atxHeading: 'atxHeading'\n atxHeadingSequence: 'atxHeadingSequence'\n atxHeadingText: 'atxHeadingText'\n autolink: 'autolink'\n autolinkEmail: 'autolinkEmail'\n autolinkMarker: 'autolinkMarker'\n autolinkProtocol: 'autolinkProtocol'\n characterEscape: 'characterEscape'\n characterEscapeValue: 'characterEscapeValue'\n characterReference: 'characterReference'\n characterReferenceMarker: 'characterReferenceMarker'\n characterReferenceMarkerNumeric: 'characterReferenceMarkerNumeric'\n characterReferenceMarkerHexadecimal: 'characterReferenceMarkerHexadecimal'\n characterReferenceValue: 'characterReferenceValue'\n codeFenced: 'codeFenced'\n codeFencedFence: 'codeFencedFence'\n codeFencedFenceSequence: 'codeFencedFenceSequence'\n codeFencedFenceInfo: 'codeFencedFenceInfo'\n codeFencedFenceMeta: 'codeFencedFenceMeta'\n codeFlowValue: 'codeFlowValue'\n codeIndented: 'codeIndented'\n codeText: 'codeText'\n codeTextData: 'codeTextData'\n codeTextPadding: 'codeTextPadding'\n codeTextSequence: 'codeTextSequence'\n content: 'content'\n definition: 'definition'\n definitionDestination: 'definitionDestination'\n definitionDestinationLiteral: 'definitionDestinationLiteral'\n definitionDestinationLiteralMarker: 'definitionDestinationLiteralMarker'\n definitionDestinationRaw: 'definitionDestinationRaw'\n definitionDestinationString: 'definitionDestinationString'\n definitionLabel: 'definitionLabel'\n definitionLabelMarker: 'definitionLabelMarker'\n definitionLabelString: 'definitionLabelString'\n definitionMarker: 'definitionMarker'\n definitionTitle: 'definitionTitle'\n definitionTitleMarker: 'definitionTitleMarker'\n definitionTitleString: 'definitionTitleString'\n emphasis: 'emphasis'\n emphasisSequence: 'emphasisSequence'\n emphasisText: 'emphasisText'\n escapeMarker: 'escapeMarker'\n hardBreakEscape: 'hardBreakEscape'\n hardBreakTrailing: 'hardBreakTrailing'\n htmlFlow: 'htmlFlow'\n htmlFlowData: 'htmlFlowData'\n htmlText: 'htmlText'\n htmlTextData: 'htmlTextData'\n image: 'image'\n label: 'label'\n labelText: 'labelText'\n labelLink: 'labelLink'\n labelImage: 'labelImage'\n labelMarker: 'labelMarker'\n labelImageMarker: 'labelImageMarker'\n labelEnd: 'labelEnd'\n link: 'link'\n paragraph: 'paragraph'\n reference: 'reference'\n referenceMarker: 'referenceMarker'\n referenceString: 'referenceString'\n resource: 'resource'\n resourceDestination: 'resourceDestination'\n resourceDestinationLiteral: 'resourceDestinationLiteral'\n resourceDestinationLiteralMarker: 'resourceDestinationLiteralMarker'\n resourceDestinationRaw: 'resourceDestinationRaw'\n resourceDestinationString: 'resourceDestinationString'\n resourceMarker: 'resourceMarker'\n resourceTitle: 'resourceTitle'\n resourceTitleMarker: 'resourceTitleMarker'\n resourceTitleString: 'resourceTitleString'\n setextHeading: 'setextHeading'\n setextHeadingText: 'setextHeadingText'\n setextHeadingLine: 'setextHeadingLine'\n setextHeadingLineSequence: 'setextHeadingLineSequence'\n strong: 'strong'\n strongSequence: 'strongSequence'\n strongText: 'strongText'\n thematicBreak: 'thematicBreak'\n thematicBreakSequence: 'thematicBreakSequence'\n blockQuote: 'blockQuote'\n blockQuotePrefix: 'blockQuotePrefix'\n blockQuoteMarker: 'blockQuoteMarker'\n blockQuotePrefixWhitespace: 'blockQuotePrefixWhitespace'\n listOrdered: 'listOrdered'\n listUnordered: 'listUnordered'\n listItemIndent: 'listItemIndent'\n listItemMarker: 'listItemMarker'\n listItemPrefix: 'listItemPrefix'\n listItemPrefixWhitespace: 'listItemPrefixWhitespace'\n listItemValue: 'listItemValue'\n chunkDocument: 'chunkDocument'\n chunkContent: 'chunkContent'\n chunkFlow: 'chunkFlow'\n chunkText: 'chunkText'\n chunkString: 'chunkString'\n}\n",
|
|
13493
|
+
"node_modules/micromark-util-types/package.json": "{\n \"name\": \"micromark-util-types\",\n \"version\": \"2.0.2\",\n \"description\": \"micromark utility with a couple of typescript types\",\n \"license\": \"MIT\",\n \"keywords\": [\n \"micromark\",\n \"util\",\n \"utility\",\n \"typescript\",\n \"types\"\n ],\n \"repository\": \"https://github.com/micromark/micromark/tree/main/packages/micromark-util-types\",\n \"bugs\": \"https://github.com/micromark/micromark/issues\",\n \"funding\": [\n {\n \"type\": \"GitHub Sponsors\",\n \"url\": \"https://github.com/sponsors/unifiedjs\"\n },\n {\n \"type\": \"OpenCollective\",\n \"url\": \"https://opencollective.com/unified\"\n }\n ],\n \"author\": \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\",\n \"contributors\": [\n \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\"\n ],\n \"sideEffects\": false,\n \"type\": \"module\",\n \"files\": [\n \"index.d.ts.map\",\n \"index.d.ts\",\n \"index.js\"\n ],\n \"exports\": \"./index.js\",\n \"xo\": {\n \"envs\": [\n \"shared-node-browser\"\n ],\n \"overrides\": [\n {\n \"files\": [\n \"**/*.d.ts\"\n ],\n \"rules\": {\n \"@typescript-eslint/array-type\": [\n \"error\",\n {\n \"default\": \"generic\"\n }\n ],\n \"@typescript-eslint/ban-types\": [\n \"error\",\n {\n \"extendDefaults\": true\n }\n ],\n \"@typescript-eslint/consistent-type-definitions\": [\n \"error\",\n \"interface\"\n ]\n }\n }\n ],\n \"prettier\": true,\n \"rules\": {\n \"unicorn/text-encoding-identifier-case\": \"off\"\n }\n }\n}\n",
|
|
13298
13494
|
"node_modules/mime-db/package.json": "{\n \"name\": \"mime-db\",\n \"description\": \"Media Type Database\",\n \"version\": \"1.52.0\",\n \"contributors\": [\n \"Douglas Christopher Wilson <doug@somethingdoug.com>\",\n \"Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)\",\n \"Robert Kieffer <robert@broofa.com> (http://github.com/broofa)\"\n ],\n \"license\": \"MIT\",\n \"keywords\": [\n \"mime\",\n \"db\",\n \"type\",\n \"types\",\n \"database\",\n \"charset\",\n \"charsets\"\n ],\n \"repository\": \"jshttp/mime-db\",\n \"devDependencies\": {\n \"bluebird\": \"3.7.2\",\n \"co\": \"4.6.0\",\n \"cogent\": \"1.0.1\",\n \"csv-parse\": \"4.16.3\",\n \"eslint\": \"7.32.0\",\n \"eslint-config-standard\": \"15.0.1\",\n \"eslint-plugin-import\": \"2.25.4\",\n \"eslint-plugin-markdown\": \"2.2.1\",\n \"eslint-plugin-node\": \"11.1.0\",\n \"eslint-plugin-promise\": \"5.1.1\",\n \"eslint-plugin-standard\": \"4.1.0\",\n \"gnode\": \"0.1.2\",\n \"media-typer\": \"1.1.0\",\n \"mocha\": \"9.2.1\",\n \"nyc\": \"15.1.0\",\n \"raw-body\": \"2.5.0\",\n \"stream-to-array\": \"2.3.0\"\n },\n \"files\": [\n \"HISTORY.md\",\n \"LICENSE\",\n \"README.md\",\n \"db.json\",\n \"index.js\"\n ],\n \"engines\": {\n \"node\": \">= 0.6\"\n },\n \"scripts\": {\n \"build\": \"node scripts/build\",\n \"fetch\": \"node scripts/fetch-apache && gnode scripts/fetch-iana && node scripts/fetch-nginx\",\n \"lint\": \"eslint .\",\n \"test\": \"mocha --reporter spec --bail --check-leaks test/\",\n \"test-ci\": \"nyc --reporter=lcov --reporter=text npm test\",\n \"test-cov\": \"nyc --reporter=html --reporter=text npm test\",\n \"update\": \"npm run fetch && npm run build\",\n \"version\": \"node scripts/version-history.js && git add HISTORY.md\"\n }\n}\n",
|
|
13299
13495
|
"node_modules/mime-types/package.json": "{\n \"name\": \"mime-types\",\n \"description\": \"The ultimate javascript content-type utility.\",\n \"version\": \"2.1.35\",\n \"contributors\": [\n \"Douglas Christopher Wilson <doug@somethingdoug.com>\",\n \"Jeremiah Senkpiel <fishrock123@rocketmail.com> (https://searchbeam.jit.su)\",\n \"Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)\"\n ],\n \"license\": \"MIT\",\n \"keywords\": [\n \"mime\",\n \"types\"\n ],\n \"repository\": \"jshttp/mime-types\",\n \"dependencies\": {\n \"mime-db\": \"1.52.0\"\n },\n \"devDependencies\": {\n \"eslint\": \"7.32.0\",\n \"eslint-config-standard\": \"14.1.1\",\n \"eslint-plugin-import\": \"2.25.4\",\n \"eslint-plugin-markdown\": \"2.2.1\",\n \"eslint-plugin-node\": \"11.1.0\",\n \"eslint-plugin-promise\": \"5.2.0\",\n \"eslint-plugin-standard\": \"4.1.0\",\n \"mocha\": \"9.2.2\",\n \"nyc\": \"15.1.0\"\n },\n \"files\": [\n \"HISTORY.md\",\n \"LICENSE\",\n \"index.js\"\n ],\n \"engines\": {\n \"node\": \">= 0.6\"\n },\n \"scripts\": {\n \"lint\": \"eslint .\",\n \"test\": \"mocha --reporter spec test/test.js\",\n \"test-ci\": \"nyc --reporter=lcov --reporter=text npm test\",\n \"test-cov\": \"nyc --reporter=html --reporter=text npm test\"\n }\n}\n",
|
|
13300
13496
|
"node_modules/mimic-fn/index.d.ts": "declare const mimicFn: {\n\t/**\n\tMake a function mimic another one. It will copy over the properties `name`, `length`, `displayName`, and any custom properties you may have set.\n\n\t@param to - Mimicking function.\n\t@param from - Function to mimic.\n\t@returns The modified `to` function.\n\n\t@example\n\t```\n\timport mimicFn = require('mimic-fn');\n\n\tfunction foo() {}\n\tfoo.unicorn = '🦄';\n\n\tfunction wrapper() {\n\t\treturn foo();\n\t}\n\n\tconsole.log(wrapper.name);\n\t//=> 'wrapper'\n\n\tmimicFn(wrapper, foo);\n\n\tconsole.log(wrapper.name);\n\t//=> 'foo'\n\n\tconsole.log(wrapper.unicorn);\n\t//=> '🦄'\n\t```\n\t*/\n\t<\n\t\tArgumentsType extends unknown[],\n\t\tReturnType,\n\t\tFunctionType extends (...arguments: ArgumentsType) => ReturnType\n\t>(\n\t\tto: (...arguments: ArgumentsType) => ReturnType,\n\t\tfrom: FunctionType\n\t): FunctionType;\n\n\t// TODO: Remove this for the next major release, refactor the whole definition to:\n\t// declare function mimicFn<\n\t//\tArgumentsType extends unknown[],\n\t//\tReturnType,\n\t//\tFunctionType extends (...arguments: ArgumentsType) => ReturnType\n\t// >(\n\t//\tto: (...arguments: ArgumentsType) => ReturnType,\n\t//\tfrom: FunctionType\n\t// ): FunctionType;\n\t// export = mimicFn;\n\tdefault: typeof mimicFn;\n};\n\nexport = mimicFn;\n",
|
|
@@ -13384,6 +13580,15 @@
|
|
|
13384
13580
|
"node_modules/prettier/plugins/typescript.d.ts": "import { Parser } from \"../index.js\";\n\nexport declare const parsers: {\n typescript: Parser;\n};\n",
|
|
13385
13581
|
"node_modules/prettier/plugins/yaml.d.ts": "import { Parser } from \"../index.js\";\n\nexport declare const parsers: {\n yaml: Parser;\n};\n",
|
|
13386
13582
|
"node_modules/prettier/standalone.d.ts": "import { CursorOptions, CursorResult, Options, SupportInfo } from \"./index.js\";\n\n/**\n * formatWithCursor both formats the code, and translates a cursor position from unformatted code to formatted code.\n * This is useful for editor integrations, to prevent the cursor from moving when code is formatted\n *\n * The cursorOffset option should be provided, to specify where the cursor is.\n *\n * ```js\n * await prettier.formatWithCursor(\" 1\", { cursorOffset: 2, parser: \"babel\" });\n * ```\n * `-> { formatted: \"1;\\n\", cursorOffset: 1 }`\n */\nexport function formatWithCursor(\n source: string,\n options: CursorOptions,\n): Promise<CursorResult>;\n\n/**\n * `format` is used to format text using Prettier. [Options](https://prettier.io/docs/en/options.html) may be provided to override the defaults.\n */\nexport function format(source: string, options?: Options): Promise<string>;\n\n/**\n * `check` checks to see if the file has been formatted with Prettier given those options and returns a `Boolean`.\n * This is similar to the `--list-different` parameter in the CLI and is useful for running Prettier in CI scenarios.\n */\nexport function check(source: string, options?: Options): Promise<boolean>;\n\n/**\n * Returns an object representing the parsers, languages and file types Prettier supports for the current version.\n */\nexport function getSupportInfo(): Promise<SupportInfo>;\n",
|
|
13583
|
+
"node_modules/prettier-plugin-jsdoc/dist/descriptionFormatter.d.ts": "import { AllOptions } from \"./types.js\";\ninterface DescriptionEndLineParams {\n tag: string;\n isEndTag: boolean;\n}\ndeclare function descriptionEndLine({ tag, isEndTag, }: DescriptionEndLineParams): string;\ninterface FormatOptions {\n tagStringLength?: number;\n beginningSpace: string;\n}\ndeclare function formatDescription(tag: string, text: string, options: AllOptions, formatOptions: FormatOptions): Promise<string>;\nexport { descriptionEndLine, FormatOptions, formatDescription };\n",
|
|
13584
|
+
"node_modules/prettier-plugin-jsdoc/dist/index.d.ts": "import prettier from \"prettier\";\nimport { JsdocOptions } from \"./types.js\";\ndeclare const options: {\n readonly jsdocSpaces: {\n readonly name: \"jsdocSpaces\";\n readonly type: \"int\";\n readonly category: \"jsdoc\";\n readonly default: 1;\n readonly description: \"How many spaces will be used to separate tag elements.\";\n };\n readonly jsdocDescriptionWithDot: {\n readonly name: \"jsdocDescriptionWithDot\";\n readonly type: \"boolean\";\n readonly category: \"jsdoc\";\n readonly default: false;\n readonly description: \"Should dot be inserted at the end of description\";\n };\n readonly jsdocDescriptionTag: {\n readonly name: \"jsdocDescriptionTag\";\n readonly type: \"boolean\";\n readonly category: \"jsdoc\";\n readonly default: false;\n readonly description: \"Should description tag be used\";\n };\n readonly jsdocVerticalAlignment: {\n readonly name: \"jsdocVerticalAlignment\";\n readonly type: \"boolean\";\n readonly category: \"jsdoc\";\n readonly default: false;\n readonly description: \"Should tags, types, names and description be aligned\";\n };\n readonly jsdocKeepUnParseAbleExampleIndent: {\n readonly name: \"jsdocKeepUnParseAbleExampleIndent\";\n readonly type: \"boolean\";\n readonly category: \"jsdoc\";\n readonly default: false;\n readonly description: \"Should unParseAble example (pseudo code or no js code) keep its indentation\";\n };\n readonly jsdocSingleLineComment: {\n readonly name: \"jsdocSingleLineComment\";\n readonly type: \"boolean\";\n readonly category: \"jsdoc\";\n readonly deprecated: \"use jsdocCommentLineStrategy instead will be remove on v2\";\n readonly default: true;\n readonly description: \"Should compact single line comment\";\n };\n readonly jsdocCommentLineStrategy: {\n readonly name: \"jsdocCommentLineStrategy\";\n readonly type: \"choice\";\n readonly choices: {\n since?: string | undefined;\n value: any;\n description: string;\n }[];\n readonly category: \"jsdoc\";\n readonly default: \"singleLine\";\n readonly description: \"How comments line should be\";\n };\n readonly jsdocSeparateReturnsFromParam: {\n readonly name: \"jsdocSeparateReturnsFromParam\";\n readonly type: \"boolean\";\n readonly category: \"jsdoc\";\n readonly default: false;\n readonly description: \"Add an space between last @param and @returns\";\n };\n readonly jsdocSeparateTagGroups: {\n readonly name: \"jsdocSeparateTagGroups\";\n readonly type: \"boolean\";\n readonly category: \"jsdoc\";\n readonly default: false;\n readonly description: \"Add an space between tag groups\";\n };\n readonly jsdocCapitalizeDescription: {\n readonly name: \"jsdocCapitalizeDescription\";\n readonly type: \"boolean\";\n readonly category: \"jsdoc\";\n readonly default: true;\n readonly description: \"Should capitalize first letter of description\";\n };\n readonly tsdoc: {\n readonly name: \"tsdoc\";\n readonly type: \"boolean\";\n readonly category: \"jsdoc\";\n readonly default: false;\n readonly description: \"Should format as tsdoc\";\n };\n readonly jsdocPrintWidth: {\n readonly name: \"jsdocPrintWidth\";\n readonly type: \"int\";\n readonly category: \"jsdoc\";\n readonly default: undefined;\n readonly description: \"If You don't set value to jsdocPrintWidth, the printWidth will be use as jsdocPrintWidth.\";\n };\n readonly jsdocAddDefaultToDescription: {\n readonly name: \"jsdocAddDefaultToDescription\";\n readonly type: \"boolean\";\n readonly category: \"jsdoc\";\n readonly default: true;\n readonly description: \"Add Default value of a param to end description\";\n };\n readonly jsdocPreferCodeFences: {\n readonly name: \"jsdocPreferCodeFences\";\n readonly type: \"boolean\";\n readonly category: \"jsdoc\";\n readonly default: false;\n readonly description: \"Prefer to render code blocks using \\\"fences\\\" (triple backticks). If not set, blocks without a language tag will be rendered with a four space indentation.\";\n };\n readonly jsdocLineWrappingStyle: {\n readonly name: \"jsdocLineWrappingStyle\";\n readonly type: \"choice\";\n readonly choices: {\n since?: string | undefined;\n value: any;\n description: string;\n }[];\n readonly category: \"jsdoc\";\n readonly default: \"greedy\";\n readonly description: \"Strategy for wrapping lines for the given print width. More options may be added in the future.\";\n };\n readonly jsdocTagsOrder: {\n readonly name: \"jsdocTagsOrder\";\n readonly type: \"string\";\n readonly category: \"jsdoc\";\n readonly default: undefined;\n readonly description: \"How many spaces will be used to separate tag elements.\";\n };\n};\ndeclare const defaultOptions: JsdocOptions;\ndeclare const parsers: {\n readonly babel: {\n preprocess: (text: string, options: prettier.ParserOptions) => string;\n parse: any;\n astFormat: string;\n hasPragma?: ((text: string) => boolean) | undefined;\n locStart: (node: any) => number;\n locEnd: (node: any) => number;\n };\n readonly \"babel-flow\": {\n preprocess: (text: string, options: prettier.ParserOptions) => string;\n parse: any;\n astFormat: string;\n hasPragma?: ((text: string) => boolean) | undefined;\n locStart: (node: any) => number;\n locEnd: (node: any) => number;\n };\n readonly \"babel-ts\": {\n preprocess: (text: string, options: prettier.ParserOptions) => string;\n parse: any;\n astFormat: string;\n hasPragma?: ((text: string) => boolean) | undefined;\n locStart: (node: any) => number;\n locEnd: (node: any) => number;\n };\n readonly flow: {\n preprocess: (text: string, options: prettier.ParserOptions) => string;\n parse: any;\n astFormat: string;\n hasPragma?: ((text: string) => boolean) | undefined;\n locStart: (node: any) => number;\n locEnd: (node: any) => number;\n };\n readonly typescript: prettier.Parser<any>;\n readonly \"jsdoc-parser\": {\n preprocess: (text: string, options: prettier.ParserOptions) => string;\n parse: any;\n astFormat: string;\n hasPragma?: ((text: string) => boolean) | undefined;\n locStart: (node: any) => number;\n locEnd: (node: any) => number;\n };\n};\nexport { options, parsers, defaultOptions };\nexport type Options = Partial<JsdocOptions>;\n",
|
|
13585
|
+
"node_modules/prettier-plugin-jsdoc/dist/parser.d.ts": "import { AST, AllOptions } from \"./types.js\";\nimport { Parser } from \"prettier\";\nexport declare const getParser: (originalParse: Parser[\"parse\"], parserName: string) => (text: string, parsersOrOptions: Parameters<Parser[\"parse\"]>[1], maybeOptions?: AllOptions) => Promise<AST>;\n",
|
|
13586
|
+
"node_modules/prettier-plugin-jsdoc/dist/roles.d.ts": "declare const TAGS_SYNONYMS: {\n arg: string;\n argument: string;\n const: string;\n constructor: string;\n desc: string;\n emits: string;\n examples: string;\n exception: string;\n fileoverview: string;\n func: string;\n host: string;\n method: string;\n overview: string;\n params: string;\n prop: string;\n return: string;\n var: string;\n virtual: string;\n yield: string;\n hidden: string;\n};\ndeclare const TAGS_DEFAULT: string[];\ndeclare const TAGS_NAMELESS: string[];\ndeclare const TAGS_TYPELESS: string[];\ndeclare const TAGS_PEV_FORMATE_DESCRIPTION: string[];\ndeclare const TAGS_DESCRIPTION_NEEDED: string[];\ndeclare const TAGS_TYPE_NEEDED: string[];\ndeclare const TAGS_VERTICALLY_ALIGN_ABLE: string[];\ndeclare const TAGS_GROUP_HEAD: string[];\ndeclare const TAGS_GROUP_CONDITION: string[];\ndeclare const TAGS_ORDER: {\n remarks: number;\n privateRemarks: number;\n providesModule: number;\n module: number;\n license: number;\n flow: number;\n async: number;\n private: number;\n ignore: number;\n memberof: number;\n version: number;\n file: number;\n author: number;\n deprecated: number;\n since: number;\n category: number;\n description: number;\n example: number;\n abstract: number;\n augments: number;\n constant: number;\n default: number;\n defaultValue: number;\n external: number;\n overload: number;\n fires: number;\n template: number;\n typeParam: number;\n function: number;\n namespace: number;\n borrows: number;\n class: number;\n extends: number;\n member: number;\n typedef: number;\n type: number;\n satisfies: number;\n property: number;\n callback: number;\n param: number;\n yields: number;\n returns: number;\n throws: number;\n other: number;\n see: number;\n todo: number;\n};\nexport { TAGS_PEV_FORMATE_DESCRIPTION, TAGS_DESCRIPTION_NEEDED, TAGS_NAMELESS, TAGS_GROUP_HEAD, TAGS_GROUP_CONDITION, TAGS_ORDER, TAGS_SYNONYMS, TAGS_TYPE_NEEDED, TAGS_TYPELESS, TAGS_VERTICALLY_ALIGN_ABLE, TAGS_DEFAULT, };\n",
|
|
13587
|
+
"node_modules/prettier-plugin-jsdoc/dist/stringify.d.ts": "import { Spec } from \"comment-parser\";\nimport { AllOptions } from \"./types.js\";\ndeclare const stringify: ({ name, description, type, tag }: Spec, tagIndex: number, finalTagsArray: Spec[], options: AllOptions, maxTagTitleLength: number, maxTagTypeNameLength: number, maxTagNameLength: number) => Promise<string>;\nexport { stringify };\n",
|
|
13588
|
+
"node_modules/prettier-plugin-jsdoc/dist/tags.d.ts": "import { Spec } from \"comment-parser\";\ndeclare const ABSTRACT = \"abstract\";\ndeclare const ASYNC = \"async\";\ndeclare const AUGMENTS = \"augments\";\ndeclare const AUTHOR = \"author\";\ndeclare const BORROWS = \"borrows\";\ndeclare const CALLBACK = \"callback\";\ndeclare const CATEGORY = \"category\";\ndeclare const CLASS = \"class\";\ndeclare const CONSTANT = \"constant\";\ndeclare const DEFAULT = \"default\";\ndeclare const DEFAULT_VALUE = \"defaultValue\";\ndeclare const DEPRECATED = \"deprecated\";\ndeclare const DESCRIPTION = \"description\";\ndeclare const EXAMPLE = \"example\";\ndeclare const EXTENDS = \"extends\";\ndeclare const EXTERNAL = \"external\";\ndeclare const FILE = \"file\";\ndeclare const FIRES = \"fires\";\ndeclare const FLOW = \"flow\";\ndeclare const FUNCTION = \"function\";\ndeclare const IGNORE = \"ignore\";\ndeclare const LICENSE = \"license\";\ndeclare const MEMBER = \"member\";\ndeclare const MEMBEROF = \"memberof\";\ndeclare const MODULE = \"module\";\ndeclare const NAMESPACE = \"namespace\";\ndeclare const OVERLOAD = \"overload\";\ndeclare const OVERRIDE = \"override\";\ndeclare const PARAM = \"param\";\ndeclare const PRIVATE = \"private\";\ndeclare const PRIVATE_REMARKS = \"privateRemarks\";\ndeclare const PROPERTY = \"property\";\ndeclare const PROVIDES_MODULE = \"providesModule\";\ndeclare const REMARKS = \"remarks\";\ndeclare const RETURNS = \"returns\";\ndeclare const SEE = \"see\";\ndeclare const SINCE = \"since\";\ndeclare const TEMPLATE = \"template\";\ndeclare const THROWS = \"throws\";\ndeclare const TODO = \"todo\";\ndeclare const TYPE = \"type\";\ndeclare const TYPE_PARAM = \"typeParam\";\ndeclare const TYPEDEF = \"typedef\";\ndeclare const SATISFIES = \"satisfies\";\ndeclare const VERSION = \"version\";\ndeclare const YIELDS = \"yields\";\ndeclare const SPACE_TAG_DATA: Spec;\nexport { ABSTRACT, ASYNC, AUGMENTS, AUTHOR, BORROWS, CALLBACK, CATEGORY, CLASS, CONSTANT, DEFAULT, DEFAULT_VALUE, DEPRECATED, DESCRIPTION, EXAMPLE, EXTENDS, EXTERNAL, FILE, FIRES, FLOW, FUNCTION, IGNORE, LICENSE, MEMBER, MEMBEROF, MODULE, NAMESPACE, OVERLOAD, OVERRIDE, PARAM, PRIVATE_REMARKS, PRIVATE, PROPERTY, PROVIDES_MODULE, REMARKS, RETURNS, SEE, SINCE, TEMPLATE, THROWS, TODO, TYPE, TYPE_PARAM, TYPEDEF, SATISFIES, VERSION, YIELDS, SPACE_TAG_DATA, };\n",
|
|
13589
|
+
"node_modules/prettier-plugin-jsdoc/dist/types.d.ts": "import { ParserOptions } from \"prettier\";\nexport interface JsdocOptions {\n jsdocSpaces: number;\n jsdocPrintWidth?: number;\n jsdocDescriptionWithDot: boolean;\n jsdocDescriptionTag: boolean;\n jsdocVerticalAlignment: boolean;\n jsdocKeepUnParseAbleExampleIndent: boolean;\n jsdocSingleLineComment: boolean;\n jsdocCommentLineStrategy: \"singleLine\" | \"multiline\" | \"keep\";\n jsdocSeparateReturnsFromParam: boolean;\n jsdocSeparateTagGroups: boolean;\n jsdocAddDefaultToDescription: boolean;\n jsdocCapitalizeDescription: boolean;\n jsdocPreferCodeFences: boolean;\n tsdoc: boolean;\n jsdocLineWrappingStyle: \"greedy\";\n jsdocTagsOrder?: Record<string, number>;\n}\nexport interface AllOptions extends ParserOptions, JsdocOptions {\n}\ntype LocationDetails = {\n line: number;\n column: number;\n};\ntype Location = {\n start: LocationDetails;\n end: LocationDetails;\n};\nexport type PrettierComment = {\n type: \"CommentBlock\" | \"Block\";\n value: string;\n start: number;\n end: number;\n loc: Location;\n};\nexport type Token = {\n type: \"CommentBlock\" | \"Block\" | {\n label: string;\n keyword?: string;\n beforeExpr: boolean;\n startsExpr: boolean;\n rightAssociative: boolean;\n isLoop: boolean;\n isAssign: boolean;\n prefix: boolean;\n postfix: boolean;\n binop: null;\n };\n value: string;\n start: number;\n end: number;\n loc: Location;\n};\nexport type AST = {\n start: number;\n end: number;\n loc: Location;\n errors: [];\n program: {\n type: \"Program\";\n start: number;\n end: number;\n loc: [];\n sourceType: \"module\";\n interpreter: null;\n body: [];\n directives: [];\n };\n comments: PrettierComment[];\n tokens: Token[];\n};\nexport {};\n",
|
|
13590
|
+
"node_modules/prettier-plugin-jsdoc/dist/utils.d.ts": "import { Options, ParserOptions } from \"prettier\";\nimport { AllOptions, Token } from \"./types.js\";\ndeclare function convertToModernType(oldType: string): string;\ndeclare function formatType(type: string, options?: Options): Promise<string>;\ndeclare function addStarsToTheBeginningOfTheLines(originalComment: string, comment: string, options: AllOptions): string;\ndeclare function capitalizer(str: string): string;\ndeclare function detectEndOfLine(text: string): \"cr\" | \"crlf\" | \"lf\";\ndeclare function findTokenIndex(tokens: Token[], token: Token): number;\ndeclare function formatCode(result: string, beginningSpace: string, options: AllOptions): Promise<string>;\ndeclare const findPluginByParser: (parserName: string, options: ParserOptions) => import(\"prettier\").Parser<any> | undefined;\ndeclare const isDefaultTag: (tag: string) => boolean;\nexport { convertToModernType, formatType, addStarsToTheBeginningOfTheLines, capitalizer, detectEndOfLine, findTokenIndex, formatCode, findPluginByParser, isDefaultTag, };\n",
|
|
13591
|
+
"node_modules/prettier-plugin-jsdoc/package.json": "{\n \"name\": \"prettier-plugin-jsdoc\",\n \"version\": \"1.3.2\",\n \"description\": \"A Prettier plugin to format JSDoc comments.\",\n \"private\": false,\n \"type\": \"module\",\n \"exports\": {\n \".\": {\n \"types\": \"./dist/index.d.ts\",\n \"default\": \"./dist/index.js\"\n }\n },\n \"browser\": \"dist/index.umd.min.js\",\n \"unpkg\": \"dist/index.umd.min.js\",\n \"types\": \"dist/index.d.ts\",\n \"files\": [\n \"dist\"\n ],\n \"scripts\": {\n \"prepare\": \"yarn build\",\n \"lint\": \"eslint --ext '.ts' ./src\",\n \"test\": \"yarn build --test && NODE_OPTIONS=\\\"--loader ts-node/esm\\\" jest\",\n \"release\": \"standard-version && yarn publish && git push --follow-tags origin master\",\n \"prettierAll\": \"prettier --write \\\"**/*.ts\\\"\",\n \"clean\": \"rm -fr dist\",\n \"build\": \"chmod +x ./script.sh && ./script.sh\"\n },\n \"keywords\": [\n \"prettier\",\n \"plugin\",\n \"jsdoc\",\n \"comment\"\n ],\n \"author\": \"Hossein mohammadi (hosseinm.developer@gmail.com)\",\n \"license\": \"MIT\",\n \"bugs\": {\n \"url\": \"https://github.com/hosseinmd/prettier-plugin-jsdoc/issues\"\n },\n \"homepage\": \"https://github.com/hosseinmd/prettier-plugin-jsdoc#readme\",\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"git+https://github.com/hosseinmd/prettier-plugin-jsdoc.git\"\n },\n \"devDependencies\": {\n \"@commitlint/config-conventional\": \"^14.1.0\",\n \"@rollup/plugin-commonjs\": \"^21.0.3\",\n \"@rollup/plugin-json\": \"^4.1.0\",\n \"@rollup/plugin-node-resolve\": \"^13.1.3\",\n \"@types/jest\": \"^29.5.4\",\n \"@types/mdast\": \"^4.0.1\",\n \"@typescript-eslint/eslint-plugin\": \"^6.6.0\",\n \"@typescript-eslint/parser\": \"^6.6.0\",\n \"commitlint\": \"^14.1.0\",\n \"eslint\": \"^8.49.0\",\n \"eslint-config-prettier\": \"^9.0.0\",\n \"eslint-plugin-prettier\": \"^5.0.0\",\n \"husky\": \"^7.0.4\",\n \"jest\": \"^29.6.4\",\n \"jest-light-runner\": \"^0.5.0\",\n \"jest-specific-snapshot\": \"^5.0.0\",\n \"prettier\": \"^3.0.3\",\n \"rollup\": \"^2.70.1\",\n \"standard-version\": \"^9.3.2\",\n \"terser\": \"^5.12.1\",\n \"ts-node\": \"^10.9.1\",\n \"typescript\": \"^5.2.2\"\n },\n \"peerDependencies\": {\n \"prettier\": \"^3.0.0\"\n },\n \"dependencies\": {\n \"binary-searching\": \"^2.0.5\",\n \"comment-parser\": \"^1.4.0\",\n \"mdast-util-from-markdown\": \"^2.0.0\"\n },\n \"engines\": {\n \"node\": \">=14.13.1 || >=16.0.0\"\n },\n \"packageManager\": \"yarn@1.22.22\"\n}\n",
|
|
13387
13592
|
"node_modules/process-nextick-args/package.json": "{\n \"name\": \"process-nextick-args\",\n \"version\": \"2.0.1\",\n \"description\": \"process.nextTick but always with args\",\n \"main\": \"index.js\",\n \"files\": [\n \"index.js\"\n ],\n \"scripts\": {\n \"test\": \"node test.js\"\n },\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/calvinmetcalf/process-nextick-args.git\"\n },\n \"author\": \"\",\n \"license\": \"MIT\",\n \"bugs\": {\n \"url\": \"https://github.com/calvinmetcalf/process-nextick-args/issues\"\n },\n \"homepage\": \"https://github.com/calvinmetcalf/process-nextick-args\",\n \"devDependencies\": {\n \"tap\": \"~0.2.6\"\n }\n}\n",
|
|
13388
13593
|
"node_modules/prop-types/package.json": "{\n \"name\": \"prop-types\",\n \"version\": \"15.8.1\",\n \"description\": \"Runtime type checking for React props and similar objects.\",\n \"sideEffects\": false,\n \"main\": \"index.js\",\n \"license\": \"MIT\",\n \"files\": [\n \"LICENSE\",\n \"README.md\",\n \"checkPropTypes.js\",\n \"factory.js\",\n \"factoryWithThrowingShims.js\",\n \"factoryWithTypeCheckers.js\",\n \"index.js\",\n \"prop-types.js\",\n \"prop-types.min.js\",\n \"lib\"\n ],\n \"repository\": \"facebook/prop-types\",\n \"keywords\": [\n \"react\"\n ],\n \"bugs\": {\n \"url\": \"https://github.com/facebook/prop-types/issues\"\n },\n \"homepage\": \"https://facebook.github.io/react/\",\n \"dependencies\": {\n \"loose-envify\": \"^1.4.0\",\n \"object-assign\": \"^4.1.1\",\n \"react-is\": \"^16.13.1\"\n },\n \"scripts\": {\n \"pretest\": \"npm run lint\",\n \"lint\": \"eslint .\",\n \"test\": \"npm run tests-only\",\n \"tests-only\": \"jest\",\n \"umd\": \"NODE_ENV=development browserify index.js -t loose-envify --standalone PropTypes -o prop-types.js\",\n \"umd-min\": \"NODE_ENV=production browserify index.js -t loose-envify -t uglifyify --standalone PropTypes -p bundle-collapser/plugin -o | uglifyjs --compress unused,dead_code -o prop-types.min.js\",\n \"build\": \"yarn umd && yarn umd-min\",\n \"prepublish\": \"not-in-publish || yarn build\"\n },\n \"devDependencies\": {\n \"babel-jest\": \"^19.0.0\",\n \"babel-preset-react\": \"^6.24.1\",\n \"browserify\": \"^16.5.0\",\n \"bundle-collapser\": \"^1.4.0\",\n \"eslint\": \"^8.6.0\",\n \"in-publish\": \"^2.0.1\",\n \"jest\": \"^19.0.2\",\n \"react\": \"^15.7.0\",\n \"uglifyify\": \"^5.0.2\",\n \"uglifyjs\": \"^2.4.11\"\n },\n \"browserify\": {\n \"transform\": [\n \"loose-envify\"\n ]\n }\n}\n",
|
|
13389
13594
|
"node_modules/prop-types/node_modules/react-is/package.json": "{\n \"name\": \"react-is\",\n \"version\": \"16.13.1\",\n \"description\": \"Brand checking of React Elements.\",\n \"main\": \"index.js\",\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/facebook/react.git\",\n \"directory\": \"packages/react-is\"\n },\n \"keywords\": [\n \"react\"\n ],\n \"license\": \"MIT\",\n \"bugs\": {\n \"url\": \"https://github.com/facebook/react/issues\"\n },\n \"homepage\": \"https://reactjs.org/\",\n \"files\": [\n \"LICENSE\",\n \"README.md\",\n \"build-info.json\",\n \"index.js\",\n \"cjs/\",\n \"umd/\"\n ]\n}\n",
|
|
@@ -14867,6 +15072,9 @@
|
|
|
14867
15072
|
"node_modules/uid/single/index.d.ts": "/**\n * Produce a UID of desired length.\n * @NOTE Relies on a alpanumic alphabet (A-Z, 0-9).\n * @param {number} [length] Defaults to `11`\n */\nexport function uid(length?: number): string;\n",
|
|
14868
15073
|
"node_modules/uint8array-extras/index.d.ts": "export type TypedArray =\n\t| Int8Array\n\t| Uint8Array\n\t| Uint8ClampedArray\n\t| Int16Array\n\t| Uint16Array\n\t| Int32Array\n\t| Uint32Array\n\t| Float32Array\n\t| Float64Array\n\t| BigInt64Array\n\t| BigUint64Array;\n\n/**\nCheck if the given value is an instance of `Uint8Array`.\n\nReplacement for [`Buffer.isBuffer()`](https://nodejs.org/api/buffer.html#static-method-bufferisbufferobj).\n\n@example\n```\nimport {isUint8Array} from 'uint8array-extras';\n\nconsole.log(isUint8Array(new Uint8Array()));\n//=> true\n\nconsole.log(isUint8Array(Buffer.from('x')));\n//=> true\n\nconsole.log(isUint8Array(new ArrayBuffer(10)));\n//=> false\n```\n*/\nexport function isUint8Array(value: unknown): value is Uint8Array;\n\n/**\nThrow a `TypeError` if the given value is not an instance of `Uint8Array`.\n\n@example\n```\nimport {assertUint8Array} from 'uint8array-extras';\n\ntry {\n\tassertUint8Array(new ArrayBuffer(10)); // Throws a TypeError\n} catch (error) {\n\tconsole.error(error.message);\n}\n```\n*/\nexport function assertUint8Array(value: unknown): asserts value is Uint8Array;\n\n/**\nConvert a value to a `Uint8Array` without copying its data.\n\nThis can be useful for converting a `Buffer` to a pure `Uint8Array`. `Buffer` is already an `Uint8Array` subclass, but [`Buffer` alters some behavior](https://sindresorhus.com/blog/goodbye-nodejs-buffer), so it can be useful to cast it to a pure `Uint8Array` before returning it.\n\nTip: If you want a copy, just call `.slice()` on the return value.\n*/\nexport function toUint8Array(value: TypedArray | ArrayBuffer | DataView): Uint8Array;\n\n/**\nConcatenate the given arrays into a new array.\n\nIf `arrays` is empty, it will return a zero-sized `Uint8Array`.\n\nIf `totalLength` is not specified, it is calculated from summing the lengths of the given arrays.\n\nReplacement for [`Buffer.concat()`](https://nodejs.org/api/buffer.html#static-method-bufferconcatlist-totallength).\n\n@example\n```\nimport {concatUint8Arrays} from 'uint8array-extras';\n\nconst a = new Uint8Array([1, 2, 3]);\nconst b = new Uint8Array([4, 5, 6]);\n\nconsole.log(concatUint8Arrays([a, b]));\n//=> Uint8Array [1, 2, 3, 4, 5, 6]\n```\n*/\nexport function concatUint8Arrays(arrays: Uint8Array[], totalLength?: number): Uint8Array;\n\n/**\nCheck if two arrays are identical by verifying that they contain the same bytes in the same sequence.\n\nReplacement for [`Buffer#equals()`](https://nodejs.org/api/buffer.html#bufequalsotherbuffer).\n\n@example\n```\nimport {areUint8ArraysEqual} from 'uint8array-extras';\n\nconst a = new Uint8Array([1, 2, 3]);\nconst b = new Uint8Array([1, 2, 3]);\nconst c = new Uint8Array([4, 5, 6]);\n\nconsole.log(areUint8ArraysEqual(a, b));\n//=> true\n\nconsole.log(areUint8ArraysEqual(a, c));\n//=> false\n```\n*/\nexport function areUint8ArraysEqual(a: Uint8Array, b: Uint8Array): boolean;\n\n/**\nCompare two arrays and indicate their relative order or equality. Useful for sorting.\n\nReplacement for [`Buffer.compare()`](https://nodejs.org/api/buffer.html#static-method-buffercomparebuf1-buf2).\n\n@example\n```\nimport {compareUint8Arrays} from 'uint8array-extras';\n\nconst array1 = new Uint8Array([1, 2, 3]);\nconst array2 = new Uint8Array([4, 5, 6]);\nconst array3 = new Uint8Array([7, 8, 9]);\n\n[array3, array1, array2].sort(compareUint8Arrays);\n//=> [[1, 2, 3], [4, 5, 6], [7, 8, 9]]\n```\n*/\nexport function compareUint8Arrays(a: Uint8Array, b: Uint8Array): 0 | 1 | -1;\n\n/**\nConvert a `Uint8Array` to a string.\n\n@param encoding - The [encoding](https://developer.mozilla.org/en-US/docs/Web/API/Encoding_API/Encodings) to convert from. Default: `'utf8'`\n\nReplacement for [`Buffer#toString()`](https://nodejs.org/api/buffer.html#buftostringencoding-start-end). For the `encoding` parameter, `latin1` should be used instead of `binary` and `utf-16le` instead of `utf16le`.\n\n@example\n```\nimport {uint8ArrayToString} from 'uint8array-extras';\n\nconst byteArray = new Uint8Array([72, 101, 108, 108, 111]);\nconsole.log(uint8ArrayToString(byteArray));\n//=> 'Hello'\n\nconst zh = new Uint8Array([167, 65, 166, 110]);\nconsole.log(uint8ArrayToString(zh, 'big5'));\n//=> '你好'\n\nconst ja = new Uint8Array([130, 177, 130, 241, 130, 201, 130, 191, 130, 205]);\nconsole.log(uint8ArrayToString(ja, 'shift-jis'));\n//=> 'こんにちは'\n```\n*/\nexport function uint8ArrayToString(array: Uint8Array | ArrayBuffer, encoding?: string): string;\n\n/**\nConvert a string to a `Uint8Array` (using UTF-8 encoding).\n\nReplacement for [`Buffer.from('Hello')`](https://nodejs.org/api/buffer.html#static-method-bufferfromstring-encoding).\n\n@example\n```\nimport {stringToUint8Array} from 'uint8array-extras';\n\nconsole.log(stringToUint8Array('Hello'));\n//=> Uint8Array [72, 101, 108, 108, 111]\n```\n*/\nexport function stringToUint8Array(string: string): Uint8Array;\n\n/**\nConvert a `Uint8Array` to a Base64-encoded string.\n\nSpecify `{urlSafe: true}` to get a [Base64URL](https://base64.guru/standards/base64url)-encoded string.\n\nReplacement for [`Buffer#toString('base64')`](https://nodejs.org/api/buffer.html#buftostringencoding-start-end).\n\n@example\n```\nimport {uint8ArrayToBase64} from 'uint8array-extras';\n\nconst byteArray = new Uint8Array([72, 101, 108, 108, 111]);\n\nconsole.log(uint8ArrayToBase64(byteArray));\n//=> 'SGVsbG8='\n```\n*/\nexport function uint8ArrayToBase64(array: Uint8Array, options?: {urlSafe: boolean}): string;\n\n/**\nConvert a Base64-encoded or [Base64URL](https://base64.guru/standards/base64url)-encoded string to a `Uint8Array`.\n\nReplacement for [`Buffer.from('SGVsbG8=', 'base64')`](https://nodejs.org/api/buffer.html#static-method-bufferfromstring-encoding).\n\n@example\n```\nimport {base64ToUint8Array} from 'uint8array-extras';\n\nconsole.log(base64ToUint8Array('SGVsbG8='));\n//=> Uint8Array [72, 101, 108, 108, 111]\n```\n*/\nexport function base64ToUint8Array(string: string): Uint8Array;\n\n/**\nEncode a string to Base64-encoded string.\n\nSpecify `{urlSafe: true}` to get a [Base64URL](https://base64.guru/standards/base64url)-encoded string.\n\nReplacement for `Buffer.from('Hello').toString('base64')` and [`btoa()`](https://developer.mozilla.org/en-US/docs/Web/API/btoa).\n\n@example\n```\nimport {stringToBase64} from 'uint8array-extras';\n\nconsole.log(stringToBase64('Hello'));\n//=> 'SGVsbG8='\n```\n*/\nexport function stringToBase64(string: string, options?: {urlSafe: boolean}): string;\n\n/**\nDecode a Base64-encoded or [Base64URL](https://base64.guru/standards/base64url)-encoded string to a string.\n\nReplacement for `Buffer.from('SGVsbG8=', 'base64').toString()` and [`atob()`](https://developer.mozilla.org/en-US/docs/Web/API/atob).\n\n@example\n```\nimport {base64ToString} from 'uint8array-extras';\n\nconsole.log(base64ToString('SGVsbG8='));\n//=> 'Hello'\n```\n*/\nexport function base64ToString(base64String: string): string;\n\n/**\nConvert a `Uint8Array` to a Hex string.\n\nReplacement for [`Buffer#toString('hex')`](https://nodejs.org/api/buffer.html#buftostringencoding-start-end).\n\n@example\n```\nimport {uint8ArrayToHex} from 'uint8array-extras';\n\nconst byteArray = new Uint8Array([72, 101, 108, 108, 111]);\n\nconsole.log(uint8ArrayToHex(byteArray));\n//=> '48656c6c6f'\n```\n*/\nexport function uint8ArrayToHex(array: Uint8Array): string;\n\n/**\nConvert a Hex string to a `Uint8Array`.\n\nReplacement for [`Buffer.from('48656c6c6f', 'hex')`](https://nodejs.org/api/buffer.html#static-method-bufferfromstring-encoding).\n\n@example\n```\nimport {hexToUint8Array} from 'uint8array-extras';\n\nconsole.log(hexToUint8Array('48656c6c6f'));\n//=> Uint8Array [72, 101, 108, 108, 111]\n```\n*/\nexport function hexToUint8Array(hexString: string): Uint8Array;\n\n/**\nRead `DataView#byteLength` number of bytes from the given view, up to 48-bit.\n\nReplacement for [`Buffer#readUintBE`](https://nodejs.org/api/buffer.html#bufreadintbeoffset-bytelength)\n\n@example\n```\nimport {getUintBE} from 'uint8array-extras';\n\nconst byteArray = new Uint8Array([0x12, 0x34, 0x56, 0x78, 0x90, 0xab]);\n\nconsole.log(getUintBE(new DataView(byteArray.buffer)));\n//=> 20015998341291\n```\n*/\nexport function getUintBE(view: DataView): number; // eslint-disable-line @typescript-eslint/naming-convention\n\n/**\nFind the index of the first occurrence of the given sequence of bytes (`value`) within the given `Uint8Array` (`array`).\n\nReplacement for [`Buffer#indexOf`](https://nodejs.org/api/buffer.html#bufindexofvalue-byteoffset-encoding). `Uint8Array#indexOf` only takes a number which is different from Buffer's `indexOf` implementation.\n\n@example\n```\nimport {indexOf} from 'uint8array-extras';\n\nconst byteArray = new Uint8Array([0x12, 0x34, 0x56, 0x78, 0x90, 0xab, 0xcd, 0xef]);\n\nconsole.log(indexOf(byteArray, new Uint8Array([0x78, 0x90])));\n//=> 3\n```\n*/\nexport function indexOf(array: Uint8Array, value: Uint8Array): number;\n\n/**\nChecks if the given sequence of bytes (`value`) is within the given `Uint8Array` (`array`).\n\nReturns true if the value is included, otherwise false.\n\nReplacement for [`Buffer#includes`](https://nodejs.org/api/buffer.html#bufincludesvalue-byteoffset-encoding). `Uint8Array#includes` only takes a number which is different from Buffer's `includes` implementation.\n\n```\nimport {includes} from 'uint8array-extras';\n\nconst byteArray = new Uint8Array([0x12, 0x34, 0x56, 0x78, 0x90, 0xab, 0xcd, 0xef]);\n\nconsole.log(includes(byteArray, new Uint8Array([0x78, 0x90])));\n//=> true\n```\n*/\nexport function includes(array: Uint8Array, value: Uint8Array): boolean;\n",
|
|
14869
15074
|
"node_modules/uint8array-extras/package.json": "{\n\t\"name\": \"uint8array-extras\",\n\t\"version\": \"1.4.0\",\n\t\"description\": \"Useful utilities for working with Uint8Array (and Buffer)\",\n\t\"license\": \"MIT\",\n\t\"repository\": \"sindresorhus/uint8array-extras\",\n\t\"funding\": \"https://github.com/sponsors/sindresorhus\",\n\t\"author\": {\n\t\t\"name\": \"Sindre Sorhus\",\n\t\t\"email\": \"sindresorhus@gmail.com\",\n\t\t\"url\": \"https://sindresorhus.com\"\n\t},\n\t\"type\": \"module\",\n\t\"exports\": {\n\t\t\"types\": \"./index.d.ts\",\n\t\t\"default\": \"./index.js\"\n\t},\n\t\"sideEffects\": false,\n\t\"engines\": {\n\t\t\"node\": \">=18\"\n\t},\n\t\"scripts\": {\n\t\t\"test\": \"xo && ava && tsc index.d.ts\"\n\t},\n\t\"files\": [\n\t\t\"index.js\",\n\t\t\"index.d.ts\"\n\t],\n\t\"keywords\": [\n\t\t\"uint8array\",\n\t\t\"uint8\",\n\t\t\"typedarray\",\n\t\t\"buffer\",\n\t\t\"typedarray\",\n\t\t\"arraybuffer\",\n\t\t\"is\",\n\t\t\"assert\",\n\t\t\"concat\",\n\t\t\"equals\",\n\t\t\"compare\",\n\t\t\"base64\",\n\t\t\"string\",\n\t\t\"atob\",\n\t\t\"btoa\",\n\t\t\"hex\",\n\t\t\"hexadecimal\"\n\t],\n\t\"devDependencies\": {\n\t\t\"ava\": \"^6.0.1\",\n\t\t\"typescript\": \"^5.3.3\",\n\t\t\"xo\": \"^0.56.0\",\n\t\t\"benchmark\": \"2.1.4\"\n\t}\n}\n",
|
|
15075
|
+
"node_modules/unist-util-stringify-position/index.d.ts": "export {stringifyPosition} from './lib/index.js'\n",
|
|
15076
|
+
"node_modules/unist-util-stringify-position/lib/index.d.ts": "/**\n * @typedef {import('unist').Node} Node\n * @typedef {import('unist').Point} Point\n * @typedef {import('unist').Position} Position\n */\n/**\n * @typedef NodeLike\n * @property {string} type\n * @property {PositionLike | null | undefined} [position]\n *\n * @typedef PointLike\n * @property {number | null | undefined} [line]\n * @property {number | null | undefined} [column]\n * @property {number | null | undefined} [offset]\n *\n * @typedef PositionLike\n * @property {PointLike | null | undefined} [start]\n * @property {PointLike | null | undefined} [end]\n */\n/**\n * Serialize the positional info of a point, position (start and end points),\n * or node.\n *\n * @param {Node | NodeLike | Point | PointLike | Position | PositionLike | null | undefined} [value]\n * Node, position, or point.\n * @returns {string}\n * Pretty printed positional info of a node (`string`).\n *\n * In the format of a range `ls:cs-le:ce` (when given `node` or `position`)\n * or a point `l:c` (when given `point`), where `l` stands for line, `c` for\n * column, `s` for `start`, and `e` for end.\n * An empty string (`''`) is returned if the given value is neither `node`,\n * `position`, nor `point`.\n */\nexport function stringifyPosition(\n value?:\n | Node\n | NodeLike\n | Point\n | PointLike\n | Position\n | PositionLike\n | null\n | undefined\n): string\nexport type Node = import('unist').Node\nexport type Point = import('unist').Point\nexport type Position = import('unist').Position\nexport type NodeLike = {\n type: string\n position?: PositionLike | null | undefined\n}\nexport type PointLike = {\n line?: number | null | undefined\n column?: number | null | undefined\n offset?: number | null | undefined\n}\nexport type PositionLike = {\n start?: PointLike | null | undefined\n end?: PointLike | null | undefined\n}\n",
|
|
15077
|
+
"node_modules/unist-util-stringify-position/package.json": "{\n \"name\": \"unist-util-stringify-position\",\n \"version\": \"4.0.0\",\n \"description\": \"unist utility to serialize a node, position, or point as a human readable location\",\n \"license\": \"MIT\",\n \"keywords\": [\n \"unist\",\n \"unist-util\",\n \"util\",\n \"utility\",\n \"position\",\n \"location\",\n \"point\",\n \"node\",\n \"stringify\",\n \"tostring\"\n ],\n \"repository\": \"syntax-tree/unist-util-stringify-position\",\n \"bugs\": \"https://github.com/syntax-tree/unist-util-stringify-position/issues\",\n \"funding\": {\n \"type\": \"opencollective\",\n \"url\": \"https://opencollective.com/unified\"\n },\n \"author\": \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\",\n \"contributors\": [\n \"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)\"\n ],\n \"sideEffects\": false,\n \"type\": \"module\",\n \"exports\": \"./index.js\",\n \"files\": [\n \"lib/\",\n \"index.d.ts\",\n \"index.js\"\n ],\n \"dependencies\": {\n \"@types/unist\": \"^3.0.0\"\n },\n \"devDependencies\": {\n \"@types/mdast\": \"^4.0.0\",\n \"@types/node\": \"^20.0.0\",\n \"c8\": \"^8.0.0\",\n \"prettier\": \"^2.0.0\",\n \"remark-cli\": \"^11.0.0\",\n \"remark-preset-wooorm\": \"^9.0.0\",\n \"type-coverage\": \"^2.0.0\",\n \"typescript\": \"^5.0.0\",\n \"xo\": \"^0.54.0\"\n },\n \"scripts\": {\n \"prepack\": \"npm run build && npm run format\",\n \"build\": \"tsc --build --clean && tsc --build && type-coverage\",\n \"format\": \"remark . -qfo && prettier . -w --loglevel warn && xo --fix\",\n \"test-api\": \"node --conditions development test.js\",\n \"test-coverage\": \"c8 --100 --reporter lcov npm run test-api\",\n \"test\": \"npm run build && npm run format && npm run test-coverage\"\n },\n \"prettier\": {\n \"bracketSpacing\": false,\n \"semi\": false,\n \"singleQuote\": true,\n \"tabWidth\": 2,\n \"trailingComma\": \"none\",\n \"useTabs\": false\n },\n \"remarkConfig\": {\n \"plugins\": [\n \"remark-preset-wooorm\"\n ]\n },\n \"typeCoverage\": {\n \"atLeast\": 100,\n \"detail\": true,\n \"ignoreCatch\": true,\n \"strict\": true\n },\n \"xo\": {\n \"prettier\": true\n }\n}\n",
|
|
14870
15078
|
"node_modules/unpipe/package.json": "{\n \"name\": \"unpipe\",\n \"description\": \"Unpipe a stream from all destinations\",\n \"version\": \"1.0.0\",\n \"author\": \"Douglas Christopher Wilson <doug@somethingdoug.com>\",\n \"license\": \"MIT\",\n \"repository\": \"stream-utils/unpipe\",\n \"devDependencies\": {\n \"istanbul\": \"0.3.15\",\n \"mocha\": \"2.2.5\",\n \"readable-stream\": \"1.1.13\"\n },\n \"files\": [\n \"HISTORY.md\",\n \"LICENSE\",\n \"README.md\",\n \"index.js\"\n ],\n \"engines\": {\n \"node\": \">= 0.8\"\n },\n \"scripts\": {\n \"test\": \"mocha --reporter spec --bail --check-leaks test/\",\n \"test-cov\": \"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/\",\n \"test-travis\": \"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/\"\n }\n}\n",
|
|
14871
15079
|
"node_modules/util-deprecate/package.json": "{\n \"name\": \"util-deprecate\",\n \"version\": \"1.0.2\",\n \"description\": \"The Node.js `util.deprecate()` function with browser support\",\n \"main\": \"node.js\",\n \"browser\": \"browser.js\",\n \"scripts\": {\n \"test\": \"echo \\\"Error: no test specified\\\" && exit 1\"\n },\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"git://github.com/TooTallNate/util-deprecate.git\"\n },\n \"keywords\": [\n \"util\",\n \"deprecate\",\n \"browserify\",\n \"browser\",\n \"node\"\n ],\n \"author\": \"Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)\",\n \"license\": \"MIT\",\n \"bugs\": {\n \"url\": \"https://github.com/TooTallNate/util-deprecate/issues\"\n },\n \"homepage\": \"https://github.com/TooTallNate/util-deprecate\"\n}\n",
|
|
14872
15080
|
"node_modules/v8-compile-cache-lib/package.json": "{\n \"name\": \"v8-compile-cache-lib\",\n \"version\": \"3.0.1\",\n \"description\": \"Require hook for automatic V8 compile cache persistence\",\n \"main\": \"v8-compile-cache.js\",\n \"scripts\": {\n \"bench\": \"bench/run.sh\",\n \"eslint\": \"eslint --max-warnings=0 .\",\n \"tap\": \"tap test/*-test.js\",\n \"test\": \"npm run tap\",\n \"posttest\": \"npm run eslint\"\n },\n \"author\": \"Andrew Bradley <cspotcode@gmail.com>\",\n \"repository\": {\n \"type\": \"git\",\n \"url\": \"https://github.com/cspotcode/v8-compile-cache-lib.git\"\n },\n \"files\": [\n \"v8-compile-cache.d.ts\",\n \"v8-compile-cache.js\"\n ],\n \"license\": \"MIT\",\n \"dependencies\": {},\n \"devDependencies\": {\n \"babel-core\": \"6.26.3\",\n \"eslint\": \"^7.12.1\",\n \"flow-parser\": \"0.136.0\",\n \"rimraf\": \"^2.5.4\",\n \"rxjs\": \"6.6.3\",\n \"semver\": \"^5.3.0\",\n \"tap\": \"^9.0.0\",\n \"temp\": \"^0.8.3\",\n \"yarn\": \"1.22.10\"\n }\n}\n",
|