diff --git a/.changeset/silly-insects-draw.md b/.changeset/silly-insects-draw.md
new file mode 100644
index 0000000..48255e3
--- /dev/null
+++ b/.changeset/silly-insects-draw.md
@@ -0,0 +1,9 @@
+---
+"@effect/docgen": minor
+---
+
+- **Extracts examples from descriptions** – This can be disabled using `skip-type-checking` metadata on fenced code blocks. `@example` tags still work, but we may remove them in the future.
+- **Supports the `@throws` JSDoc tag** – Properly documents possible errors.
+- **Basic support for the `@see` JSDoc tag** – Displays only the API name and description.
+- **Adds GitHub source links** – Provides direct access to the corresponding source code.
+- **Repositions signatures** – Now moved further down, just before the source link and `@since` tag, for better readability.
diff --git a/.eslintrc.cjs b/.eslintrc.cjs
deleted file mode 100644
index 28592a3..0000000
--- a/.eslintrc.cjs
+++ /dev/null
@@ -1,80 +0,0 @@
-/* eslint-disable no-undef */
-module.exports = {
- ignorePatterns: ["dist", "*.mjs", "docs", "*.md"],
- parser: "@typescript-eslint/parser",
- parserOptions: {
- ecmaVersion: 2018,
- sourceType: "module"
- },
- settings: {
- "import/parsers": {
- "@typescript-eslint/parser": [".ts", ".tsx"]
- },
- "import/resolver": {
- typescript: {
- alwaysTryTypes: true
- }
- }
- },
- extends: [
- "eslint:recommended",
- "plugin:@typescript-eslint/eslint-recommended",
- "plugin:@typescript-eslint/recommended",
- "plugin:@effect/recommended"
- ],
- plugins: ["deprecation", "import", "sort-destructure-keys", "simple-import-sort", "codegen"],
- rules: {
- "codegen/codegen": "error",
- "no-fallthrough": "off",
- "no-irregular-whitespace": "off",
- "object-shorthand": "error",
- "prefer-destructuring": "off",
- "sort-imports": "off",
- "no-unused-vars": "off",
- "prefer-rest-params": "off",
- "prefer-spread": "off",
- "import/first": "error",
- "import/no-cycle": "error",
- "import/newline-after-import": "error",
- "import/no-duplicates": "error",
- "import/no-unresolved": "off",
- "import/order": "off",
- "simple-import-sort/imports": "off",
- "sort-destructure-keys/sort-destructure-keys": "error",
- "deprecation/deprecation": "off",
- "@typescript-eslint/array-type": ["warn", { "default": "generic", "readonly": "generic" }],
- "@typescript-eslint/member-delimiter-style": 0,
- "@typescript-eslint/no-non-null-assertion": "off",
- "@typescript-eslint/ban-types": "off",
- "@typescript-eslint/no-explicit-any": "off",
- "@typescript-eslint/no-empty-interface": "off",
- "@typescript-eslint/no-empty-object-type": "off",
- "@typescript-eslint/consistent-type-imports": "warn",
- "@typescript-eslint/no-unused-vars": ["error", {
- "argsIgnorePattern": "^_",
- "varsIgnorePattern": "^_"
- }],
- "@typescript-eslint/ban-ts-comment": "off",
- "@typescript-eslint/camelcase": "off",
- "@typescript-eslint/explicit-function-return-type": "off",
- "@typescript-eslint/explicit-module-boundary-types": "off",
- "@typescript-eslint/interface-name-prefix": "off",
- "@typescript-eslint/no-array-constructor": "off",
- "@typescript-eslint/no-use-before-define": "off",
- "@typescript-eslint/no-namespace": "off",
- "@effect/dprint": [
- "error",
- {
- config: {
- "indentWidth": 2,
- "lineWidth": 100,
- "semiColons": "asi",
- "quoteStyle": "alwaysDouble",
- "trailingCommas": "never",
- "operatorPosition": "maintain",
- "arrowFunction.useParentheses": "force"
- }
- }
- ]
- }
-}
diff --git a/.github/workflows/snapshot.yml b/.github/workflows/snapshot.yml
new file mode 100644
index 0000000..ef63606
--- /dev/null
+++ b/.github/workflows/snapshot.yml
@@ -0,0 +1,23 @@
+name: Snapshot
+on:
+ pull_request:
+ branches: [main]
+ workflow_dispatch:
+
+permissions: {}
+
+jobs:
+ snapshot:
+ name: Snapshot
+ if: github.repository_owner == 'Effect-Ts'
+ runs-on: ubuntu-latest
+ timeout-minutes: 10
+ steps:
+ - uses: actions/checkout@v4
+ - name: Install dependencies
+ uses: ./.github/actions/setup
+ - name: Build package
+ run: pnpm build
+ - name: Create snapshot
+ id: snapshot
+ run: pnpx pkg-pr-new@0.0.28 publish --pnpm --comment=off
diff --git a/docgen.json b/docgen.json
index 1aa61a3..559df04 100644
--- a/docgen.json
+++ b/docgen.json
@@ -8,9 +8,18 @@
"exactOptionalPropertyTypes": true,
"moduleResolution": "Bundler",
"target": "ES2022",
- "lib": [
- "ES2022",
- "DOM"
- ]
+ "lib": ["ES2022", "DOM"]
+ },
+ "examplesCompilerOptions": {
+ "noEmit": true,
+ "strict": true,
+ "skipLibCheck": true,
+ "exactOptionalPropertyTypes": true,
+ "moduleResolution": "Bundler",
+ "target": "ES2022",
+ "lib": ["ES2022", "DOM"],
+ "paths": {
+ "@effect/docgen": ["../../src/index.js"]
+ }
}
}
diff --git a/docs/modules/CLI.ts.md b/docs/modules/CLI.ts.md
index cd1a397..0643e61 100644
--- a/docs/modules/CLI.ts.md
+++ b/docs/modules/CLI.ts.md
@@ -1,15 +1,38 @@
---
title: CLI.ts
-nav_order: 1
+nav_order: 2
parent: Modules
---
-## CLI overview
+## CLI.ts overview
-Added in v1.0.0
+Since v0.6.0
---
-
Table of contents
+## Exports Grouped by Category
+
+- [CLI](#cli)
+ - [cli](#cli-1)
---
+
+# CLI
+
+## cli
+
+**Signature**
+
+```ts
+declare const cli: (
+ args: ReadonlyArray
+) => Effect.Effect<
+ void,
+ ValidationError.ValidationError | Domain.DocgenError | PlatformError,
+ Domain.Process | CommandExecutor | CliApp.Environment
+>
+```
+
+[Source](https://github.com/effect-ts/docgen/blob/main/src/CLI.ts#L190)
+
+Since v0.6.0
diff --git a/docs/modules/Checker.ts.md b/docs/modules/Checker.ts.md
new file mode 100644
index 0000000..1615d88
--- /dev/null
+++ b/docs/modules/Checker.ts.md
@@ -0,0 +1,152 @@
+---
+title: Checker.ts
+nav_order: 1
+parent: Modules
+---
+
+## Checker.ts overview
+
+Since v0.6.0
+
+---
+
+## Exports Grouped by Category
+
+- [utils](#utils)
+ - [checkClasses](#checkclasses)
+ - [checkConstants](#checkconstants)
+ - [checkExports](#checkexports)
+ - [checkFunctions](#checkfunctions)
+ - [checkInterfaces](#checkinterfaces)
+ - [checkModule](#checkmodule)
+ - [checkModules](#checkmodules)
+ - [checkNamespaces](#checknamespaces)
+ - [checkTypeAliases](#checktypealiases)
+
+---
+
+# utils
+
+## checkClasses
+
+**Signature**
+
+```ts
+declare const checkClasses: (
+ models: ReadonlyArray
+) => Effect.Effect, never, Configuration.Configuration | Parser.Source>
+```
+
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Checker.ts#L112)
+
+Since v0.6.0
+
+## checkConstants
+
+**Signature**
+
+```ts
+declare const checkConstants: (
+ models: ReadonlyArray
+) => Effect.Effect, never, Configuration.Configuration | Parser.Source>
+```
+
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Checker.ts#L125)
+
+Since v0.6.0
+
+## checkExports
+
+**Signature**
+
+```ts
+declare const checkExports: (
+ models: ReadonlyArray
+) => Effect.Effect, never, Configuration.Configuration | Parser.Source>
+```
+
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Checker.ts#L185)
+
+Since v0.6.0
+
+## checkFunctions
+
+**Signature**
+
+```ts
+declare const checkFunctions: (
+ models: ReadonlyArray
+) => Effect.Effect, never, Configuration.Configuration | Parser.Source>
+```
+
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Checker.ts#L87)
+
+Since v0.6.0
+
+## checkInterfaces
+
+**Signature**
+
+```ts
+declare const checkInterfaces: (
+ models: ReadonlyArray
+) => Effect.Effect, never, Configuration.Configuration | Parser.Source>
+```
+
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Checker.ts#L138)
+
+Since v0.6.0
+
+## checkModule
+
+**Signature**
+
+```ts
+declare const checkModule: (module: Domain.Module) => Effect.Effect, never, Configuration.Configuration>
+```
+
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Checker.ts#L192)
+
+Since v0.6.0
+
+## checkModules
+
+**Signature**
+
+```ts
+declare const checkModules: (
+ modules: ReadonlyArray
+) => Effect.Effect, never, Configuration.Configuration>
+```
+
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Checker.ts#L216)
+
+Since v0.6.0
+
+## checkNamespaces
+
+**Signature**
+
+```ts
+declare const checkNamespaces: (
+ models: ReadonlyArray
+) => Effect.Effect, never, Configuration.Configuration | Parser.Source>
+```
+
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Checker.ts#L172)
+
+Since v0.6.0
+
+## checkTypeAliases
+
+**Signature**
+
+```ts
+declare const checkTypeAliases: (
+ models: ReadonlyArray
+) => Effect.Effect, never, Configuration.Configuration | Parser.Source>
+```
+
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Checker.ts#L151)
+
+Since v0.6.0
diff --git a/docs/modules/Configuration.ts.md b/docs/modules/Configuration.ts.md
index c1773c1..6a3c8ba 100644
--- a/docs/modules/Configuration.ts.md
+++ b/docs/modules/Configuration.ts.md
@@ -1,21 +1,23 @@
---
title: Configuration.ts
-nav_order: 2
+nav_order: 3
parent: Modules
---
-## Configuration overview
+## Configuration.ts overview
-Added in v1.0.0
+Since v0.6.0
---
-Table of contents
+## Exports Grouped by Category
- [service](#service)
- [Configuration (class)](#configuration-class)
- [ConfigurationSchema](#configurationschema)
- [ConfigurationShape (interface)](#configurationshape-interface)
+- [utils](#utils)
+ - [DEFAULT_THEME](#default_theme)
---
@@ -26,19 +28,22 @@ Added in v1.0.0
**Signature**
```ts
-export declare class Configuration
+declare class Configuration
```
-Added in v1.0.0
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Configuration.ts#L125)
+
+Since v0.6.0
## ConfigurationSchema
**Signature**
```ts
-export declare const ConfigurationSchema: Schema.Struct<{
+declare const ConfigurationSchema: Schema.Struct<{
$schema: Schema.optional
projectHomepage: Schema.optional
+ srcLink: Schema.optional
srcDir: Schema.optional
outDir: Schema.optional
theme: Schema.optional
@@ -46,6 +51,8 @@ export declare const ConfigurationSchema: Schema.Struct<{
enforceDescriptions: Schema.optional
enforceExamples: Schema.optional
enforceVersion: Schema.optional
+ tscExecutable: Schema.optional
+ runExamples: Schema.optional
exclude: Schema.optional>
parseCompilerOptions: Schema.optional<
Schema.Union<[typeof Schema.String, Schema.Record$]>
@@ -56,7 +63,9 @@ export declare const ConfigurationSchema: Schema.Struct<{
}>
```
-Added in v1.0.0
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Configuration.ts#L38)
+
+Since v0.6.0
## ConfigurationShape (interface)
@@ -66,6 +75,7 @@ Added in v1.0.0
export interface ConfigurationShape {
readonly projectName: string
readonly projectHomepage: string
+ readonly srcLink: string
readonly srcDir: string
readonly outDir: string
readonly theme: string
@@ -73,6 +83,7 @@ export interface ConfigurationShape {
readonly enforceDescriptions: boolean
readonly enforceExamples: boolean
readonly enforceVersion: boolean
+ readonly tscExecutable: string
readonly runExamples: boolean
readonly exclude: ReadonlyArray
readonly parseCompilerOptions: Record
@@ -80,4 +91,20 @@ export interface ConfigurationShape {
}
```
-Added in v1.0.0
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Configuration.ts#L103)
+
+Since v0.6.0
+
+# utils
+
+## DEFAULT_THEME
+
+**Signature**
+
+```ts
+declare const DEFAULT_THEME: "mikearnaldi/just-the-docs"
+```
+
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Configuration.ts#L24)
+
+Since v0.6.0
diff --git a/docs/modules/Core.ts.md b/docs/modules/Core.ts.md
index d510cf6..7384920 100644
--- a/docs/modules/Core.ts.md
+++ b/docs/modules/Core.ts.md
@@ -1,15 +1,34 @@
---
title: Core.ts
-nav_order: 3
+nav_order: 4
parent: Modules
---
-## Core overview
+## Core.ts overview
-Added in v1.0.0
+Since v0.6.0
---
-Table of contents
+## Exports Grouped by Category
+
+- [utils](#utils)
+ - [SKIP_TYPE_CHECKING_FENCE_METADATA](#skip_type_checking_fence_metadata)
---
+
+# utils
+
+## SKIP_TYPE_CHECKING_FENCE_METADATA
+
+The metadata key for skipping type-checking.
+
+**Signature**
+
+```ts
+declare const SKIP_TYPE_CHECKING_FENCE_METADATA: "skip-type-checking"
+```
+
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Core.ts#L163)
+
+Since v0.6.0
diff --git a/docs/modules/Domain.ts.md b/docs/modules/Domain.ts.md
index 3545ecf..7972045 100644
--- a/docs/modules/Domain.ts.md
+++ b/docs/modules/Domain.ts.md
@@ -1,411 +1,416 @@
---
title: Domain.ts
-nav_order: 4
+nav_order: 5
parent: Modules
---
-## Domain overview
+## Domain.ts overview
-Added in v1.0.0
+Since v0.6.0
---
-Table of contents
-
-- [constructors](#constructors)
- - [createClass](#createclass)
- - [createConstant](#createconstant)
- - [createDoc](#createdoc)
- - [createExport](#createexport)
- - [createFunction](#createfunction)
- - [createInterface](#createinterface)
- - [createMethod](#createmethod)
- - [createModule](#createmodule)
- - [createNamedDoc](#createnameddoc)
- - [createNamespace](#createnamespace)
- - [createProperty](#createproperty)
- - [createTypeAlias](#createtypealias)
+## Exports Grouped by Category
+
- [model](#model)
- - [Class (interface)](#class-interface)
- - [Constant (interface)](#constant-interface)
- - [Doc (interface)](#doc-interface)
- - [Example (type alias)](#example-type-alias)
- - [Export (interface)](#export-interface)
- - [Function (interface)](#function-interface)
- - [Interface (interface)](#interface-interface)
- - [Method (interface)](#method-interface)
- - [Module (interface)](#module-interface)
- - [NamedDoc (interface)](#nameddoc-interface)
- - [Namespace (interface)](#namespace-interface)
- - [Property (interface)](#property-interface)
- - [TypeAlias (interface)](#typealias-interface)
+ - [Class (class)](#class-class)
+ - [\_tag (property)](#_tag-property)
+ - [Constant (class)](#constant-class)
+ - [\_tag (property)](#_tag-property-1)
+ - [Doc (class)](#doc-class)
+ - [modifyDescription (method)](#modifydescription-method)
+ - [DocEntry (class)](#docentry-class)
+ - [DocgenError (class)](#docgenerror-class)
+ - [Export (class)](#export-class)
+ - [\_tag (property)](#_tag-property-2)
+ - [File (class)](#file-class)
+ - [Function (class)](#function-class)
+ - [\_tag (property)](#_tag-property-3)
+ - [Interface (class)](#interface-class)
+ - [\_tag (property)](#_tag-property-4)
+ - [Module (class)](#module-class)
+ - [Namespace (class)](#namespace-class)
+ - [\_tag (property)](#_tag-property-5)
+ - [Position (interface)](#position-interface)
+ - [TypeAlias (class)](#typealias-class)
+ - [\_tag (property)](#_tag-property-6)
+- [service](#service)
+ - [Process (class)](#process-class)
- [sorting](#sorting)
- [ByPath](#bypath)
+- [symbol](#symbol)
+ - [DocgenErrorTypeId](#docgenerrortypeid)
+ - [DocgenErrorTypeId (type alias)](#docgenerrortypeid-type-alias)
---
-# constructors
+# model
-## createClass
+## Class (class)
**Signature**
```ts
-export declare const createClass: (
- doc: NamedDoc,
- signature: string,
- methods: ReadonlyArray,
- staticMethods: ReadonlyArray,
- properties: ReadonlyArray
-) => Class
+declare class Class { constructor(
+ name: string,
+ doc: Doc,
+ signature: string,
+ position: Position,
+ readonly methods: ReadonlyArray,
+ readonly staticMethods: ReadonlyArray,
+ readonly properties: ReadonlyArray
+ ) }
```
-Added in v1.0.0
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Domain.ts#L79)
-## createConstant
+Since v0.6.0
+
+### \_tag (property)
**Signature**
```ts
-export declare const createConstant: (doc: NamedDoc, signature: string) => Constant
+readonly _tag: "Class"
```
-Added in v1.0.0
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Domain.ts#L80)
-## createDoc
+## Constant (class)
**Signature**
```ts
-export declare const createDoc: (
- description: Option.Option,
- since: Option.Option,
- deprecated: boolean,
- examples: ReadonlyArray,
- category: Option.Option
-) => Doc
+declare class Constant {
+ constructor(name: string, doc: Doc, signature: string, position: Position)
+}
```
-Added in v1.0.0
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Domain.ts#L155)
-## createExport
+Since v0.6.0
+
+### \_tag (property)
**Signature**
```ts
-export declare const createExport: (doc: NamedDoc, signature: string) => Export
+readonly _tag: "Constant"
```
-Added in v1.0.0
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Domain.ts#L156)
-## createFunction
+## Doc (class)
**Signature**
```ts
-export declare const createFunction: (doc: NamedDoc, signatures: ReadonlyArray) => Function
+declare class Doc { constructor(
+ readonly description: string | undefined,
+ readonly since: ReadonlyArray,
+ readonly deprecated: ReadonlyArray,
+ readonly examples: ReadonlyArray,
+ readonly category: ReadonlyArray,
+ readonly throws: ReadonlyArray,
+ readonly sees: ReadonlyArray,
+ readonly tags: Record | undefined>
+ ) }
```
-Added in v1.0.0
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Domain.ts#L29)
+
+Since v0.6.0
-## createInterface
+### modifyDescription (method)
**Signature**
```ts
-export declare const createInterface: (doc: NamedDoc, signature: string) => Interface
+declare const modifyDescription: (description: string | undefined) => Doc
```
-Added in v1.0.0
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Domain.ts#L41)
-## createMethod
+## DocEntry (class)
**Signature**
```ts
-export declare const createMethod: (doc: NamedDoc, signatures: ReadonlyArray) => Method
+declare class DocEntry { constructor(
+ readonly name: string,
+ readonly doc: Doc,
+ readonly signature: string,
+ readonly position: Position
+ ) }
```
-Added in v1.0.0
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Domain.ts#L16)
-## createModule
+Since v0.6.0
+
+## DocgenError (class)
**Signature**
```ts
-export declare const createModule: (
- doc: NamedDoc,
- path: ReadonlyArray,
- classes: ReadonlyArray,
- interfaces: ReadonlyArray,
- functions: ReadonlyArray,
- typeAliases: ReadonlyArray,
- constants: ReadonlyArray,
- exports: ReadonlyArray,
- namespaces: ReadonlyArray
-) => Module
+declare class DocgenError
```
-Added in v1.0.0
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Domain.ts#L252)
-## createNamedDoc
+Since v0.6.0
-**Signature**
+## Export (class)
-```ts
-export declare const createNamedDoc: (
- name: string,
- description: Option.Option,
- since: Option.Option,
- deprecated: boolean,
- examples: ReadonlyArray,
- category: Option.Option
-) => NamedDoc
-```
+These are manual exports, like:
-Added in v1.0.0
+```ts
+const _null = ...
-## createNamespace
+export {
+ _null as null
+}
+```
**Signature**
```ts
-export declare const createNamespace: (
- doc: NamedDoc,
- interfaces: ReadonlyArray,
- typeAliases: ReadonlyArray,
- namespaces: ReadonlyArray
-) => Namespace
+declare class Export { constructor(
+ name: string,
+ doc: Doc,
+ signature: string,
+ position: Position,
+ readonly isNamespaceExport: boolean
+ ) }
```
-Added in v1.0.0
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Domain.ts#L181)
+
+Since v0.6.0
-## createProperty
+### \_tag (property)
**Signature**
```ts
-export declare const createProperty: (doc: NamedDoc, signature: string) => Property
+readonly _tag: "Export"
```
-Added in v1.0.0
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Domain.ts#L182)
-## createTypeAlias
+## File (class)
+
+Represents a file which can be optionally overwriteable.
**Signature**
```ts
-export declare const createTypeAlias: (doc: NamedDoc, signature: string) => TypeAlias
+declare class File { constructor(
+ readonly path: string,
+ readonly content: string,
+ readonly isOverwriteable: boolean = false
+ ) }
```
-Added in v1.0.0
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Domain.ts#L228)
-# model
+Since v0.6.0
-## Class (interface)
+## Function (class)
**Signature**
```ts
-export interface Class extends NamedDoc {
- readonly _tag: "Class"
- readonly signature: string
- readonly methods: ReadonlyArray
- readonly staticMethods: ReadonlyArray
- readonly properties: ReadonlyArray
+declare class Function {
+ constructor(name: string, doc: Doc, signature: string, position: Position)
}
```
-Added in v1.0.0
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Domain.ts#L123)
-## Constant (interface)
+Since v0.6.0
+
+### \_tag (property)
**Signature**
```ts
-export interface Constant extends NamedDoc {
- readonly _tag: "Constant"
- readonly signature: string
-}
+readonly _tag: "Function"
```
-Added in v1.0.0
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Domain.ts#L124)
-## Doc (interface)
+## Interface (class)
**Signature**
```ts
-export interface Doc {
- readonly description: Option.Option
- readonly since: Option.Option
- readonly deprecated: boolean
- readonly examples: ReadonlyArray
- readonly category: Option.Option
+declare class Interface {
+ constructor(name: string, doc: Doc, signature: string, position: Position)
}
```
-Added in v1.0.0
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Domain.ts#L98)
-## Example (type alias)
+Since v0.6.0
+
+### \_tag (property)
**Signature**
```ts
-export type Example = {
- body: string
- fences?: {
- start: string
- end: string
- }
-}
+readonly _tag: "Interface"
```
-Added in v1.0.0
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Domain.ts#L99)
-## Export (interface)
-
-These are manual exports, like:
-
-```ts
-const _null = ...
-
-export {
- _null as null
-}
-```
+## Module (class)
**Signature**
```ts
-export interface Export extends NamedDoc {
- readonly _tag: "Export"
- readonly signature: string
-}
+declare class Module { constructor(
+ readonly source: Parser.SourceShape,
+ readonly name: string,
+ readonly doc: Doc,
+ readonly path: Array.NonEmptyReadonlyArray,
+ readonly classes: ReadonlyArray,
+ readonly interfaces: ReadonlyArray,
+ readonly functions: ReadonlyArray,
+ readonly typeAliases: ReadonlyArray,
+ readonly constants: ReadonlyArray,
+ readonly exports: ReadonlyArray,
+ readonly namespaces: ReadonlyArray
+ ) }
```
-Added in v1.0.0
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Domain.ts#L59)
-## Function (interface)
+Since v0.6.0
+
+## Namespace (class)
**Signature**
```ts
-export interface Function extends NamedDoc {
- readonly _tag: "Function"
- readonly signatures: ReadonlyArray
-}
+declare class Namespace { constructor(
+ readonly name: string,
+ readonly doc: Doc,
+ readonly position: Position,
+ readonly interfaces: ReadonlyArray,
+ readonly typeAliases: ReadonlyArray,
+ readonly namespaces: ReadonlyArray
+ ) }
```
-Added in v1.0.0
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Domain.ts#L198)
-## Interface (interface)
+Since v0.6.0
+
+### \_tag (property)
**Signature**
```ts
-export interface Interface extends NamedDoc {
- readonly _tag: "Interface"
- readonly signature: string
-}
+readonly _tag: "Namespace"
```
-Added in v1.0.0
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Domain.ts#L199)
-## Method (interface)
+## Position (interface)
**Signature**
```ts
-export interface Method extends NamedDoc {
- readonly signatures: ReadonlyArray
+export interface Position {
+ readonly line: number
+ readonly column: number
}
```
-Added in v1.0.0
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Domain.ts#L114)
-## Module (interface)
+Since v0.6.0
+
+## TypeAlias (class)
**Signature**
```ts
-export interface Module extends NamedDoc {
- readonly path: ReadonlyArray
- readonly classes: ReadonlyArray
- readonly interfaces: ReadonlyArray
- readonly functions: ReadonlyArray
- readonly typeAliases: ReadonlyArray
- readonly constants: ReadonlyArray
- readonly exports: ReadonlyArray
- readonly namespaces: ReadonlyArray
+declare class TypeAlias {
+ constructor(name: string, doc: Doc, signature: string, position: Position)
}
```
-Added in v1.0.0
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Domain.ts#L139)
+
+Since v0.6.0
-## NamedDoc (interface)
+### \_tag (property)
**Signature**
```ts
-export interface NamedDoc extends Doc {
- readonly name: string
-}
+readonly _tag: "TypeAlias"
```
-Added in v1.0.0
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Domain.ts#L140)
+
+# service
-## Namespace (interface)
+## Process (class)
+
+Represents a handle to the currently executing process.
**Signature**
```ts
-export interface Namespace extends NamedDoc {
- readonly _tag: "Namespace"
- readonly interfaces: ReadonlyArray
- readonly typeAliases: ReadonlyArray
- readonly namespaces: ReadonlyArray
-}
+declare class Process
```
-Added in v1.0.0
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Domain.ts#L262)
-## Property (interface)
+Since v0.6.0
+
+# sorting
+
+## ByPath
+
+A comparator function for sorting `Module` objects by their file path, represented as a string.
+The file path is converted to lowercase before comparison.
**Signature**
```ts
-export interface Property extends NamedDoc {
- readonly signature: string
-}
+declare const ByPath: Order.Order
```
-Added in v1.0.0
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Domain.ts#L217)
+
+Since v0.6.0
+
+# symbol
-## TypeAlias (interface)
+## DocgenErrorTypeId
**Signature**
```ts
-export interface TypeAlias extends NamedDoc {
- readonly _tag: "TypeAlias"
- readonly signature: string
-}
+declare const DocgenErrorTypeId: unique symbol
```
-Added in v1.0.0
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Domain.ts#L240)
-# sorting
+Since v0.6.0
-## ByPath
-
-A comparator function for sorting `Module` objects by their file path, represented as a string.
-The file path is converted to lowercase before comparison.
+## DocgenErrorTypeId (type alias)
**Signature**
```ts
-export declare const ByPath: Order.Order
+type DocgenErrorTypeId = typeof DocgenErrorTypeId
```
-Added in v1.0.0
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Domain.ts#L246)
+
+Since v0.6.0
diff --git a/docs/modules/Error.ts.md b/docs/modules/Error.ts.md
deleted file mode 100644
index 62d3f98..0000000
--- a/docs/modules/Error.ts.md
+++ /dev/null
@@ -1,55 +0,0 @@
----
-title: Error.ts
-nav_order: 5
-parent: Modules
----
-
-## Error overview
-
-Added in v1.0.0
-
----
-
-Table of contents
-
-- [model](#model)
- - [DocgenError (class)](#docgenerror-class)
-- [symbol](#symbol)
- - [DocgenErrorTypeId](#docgenerrortypeid)
- - [DocgenErrorTypeId (type alias)](#docgenerrortypeid-type-alias)
-
----
-
-# model
-
-## DocgenError (class)
-
-**Signature**
-
-```ts
-export declare class DocgenError
-```
-
-Added in v1.0.0
-
-# symbol
-
-## DocgenErrorTypeId
-
-**Signature**
-
-```ts
-export declare const DocgenErrorTypeId: typeof DocgenErrorTypeId
-```
-
-Added in v1.0.0
-
-## DocgenErrorTypeId (type alias)
-
-**Signature**
-
-```ts
-export type DocgenErrorTypeId = typeof DocgenErrorTypeId
-```
-
-Added in v1.0.0
diff --git a/docs/modules/File.ts.md b/docs/modules/File.ts.md
deleted file mode 100644
index b9ec707..0000000
--- a/docs/modules/File.ts.md
+++ /dev/null
@@ -1,52 +0,0 @@
----
-title: File.ts
-nav_order: 6
-parent: Modules
----
-
-## File overview
-
-Added in v1.0.0
-
----
-
-Table of contents
-
-- [constructors](#constructors)
- - [createFile](#createfile)
-- [model](#model)
- - [File (interface)](#file-interface)
-
----
-
-# constructors
-
-## createFile
-
-By default files are readonly (`isOverwriteable = false`).
-
-**Signature**
-
-```ts
-export declare const createFile: (path: string, content: string, isOverwriteable?: boolean) => File
-```
-
-Added in v1.0.0
-
-# model
-
-## File (interface)
-
-Represents a file which can be optionally overwriteable.
-
-**Signature**
-
-```ts
-export interface File {
- readonly path: string
- readonly content: string
- readonly isOverwriteable: boolean
-}
-```
-
-Added in v1.0.0
diff --git a/docs/modules/Markdown.ts.md b/docs/modules/Markdown.ts.md
deleted file mode 100644
index 718dff4..0000000
--- a/docs/modules/Markdown.ts.md
+++ /dev/null
@@ -1,42 +0,0 @@
----
-title: Markdown.ts
-nav_order: 7
-parent: Modules
----
-
-## Markdown overview
-
-Added in v1.0.0
-
----
-
-Table of contents
-
-- [printers](#printers)
- - [printModule](#printmodule)
-
----
-
-# printers
-
-## printModule
-
-**Signature**
-
-```ts
-export declare const printModule: (module: Domain.Module, order: number) => Effect.Effect
-```
-
-**Example**
-
-```ts
-import * as Markdown from "@effect/docgen/Markdown"
-import * as Domain from "@effect/docgen/Domain"
-import { Option } from "effect"
-
-const doc = Domain.createNamedDoc("tests", Option.none(), Option.some("1.0.0"), false, [], Option.none())
-const m = Domain.createModule(doc, ["src", "tests.ts"], [], [], [], [], [], [], [])
-console.log(Markdown.printModule(m, 0))
-```
-
-Added in v1.0.0
diff --git a/docs/modules/Parser.ts.md b/docs/modules/Parser.ts.md
index 86b11ae..9890891 100644
--- a/docs/modules/Parser.ts.md
+++ b/docs/modules/Parser.ts.md
@@ -1,16 +1,16 @@
---
title: Parser.ts
-nav_order: 8
+nav_order: 7
parent: Modules
---
-## Parser overview
+## Parser.ts overview
-Added in v1.0.0
+Since v0.6.0
---
-Table of contents
+## Exports Grouped by Category
- [parsers](#parsers)
- [parseClasses](#parseclasses)
@@ -32,93 +32,111 @@ Added in v1.0.0
**Signature**
```ts
-export declare const parseClasses: Effect.Effect
+declare const parseClasses: Effect.Effect, never, Source>
```
-Added in v1.0.0
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Parser.ts#L589)
+
+Since v0.6.0
## parseConstants
**Signature**
```ts
-export declare const parseConstants: Effect.Effect
+declare const parseConstants: Effect.Effect, never, Source>
```
-Added in v1.0.0
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Parser.ts#L322)
+
+Since v0.6.0
## parseExports
**Signature**
```ts
-export declare const parseExports: Effect.Effect
+declare const parseExports: Effect.Effect, never, Source>
```
-Added in v1.0.0
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Parser.ts#L396)
+
+Since v0.6.0
## parseFiles
**Signature**
```ts
-export declare const parseFiles: (
- files: ReadonlyArray
-) => Effect.Effect
+declare const parseFiles: (
+ files: ReadonlyArray
+) => Effect.Effect<
+ Array,
+ [Array, ...Array[]],
+ Configuration.Configuration | Domain.Process | Path.Path
+>
```
-Added in v1.0.0
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Parser.ts#L690)
+
+Since v0.6.0
## parseFunctions
**Signature**
```ts
-export declare const parseFunctions: Effect.Effect
+declare const parseFunctions: Effect.Effect, never, Source>
```
-Added in v1.0.0
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Parser.ts#L247)
+
+Since v0.6.0
## parseInterfaces
**Signature**
```ts
-export declare const parseInterfaces: Effect.Effect
+declare const parseInterfaces: Effect.Effect, never, Source>
```
-Added in v1.0.0
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Parser.ts#L140)
+
+Since v0.6.0
## parseModule
**Signature**
```ts
-export declare const parseModule: Effect.Effect<
- Domain.Module,
- string[],
- Configuration.Configuration | Path.Path | Source
->
+declare const parseModule: Effect.Effect
```
-Added in v1.0.0
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Parser.ts#L615)
+
+Since v0.6.0
## parseNamespaces
**Signature**
```ts
-export declare const parseNamespaces: Effect.Effect
+declare const parseNamespaces: Effect.Effect, never, Configuration.Configuration | Source>
```
-Added in v1.0.0
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Parser.ts#L442)
+
+Since v0.6.0
## parseTypeAliases
**Signature**
```ts
-export declare const parseTypeAliases: Effect.Effect
+declare const parseTypeAliases: Effect.Effect, never, Source>
```
-Added in v1.0.0
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Parser.ts#L292)
+
+Since v0.6.0
diff --git a/docs/modules/Printer.ts.md b/docs/modules/Printer.ts.md
new file mode 100644
index 0000000..ee89ff2
--- /dev/null
+++ b/docs/modules/Printer.ts.md
@@ -0,0 +1,61 @@
+---
+title: Printer.ts
+nav_order: 8
+parent: Modules
+---
+
+## Printer.ts overview
+
+Since v0.6.0
+
+---
+
+## Exports Grouped by Category
+
+- [printers](#printers)
+ - [printModule](#printmodule)
+- [utils](#utils)
+ - [prettify](#prettify)
+ - [printFrontMatter](#printfrontmatter)
+
+---
+
+# printers
+
+## printModule
+
+**Signature**
+
+```ts
+declare const printModule: (module: Domain.Module) => Effect.Effect
+```
+
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Printer.ts#L320)
+
+Since v0.6.0
+
+# utils
+
+## prettify
+
+**Signature**
+
+```ts
+declare const prettify: (s: string) => Effect.Effect
+```
+
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Printer.ts#L372)
+
+Since v0.6.0
+
+## printFrontMatter
+
+**Signature**
+
+```ts
+declare const printFrontMatter: (module: Domain.Module, nav_order: number) => string
+```
+
+[Source](https://github.com/effect-ts/docgen/blob/main/src/Printer.ts#L361)
+
+Since v0.6.0
diff --git a/docs/modules/Process.ts.md b/docs/modules/Process.ts.md
deleted file mode 100644
index 99b22b9..0000000
--- a/docs/modules/Process.ts.md
+++ /dev/null
@@ -1,61 +0,0 @@
----
-title: Process.ts
-nav_order: 9
-parent: Modules
----
-
-## Process overview
-
-Added in v1.0.0
-
----
-
-Table of contents
-
-- [layer](#layer)
- - [layer](#layer-1)
-- [service](#service)
- - [Process (class)](#process-class)
- - [ProcessShape (interface)](#processshape-interface)
-
----
-
-# layer
-
-## layer
-
-**Signature**
-
-```ts
-export declare const layer: Layer.Layer
-```
-
-Added in v1.0.0
-
-# service
-
-## Process (class)
-
-**Signature**
-
-```ts
-export declare class Process
-```
-
-Added in v1.0.0
-
-## ProcessShape (interface)
-
-Represents a handle to the currently executing process.
-
-**Signature**
-
-```ts
-export interface ProcessShape {
- readonly cwd: Effect.Effect
- readonly platform: Effect.Effect
- readonly argv: Effect.Effect>
-}
-```
-
-Added in v1.0.0
diff --git a/docs/modules/index.ts.md b/docs/modules/index.ts.md
new file mode 100644
index 0000000..55787fd
--- /dev/null
+++ b/docs/modules/index.ts.md
@@ -0,0 +1,94 @@
+---
+title: index.ts
+nav_order: 6
+parent: Modules
+---
+
+## index.ts overview
+
+Since v0.6.0
+
+---
+
+## Exports Grouped by Category
+
+- [utils](#utils)
+ - [Configuration (namespace export)](#configuration-namespace-export)
+ - [Core (namespace export)](#core-namespace-export)
+ - [Domain (namespace export)](#domain-namespace-export)
+ - [Parser (namespace export)](#parser-namespace-export)
+ - [Printer (namespace export)](#printer-namespace-export)
+
+---
+
+# utils
+
+## Configuration (namespace export)
+
+Re-exports all named exports from the "./Configuration.js" module as `Configuration`.
+
+**Signature**
+
+```ts
+export * as Configuration from "./Configuration.js"
+```
+
+[Source](https://github.com/effect-ts/docgen/blob/main/src/index.ts#L8)
+
+Since v0.6.0
+
+## Core (namespace export)
+
+Re-exports all named exports from the "./Core.js" module as `Core`.
+
+**Signature**
+
+```ts
+export * as Core from "./Core.js"
+```
+
+[Source](https://github.com/effect-ts/docgen/blob/main/src/index.ts#L13)
+
+Since v0.6.0
+
+## Domain (namespace export)
+
+Re-exports all named exports from the "./Domain.js" module as `Domain`.
+
+**Signature**
+
+```ts
+export * as Domain from "./Domain.js"
+```
+
+[Source](https://github.com/effect-ts/docgen/blob/main/src/index.ts#L18)
+
+Since v0.6.0
+
+## Parser (namespace export)
+
+Re-exports all named exports from the "./Parser.js" module as `Parser`.
+
+**Signature**
+
+```ts
+export * as Parser from "./Parser.js"
+```
+
+[Source](https://github.com/effect-ts/docgen/blob/main/src/index.ts#L28)
+
+Since v0.6.0
+
+## Printer (namespace export)
+
+Re-exports all named exports from the "./Printer.js" module as `Printer`.
+
+**Signature**
+
+```ts
+export * as Printer from "./Printer.js"
+```
+
+[Source](https://github.com/effect-ts/docgen/blob/main/src/index.ts#L23)
+
+Since v0.6.0
diff --git a/eslint.config.mjs b/eslint.config.mjs
new file mode 100644
index 0000000..5cb490c
--- /dev/null
+++ b/eslint.config.mjs
@@ -0,0 +1,139 @@
+import { fixupPluginRules } from "@eslint/compat"
+import { FlatCompat } from "@eslint/eslintrc"
+import js from "@eslint/js"
+import tsParser from "@typescript-eslint/parser"
+import codegen from "eslint-plugin-codegen"
+import _import from "eslint-plugin-import"
+import simpleImportSort from "eslint-plugin-simple-import-sort"
+import sortDestructureKeys from "eslint-plugin-sort-destructure-keys"
+import path from "node:path"
+import { fileURLToPath } from "node:url"
+
+const __filename = fileURLToPath(import.meta.url)
+const __dirname = path.dirname(__filename)
+const compat = new FlatCompat({
+ baseDirectory: __dirname,
+ recommendedConfig: js.configs.recommended,
+ allConfig: js.configs.all
+})
+
+export default [
+ {
+ ignores: ["**/dist", "**/build", "**/docs", "**/*.md"]
+ },
+ ...compat.extends(
+ "eslint:recommended",
+ "plugin:@typescript-eslint/eslint-recommended",
+ "plugin:@typescript-eslint/recommended",
+ "plugin:@effect/recommended"
+ ),
+ {
+ plugins: {
+ import: fixupPluginRules(_import),
+ "sort-destructure-keys": sortDestructureKeys,
+ "simple-import-sort": simpleImportSort,
+ codegen
+ },
+
+ languageOptions: {
+ parser: tsParser,
+ ecmaVersion: 2018,
+ sourceType: "module"
+ },
+
+ settings: {
+ "import/parsers": {
+ "@typescript-eslint/parser": [".ts", ".tsx"]
+ },
+
+ "import/resolver": {
+ typescript: {
+ alwaysTryTypes: true
+ }
+ }
+ },
+
+ rules: {
+ "codegen/codegen": "error",
+ "no-fallthrough": "off",
+ "no-irregular-whitespace": "off",
+ "object-shorthand": "error",
+ "prefer-destructuring": "off",
+ "sort-imports": "off",
+
+ "no-restricted-syntax": [
+ "error",
+ {
+ selector: "CallExpression[callee.property.name='push'] > SpreadElement.arguments",
+ message: "Do not use spread arguments in Array.push"
+ }
+ ],
+
+ "no-unused-vars": "off",
+ "require-yield": "off",
+ "prefer-rest-params": "off",
+ "prefer-spread": "off",
+ "import/first": "error",
+ "import/newline-after-import": "error",
+ "import/no-duplicates": "error",
+ "import/no-unresolved": "off",
+ "import/order": "off",
+ "simple-import-sort/imports": "off",
+ "sort-destructure-keys/sort-destructure-keys": "error",
+ "deprecation/deprecation": "off",
+
+ "@typescript-eslint/array-type": [
+ "warn",
+ {
+ default: "generic",
+ readonly: "generic"
+ }
+ ],
+
+ "@typescript-eslint/member-delimiter-style": 0,
+ "@typescript-eslint/no-non-null-assertion": "off",
+ "@typescript-eslint/ban-types": "off",
+ "@typescript-eslint/no-explicit-any": "off",
+ "@typescript-eslint/no-empty-interface": "off",
+ "@typescript-eslint/consistent-type-imports": "warn",
+
+ "@typescript-eslint/no-unused-vars": [
+ "error",
+ {
+ argsIgnorePattern: "^_",
+ varsIgnorePattern: "^_"
+ }
+ ],
+
+ "@typescript-eslint/ban-ts-comment": "off",
+ "@typescript-eslint/camelcase": "off",
+ "@typescript-eslint/explicit-function-return-type": "off",
+ "@typescript-eslint/explicit-module-boundary-types": "off",
+ "@typescript-eslint/interface-name-prefix": "off",
+ "@typescript-eslint/no-array-constructor": "off",
+ "@typescript-eslint/no-use-before-define": "off",
+ "@typescript-eslint/no-namespace": "off",
+
+ "@effect/dprint": [
+ "error",
+ {
+ config: {
+ indentWidth: 2,
+ lineWidth: 120,
+ semiColons: "asi",
+ quoteStyle: "alwaysDouble",
+ trailingCommas: "never",
+ operatorPosition: "maintain",
+ "arrowFunction.useParentheses": "force"
+ }
+ }
+ ]
+ }
+ },
+ {
+ files: ["packages/*/src/**/*", "packages/*/test/**/*"],
+ rules: {
+ "no-console": "error"
+ }
+ }
+]
diff --git a/package.json b/package.json
index a83283a..25405d7 100644
--- a/package.json
+++ b/package.json
@@ -36,46 +36,47 @@
"changeset-publish": "pnpm build && TEST_DIST= pnpm vitest && changeset publish"
},
"dependencies": {
+ "@babel/code-frame": "^7.26.2",
"@effect/markdown-toc": "^0.1.0",
"doctrine": "^3.0.0",
- "glob": "^10.3.12",
- "prettier": "^3.2.5"
+ "glob": "^11.0.1",
+ "prettier": "^3.5.3"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.7",
- "@effect/cli": "0.42.0",
- "@effect/eslint-plugin": "^0.2.0",
- "@effect/language-service": "^0.1.0",
- "@effect/platform": "0.63.0",
- "@effect/platform-node": "0.58.0",
- "@effect/schema": "0.72.0",
+ "@effect/cli": "0.57.0",
+ "@effect/eslint-plugin": "0.2.x",
+ "@effect/language-service": "^0.2.0",
+ "@effect/platform": "0.78.0",
+ "@effect/platform-node": "0.74.0",
+ "@eslint/compat": "^1.2.7",
+ "@types/babel__code-frame": "^7.0.6",
"@types/doctrine": "0.0.9",
"@types/glob": "^8.1.0",
- "@types/node": "^22.5.2",
- "@typescript-eslint/eslint-plugin": "^8.3.0",
- "@typescript-eslint/parser": "^8.3.0",
- "@vitest/coverage-v8": "^2.0.5",
- "chalk": "^5.3.0",
- "effect": "3.7.0",
- "eslint": "^8.56.0",
- "eslint-import-resolver-typescript": "^3.6.3",
- "eslint-plugin-codegen": "^0.28.0",
- "eslint-plugin-deprecation": "^3.0.0",
- "eslint-plugin-import": "^2.29.1",
+ "@types/node": "^22.13.9",
+ "@typescript-eslint/eslint-plugin": "^8.26.0",
+ "@typescript-eslint/parser": "^8.26.0",
+ "@vitest/coverage-v8": "^3.0.8",
+ "chalk": "^5.4.1",
+ "effect": "3.13.7",
+ "eslint": "^9.21.0",
+ "eslint-import-resolver-typescript": "^3.8.3",
+ "eslint-plugin-codegen": "^0.29.0",
+ "eslint-plugin-import": "^2.31.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"rimraf": "^6.0.1",
- "ts-morph": "^23.0.0",
- "tsconfck": "^3.1.3",
- "tsup": "^8.2.4",
- "tsx": "^4.19.0",
- "typescript": "^5.5.4",
- "vite": "^5.4.2",
- "vitest": "^2.0.5"
+ "ts-morph": "^25.0.1",
+ "tsconfck": "^3.1.5",
+ "tsup": "^8.4.0",
+ "tsx": "^4.19.3",
+ "typescript": "^5.8.2",
+ "vite": "^6.2.1",
+ "vitest": "^3.0.8"
},
"peerDependencies": {
- "tsx": "^4.1.0",
- "typescript": "^5.2.2"
+ "tsx": "^4.19.3",
+ "typescript": "^5.8.2"
}
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 9715be2..d678431 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -8,6 +8,9 @@ importers:
.:
dependencies:
+ '@babel/code-frame':
+ specifier: ^7.26.2
+ version: 7.26.2
'@effect/markdown-toc':
specifier: ^0.1.0
version: 0.1.0
@@ -15,11 +18,11 @@ importers:
specifier: ^3.0.0
version: 3.0.0
glob:
- specifier: ^10.3.12
- version: 10.3.12
+ specifier: ^11.0.1
+ version: 11.0.1
prettier:
- specifier: ^3.2.5
- version: 3.2.5
+ specifier: ^3.5.3
+ version: 3.5.3
devDependencies:
'@changesets/changelog-github':
specifier: ^0.5.0
@@ -28,23 +31,26 @@ importers:
specifier: ^2.27.7
version: 2.27.7
'@effect/cli':
- specifier: 0.42.0
- version: 0.42.0(@effect/platform@0.63.0(@effect/schema@0.72.0(effect@3.7.0))(effect@3.7.0))(@effect/printer-ansi@0.35.0(@effect/typeclass@0.26.0(effect@3.7.0))(effect@3.7.0))(@effect/printer@0.35.0(@effect/typeclass@0.26.0(effect@3.7.0))(effect@3.7.0))(@effect/schema@0.72.0(effect@3.7.0))(effect@3.7.0)
+ specifier: 0.57.0
+ version: 0.57.0(@effect/platform@0.78.0(effect@3.13.7))(@effect/printer-ansi@0.41.2(@effect/typeclass@0.32.2(effect@3.13.7))(effect@3.13.7))(@effect/printer@0.41.2(@effect/typeclass@0.32.2(effect@3.13.7))(effect@3.13.7))(effect@3.13.7)
'@effect/eslint-plugin':
- specifier: ^0.2.0
+ specifier: 0.2.x
version: 0.2.0
'@effect/language-service':
- specifier: ^0.1.0
- version: 0.1.0
+ specifier: ^0.2.0
+ version: 0.2.0
'@effect/platform':
- specifier: 0.63.0
- version: 0.63.0(@effect/schema@0.72.0(effect@3.7.0))(effect@3.7.0)
+ specifier: 0.78.0
+ version: 0.78.0(effect@3.13.7)
'@effect/platform-node':
- specifier: 0.58.0
- version: 0.58.0(@effect/platform@0.63.0(@effect/schema@0.72.0(effect@3.7.0))(effect@3.7.0))(effect@3.7.0)
- '@effect/schema':
- specifier: 0.72.0
- version: 0.72.0(effect@3.7.0)
+ specifier: 0.74.0
+ version: 0.74.0(@effect/platform@0.78.0(effect@3.13.7))(effect@3.13.7)
+ '@eslint/compat':
+ specifier: ^1.2.7
+ version: 1.2.7(eslint@9.21.0)
+ '@types/babel__code-frame':
+ specifier: ^7.0.6
+ version: 7.0.6
'@types/doctrine':
specifier: 0.0.9
version: 0.0.9
@@ -52,139 +58,124 @@ importers:
specifier: ^8.1.0
version: 8.1.0
'@types/node':
- specifier: ^22.5.2
- version: 22.5.2
+ specifier: ^22.13.9
+ version: 22.13.9
'@typescript-eslint/eslint-plugin':
- specifier: ^8.3.0
- version: 8.3.0(@typescript-eslint/parser@8.3.0(eslint@8.56.0)(typescript@5.5.4))(eslint@8.56.0)(typescript@5.5.4)
+ specifier: ^8.26.0
+ version: 8.26.0(@typescript-eslint/parser@8.26.0(eslint@9.21.0)(typescript@5.8.2))(eslint@9.21.0)(typescript@5.8.2)
'@typescript-eslint/parser':
- specifier: ^8.3.0
- version: 8.3.0(eslint@8.56.0)(typescript@5.5.4)
+ specifier: ^8.26.0
+ version: 8.26.0(eslint@9.21.0)(typescript@5.8.2)
'@vitest/coverage-v8':
- specifier: ^2.0.5
- version: 2.0.5(vitest@2.0.5(@types/node@22.5.2))
+ specifier: ^3.0.8
+ version: 3.0.8(vitest@3.0.8(@types/node@22.13.9)(tsx@4.19.3)(yaml@2.7.0))
chalk:
- specifier: ^5.3.0
- version: 5.3.0
+ specifier: ^5.4.1
+ version: 5.4.1
effect:
- specifier: 3.7.0
- version: 3.7.0
+ specifier: 3.13.7
+ version: 3.13.7
eslint:
- specifier: ^8.56.0
- version: 8.56.0
+ specifier: ^9.21.0
+ version: 9.21.0
eslint-import-resolver-typescript:
- specifier: ^3.6.3
- version: 3.6.3(@typescript-eslint/parser@8.3.0(eslint@8.56.0)(typescript@5.5.4))(eslint-plugin-import@2.29.1)(eslint@8.56.0)
+ specifier: ^3.8.3
+ version: 3.8.3(eslint-plugin-import@2.31.0)(eslint@9.21.0)
eslint-plugin-codegen:
- specifier: ^0.28.0
- version: 0.28.0(eslint@8.56.0)
- eslint-plugin-deprecation:
- specifier: ^3.0.0
- version: 3.0.0(eslint@8.56.0)(typescript@5.5.4)
+ specifier: ^0.29.0
+ version: 0.29.0(eslint@9.21.0)
eslint-plugin-import:
- specifier: ^2.29.1
- version: 2.29.1(@typescript-eslint/parser@8.3.0(eslint@8.56.0)(typescript@5.5.4))(eslint-import-resolver-typescript@3.6.3)(eslint@8.56.0)
+ specifier: ^2.31.0
+ version: 2.31.0(@typescript-eslint/parser@8.26.0(eslint@9.21.0)(typescript@5.8.2))(eslint-import-resolver-typescript@3.8.3)(eslint@9.21.0)
eslint-plugin-simple-import-sort:
specifier: ^12.1.1
- version: 12.1.1(eslint@8.56.0)
+ version: 12.1.1(eslint@9.21.0)
eslint-plugin-sort-destructure-keys:
specifier: ^2.0.0
- version: 2.0.0(eslint@8.56.0)
+ version: 2.0.0(eslint@9.21.0)
rimraf:
specifier: ^6.0.1
version: 6.0.1
ts-morph:
- specifier: ^23.0.0
- version: 23.0.0
+ specifier: ^25.0.1
+ version: 25.0.1
tsconfck:
- specifier: ^3.1.3
- version: 3.1.3(typescript@5.5.4)
+ specifier: ^3.1.5
+ version: 3.1.5(typescript@5.8.2)
tsup:
- specifier: ^8.2.4
- version: 8.2.4(postcss@8.4.44)(tsx@4.19.0)(typescript@5.5.4)(yaml@2.5.0)
+ specifier: ^8.4.0
+ version: 8.4.0(postcss@8.5.3)(tsx@4.19.3)(typescript@5.8.2)(yaml@2.7.0)
tsx:
- specifier: ^4.19.0
- version: 4.19.0
+ specifier: ^4.19.3
+ version: 4.19.3
typescript:
- specifier: ^5.5.4
- version: 5.5.4
+ specifier: ^5.8.2
+ version: 5.8.2
vite:
- specifier: ^5.4.2
- version: 5.4.2(@types/node@22.5.2)
+ specifier: ^6.2.1
+ version: 6.2.1(@types/node@22.13.9)(tsx@4.19.3)(yaml@2.7.0)
vitest:
- specifier: ^2.0.5
- version: 2.0.5(@types/node@22.5.2)
+ specifier: ^3.0.8
+ version: 3.0.8(@types/node@22.13.9)(tsx@4.19.3)(yaml@2.7.0)
publishDirectory: dist
packages:
- '@aashutoshrathi/word-wrap@1.2.6':
- resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==}
- engines: {node: '>=0.10.0'}
-
'@ampproject/remapping@2.3.0':
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
- '@babel/code-frame@7.24.7':
- resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==}
+ '@babel/code-frame@7.26.2':
+ resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
engines: {node: '>=6.9.0'}
- '@babel/compat-data@7.25.4':
- resolution: {integrity: sha512-+LGRog6RAsCJrrrg/IO6LGmpphNe5DiK30dGjCoxxeGv49B10/3XYGxPsAwrDlMFcFEvdAUavDT8r9k/hSyQqQ==}
+ '@babel/compat-data@7.26.8':
+ resolution: {integrity: sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.25.2':
- resolution: {integrity: sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA==}
+ '@babel/core@7.26.9':
+ resolution: {integrity: sha512-lWBYIrF7qK5+GjY5Uy+/hEgp8OJWOD/rpy74GplYRhEauvbHDeFB8t5hPOZxCZ0Oxf4Cc36tK51/l3ymJysrKw==}
engines: {node: '>=6.9.0'}
'@babel/generator@7.12.17':
resolution: {integrity: sha512-DSA7ruZrY4WI8VxuS1jWSRezFnghEoYEFrZcw9BizQRmOZiUsiHl59+qEARGPqPikwA/GPTyRCi7isuCK/oyqg==}
- '@babel/generator@7.25.6':
- resolution: {integrity: sha512-VPC82gr1seXOpkjAAKoLhP50vx4vGNlF4msF64dSFq1P8RfB+QAuJWGHPXXPc8QyfVWwwB/TNNU4+ayZmHNbZw==}
+ '@babel/generator@7.26.9':
+ resolution: {integrity: sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-compilation-targets@7.25.2':
- resolution: {integrity: sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==}
+ '@babel/helper-compilation-targets@7.26.5':
+ resolution: {integrity: sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-imports@7.24.7':
- resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==}
+ '@babel/helper-module-imports@7.25.9':
+ resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-transforms@7.25.2':
- resolution: {integrity: sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==}
+ '@babel/helper-module-transforms@7.26.0':
+ resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-simple-access@7.24.7':
- resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==}
+ '@babel/helper-string-parser@7.25.9':
+ resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-string-parser@7.24.8':
- resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==}
+ '@babel/helper-validator-identifier@7.25.9':
+ resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-identifier@7.24.7':
- resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==}
+ '@babel/helper-validator-option@7.25.9':
+ resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-option@7.24.8':
- resolution: {integrity: sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==}
+ '@babel/helpers@7.26.9':
+ resolution: {integrity: sha512-Mz/4+y8udxBKdmzt/UjPACs4G3j5SshJJEFFKxlCGPydG4JAHXxjWjAwjd09tf6oINvl1VfMJo+nB7H2YKQ0dA==}
engines: {node: '>=6.9.0'}
- '@babel/helpers@7.25.6':
- resolution: {integrity: sha512-Xg0tn4HcfTijTwfDwYlvVCl43V6h4KyVVX2aEm4qdO/PC6L2YvzLHFdmxhoeSA3eslcE6+ZVXHgWwopXYLNq4Q==}
- engines: {node: '>=6.9.0'}
-
- '@babel/highlight@7.24.7':
- resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/parser@7.25.6':
- resolution: {integrity: sha512-trGdfBdbD0l1ZPmcJ83eNxB9rbEax4ALFTF7fN386TMYbeCQbyme5cOEXQhbGXKebwGaB/J52w1mrklMcbgy6Q==}
+ '@babel/parser@7.26.9':
+ resolution: {integrity: sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A==}
engines: {node: '>=6.0.0'}
hasBin: true
@@ -192,20 +183,21 @@ packages:
resolution: {integrity: sha512-VBj9MYyDb9tuLq7yzqjgzt6Q+IBQLrGZfdjOekyEirZPHxXWoTSGUTMrpsfi58Up73d13NfYLv8HT9vmznjzhQ==}
engines: {node: '>=6.9.0'}
- '@babel/template@7.25.0':
- resolution: {integrity: sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==}
+ '@babel/template@7.26.9':
+ resolution: {integrity: sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.25.6':
- resolution: {integrity: sha512-9Vrcx5ZW6UwK5tvqsj0nGpp/XzqthkT0dqIc9g1AdtygFToNtTF67XzYS//dm+SAK9cp3B9R4ZO/46p63SCjlQ==}
+ '@babel/traverse@7.26.9':
+ resolution: {integrity: sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.25.6':
- resolution: {integrity: sha512-/l42B1qxpG6RdfYf343Uw1vmDjeNhneUXtzhojE7pDgfpEypmRhI6j1kr17XCVv4Cgl9HdAiQY2x0GwKm7rWCw==}
+ '@babel/types@7.26.9':
+ resolution: {integrity: sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw==}
engines: {node: '>=6.9.0'}
- '@bcoe/v8-coverage@0.2.3':
- resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
+ '@bcoe/v8-coverage@1.0.2':
+ resolution: {integrity: sha512-6zABk/ECA/QYSCQ1NGiVwwbQerUCZ+TQbp64Q3AgmfNvurHH0j8TtXa1qbShXA6qqkpAj4V5W8pP6mLe1mcMqA==}
+ engines: {node: '>=18'}
'@changesets/apply-release-plan@7.0.4':
resolution: {integrity: sha512-HLFwhKWayKinWAul0Vj+76jVx1Pc2v55MGPVjZ924Y/ROeSsBMFutv9heHmCUj48lJyRfOTJG5+ar+29FUky/A==}
@@ -271,383 +263,274 @@ packages:
'@dprint/formatter@0.4.1':
resolution: {integrity: sha512-IB/GXdlMOvi0UhQQ9mcY15Fxcrc2JPadmo6tqefCNV0bptFq7YBpggzpqYXldBXDa04CbKJ+rDwO2eNRPE2+/g==}
- '@dprint/typescript@0.91.7':
- resolution: {integrity: sha512-V2Ai2qiXbv0EZnv+hAtlQVAcXx3lTA0Gn2lfMj5fMrlmMFltGv/YNxn9noukc1HkPENEmcsMA6aUBFjeyB9aIw==}
+ '@dprint/typescript@0.91.8':
+ resolution: {integrity: sha512-tuKn4leCPItox1O4uunHcQF0QllDCvPWklnNQIh2PiWWVtRAGltJJnM4Cwj5AciplosD1Hiz7vAY3ew3crLb3A==}
- '@effect/cli@0.42.0':
- resolution: {integrity: sha512-BCHCRVrwXDdBuK1I0Lx7C0idmiTD+GNDAOpdspw2C0YtaZD0Xkrz/YqMs5Gq4vynGE0VcFHsCzZK32x/gIHyVA==}
+ '@effect/cli@0.57.0':
+ resolution: {integrity: sha512-okk88B9e9bPJ0LrcVcLSAdiOklWwQvw/NFZzr2N8NbRnFPJ2mWy+Op3pvaypZxJT9vwGTDT+tBMqLL9A/lFU8A==}
peerDependencies:
- '@effect/platform': ^0.63.0
- '@effect/printer': ^0.35.0
- '@effect/printer-ansi': ^0.35.0
- '@effect/schema': ^0.72.0
- effect: ^3.7.0
+ '@effect/platform': ^0.78.0
+ '@effect/printer': ^0.41.7
+ '@effect/printer-ansi': ^0.41.7
+ effect: ^3.13.7
'@effect/eslint-plugin@0.2.0':
resolution: {integrity: sha512-PC/hEDGctYGYIjZyhM6kbD4FyHxLgoYNoQNjGkCXcFEzi71vQc3PJKe2JnCgzcUDvr/Nc2qgTVU4ONYwjHzQGA==}
- '@effect/language-service@0.1.0':
- resolution: {integrity: sha512-BnlM8LlaqCAYgdRfxlbR7gXGh/FD1scL1fPgNVJEPoOM08od1jtJz+iKhwfaud8TPnnhZR+TED2h5ynjanLeCQ==}
+ '@effect/language-service@0.2.0':
+ resolution: {integrity: sha512-DoK41yKGyQv79o0ca8gxEogMlt+IphXkdCXwgenbQjH1BXKD7tJAr0+VsDhblycQcvQ39f1l9NZN9CBqjM9ALA==}
'@effect/markdown-toc@0.1.0':
resolution: {integrity: sha512-IRfvvwqQLabVTIw9hhIj4scOGIYPfa13QuEFv+dBWE6p47R+RR0J8jQvfDINFf0Vn80XXVjNRtZxkZpkKXLx2A==}
engines: {node: '>=0.10.0'}
hasBin: true
- '@effect/platform-node-shared@0.13.0':
- resolution: {integrity: sha512-AQ/kOJmie/0BMMHcCdjWkdC7yHh42my+tHqkOgJse71fwotxl1r2zXi4dADQu++iFH/fhaWQrpuUqlWvGPyz6w==}
- peerDependencies:
- '@effect/platform': ^0.63.0
- effect: ^3.7.0
-
- '@effect/platform-node@0.58.0':
- resolution: {integrity: sha512-HW7BmtemCUCaNhrXfC+qIF1T8BxUc7KBHSrvlIE6sTiWlw54h7bIld1lyksAIXeSJMoRKP9vEAroEmLigGJf9A==}
+ '@effect/platform-node-shared@0.28.0':
+ resolution: {integrity: sha512-Pxf7i8oKr4yDkOnzhxgQ96so0/joFDXOlbjBCOBBA6wn2ZPj+ycbk/6/B6E4cLURp/Mt9VAEr5Dxn8bj+5PLew==}
peerDependencies:
- '@effect/platform': ^0.63.0
- effect: ^3.7.0
+ '@effect/platform': ^0.78.0
+ effect: ^3.13.7
- '@effect/platform@0.63.0':
- resolution: {integrity: sha512-24AtBGkTNzkYU4XOH3SLo9M4PyeHtW81PFwqovKPSm9+yxTLYR2lAVqFftIfaGfBqgsNVuNrh0SaELDWGdSP6Q==}
+ '@effect/platform-node@0.74.0':
+ resolution: {integrity: sha512-gPUcLaqAdMvV+QhkQnqjxxEUcvPvamnpRue2n6b2TMqy00XJAtOdtjYoUaT1ILPEL/3ZYfUSKswivZehV9nEnQ==}
peerDependencies:
- '@effect/schema': ^0.72.0
- effect: ^3.7.0
+ '@effect/platform': ^0.78.0
+ effect: ^3.13.7
- '@effect/printer-ansi@0.35.0':
- resolution: {integrity: sha512-4VJpGXRWDk2W9HtT1OX2OYTl/Gm4kZ2k0k0U409D/FiHfD/KSsaHuFCI4/cHnuPx+vS6AQHulVTVbKWPRlRw2w==}
+ '@effect/platform@0.78.0':
+ resolution: {integrity: sha512-2vGIfBtPO7zPioVy4wmSbeF0VWfj3GLpB9+6JT7K0lZVeYogHF2GTuPDB87xMILw86Ecz9iR98JuA9Co7PgxKQ==}
peerDependencies:
- '@effect/typeclass': ^0.26.0
- effect: ^3.7.0
+ effect: ^3.13.7
- '@effect/printer@0.35.0':
- resolution: {integrity: sha512-e0FY9RvTfiH20oUPIutvqXr62ycWHCVn4oZaVa63y7QbzrX1PdhqGysf+O1qq4sEZHj/1WCJ6VCCDnnys7RZnQ==}
+ '@effect/printer-ansi@0.41.2':
+ resolution: {integrity: sha512-6XQ2VIJ70Pfu9sGYdFt4lon/4IdQSgJr7gr17uRJReARs153gZaNqh+q5pJMSJQ5wvjii1gYioIC/4HH8+o+aQ==}
peerDependencies:
- '@effect/typeclass': ^0.26.0
- effect: ^3.7.0
+ '@effect/typeclass': ^0.32.2
+ effect: ^3.13.2
- '@effect/schema@0.72.0':
- resolution: {integrity: sha512-I25wIy0Njx+002lmXk8xqcdFGMGkScl6EfxRE0nkoyecQVg+v1mw7DHkSwzR6CcL4s2tITwM3Z40ALJjArPqgA==}
+ '@effect/printer@0.41.2':
+ resolution: {integrity: sha512-FpKvt8Iey30kHkbl/pPmnYEmhdltuJiNX+zGfqlkArmBnz+l1EseYQ3t/LjdChcuW8reumNlMln2bQlnGKhHvw==}
peerDependencies:
- effect: ^3.7.0
+ '@effect/typeclass': ^0.32.2
+ effect: ^3.13.2
- '@effect/typeclass@0.26.0':
- resolution: {integrity: sha512-rAbeESXVIm3quIWOjNSGi6p+KAtbVpzByOfj8fbBrnTHHbjhAQ9G7lG2YBtLsjUtQysW3JVWkDD+bb6i6tftFQ==}
+ '@effect/typeclass@0.32.2':
+ resolution: {integrity: sha512-kCk3E4D0vEcRnY1MotaGEA5c/1X3a3dmcUHVBs0hLxN/6ct23Lun7J87tk+U2PJAwAUvUceSS3lQska9/eDkXA==}
peerDependencies:
- effect: ^3.7.0
+ effect: ^3.13.2
- '@esbuild/aix-ppc64@0.21.5':
- resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [aix]
-
- '@esbuild/aix-ppc64@0.23.1':
- resolution: {integrity: sha512-6VhYk1diRqrhBAqpJEdjASR/+WVRtfjpqKuNw11cLiaWpAT/Uu+nokB+UJnevzy/P9C/ty6AOe0dwueMrGh/iQ==}
+ '@esbuild/aix-ppc64@0.25.0':
+ resolution: {integrity: sha512-O7vun9Sf8DFjH2UtqK8Ku3LkquL9SZL8OLY1T5NZkA34+wG3OQF7cl4Ql8vdNzM6fzBbYfLaiRLIOZ+2FOCgBQ==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
- '@esbuild/android-arm64@0.21.5':
- resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [android]
-
- '@esbuild/android-arm64@0.23.1':
- resolution: {integrity: sha512-xw50ipykXcLstLeWH7WRdQuysJqejuAGPd30vd1i5zSyKK3WE+ijzHmLKxdiCMtH1pHz78rOg0BKSYOSB/2Khw==}
+ '@esbuild/android-arm64@0.25.0':
+ resolution: {integrity: sha512-grvv8WncGjDSyUBjN9yHXNt+cq0snxXbDxy5pJtzMKGmmpPxeAmAhWxXI+01lU5rwZomDgD3kJwulEnhTRUd6g==}
engines: {node: '>=18'}
cpu: [arm64]
os: [android]
- '@esbuild/android-arm@0.21.5':
- resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [android]
-
- '@esbuild/android-arm@0.23.1':
- resolution: {integrity: sha512-uz6/tEy2IFm9RYOyvKl88zdzZfwEfKZmnX9Cj1BHjeSGNuGLuMD1kR8y5bteYmwqKm1tj8m4cb/aKEorr6fHWQ==}
+ '@esbuild/android-arm@0.25.0':
+ resolution: {integrity: sha512-PTyWCYYiU0+1eJKmw21lWtC+d08JDZPQ5g+kFyxP0V+es6VPPSUhM6zk8iImp2jbV6GwjX4pap0JFbUQN65X1g==}
engines: {node: '>=18'}
cpu: [arm]
os: [android]
- '@esbuild/android-x64@0.21.5':
- resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [android]
-
- '@esbuild/android-x64@0.23.1':
- resolution: {integrity: sha512-nlN9B69St9BwUoB+jkyU090bru8L0NA3yFvAd7k8dNsVH8bi9a8cUAUSEcEEgTp2z3dbEDGJGfP6VUnkQnlReg==}
+ '@esbuild/android-x64@0.25.0':
+ resolution: {integrity: sha512-m/ix7SfKG5buCnxasr52+LI78SQ+wgdENi9CqyCXwjVR2X4Jkz+BpC3le3AoBPYTC9NHklwngVXvbJ9/Akhrfg==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
- '@esbuild/darwin-arm64@0.21.5':
- resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [darwin]
-
- '@esbuild/darwin-arm64@0.23.1':
- resolution: {integrity: sha512-YsS2e3Wtgnw7Wq53XXBLcV6JhRsEq8hkfg91ESVadIrzr9wO6jJDMZnCQbHm1Guc5t/CdDiFSSfWP58FNuvT3Q==}
+ '@esbuild/darwin-arm64@0.25.0':
+ resolution: {integrity: sha512-mVwdUb5SRkPayVadIOI78K7aAnPamoeFR2bT5nszFUZ9P8UpK4ratOdYbZZXYSqPKMHfS1wdHCJk1P1EZpRdvw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-x64@0.21.5':
- resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [darwin]
-
- '@esbuild/darwin-x64@0.23.1':
- resolution: {integrity: sha512-aClqdgTDVPSEGgoCS8QDG37Gu8yc9lTHNAQlsztQ6ENetKEO//b8y31MMu2ZaPbn4kVsIABzVLXYLhCGekGDqw==}
+ '@esbuild/darwin-x64@0.25.0':
+ resolution: {integrity: sha512-DgDaYsPWFTS4S3nWpFcMn/33ZZwAAeAFKNHNa1QN0rI4pUjgqf0f7ONmXf6d22tqTY+H9FNdgeaAa+YIFUn2Rg==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
- '@esbuild/freebsd-arm64@0.21.5':
- resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [freebsd]
-
- '@esbuild/freebsd-arm64@0.23.1':
- resolution: {integrity: sha512-h1k6yS8/pN/NHlMl5+v4XPfikhJulk4G+tKGFIOwURBSFzE8bixw1ebjluLOjfwtLqY0kewfjLSrO6tN2MgIhA==}
+ '@esbuild/freebsd-arm64@0.25.0':
+ resolution: {integrity: sha512-VN4ocxy6dxefN1MepBx/iD1dH5K8qNtNe227I0mnTRjry8tj5MRk4zprLEdG8WPyAPb93/e4pSgi1SoHdgOa4w==}
engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.21.5':
- resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [freebsd]
-
- '@esbuild/freebsd-x64@0.23.1':
- resolution: {integrity: sha512-lK1eJeyk1ZX8UklqFd/3A60UuZ/6UVfGT2LuGo3Wp4/z7eRTRYY+0xOu2kpClP+vMTi9wKOfXi2vjUpO1Ro76g==}
+ '@esbuild/freebsd-x64@0.25.0':
+ resolution: {integrity: sha512-mrSgt7lCh07FY+hDD1TxiTyIHyttn6vnjesnPoVDNmDfOmggTLXRv8Id5fNZey1gl/V2dyVK1VXXqVsQIiAk+A==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
- '@esbuild/linux-arm64@0.21.5':
- resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [linux]
-
- '@esbuild/linux-arm64@0.23.1':
- resolution: {integrity: sha512-/93bf2yxencYDnItMYV/v116zff6UyTjo4EtEQjUBeGiVpMmffDNUyD9UN2zV+V3LRV3/on4xdZ26NKzn6754g==}
+ '@esbuild/linux-arm64@0.25.0':
+ resolution: {integrity: sha512-9QAQjTWNDM/Vk2bgBl17yWuZxZNQIF0OUUuPZRKoDtqF2k4EtYbpyiG5/Dk7nqeK6kIJWPYldkOcBqjXjrUlmg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm@0.21.5':
- resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
- engines: {node: '>=12'}
- cpu: [arm]
- os: [linux]
-
- '@esbuild/linux-arm@0.23.1':
- resolution: {integrity: sha512-CXXkzgn+dXAPs3WBwE+Kvnrf4WECwBdfjfeYHpMeVxWE0EceB6vhWGShs6wi0IYEqMSIzdOF1XjQ/Mkm5d7ZdQ==}
+ '@esbuild/linux-arm@0.25.0':
+ resolution: {integrity: sha512-vkB3IYj2IDo3g9xX7HqhPYxVkNQe8qTK55fraQyTzTX/fxaDtXiEnavv9geOsonh2Fd2RMB+i5cbhu2zMNWJwg==}
engines: {node: '>=18'}
cpu: [arm]
os: [linux]
- '@esbuild/linux-ia32@0.21.5':
- resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [linux]
-
- '@esbuild/linux-ia32@0.23.1':
- resolution: {integrity: sha512-VTN4EuOHwXEkXzX5nTvVY4s7E/Krz7COC8xkftbbKRYAl96vPiUssGkeMELQMOnLOJ8k3BY1+ZY52tttZnHcXQ==}
+ '@esbuild/linux-ia32@0.25.0':
+ resolution: {integrity: sha512-43ET5bHbphBegyeqLb7I1eYn2P/JYGNmzzdidq/w0T8E2SsYL1U6un2NFROFRg1JZLTzdCoRomg8Rvf9M6W6Gg==}
engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
- '@esbuild/linux-loong64@0.21.5':
- resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
- engines: {node: '>=12'}
- cpu: [loong64]
- os: [linux]
-
- '@esbuild/linux-loong64@0.23.1':
- resolution: {integrity: sha512-Vx09LzEoBa5zDnieH8LSMRToj7ir/Jeq0Gu6qJ/1GcBq9GkfoEAoXvLiW1U9J1qE/Y/Oyaq33w5p2ZWrNNHNEw==}
+ '@esbuild/linux-loong64@0.25.0':
+ resolution: {integrity: sha512-fC95c/xyNFueMhClxJmeRIj2yrSMdDfmqJnyOY4ZqsALkDrrKJfIg5NTMSzVBr5YW1jf+l7/cndBfP3MSDpoHw==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
- '@esbuild/linux-mips64el@0.21.5':
- resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
- engines: {node: '>=12'}
- cpu: [mips64el]
- os: [linux]
-
- '@esbuild/linux-mips64el@0.23.1':
- resolution: {integrity: sha512-nrFzzMQ7W4WRLNUOU5dlWAqa6yVeI0P78WKGUo7lg2HShq/yx+UYkeNSE0SSfSure0SqgnsxPvmAUu/vu0E+3Q==}
+ '@esbuild/linux-mips64el@0.25.0':
+ resolution: {integrity: sha512-nkAMFju7KDW73T1DdH7glcyIptm95a7Le8irTQNO/qtkoyypZAnjchQgooFUDQhNAy4iu08N79W4T4pMBwhPwQ==}
engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
- '@esbuild/linux-ppc64@0.21.5':
- resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
- engines: {node: '>=12'}
- cpu: [ppc64]
- os: [linux]
-
- '@esbuild/linux-ppc64@0.23.1':
- resolution: {integrity: sha512-dKN8fgVqd0vUIjxuJI6P/9SSSe/mB9rvA98CSH2sJnlZ/OCZWO1DJvxj8jvKTfYUdGfcq2dDxoKaC6bHuTlgcw==}
+ '@esbuild/linux-ppc64@0.25.0':
+ resolution: {integrity: sha512-NhyOejdhRGS8Iwv+KKR2zTq2PpysF9XqY+Zk77vQHqNbo/PwZCzB5/h7VGuREZm1fixhs4Q/qWRSi5zmAiO4Fw==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
- '@esbuild/linux-riscv64@0.21.5':
- resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
- engines: {node: '>=12'}
- cpu: [riscv64]
- os: [linux]
-
- '@esbuild/linux-riscv64@0.23.1':
- resolution: {integrity: sha512-5AV4Pzp80fhHL83JM6LoA6pTQVWgB1HovMBsLQ9OZWLDqVY8MVobBXNSmAJi//Csh6tcY7e7Lny2Hg1tElMjIA==}
+ '@esbuild/linux-riscv64@0.25.0':
+ resolution: {integrity: sha512-5S/rbP5OY+GHLC5qXp1y/Mx//e92L1YDqkiBbO9TQOvuFXM+iDqUNG5XopAnXoRH3FjIUDkeGcY1cgNvnXp/kA==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
- '@esbuild/linux-s390x@0.21.5':
- resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
- engines: {node: '>=12'}
- cpu: [s390x]
- os: [linux]
-
- '@esbuild/linux-s390x@0.23.1':
- resolution: {integrity: sha512-9ygs73tuFCe6f6m/Tb+9LtYxWR4c9yg7zjt2cYkjDbDpV/xVn+68cQxMXCjUpYwEkze2RcU/rMnfIXNRFmSoDw==}
+ '@esbuild/linux-s390x@0.25.0':
+ resolution: {integrity: sha512-XM2BFsEBz0Fw37V0zU4CXfcfuACMrppsMFKdYY2WuTS3yi8O1nFOhil/xhKTmE1nPmVyvQJjJivgDT+xh8pXJA==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
- '@esbuild/linux-x64@0.21.5':
- resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [linux]
-
- '@esbuild/linux-x64@0.23.1':
- resolution: {integrity: sha512-EV6+ovTsEXCPAp58g2dD68LxoP/wK5pRvgy0J/HxPGB009omFPv3Yet0HiaqvrIrgPTBuC6wCH1LTOY91EO5hQ==}
+ '@esbuild/linux-x64@0.25.0':
+ resolution: {integrity: sha512-9yl91rHw/cpwMCNytUDxwj2XjFpxML0y9HAOH9pNVQDpQrBxHy01Dx+vaMu0N1CKa/RzBD2hB4u//nfc+Sd3Cw==}
engines: {node: '>=18'}
cpu: [x64]
os: [linux]
- '@esbuild/netbsd-x64@0.21.5':
- resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
- engines: {node: '>=12'}
- cpu: [x64]
+ '@esbuild/netbsd-arm64@0.25.0':
+ resolution: {integrity: sha512-RuG4PSMPFfrkH6UwCAqBzauBWTygTvb1nxWasEJooGSJ/NwRw7b2HOwyRTQIU97Hq37l3npXoZGYMy3b3xYvPw==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
os: [netbsd]
- '@esbuild/netbsd-x64@0.23.1':
- resolution: {integrity: sha512-aevEkCNu7KlPRpYLjwmdcuNz6bDFiE7Z8XC4CPqExjTvrHugh28QzUXVOZtiYghciKUacNktqxdpymplil1beA==}
+ '@esbuild/netbsd-x64@0.25.0':
+ resolution: {integrity: sha512-jl+qisSB5jk01N5f7sPCsBENCOlPiS/xptD5yxOx2oqQfyourJwIKLRA2yqWdifj3owQZCL2sn6o08dBzZGQzA==}
engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
- '@esbuild/openbsd-arm64@0.23.1':
- resolution: {integrity: sha512-3x37szhLexNA4bXhLrCC/LImN/YtWis6WXr1VESlfVtVeoFJBRINPJ3f0a/6LV8zpikqoUg4hyXw0sFBt5Cr+Q==}
+ '@esbuild/openbsd-arm64@0.25.0':
+ resolution: {integrity: sha512-21sUNbq2r84YE+SJDfaQRvdgznTD8Xc0oc3p3iW/a1EVWeNj/SdUCbm5U0itZPQYRuRTW20fPMWMpcrciH2EJw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
- '@esbuild/openbsd-x64@0.21.5':
- resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [openbsd]
-
- '@esbuild/openbsd-x64@0.23.1':
- resolution: {integrity: sha512-aY2gMmKmPhxfU+0EdnN+XNtGbjfQgwZj43k8G3fyrDM/UdZww6xrWxmDkuz2eCZchqVeABjV5BpildOrUbBTqA==}
+ '@esbuild/openbsd-x64@0.25.0':
+ resolution: {integrity: sha512-2gwwriSMPcCFRlPlKx3zLQhfN/2WjJ2NSlg5TKLQOJdV0mSxIcYNTMhk3H3ulL/cak+Xj0lY1Ym9ysDV1igceg==}
engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
- '@esbuild/sunos-x64@0.21.5':
- resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [sunos]
-
- '@esbuild/sunos-x64@0.23.1':
- resolution: {integrity: sha512-RBRT2gqEl0IKQABT4XTj78tpk9v7ehp+mazn2HbUeZl1YMdaGAQqhapjGTCe7uw7y0frDi4gS0uHzhvpFuI1sA==}
+ '@esbuild/sunos-x64@0.25.0':
+ resolution: {integrity: sha512-bxI7ThgLzPrPz484/S9jLlvUAHYMzy6I0XiU1ZMeAEOBcS0VePBFxh1JjTQt3Xiat5b6Oh4x7UC7IwKQKIJRIg==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
- '@esbuild/win32-arm64@0.21.5':
- resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
- engines: {node: '>=12'}
- cpu: [arm64]
- os: [win32]
-
- '@esbuild/win32-arm64@0.23.1':
- resolution: {integrity: sha512-4O+gPR5rEBe2FpKOVyiJ7wNDPA8nGzDuJ6gN4okSA1gEOYZ67N8JPk58tkWtdtPeLz7lBnY6I5L3jdsr3S+A6A==}
+ '@esbuild/win32-arm64@0.25.0':
+ resolution: {integrity: sha512-ZUAc2YK6JW89xTbXvftxdnYy3m4iHIkDtK3CLce8wg8M2L+YZhIvO1DKpxrd0Yr59AeNNkTiic9YLf6FTtXWMw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
- '@esbuild/win32-ia32@0.21.5':
- resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
- engines: {node: '>=12'}
- cpu: [ia32]
- os: [win32]
-
- '@esbuild/win32-ia32@0.23.1':
- resolution: {integrity: sha512-BcaL0Vn6QwCwre3Y717nVHZbAa4UBEigzFm6VdsVdT/MbZ38xoj1X9HPkZhbmaBGUD1W8vxAfffbDe8bA6AKnQ==}
+ '@esbuild/win32-ia32@0.25.0':
+ resolution: {integrity: sha512-eSNxISBu8XweVEWG31/JzjkIGbGIJN/TrRoiSVZwZ6pkC6VX4Im/WV2cz559/TXLcYbcrDN8JtKgd9DJVIo8GA==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
- '@esbuild/win32-x64@0.21.5':
- resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
- engines: {node: '>=12'}
- cpu: [x64]
- os: [win32]
-
- '@esbuild/win32-x64@0.23.1':
- resolution: {integrity: sha512-BHpFFeslkWrXWyUPnbKm+xYYVYruCinGcftSBaa8zoF9hZO4BcSCFUvHVTtzpIY6YzUnYtuEhZ+C9iEXjxnasg==}
+ '@esbuild/win32-x64@0.25.0':
+ resolution: {integrity: sha512-ZENoHJBxA20C2zFzh6AI4fT6RraMzjYw4xKWemRTRmRVtN9c5DcH9r/f2ihEkMjOW5eGgrwCslG/+Y/3bL+DHQ==}
engines: {node: '>=18'}
cpu: [x64]
os: [win32]
- '@eslint-community/eslint-utils@4.4.0':
- resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
+ '@eslint-community/eslint-utils@4.4.1':
+ resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
- '@eslint-community/regexpp@4.10.0':
- resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==}
+ '@eslint-community/regexpp@4.12.1':
+ resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
- '@eslint-community/regexpp@4.11.0':
- resolution: {integrity: sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==}
- engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
+ '@eslint/compat@1.2.7':
+ resolution: {integrity: sha512-xvv7hJE32yhegJ8xNAnb62ggiAwTYHBpUCWhRxEj/ksvgDJuSXfoDkBcRYaYNFiJ+jH0IE3K16hd+xXzhBgNbg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^9.10.0
+ peerDependenciesMeta:
+ eslint:
+ optional: true
- '@eslint/eslintrc@2.1.4':
- resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ '@eslint/config-array@0.19.2':
+ resolution: {integrity: sha512-GNKqxfHG2ySmJOBSHg7LxeUx4xpuCoFjacmlCoYWEbaPXLwvfIjixRI12xCQZeULksQb23uiA8F40w5TojpV7w==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@eslint/js@8.56.0':
- resolution: {integrity: sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ '@eslint/core@0.12.0':
+ resolution: {integrity: sha512-cmrR6pytBuSMTaBweKoGMwu3EiHiEC+DoyupPmlZ0HxBJBtIxwe+j/E4XPIKNx+Q74c8lXKPwYawBf5glsTkHg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@humanwhocodes/config-array@0.11.13':
- resolution: {integrity: sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==}
- engines: {node: '>=10.10.0'}
+ '@eslint/eslintrc@3.3.0':
+ resolution: {integrity: sha512-yaVPAiNAalnCZedKLdR21GOGILMLKPyqSLWaAjQFvYA2i/ciDi8ArYVr69Anohb6cH2Ukhqti4aFnYyPm8wdwQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/js@9.21.0':
+ resolution: {integrity: sha512-BqStZ3HX8Yz6LvsF5ByXYrtigrV5AXADWLAGc7PH/1SxOb7/FIYYMszZZWiUou/GB9P2lXWk2SV4d+Z8h0nknw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/object-schema@2.1.6':
+ resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/plugin-kit@0.2.7':
+ resolution: {integrity: sha512-JubJ5B2pJ4k4yGxaNLdbjrnk9d/iDz6/q8wOilpIowd6PJPgaxCuHBnBszq7Ce2TyMrywm5r4PnKm6V3iiZF+g==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@humanfs/core@0.19.1':
+ resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
+ engines: {node: '>=18.18.0'}
+
+ '@humanfs/node@0.16.6':
+ resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==}
+ engines: {node: '>=18.18.0'}
'@humanwhocodes/module-importer@1.0.1':
resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
engines: {node: '>=12.22'}
- '@humanwhocodes/object-schema@2.0.1':
- resolution: {integrity: sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==}
+ '@humanwhocodes/retry@0.3.1':
+ resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==}
+ engines: {node: '>=18.18'}
+
+ '@humanwhocodes/retry@0.4.2':
+ resolution: {integrity: sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==}
+ engines: {node: '>=18.18'}
'@isaacs/cliui@8.0.2':
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
@@ -669,8 +552,8 @@ packages:
resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- '@jridgewell/gen-mapping@0.3.5':
- resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
+ '@jridgewell/gen-mapping@0.3.8':
+ resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==}
engines: {node: '>=6.0.0'}
'@jridgewell/resolve-uri@3.1.2':
@@ -709,80 +592,86 @@ packages:
resolution: {integrity: sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==}
engines: {node: '>=12.4.0'}
- '@parcel/watcher-android-arm64@2.4.1':
- resolution: {integrity: sha512-LOi/WTbbh3aTn2RYddrO8pnapixAziFl6SMxHM69r3tvdSm94JtCenaKgk1GRg5FJ5wpMCpHeW+7yqPlvZv7kg==}
+ '@parcel/watcher-android-arm64@2.5.1':
+ resolution: {integrity: sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [android]
- '@parcel/watcher-darwin-arm64@2.4.1':
- resolution: {integrity: sha512-ln41eihm5YXIY043vBrrHfn94SIBlqOWmoROhsMVTSXGh0QahKGy77tfEywQ7v3NywyxBBkGIfrWRHm0hsKtzA==}
+ '@parcel/watcher-darwin-arm64@2.5.1':
+ resolution: {integrity: sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [darwin]
- '@parcel/watcher-darwin-x64@2.4.1':
- resolution: {integrity: sha512-yrw81BRLjjtHyDu7J61oPuSoeYWR3lDElcPGJyOvIXmor6DEo7/G2u1o7I38cwlcoBHQFULqF6nesIX3tsEXMg==}
+ '@parcel/watcher-darwin-x64@2.5.1':
+ resolution: {integrity: sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [darwin]
- '@parcel/watcher-freebsd-x64@2.4.1':
- resolution: {integrity: sha512-TJa3Pex/gX3CWIx/Co8k+ykNdDCLx+TuZj3f3h7eOjgpdKM+Mnix37RYsYU4LHhiYJz3DK5nFCCra81p6g050w==}
+ '@parcel/watcher-freebsd-x64@2.5.1':
+ resolution: {integrity: sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [freebsd]
- '@parcel/watcher-linux-arm-glibc@2.4.1':
- resolution: {integrity: sha512-4rVYDlsMEYfa537BRXxJ5UF4ddNwnr2/1O4MHM5PjI9cvV2qymvhwZSFgXqbS8YoTk5i/JR0L0JDs69BUn45YA==}
+ '@parcel/watcher-linux-arm-glibc@2.5.1':
+ resolution: {integrity: sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==}
engines: {node: '>= 10.0.0'}
cpu: [arm]
os: [linux]
- '@parcel/watcher-linux-arm64-glibc@2.4.1':
- resolution: {integrity: sha512-BJ7mH985OADVLpbrzCLgrJ3TOpiZggE9FMblfO65PlOCdG++xJpKUJ0Aol74ZUIYfb8WsRlUdgrZxKkz3zXWYA==}
+ '@parcel/watcher-linux-arm-musl@2.5.1':
+ resolution: {integrity: sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm]
+ os: [linux]
+
+ '@parcel/watcher-linux-arm64-glibc@2.5.1':
+ resolution: {integrity: sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [linux]
- '@parcel/watcher-linux-arm64-musl@2.4.1':
- resolution: {integrity: sha512-p4Xb7JGq3MLgAfYhslU2SjoV9G0kI0Xry0kuxeG/41UfpjHGOhv7UoUDAz/jb1u2elbhazy4rRBL8PegPJFBhA==}
+ '@parcel/watcher-linux-arm64-musl@2.5.1':
+ resolution: {integrity: sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [linux]
- '@parcel/watcher-linux-x64-glibc@2.4.1':
- resolution: {integrity: sha512-s9O3fByZ/2pyYDPoLM6zt92yu6P4E39a03zvO0qCHOTjxmt3GHRMLuRZEWhWLASTMSrrnVNWdVI/+pUElJBBBg==}
+ '@parcel/watcher-linux-x64-glibc@2.5.1':
+ resolution: {integrity: sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [linux]
- '@parcel/watcher-linux-x64-musl@2.4.1':
- resolution: {integrity: sha512-L2nZTYR1myLNST0O632g0Dx9LyMNHrn6TOt76sYxWLdff3cB22/GZX2UPtJnaqQPdCRoszoY5rcOj4oMTtp5fQ==}
+ '@parcel/watcher-linux-x64-musl@2.5.1':
+ resolution: {integrity: sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [linux]
- '@parcel/watcher-win32-arm64@2.4.1':
- resolution: {integrity: sha512-Uq2BPp5GWhrq/lcuItCHoqxjULU1QYEcyjSO5jqqOK8RNFDBQnenMMx4gAl3v8GiWa59E9+uDM7yZ6LxwUIfRg==}
+ '@parcel/watcher-win32-arm64@2.5.1':
+ resolution: {integrity: sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==}
engines: {node: '>= 10.0.0'}
cpu: [arm64]
os: [win32]
- '@parcel/watcher-win32-ia32@2.4.1':
- resolution: {integrity: sha512-maNRit5QQV2kgHFSYwftmPBxiuK5u4DXjbXx7q6eKjq5dsLXZ4FJiVvlcw35QXzk0KrUecJmuVFbj4uV9oYrcw==}
+ '@parcel/watcher-win32-ia32@2.5.1':
+ resolution: {integrity: sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==}
engines: {node: '>= 10.0.0'}
cpu: [ia32]
os: [win32]
- '@parcel/watcher-win32-x64@2.4.1':
- resolution: {integrity: sha512-+DvS92F9ezicfswqrvIRM2njcYJbd5mb9CUgtrHCHmvn7pPPa+nMDRu1o1bYYz/l5IB2NVGNJWiH7h1E58IF2A==}
+ '@parcel/watcher-win32-x64@2.5.1':
+ resolution: {integrity: sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==}
engines: {node: '>= 10.0.0'}
cpu: [x64]
os: [win32]
- '@parcel/watcher@2.4.1':
- resolution: {integrity: sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==}
+ '@parcel/watcher@2.5.1':
+ resolution: {integrity: sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==}
engines: {node: '>= 10.0.0'}
'@pkgjs/parseargs@0.11.0':
@@ -793,91 +682,115 @@ packages:
resolution: {integrity: sha512-vWWVbYYBBN/kweokmURicokyg7crzcDZo9/naziv8B8RSWrLWFpq5Xl0ro6QCQKgRmb6O78Qy9uQT+Fp79RxsA==}
engines: {node: '>=16.14'}
- '@rollup/rollup-android-arm-eabi@4.21.2':
- resolution: {integrity: sha512-fSuPrt0ZO8uXeS+xP3b+yYTCBUd05MoSp2N/MFOgjhhUhMmchXlpTQrTpI8T+YAwAQuK7MafsCOxW7VrPMrJcg==}
+ '@rollup/rollup-android-arm-eabi@4.34.8':
+ resolution: {integrity: sha512-q217OSE8DTp8AFHuNHXo0Y86e1wtlfVrXiAlwkIvGRQv9zbc6mE3sjIVfwI8sYUyNxwOg0j/Vm1RKM04JcWLJw==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.21.2':
- resolution: {integrity: sha512-xGU5ZQmPlsjQS6tzTTGwMsnKUtu0WVbl0hYpTPauvbRAnmIvpInhJtgjj3mcuJpEiuUw4v1s4BimkdfDWlh7gA==}
+ '@rollup/rollup-android-arm64@4.34.8':
+ resolution: {integrity: sha512-Gigjz7mNWaOL9wCggvoK3jEIUUbGul656opstjaUSGC3eT0BM7PofdAJaBfPFWWkXNVAXbaQtC99OCg4sJv70Q==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.21.2':
- resolution: {integrity: sha512-99AhQ3/ZMxU7jw34Sq8brzXqWH/bMnf7ZVhvLk9QU2cOepbQSVTns6qoErJmSiAvU3InRqC2RRZ5ovh1KN0d0Q==}
+ '@rollup/rollup-darwin-arm64@4.34.8':
+ resolution: {integrity: sha512-02rVdZ5tgdUNRxIUrFdcMBZQoaPMrxtwSb+/hOfBdqkatYHR3lZ2A2EGyHq2sGOd0Owk80oV3snlDASC24He3Q==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.21.2':
- resolution: {integrity: sha512-ZbRaUvw2iN/y37x6dY50D8m2BnDbBjlnMPotDi/qITMJ4sIxNY33HArjikDyakhSv0+ybdUxhWxE6kTI4oX26w==}
+ '@rollup/rollup-darwin-x64@4.34.8':
+ resolution: {integrity: sha512-qIP/elwR/tq/dYRx3lgwK31jkZvMiD6qUtOycLhTzCvrjbZ3LjQnEM9rNhSGpbLXVJYQ3rq39A6Re0h9tU2ynw==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-linux-arm-gnueabihf@4.21.2':
- resolution: {integrity: sha512-ztRJJMiE8nnU1YFcdbd9BcH6bGWG1z+jP+IPW2oDUAPxPjo9dverIOyXz76m6IPA6udEL12reYeLojzW2cYL7w==}
+ '@rollup/rollup-freebsd-arm64@4.34.8':
+ resolution: {integrity: sha512-IQNVXL9iY6NniYbTaOKdrlVP3XIqazBgJOVkddzJlqnCpRi/yAeSOa8PLcECFSQochzqApIOE1GHNu3pCz+BDA==}
+ cpu: [arm64]
+ os: [freebsd]
+
+ '@rollup/rollup-freebsd-x64@4.34.8':
+ resolution: {integrity: sha512-TYXcHghgnCqYFiE3FT5QwXtOZqDj5GmaFNTNt3jNC+vh22dc/ukG2cG+pi75QO4kACohZzidsq7yKTKwq/Jq7Q==}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@rollup/rollup-linux-arm-gnueabihf@4.34.8':
+ resolution: {integrity: sha512-A4iphFGNkWRd+5m3VIGuqHnG3MVnqKe7Al57u9mwgbyZ2/xF9Jio72MaY7xxh+Y87VAHmGQr73qoKL9HPbXj1g==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.21.2':
- resolution: {integrity: sha512-flOcGHDZajGKYpLV0JNc0VFH361M7rnV1ee+NTeC/BQQ1/0pllYcFmxpagltANYt8FYf9+kL6RSk80Ziwyhr7w==}
+ '@rollup/rollup-linux-arm-musleabihf@4.34.8':
+ resolution: {integrity: sha512-S0lqKLfTm5u+QTxlFiAnb2J/2dgQqRy/XvziPtDd1rKZFXHTyYLoVL58M/XFwDI01AQCDIevGLbQrMAtdyanpA==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.21.2':
- resolution: {integrity: sha512-69CF19Kp3TdMopyteO/LJbWufOzqqXzkrv4L2sP8kfMaAQ6iwky7NoXTp7bD6/irKgknDKM0P9E/1l5XxVQAhw==}
+ '@rollup/rollup-linux-arm64-gnu@4.34.8':
+ resolution: {integrity: sha512-jpz9YOuPiSkL4G4pqKrus0pn9aYwpImGkosRKwNi+sJSkz+WU3anZe6hi73StLOQdfXYXC7hUfsQlTnjMd3s1A==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.21.2':
- resolution: {integrity: sha512-48pD/fJkTiHAZTnZwR0VzHrao70/4MlzJrq0ZsILjLW/Ab/1XlVUStYyGt7tdyIiVSlGZbnliqmult/QGA2O2w==}
+ '@rollup/rollup-linux-arm64-musl@4.34.8':
+ resolution: {integrity: sha512-KdSfaROOUJXgTVxJNAZ3KwkRc5nggDk+06P6lgi1HLv1hskgvxHUKZ4xtwHkVYJ1Rep4GNo+uEfycCRRxht7+Q==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-powerpc64le-gnu@4.21.2':
- resolution: {integrity: sha512-cZdyuInj0ofc7mAQpKcPR2a2iu4YM4FQfuUzCVA2u4HI95lCwzjoPtdWjdpDKyHxI0UO82bLDoOaLfpZ/wviyQ==}
+ '@rollup/rollup-linux-loongarch64-gnu@4.34.8':
+ resolution: {integrity: sha512-NyF4gcxwkMFRjgXBM6g2lkT58OWztZvw5KkV2K0qqSnUEqCVcqdh2jN4gQrTn/YUpAcNKyFHfoOZEer9nwo6uQ==}
+ cpu: [loong64]
+ os: [linux]
+
+ '@rollup/rollup-linux-powerpc64le-gnu@4.34.8':
+ resolution: {integrity: sha512-LMJc999GkhGvktHU85zNTDImZVUCJ1z/MbAJTnviiWmmjyckP5aQsHtcujMjpNdMZPT2rQEDBlJfubhs3jsMfw==}
cpu: [ppc64]
os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.21.2':
- resolution: {integrity: sha512-RL56JMT6NwQ0lXIQmMIWr1SW28z4E4pOhRRNqwWZeXpRlykRIlEpSWdsgNWJbYBEWD84eocjSGDu/XxbYeCmwg==}
+ '@rollup/rollup-linux-riscv64-gnu@4.34.8':
+ resolution: {integrity: sha512-xAQCAHPj8nJq1PI3z8CIZzXuXCstquz7cIOL73HHdXiRcKk8Ywwqtx2wrIy23EcTn4aZ2fLJNBB8d0tQENPCmw==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.21.2':
- resolution: {integrity: sha512-PMxkrWS9z38bCr3rWvDFVGD6sFeZJw4iQlhrup7ReGmfn7Oukrr/zweLhYX6v2/8J6Cep9IEA/SmjXjCmSbrMQ==}
+ '@rollup/rollup-linux-s390x-gnu@4.34.8':
+ resolution: {integrity: sha512-DdePVk1NDEuc3fOe3dPPTb+rjMtuFw89gw6gVWxQFAuEqqSdDKnrwzZHrUYdac7A7dXl9Q2Vflxpme15gUWQFA==}
cpu: [s390x]
os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.21.2':
- resolution: {integrity: sha512-B90tYAUoLhU22olrafY3JQCFLnT3NglazdwkHyxNDYF/zAxJt5fJUB/yBoWFoIQ7SQj+KLe3iL4BhOMa9fzgpw==}
+ '@rollup/rollup-linux-x64-gnu@4.34.8':
+ resolution: {integrity: sha512-8y7ED8gjxITUltTUEJLQdgpbPh1sUQ0kMTmufRF/Ns5tI9TNMNlhWtmPKKHCU0SilX+3MJkZ0zERYYGIVBYHIA==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-musl@4.21.2':
- resolution: {integrity: sha512-7twFizNXudESmC9oneLGIUmoHiiLppz/Xs5uJQ4ShvE6234K0VB1/aJYU3f/4g7PhssLGKBVCC37uRkkOi8wjg==}
+ '@rollup/rollup-linux-x64-musl@4.34.8':
+ resolution: {integrity: sha512-SCXcP0ZpGFIe7Ge+McxY5zKxiEI5ra+GT3QRxL0pMMtxPfpyLAKleZODi1zdRHkz5/BhueUrYtYVgubqe9JBNQ==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-win32-arm64-msvc@4.21.2':
- resolution: {integrity: sha512-9rRero0E7qTeYf6+rFh3AErTNU1VCQg2mn7CQcI44vNUWM9Ze7MSRS/9RFuSsox+vstRt97+x3sOhEey024FRQ==}
+ '@rollup/rollup-win32-arm64-msvc@4.34.8':
+ resolution: {integrity: sha512-YHYsgzZgFJzTRbth4h7Or0m5O74Yda+hLin0irAIobkLQFRQd1qWmnoVfwmKm9TXIZVAD0nZ+GEb2ICicLyCnQ==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.21.2':
- resolution: {integrity: sha512-5rA4vjlqgrpbFVVHX3qkrCo/fZTj1q0Xxpg+Z7yIo3J2AilW7t2+n6Q8Jrx+4MrYpAnjttTYF8rr7bP46BPzRw==}
+ '@rollup/rollup-win32-ia32-msvc@4.34.8':
+ resolution: {integrity: sha512-r3NRQrXkHr4uWy5TOjTpTYojR9XmF0j/RYgKCef+Ag46FWUTltm5ziticv8LdNsDMehjJ543x/+TJAek/xBA2w==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.21.2':
- resolution: {integrity: sha512-6UUxd0+SKomjdzuAcp+HAmxw1FlGBnl1v2yEPSabtx4lBfdXHDVsW7+lQkgz9cNFJGY3AWR7+V8P5BqkD9L9nA==}
+ '@rollup/rollup-win32-x64-msvc@4.34.8':
+ resolution: {integrity: sha512-U0FaE5O1BCpZSeE6gBl3c5ObhePQSfk9vDRToMmTkbhCOgW4jqvtS5LGyQ76L1fH8sM0keRp4uDTsbjiUyjk0g==}
cpu: [x64]
os: [win32]
+ '@rtsao/scc@1.1.0':
+ resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==}
+
'@sinclair/typebox@0.27.8':
resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
- '@ts-morph/common@0.24.0':
- resolution: {integrity: sha512-c1xMmNHWpNselmpIqursHeOHHBTIsJLbB+NuovbTTRCNiTLEr/U9dbJ8qy0jd/O2x5pc3seWuOUN5R2IoOTp8A==}
+ '@standard-schema/spec@1.0.0':
+ resolution: {integrity: sha512-m2bOd0f2RT9k8QJx1JN85cZYyH1RqFBdlwtkSlf4tBDYLCiiZnv1fIIwacK6cqwXavOydf0NPToMQgpKq+dVlA==}
+
+ '@ts-morph/common@0.26.1':
+ resolution: {integrity: sha512-Sn28TGl/4cFpcM+jwsH1wLncYq3FtN/BIpem+HOygfBWPT5pAeS5dB4VFVzV8FbnOKHpDLZmvAl4AjPEev5idA==}
+
+ '@types/babel__code-frame@7.0.6':
+ resolution: {integrity: sha512-Anitqkl3+KrzcW2k77lRlg/GfLZLWXBuNgbEcIOU6M92yw42vsd3xV/Z/yAHEj8m+KUjL6bWOVOFqX8PFPJ4LA==}
'@types/dedent@0.7.0':
resolution: {integrity: sha512-EGlKlgMhnLt/cM4DbUSafFdrkeJoC9Mvnj0PUCU7tFmTjMjNRT957kXCx0wYm3JuEq4o4ZsS5vG+NlkM2DMd2A==}
@@ -888,8 +801,8 @@ packages:
'@types/eslint@8.56.12':
resolution: {integrity: sha512-03ruubjWyOHlmljCVoxSuNDdmfZDzsrrz0P2LeJsOXr+ZwFQ+0yQIwNCwt/GYhV7Z31fgtXJTAEs+FYlEL851g==}
- '@types/estree@1.0.5':
- resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
+ '@types/estree@1.0.6':
+ resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
'@types/glob@7.1.3':
resolution: {integrity: sha512-SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w==}
@@ -915,8 +828,8 @@ packages:
'@types/json5@0.0.29':
resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
- '@types/lodash@4.17.7':
- resolution: {integrity: sha512-8wTvZawATi/lsmNu10/j2hk1KEP0IvjubqPE3cu1Xz7xfXXt5oCq3SNUz4fMIP4XGF9Ky+Ue2tBA3hcS7LSBlA==}
+ '@types/lodash@4.17.15':
+ resolution: {integrity: sha512-w/P33JFeySuhN6JLkysYUK2gEmy9kHHFN7E8ro0tkfmlDOgxBDzWEZ/J8cWA+fHqFevpswDTFZnDx+R9lbL6xw==}
'@types/mdast@3.0.15':
resolution: {integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==}
@@ -927,11 +840,11 @@ packages:
'@types/node@12.20.55':
resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==}
- '@types/node@20.16.3':
- resolution: {integrity: sha512-/wdGiWRkMOm53gAsSyFMXFZHbVg7C6CbkrzHNpaHoYfsUWPg7m6ZRKtvQjgvQ9i8WT540a3ydRlRQbxjY30XxQ==}
+ '@types/node@20.17.19':
+ resolution: {integrity: sha512-LEwC7o1ifqg/6r2gn9Dns0f1rhK+fPFDoMiceTJ6kWmVk6bgXBI/9IOWfVan4WiAavK9pIVWdX0/e3J+eEUh5A==}
- '@types/node@22.5.2':
- resolution: {integrity: sha512-acJsPTEqYqulZS/Yp/S3GgeE6GZ0qYODUR8aVr/DkhHQ8l9nd4j5x1/ZJy9/gHrRlFMqkO6i0I3E27Alu4jjPg==}
+ '@types/node@22.13.9':
+ resolution: {integrity: sha512-acBjXdRJ3A6Pb3tqnw9HZmyR3Fiol3aGxRCK1x3d+6CDAMjl7I649wpSd+yNURCjbOUGu9tqtLKnTGxmK6CyGw==}
'@types/normalize-package-data@2.4.4':
resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
@@ -951,123 +864,98 @@ packages:
'@types/yargs@17.0.33':
resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==}
- '@typescript-eslint/eslint-plugin@8.3.0':
- resolution: {integrity: sha512-FLAIn63G5KH+adZosDYiutqkOkYEx0nvcwNNfJAf+c7Ae/H35qWwTYvPZUKFj5AS+WfHG/WJJfWnDnyNUlp8UA==}
+ '@typescript-eslint/eslint-plugin@8.26.0':
+ resolution: {integrity: sha512-cLr1J6pe56zjKYajK6SSSre6nl1Gj6xDp1TY0trpgPzjVbgDwd09v2Ws37LABxzkicmUjhEeg/fAUjPJJB1v5Q==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
'@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
eslint: ^8.57.0 || ^9.0.0
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
+ typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/parser@8.3.0':
- resolution: {integrity: sha512-h53RhVyLu6AtpUzVCYLPhZGL5jzTD9fZL+SYf/+hYOx2bDkyQXztXSc4tbvKYHzfMXExMLiL9CWqJmVz6+78IQ==}
+ '@typescript-eslint/parser@8.26.0':
+ resolution: {integrity: sha512-mNtXP9LTVBy14ZF3o7JG69gRPBK/2QWtQd0j0oH26HcY/foyJJau6pNUez7QrM5UHnSvwlQcJXKsk0I99B9pOA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
-
- '@typescript-eslint/scope-manager@7.18.0':
- resolution: {integrity: sha512-jjhdIE/FPF2B7Z1uzc6i3oWKbGcHb87Qw7AWj6jmEqNOfDFbJWtjt/XfwCpvNkpGWlcJaog5vTR+VV8+w9JflA==}
- engines: {node: ^18.18.0 || >=20.0.0}
+ typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/scope-manager@8.3.0':
- resolution: {integrity: sha512-mz2X8WcN2nVu5Hodku+IR8GgCOl4C0G/Z1ruaWN4dgec64kDBabuXyPAr+/RgJtumv8EEkqIzf3X2U5DUKB2eg==}
+ '@typescript-eslint/scope-manager@8.26.0':
+ resolution: {integrity: sha512-E0ntLvsfPqnPwng8b8y4OGuzh/iIOm2z8U3S9zic2TeMLW61u5IH2Q1wu0oSTkfrSzwbDJIB/Lm8O3//8BWMPA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/type-utils@8.3.0':
- resolution: {integrity: sha512-wrV6qh//nLbfXZQoj32EXKmwHf4b7L+xXLrP3FZ0GOUU72gSvLjeWUl5J5Ue5IwRxIV1TfF73j/eaBapxx99Lg==}
+ '@typescript-eslint/type-utils@8.26.0':
+ resolution: {integrity: sha512-ruk0RNChLKz3zKGn2LwXuVoeBcUMh+jaqzN461uMMdxy5H9epZqIBtYj7UiPXRuOpaALXGbmRuZQhmwHhaS04Q==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
-
- '@typescript-eslint/types@7.18.0':
- resolution: {integrity: sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==}
- engines: {node: ^18.18.0 || >=20.0.0}
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/types@8.3.0':
- resolution: {integrity: sha512-y6sSEeK+facMaAyixM36dQ5NVXTnKWunfD1Ft4xraYqxP0lC0POJmIaL/mw72CUMqjY9qfyVfXafMeaUj0noWw==}
+ '@typescript-eslint/types@8.26.0':
+ resolution: {integrity: sha512-89B1eP3tnpr9A8L6PZlSjBvnJhWXtYfZhECqlBl1D9Lme9mHO6iWlsprBtVenQvY1HMhax1mWOjhtL3fh/u+pA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/typescript-estree@7.18.0':
- resolution: {integrity: sha512-aP1v/BSPnnyhMHts8cf1qQ6Q1IFwwRvAQGRvBFkWlo3/lH29OXA3Pts+c10nxRxIBrDnoMqzhgdwVe5f2D6OzA==}
- engines: {node: ^18.18.0 || >=20.0.0}
- peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
-
- '@typescript-eslint/typescript-estree@8.3.0':
- resolution: {integrity: sha512-Mq7FTHl0R36EmWlCJWojIC1qn/ZWo2YiWYc1XVtasJ7FIgjo0MVv9rZWXEE7IK2CGrtwe1dVOxWwqXUdNgfRCA==}
+ '@typescript-eslint/typescript-estree@8.26.0':
+ resolution: {integrity: sha512-tiJ1Hvy/V/oMVRTbEOIeemA2XoylimlDQ03CgPPNaHYZbpsc78Hmngnt+WXZfJX1pjQ711V7g0H7cSJThGYfPQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
- typescript: '*'
- peerDependenciesMeta:
- typescript:
- optional: true
-
- '@typescript-eslint/utils@7.18.0':
- resolution: {integrity: sha512-kK0/rNa2j74XuHVcoCZxdFBMF+aq/vH83CXAOHieC+2Gis4mF8jJXT5eAfyD3K0sAxtPuwxaIOIOvhwzVDt/kw==}
- engines: {node: ^18.18.0 || >=20.0.0}
- peerDependencies:
- eslint: ^8.56.0
+ typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/utils@8.3.0':
- resolution: {integrity: sha512-F77WwqxIi/qGkIGOGXNBLV7nykwfjLsdauRB/DOFPdv6LTF3BHHkBpq81/b5iMPSF055oO2BiivDJV4ChvNtXA==}
+ '@typescript-eslint/utils@8.26.0':
+ resolution: {integrity: sha512-2L2tU3FVwhvU14LndnQCA2frYC8JnPDVKyQtWFPf8IYFMt/ykEN1bPolNhNbCVgOmdzTlWdusCTKA/9nKrf8Ig==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
+ typescript: '>=4.8.4 <5.9.0'
- '@typescript-eslint/visitor-keys@7.18.0':
- resolution: {integrity: sha512-cDF0/Gf81QpY3xYyJKDV14Zwdmid5+uuENhjH2EqFaF0ni+yAyq/LzMaIJdhNJXZI7uLzwIlA+V7oWoyn6Curg==}
- engines: {node: ^18.18.0 || >=20.0.0}
-
- '@typescript-eslint/visitor-keys@8.3.0':
- resolution: {integrity: sha512-RmZwrTbQ9QveF15m/Cl28n0LXD6ea2CjkhH5rQ55ewz3H24w+AMCJHPVYaZ8/0HoG8Z3cLLFFycRXxeO2tz9FA==}
+ '@typescript-eslint/visitor-keys@8.26.0':
+ resolution: {integrity: sha512-2z8JQJWAzPdDd51dRQ/oqIJxe99/hoLIqmf8RMCAJQtYDc535W/Jt2+RTP4bP0aKeBG1F65yjIZuczOXCmbWwg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@ungap/structured-clone@1.2.0':
- resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
-
- '@vitest/coverage-v8@2.0.5':
- resolution: {integrity: sha512-qeFcySCg5FLO2bHHSa0tAZAOnAUbp4L6/A5JDuj9+bt53JREl8hpLjLHEWF0e/gWc8INVpJaqA7+Ene2rclpZg==}
+ '@vitest/coverage-v8@3.0.8':
+ resolution: {integrity: sha512-y7SAKsQirsEJ2F8bulBck4DoluhI2EEgTimHd6EEUgJBGKy9tC25cpywh1MH4FvDGoG2Unt7+asVd1kj4qOSAw==}
peerDependencies:
- vitest: 2.0.5
+ '@vitest/browser': 3.0.8
+ vitest: 3.0.8
+ peerDependenciesMeta:
+ '@vitest/browser':
+ optional: true
- '@vitest/expect@2.0.5':
- resolution: {integrity: sha512-yHZtwuP7JZivj65Gxoi8upUN2OzHTi3zVfjwdpu2WrvCZPLwsJ2Ey5ILIPccoW23dd/zQBlJ4/dhi7DWNyXCpA==}
+ '@vitest/expect@3.0.8':
+ resolution: {integrity: sha512-Xu6TTIavTvSSS6LZaA3EebWFr6tsoXPetOWNMOlc7LO88QVVBwq2oQWBoDiLCN6YTvNYsGSjqOO8CAdjom5DCQ==}
- '@vitest/pretty-format@2.0.5':
- resolution: {integrity: sha512-h8k+1oWHfwTkyTkb9egzwNMfJAEx4veaPSnMeKbVSjp4euqGSbQlm5+6VHwTr7u4FJslVVsUG5nopCaAYdOmSQ==}
+ '@vitest/mocker@3.0.8':
+ resolution: {integrity: sha512-n3LjS7fcW1BCoF+zWZxG7/5XvuYH+lsFg+BDwwAz0arIwHQJFUEsKBQ0BLU49fCxuM/2HSeBPHQD8WjgrxMfow==}
+ peerDependencies:
+ msw: ^2.4.9
+ vite: ^5.0.0 || ^6.0.0
+ peerDependenciesMeta:
+ msw:
+ optional: true
+ vite:
+ optional: true
- '@vitest/runner@2.0.5':
- resolution: {integrity: sha512-TfRfZa6Bkk9ky4tW0z20WKXFEwwvWhRY+84CnSEtq4+3ZvDlJyY32oNTJtM7AW9ihW90tX/1Q78cb6FjoAs+ig==}
+ '@vitest/pretty-format@3.0.8':
+ resolution: {integrity: sha512-BNqwbEyitFhzYMYHUVbIvepOyeQOSFA/NeJMIP9enMntkkxLgOcgABH6fjyXG85ipTgvero6noreavGIqfJcIg==}
- '@vitest/snapshot@2.0.5':
- resolution: {integrity: sha512-SgCPUeDFLaM0mIUHfaArq8fD2WbaXG/zVXjRupthYfYGzc8ztbFbu6dUNOblBG7XLMR1kEhS/DNnfCZ2IhdDew==}
+ '@vitest/runner@3.0.8':
+ resolution: {integrity: sha512-c7UUw6gEcOzI8fih+uaAXS5DwjlBaCJUo7KJ4VvJcjL95+DSR1kova2hFuRt3w41KZEFcOEiq098KkyrjXeM5w==}
- '@vitest/spy@2.0.5':
- resolution: {integrity: sha512-c/jdthAhvJdpfVuaexSrnawxZz6pywlTPe84LUB2m/4t3rl2fTo9NFGBG4oWgaD+FTgDDV8hJ/nibT7IfH3JfA==}
+ '@vitest/snapshot@3.0.8':
+ resolution: {integrity: sha512-x8IlMGSEMugakInj44nUrLSILh/zy1f2/BgH0UeHpNyOocG18M9CWVIFBaXPt8TrqVZWmcPjwfG/ht5tnpba8A==}
- '@vitest/utils@2.0.5':
- resolution: {integrity: sha512-d8HKbqIcya+GR67mkZbrzhS5kKhtp8dQLcmRZLGTscGVg7yImT82cIrhtn2L8+VujWcy6KZweApgNmPsTAO/UQ==}
+ '@vitest/spy@3.0.8':
+ resolution: {integrity: sha512-MR+PzJa+22vFKYb934CejhR4BeRpMSoxkvNoDit68GQxRLSf11aT6CTj3XaqUU9rxgWJFnqicN/wxw6yBRkI1Q==}
+
+ '@vitest/utils@3.0.8':
+ resolution: {integrity: sha512-nkBC3aEhfX2PdtQI/QwAWp8qZWwzASsU4Npbcd5RdMPBSSLCpkZp52P3xku3s3uA0HIEhGvEcF8rNkBsz9dQ4Q==}
acorn-jsx@5.3.2:
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
- acorn@8.11.2:
- resolution: {integrity: sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==}
+ acorn@8.14.0:
+ resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
engines: {node: '>=0.4.0'}
hasBin: true
@@ -1082,8 +970,8 @@ packages:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
- ansi-regex@6.0.1:
- resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
+ ansi-regex@6.1.0:
+ resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==}
engines: {node: '>=12'}
ansi-styles@3.2.1:
@@ -1105,52 +993,53 @@ packages:
any-promise@1.3.0:
resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
- anymatch@3.1.3:
- resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
- engines: {node: '>= 8'}
-
argparse@1.0.10:
resolution: {integrity: sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==}
argparse@2.0.1:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
- array-buffer-byte-length@1.0.0:
- resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==}
+ array-buffer-byte-length@1.0.2:
+ resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==}
+ engines: {node: '>= 0.4'}
- array-includes@3.1.7:
- resolution: {integrity: sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==}
+ array-includes@3.1.8:
+ resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==}
engines: {node: '>= 0.4'}
array-union@2.1.0:
resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
engines: {node: '>=8'}
- array.prototype.findlastindex@1.2.3:
- resolution: {integrity: sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==}
+ array.prototype.findlastindex@1.2.5:
+ resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==}
engines: {node: '>= 0.4'}
- array.prototype.flat@1.3.2:
- resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==}
+ array.prototype.flat@1.3.3:
+ resolution: {integrity: sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==}
engines: {node: '>= 0.4'}
- array.prototype.flatmap@1.3.2:
- resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==}
+ array.prototype.flatmap@1.3.3:
+ resolution: {integrity: sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==}
engines: {node: '>= 0.4'}
- arraybuffer.prototype.slice@1.0.2:
- resolution: {integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==}
+ arraybuffer.prototype.slice@1.0.4:
+ resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==}
engines: {node: '>= 0.4'}
assertion-error@2.0.1:
resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==}
engines: {node: '>=12'}
+ async-function@1.0.0:
+ resolution: {integrity: sha512-hsU18Ae8CDTR6Kgu9DYf0EbCr/a5iGL0rytQDobUcdpYOKokk8LEjVphnXkDkgpi0wYVsqrXuP0bZxJaTqdgoA==}
+ engines: {node: '>= 0.4'}
+
autolinker@0.28.1:
resolution: {integrity: sha512-zQAFO1Dlsn69eXaO6+7YZc+v84aquQKbwpzCE3L0stj56ERn9hutFxPopViLjo9G+rWwjozRhgS5KJ25Xy19cQ==}
- available-typed-arrays@1.0.5:
- resolution: {integrity: sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==}
+ available-typed-arrays@1.0.7:
+ resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
engines: {node: '>= 0.4'}
balanced-match@1.0.2:
@@ -1160,10 +1049,6 @@ packages:
resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==}
engines: {node: '>=4'}
- binary-extensions@2.3.0:
- resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
- engines: {node: '>=8'}
-
brace-expansion@1.1.11:
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
@@ -1174,16 +1059,16 @@ packages:
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
engines: {node: '>=8'}
- browserslist@4.23.3:
- resolution: {integrity: sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==}
+ browserslist@4.24.4:
+ resolution: {integrity: sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
buffer-from@1.1.2:
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
- bundle-require@5.0.0:
- resolution: {integrity: sha512-GuziW3fSSmopcx4KRymQEJVbZUfqlCqcq7dvs6TYwKRZiegK/2buMxQTPs6MGlNv50wms1699qYO54R8XfRX4w==}
+ bundle-require@5.1.0:
+ resolution: {integrity: sha512-3WrrOuZiyaaZPWiEt4G3+IffISVC9HYlWueJEBWED4ZH4aIAC2PnkdnuRrR94M+w6yGWn4AglWtJtBI8YqvgoA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
peerDependencies:
esbuild: '>=0.18'
@@ -1192,18 +1077,27 @@ packages:
resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==}
engines: {node: '>=8'}
- call-bind@1.0.5:
- resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==}
+ call-bind-apply-helpers@1.0.2:
+ resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
+ engines: {node: '>= 0.4'}
+
+ call-bind@1.0.8:
+ resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==}
+ engines: {node: '>= 0.4'}
+
+ call-bound@1.0.3:
+ resolution: {integrity: sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==}
+ engines: {node: '>= 0.4'}
callsites@3.1.0:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
engines: {node: '>=6'}
- caniuse-lite@1.0.30001655:
- resolution: {integrity: sha512-jRGVy3iSGO5Uutn2owlb5gR6qsGngTw9ZTb4ali9f3glshcNmJ2noam4Mo9zia5P9Dk3jNNydy7vQjuE5dQmfg==}
+ caniuse-lite@1.0.30001701:
+ resolution: {integrity: sha512-faRs/AW3jA9nTwmJBSO1PQ6L/EOgsB5HMQQq4iCu5zhPgVVgO/pZRHlmatwijZKetFw8/Pr4q6dEN8sJuq8qTw==}
- chai@5.1.1:
- resolution: {integrity: sha512-pT1ZgP8rPNqUgieVaEY+ryQr6Q4HXNg8Ei9UnLUrjN4IA7dvQC5JB+/kxVcPNDHyBcc/26CXPkbNzq3qwrOEKA==}
+ chai@5.2.0:
+ resolution: {integrity: sha512-mCuXncKXk5iCLhfhwTc0izo0gtEmpz5CtG2y8GiOINBlMVS6v8TMRc5TaLWKS6692m9+dVVfzgeVxR5UxWHTYw==}
engines: {node: '>=12'}
chalk@2.4.2:
@@ -1214,8 +1108,8 @@ packages:
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
engines: {node: '>=10'}
- chalk@5.3.0:
- resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==}
+ chalk@5.4.1:
+ resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==}
engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
character-entities-legacy@1.1.4:
@@ -1234,16 +1128,16 @@ packages:
resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==}
engines: {node: '>= 16'}
- chokidar@3.6.0:
- resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
- engines: {node: '>= 8.10.0'}
+ chokidar@4.0.3:
+ resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
+ engines: {node: '>= 14.16.0'}
ci-info@3.9.0:
resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==}
engines: {node: '>=8'}
- code-block-writer@13.0.2:
- resolution: {integrity: sha512-XfXzAGiStXSmCIwrkdfvc7FS5Dtj8yelCtyOf2p2skCAfvLd6zu0rGzuS9NSCO3bq1JKpFZ7tbKdKlcd5occQA==}
+ code-block-writer@13.0.3:
+ resolution: {integrity: sha512-Oofo0pq3IKnsFtuHqSF7TqBfr71aeyZDVJ0HpmqB7FBM2qEigL0iPONSCZSO9pE9dZTAxANe5XHG9Uy0YMv8cg==}
color-convert@1.9.3:
resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
@@ -1272,8 +1166,8 @@ packages:
concat-with-sourcemaps@1.1.0:
resolution: {integrity: sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg==}
- consola@3.2.3:
- resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==}
+ consola@3.4.0:
+ resolution: {integrity: sha512-EiPU8G6dQG0GFHNR8ljnZFki/8a+cQwEQ+7wpxdChl02Q8HXlwEZWD5lqAF8vC2sEC3Tehr8hy7vErz88LHyUA==}
engines: {node: ^14.18.0 || >=16.10.0}
convert-source-map@2.0.0:
@@ -1289,6 +1183,22 @@ packages:
resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
engines: {node: '>= 8'}
+ cross-spawn@7.0.6:
+ resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
+ engines: {node: '>= 8'}
+
+ data-view-buffer@1.0.2:
+ resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==}
+ engines: {node: '>= 0.4'}
+
+ data-view-byte-length@1.0.2:
+ resolution: {integrity: sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==}
+ engines: {node: '>= 0.4'}
+
+ data-view-byte-offset@1.0.1:
+ resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==}
+ engines: {node: '>= 0.4'}
+
dataloader@1.4.0:
resolution: {integrity: sha512-68s5jYdlvasItOJnCuI2Q9s4q98g0pCyL3HrcKJu8KNugUl8ahgmZYg38ysLTgQjjXX3H8CJLkAvWrclWfcalw==}
@@ -1300,17 +1210,8 @@ packages:
supports-color:
optional: true
- debug@4.3.4:
- resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
- engines: {node: '>=6.0'}
- peerDependencies:
- supports-color: '*'
- peerDependenciesMeta:
- supports-color:
- optional: true
-
- debug@4.3.6:
- resolution: {integrity: sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==}
+ debug@4.4.0:
+ resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==}
engines: {node: '>=6.0'}
peerDependencies:
supports-color: '*'
@@ -1333,8 +1234,8 @@ packages:
deep-is@0.1.4:
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
- define-data-property@1.1.1:
- resolution: {integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==}
+ define-data-property@1.1.4:
+ resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==}
engines: {node: '>= 0.4'}
define-properties@1.2.1:
@@ -1374,14 +1275,18 @@ packages:
resolution: {integrity: sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==}
engines: {node: '>=10'}
+ dunder-proto@1.0.1:
+ resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
+ engines: {node: '>= 0.4'}
+
eastasianwidth@0.2.0:
resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
- effect@3.7.0:
- resolution: {integrity: sha512-TXrb4SHTHrij396NfvGgpOD/5Sh503LtN2AeskkB7YO6Oe1tWSekk8dcrj3AWbMDOJ/fXOvcf6HD+Svus2zIeA==}
+ effect@3.13.7:
+ resolution: {integrity: sha512-yjDuWX5M34kB38Pwilv8QU956nA2m1a6ws0i+04VQkQJEBPI4GfVhUhtNNFRaqKIOlkqdqzJHCDOwARmaf2XzA==}
- electron-to-chromium@1.5.13:
- resolution: {integrity: sha512-lbBcvtIJ4J6sS4tb5TLp1b4LyfCdMkwStzXPyAgVgTRAsep4bvrAGaBOP7ZJtQMNJpSQ9SqG4brWOroNaQtm7Q==}
+ electron-to-chromium@1.5.107:
+ resolution: {integrity: sha512-dJr1o6yCntRkXElnhsHh1bAV19bo/hKyFf7tCcWgpXbuFIF0Lakjgqv5LRfSDaNzAII8Fnxg2tqgHkgCvxdbxw==}
emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
@@ -1389,8 +1294,8 @@ packages:
emoji-regex@9.2.2:
resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
- enhanced-resolve@5.17.1:
- resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==}
+ enhanced-resolve@5.18.1:
+ resolution: {integrity: sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==}
engines: {node: '>=10.13.0'}
enquirer@2.4.1:
@@ -1400,28 +1305,39 @@ packages:
error-ex@1.3.2:
resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
- es-abstract@1.22.3:
- resolution: {integrity: sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==}
+ es-abstract@1.23.9:
+ resolution: {integrity: sha512-py07lI0wjxAC/DcfK1S6G7iANonniZwTISvdPzk9hzeH0IZIshbuuFxLIU96OyF89Yb9hiqWn8M/bY83KY5vzA==}
+ engines: {node: '>= 0.4'}
+
+ es-define-property@1.0.1:
+ resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
engines: {node: '>= 0.4'}
- es-set-tostringtag@2.0.2:
- resolution: {integrity: sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==}
+ es-errors@1.3.0:
+ resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
engines: {node: '>= 0.4'}
- es-shim-unscopables@1.0.2:
- resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==}
+ es-module-lexer@1.6.0:
+ resolution: {integrity: sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==}
- es-to-primitive@1.2.1:
- resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
+ es-object-atoms@1.1.1:
+ resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
engines: {node: '>= 0.4'}
- esbuild@0.21.5:
- resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
- engines: {node: '>=12'}
- hasBin: true
+ es-set-tostringtag@2.1.0:
+ resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
+ engines: {node: '>= 0.4'}
- esbuild@0.23.1:
- resolution: {integrity: sha512-VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg==}
+ es-shim-unscopables@1.1.0:
+ resolution: {integrity: sha512-d9T8ucsEhh8Bi1woXCf+TIKDIROLG5WCkxg8geBCbvk22kzwC5G2OnXVMO6FUsvQlgUUXQ2itephWDLqDzbeCw==}
+ engines: {node: '>= 0.4'}
+
+ es-to-primitive@1.3.0:
+ resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==}
+ engines: {node: '>= 0.4'}
+
+ esbuild@0.25.0:
+ resolution: {integrity: sha512-BXq5mqc8ltbaN34cDqWuYKyNhX8D/Z0J1xdtdQ8UcIIIyJyz+ZMKUt58tF3SrZ85jcfN/PZYhjR5uDQAYNVbuw==}
engines: {node: '>=18'}
hasBin: true
@@ -1444,8 +1360,8 @@ packages:
eslint-import-resolver-node@0.3.9:
resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
- eslint-import-resolver-typescript@3.6.3:
- resolution: {integrity: sha512-ud9aw4szY9cCT1EWWdGv1L1XR6hh2PaRWif0j2QjQ0pgTY/69iw+W0Z4qZv5wHahOl8isEr+k/JnyAqNQkLkIA==}
+ eslint-import-resolver-typescript@3.8.3:
+ resolution: {integrity: sha512-A0bu4Ks2QqDWNpeEgTQMPTngaMhuDu4yv6xpftBMAf+1ziXnpx+eSR1WRfoPTe2BAiAjHFZ7kSNx1fvr5g5pmQ==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
eslint: '*'
@@ -1457,8 +1373,8 @@ packages:
eslint-plugin-import-x:
optional: true
- eslint-module-utils@2.8.0:
- resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==}
+ eslint-module-utils@2.12.0:
+ resolution: {integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==}
engines: {node: '>=4'}
peerDependencies:
'@typescript-eslint/parser': '*'
@@ -1478,43 +1394,16 @@ packages:
eslint-import-resolver-webpack:
optional: true
- eslint-module-utils@2.8.2:
- resolution: {integrity: sha512-3XnC5fDyc8M4J2E8pt8pmSVRX2M+5yWMCfI/kDZwauQeFgzQOuhcRBFKjTeJagqgk4sFKxe1mvNVnaWwImx/Tg==}
- engines: {node: '>=4'}
- peerDependencies:
- '@typescript-eslint/parser': '*'
- eslint: '*'
- eslint-import-resolver-node: '*'
- eslint-import-resolver-typescript: '*'
- eslint-import-resolver-webpack: '*'
- peerDependenciesMeta:
- '@typescript-eslint/parser':
- optional: true
- eslint:
- optional: true
- eslint-import-resolver-node:
- optional: true
- eslint-import-resolver-typescript:
- optional: true
- eslint-import-resolver-webpack:
- optional: true
-
- eslint-plugin-codegen@0.28.0:
- resolution: {integrity: sha512-tM8Pj0Ej2QYqN7hpREA8IJ2P36fpvW5TIu8Vx/Y4JlyLy+pAO8PsVYRIdw0+qQ900eCQSyDoSa93O0+NfNjbnQ==}
+ eslint-plugin-codegen@0.29.0:
+ resolution: {integrity: sha512-C5NqptnJgf5ngxAaPg125OodjYeDD1o79Q2QbRV4Ga8WGX70KyC9KgB5walRy037fl9/JFC8PKVB9lwLOBbVGw==}
engines: {node: '>=18.0.0'}
- eslint-plugin-deprecation@3.0.0:
- resolution: {integrity: sha512-JuVLdNg/uf0Adjg2tpTyYoYaMbwQNn/c78P1HcccokvhtRphgnRjZDKmhlxbxYptppex03zO76f97DD/yQHv7A==}
- peerDependencies:
- eslint: ^8.0.0
- typescript: ^4.2.4 || ^5.0.0
-
- eslint-plugin-import@2.29.1:
- resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==}
+ eslint-plugin-import@2.31.0:
+ resolution: {integrity: sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==}
engines: {node: '>=4'}
peerDependencies:
'@typescript-eslint/parser': '*'
- eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
+ eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9
peerDependenciesMeta:
'@typescript-eslint/parser':
optional: true
@@ -1536,30 +1425,39 @@ packages:
peerDependencies:
eslint: 5 - 9
- eslint-scope@7.2.2:
- resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ eslint-scope@8.2.0:
+ resolution: {integrity: sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
eslint-visitor-keys@3.4.3:
resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
- eslint@8.56.0:
- resolution: {integrity: sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ eslint-visitor-keys@4.2.0:
+ resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ eslint@9.21.0:
+ resolution: {integrity: sha512-KjeihdFqTPhOMXTt7StsDxriV4n66ueuF/jfPNC3j/lduHwr/ijDwJMsF+wyMJethgiKi5wniIE243vi07d3pg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
hasBin: true
+ peerDependencies:
+ jiti: '*'
+ peerDependenciesMeta:
+ jiti:
+ optional: true
- espree@9.6.1:
- resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ espree@10.3.0:
+ resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
esprima@4.0.1:
resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==}
engines: {node: '>=4'}
hasBin: true
- esquery@1.5.0:
- resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
+ esquery@1.6.0:
+ resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
engines: {node: '>=0.10'}
esrecurse@4.3.0:
@@ -1577,18 +1475,14 @@ packages:
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
engines: {node: '>=0.10.0'}
- execa@5.1.1:
- resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==}
- engines: {node: '>=10'}
-
- execa@8.0.1:
- resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==}
- engines: {node: '>=16.17'}
-
expand-range@1.8.2:
resolution: {integrity: sha512-AFASGfIlnIbkKPQwX1yHaDjFvh/1gyKJODme52V6IORh69uEYgZp0o9C+qsIGNVEiuuhQU0CSSl++Rlegg1qvA==}
engines: {node: '>=0.10.0'}
+ expect-type@1.1.0:
+ resolution: {integrity: sha512-bFi65yM+xZgk+u/KRIpekdSYkTB5W1pEf0Lt8Q8Msh7b+eQ7LXVtIB1Bkm4fvclDEL1b2CZkMhv2mOeF8tMdkA==}
+ engines: {node: '>=12.0.0'}
+
expect@29.7.0:
resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
@@ -1604,8 +1498,8 @@ packages:
resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==}
engines: {node: '>=4'}
- fast-check@3.22.0:
- resolution: {integrity: sha512-8HKz3qXqnHYp/VCNn2qfjHdAdcI8zcSqOyX64GOMukp7SL2bfzfeDKjSd+UyECtejccaZv3LcvZTm9YDD22iCQ==}
+ fast-check@3.23.2:
+ resolution: {integrity: sha512-h5+1OzzfCC3Ef7VbtKdcv7zsstUQwUDlYpUTvjeUsJAssPgLn7QzbboPtL5ro04Mq0rPOsMzl7q5hIbRs2wD1A==}
engines: {node: '>=8.0.0'}
fast-deep-equal@3.1.3:
@@ -1618,6 +1512,10 @@ packages:
resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
engines: {node: '>=8.6.0'}
+ fast-glob@3.3.3:
+ resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
+ engines: {node: '>=8.6.0'}
+
fast-json-stable-stringify@2.1.0:
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
@@ -1627,9 +1525,17 @@ packages:
fastq@1.15.0:
resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==}
- file-entry-cache@6.0.1:
- resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
- engines: {node: ^10.12.0 || >=12.0.0}
+ fdir@6.4.3:
+ resolution: {integrity: sha512-PMXmW2y1hDDfTSRc9gaXIuCCRpuoz3Kaz8cUelp3smouvfT632ozg2vrT6lJsHKKOF59YLbOGfAWGUcKEfRMQw==}
+ peerDependencies:
+ picomatch: ^3 || ^4
+ peerDependenciesMeta:
+ picomatch:
+ optional: true
+
+ file-entry-cache@8.0.0:
+ resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
+ engines: {node: '>=16.0.0'}
fill-range@2.2.4:
resolution: {integrity: sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==}
@@ -1653,15 +1559,16 @@ packages:
find-yarn-workspace-root2@1.2.16:
resolution: {integrity: sha512-hr6hb1w8ePMpPVUK39S4RlwJzi+xPLuVuG8XlwXU3KD5Yn3qgBWVfy3AzNlDhWvE1EORCE65/Qm26rFQt3VLVA==}
- flat-cache@3.2.0:
- resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
- engines: {node: ^10.12.0 || >=12.0.0}
+ flat-cache@4.0.1:
+ resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
+ engines: {node: '>=16'}
- flatted@3.2.9:
- resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==}
+ flatted@3.3.3:
+ resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
- for-each@0.3.3:
- resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==}
+ for-each@0.3.5:
+ resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==}
+ engines: {node: '>= 0.4'}
for-in@1.0.2:
resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==}
@@ -1671,8 +1578,8 @@ packages:
resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==}
engines: {node: '>=14'}
- foreground-child@3.3.0:
- resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==}
+ foreground-child@3.3.1:
+ resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==}
engines: {node: '>=14'}
fp-ts@2.16.9:
@@ -1686,9 +1593,6 @@ packages:
resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==}
engines: {node: '>=6 <7 || >=8'}
- fs.realpath@1.0.0:
- resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
-
fsevents@2.3.3:
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
@@ -1697,8 +1601,8 @@ packages:
function-bind@1.1.2:
resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
- function.prototype.name@1.1.6:
- resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==}
+ function.prototype.name@1.1.8:
+ resolution: {integrity: sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==}
engines: {node: '>= 0.4'}
functions-have-names@1.2.3:
@@ -1708,26 +1612,20 @@ packages:
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
engines: {node: '>=6.9.0'}
- get-func-name@2.0.2:
- resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==}
-
- get-intrinsic@1.2.2:
- resolution: {integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==}
-
- get-stream@6.0.1:
- resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
- engines: {node: '>=10'}
+ get-intrinsic@1.3.0:
+ resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
+ engines: {node: '>= 0.4'}
- get-stream@8.0.1:
- resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==}
- engines: {node: '>=16'}
+ get-proto@1.0.1:
+ resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
+ engines: {node: '>= 0.4'}
- get-symbol-description@1.0.0:
- resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==}
+ get-symbol-description@1.1.0:
+ resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==}
engines: {node: '>= 0.4'}
- get-tsconfig@4.8.0:
- resolution: {integrity: sha512-Pgba6TExTZ0FJAn1qkJAjIeKoDJ3CsI2ChuLohJnZl/tTU8MVrq3b+2t5UOPfRa4RMsorClBjJALkJUMjG1PAw==}
+ get-tsconfig@4.10.0:
+ resolution: {integrity: sha512-kGzZ3LWWQcGIAmg6iWvXn0ei6WDtV26wzHRMwDSzmAbcXrTEXxHy6IehI6/4eT6VRKyMP1eF1VqwrVUmE/LR7A==}
glob-parent@5.1.2:
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
@@ -1737,42 +1635,34 @@ packages:
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
engines: {node: '>=10.13.0'}
- glob@10.3.12:
- resolution: {integrity: sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==}
- engines: {node: '>=16 || 14 >=14.17'}
- hasBin: true
-
glob@10.4.5:
resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
hasBin: true
- glob@11.0.0:
- resolution: {integrity: sha512-9UiX/Bl6J2yaBbxKoEBRm4Cipxgok8kQYcOPEhScPwebu2I0HoQOuYdIO6S3hLuWoZgpDpwQZMzTFxgpkyT76g==}
+ glob@11.0.1:
+ resolution: {integrity: sha512-zrQDm8XPnYEKawJScsnM0QzobJxlT/kHOOlRTio8IH/GrmxRE5fjllkzdaHclIuNjUQTJYH2xHNIGfdpJkDJUw==}
engines: {node: 20 || >=22}
hasBin: true
- glob@7.2.3:
- resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
- deprecated: Glob versions prior to v9 are no longer supported
-
globals@11.12.0:
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
engines: {node: '>=4'}
- globals@13.24.0:
- resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
- engines: {node: '>=8'}
+ globals@14.0.0:
+ resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
+ engines: {node: '>=18'}
- globalthis@1.0.3:
- resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==}
+ globalthis@1.0.4:
+ resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==}
engines: {node: '>= 0.4'}
globby@11.1.0:
resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
engines: {node: '>=10'}
- gopd@1.0.1:
- resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
+ gopd@1.2.0:
+ resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
+ engines: {node: '>= 0.4'}
graceful-fs@4.2.11:
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
@@ -1788,8 +1678,9 @@ packages:
resolution: {integrity: sha512-lh9HLdb53sC7XIZOYzTXM4lFuXElv3EVkSDhsd7DoJBj7hm+Ni7D3qYbb+Rr8DuM8nRanBvkVO9d7askreXGnQ==}
deprecated: Removed event-stream from gulp-header
- has-bigints@1.0.2:
- resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
+ has-bigints@1.1.0:
+ resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==}
+ engines: {node: '>= 0.4'}
has-flag@3.0.0:
resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
@@ -1799,23 +1690,23 @@ packages:
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
engines: {node: '>=8'}
- has-property-descriptors@1.0.1:
- resolution: {integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==}
+ has-property-descriptors@1.0.2:
+ resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
- has-proto@1.0.1:
- resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==}
+ has-proto@1.2.0:
+ resolution: {integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==}
engines: {node: '>= 0.4'}
- has-symbols@1.0.3:
- resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
+ has-symbols@1.1.0:
+ resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
engines: {node: '>= 0.4'}
- has-tostringtag@1.0.0:
- resolution: {integrity: sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==}
+ has-tostringtag@1.0.2:
+ resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==}
engines: {node: '>= 0.4'}
- hasown@2.0.0:
- resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==}
+ hasown@2.0.2:
+ resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
engines: {node: '>= 0.4'}
hosted-git-info@2.8.9:
@@ -1827,37 +1718,22 @@ packages:
human-id@1.0.2:
resolution: {integrity: sha512-UNopramDEhHJD+VR+ehk8rOslwSfByxPIZyJRfV739NDhN5LF1fa1MqnzKm2lGTQRjNrjK19Q5fhkgIfjlVUKw==}
- human-signals@2.1.0:
- resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
- engines: {node: '>=10.17.0'}
-
- human-signals@5.0.0:
- resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==}
- engines: {node: '>=16.17.0'}
-
iconv-lite@0.4.24:
resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
engines: {node: '>=0.10.0'}
- ignore@5.3.0:
- resolution: {integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==}
- engines: {node: '>= 4'}
-
ignore@5.3.2:
resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
engines: {node: '>= 4'}
- import-fresh@3.3.0:
- resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
+ import-fresh@3.3.1:
+ resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
engines: {node: '>=6'}
imurmurhash@0.1.4:
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
engines: {node: '>=0.8.19'}
- inflight@1.0.6:
- resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
-
inherits@2.0.4:
resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==}
@@ -1865,15 +1741,15 @@ packages:
resolution: {integrity: sha512-X7rqawQBvfdjS10YU1y1YVreA3SsLrW9dX2CewP2EbBJM4ypVNLDkO5y04gejPwKIY9lR+7r9gn3rFPt/kmWFg==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- internal-slot@1.0.6:
- resolution: {integrity: sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==}
+ internal-slot@1.1.0:
+ resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==}
engines: {node: '>= 0.4'}
io-ts-extra@0.11.6:
resolution: {integrity: sha512-rTsvx3W5B2nx7p/eGf+OsEaBTmjSjLzxBDEiweCjwqIL9ZN6CZjG7hFK8zyGJyM0I2uCsRU4uYUhaTgg2SKHkQ==}
- io-ts@2.2.21:
- resolution: {integrity: sha512-zz2Z69v9ZIC3mMLYWIeoUcwWD6f+O7yP92FMVVaXEOSZH1jnVBmET/urd/uoarD1WGBY4rCj8TAyMPzsGNzMFQ==}
+ io-ts@2.2.22:
+ resolution: {integrity: sha512-FHCCztTkHoV9mdBsHpocLpdTAfh956ZQcIkWQxxS0U5HT53vtrcuYdQneEJKH6xILaLNzXVl2Cvwtoy8XNN0AA==}
peerDependencies:
fp-ts: ^2.5.0
@@ -1883,38 +1759,45 @@ packages:
is-alphanumerical@1.0.4:
resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==}
- is-array-buffer@3.0.2:
- resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==}
+ is-array-buffer@3.0.5:
+ resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==}
+ engines: {node: '>= 0.4'}
is-arrayish@0.2.1:
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
- is-bigint@1.0.4:
- resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
+ is-async-function@2.1.1:
+ resolution: {integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==}
+ engines: {node: '>= 0.4'}
- is-binary-path@2.1.0:
- resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
- engines: {node: '>=8'}
+ is-bigint@1.1.0:
+ resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==}
+ engines: {node: '>= 0.4'}
- is-boolean-object@1.1.2:
- resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
+ is-boolean-object@1.2.2:
+ resolution: {integrity: sha512-wa56o2/ElJMYqjCjGkXri7it5FbebW5usLw/nPmCMs5DeZ7eziSYZhSmPRn0txqeW4LnAmQQU7FgqLpsEFKM4A==}
engines: {node: '>= 0.4'}
is-buffer@1.1.6:
resolution: {integrity: sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==}
- is-bun-module@1.1.0:
- resolution: {integrity: sha512-4mTAVPlrXpaN3jtF0lsnPCMGnq4+qZjVIKq0HCpfcqf8OC1SM5oATCIAPM5V5FN05qp2NNnFndphmdZS9CV3hA==}
+ is-bun-module@1.3.0:
+ resolution: {integrity: sha512-DgXeu5UWI0IsMQundYb5UAOzm6G2eVnarJ0byP6Tm55iZNKceD59LNPA2L4VvsScTtHcw0yEkVwSf7PC+QoLSA==}
is-callable@1.2.7:
resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
engines: {node: '>= 0.4'}
- is-core-module@2.13.1:
- resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==}
+ is-core-module@2.16.1:
+ resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
+ engines: {node: '>= 0.4'}
+
+ is-data-view@1.0.2:
+ resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==}
+ engines: {node: '>= 0.4'}
- is-date-object@1.0.5:
- resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
+ is-date-object@1.1.0:
+ resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==}
engines: {node: '>= 0.4'}
is-decimal@1.0.4:
@@ -1932,10 +1815,18 @@ packages:
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
engines: {node: '>=0.10.0'}
+ is-finalizationregistry@1.1.1:
+ resolution: {integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==}
+ engines: {node: '>= 0.4'}
+
is-fullwidth-code-point@3.0.0:
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
engines: {node: '>=8'}
+ is-generator-function@1.1.0:
+ resolution: {integrity: sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==}
+ engines: {node: '>= 0.4'}
+
is-glob@4.0.3:
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
engines: {node: '>=0.10.0'}
@@ -1943,12 +1834,12 @@ packages:
is-hexadecimal@1.0.4:
resolution: {integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==}
- is-negative-zero@2.0.2:
- resolution: {integrity: sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==}
+ is-map@2.0.3:
+ resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==}
engines: {node: '>= 0.4'}
- is-number-object@1.0.7:
- resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
+ is-number-object@1.1.1:
+ resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==}
engines: {node: '>= 0.4'}
is-number@2.1.0:
@@ -1963,47 +1854,49 @@ packages:
resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==}
engines: {node: '>=0.12.0'}
- is-path-inside@3.0.3:
- resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
- engines: {node: '>=8'}
-
is-plain-object@2.0.4:
resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==}
engines: {node: '>=0.10.0'}
- is-regex@1.1.4:
- resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
+ is-regex@1.2.1:
+ resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==}
engines: {node: '>= 0.4'}
- is-shared-array-buffer@1.0.2:
- resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==}
-
- is-stream@2.0.1:
- resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
- engines: {node: '>=8'}
+ is-set@2.0.3:
+ resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==}
+ engines: {node: '>= 0.4'}
- is-stream@3.0.0:
- resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ is-shared-array-buffer@1.0.4:
+ resolution: {integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==}
+ engines: {node: '>= 0.4'}
- is-string@1.0.7:
- resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
+ is-string@1.1.1:
+ resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==}
engines: {node: '>= 0.4'}
is-subdir@1.2.0:
resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==}
engines: {node: '>=4'}
- is-symbol@1.0.4:
- resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
+ is-symbol@1.1.1:
+ resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==}
engines: {node: '>= 0.4'}
- is-typed-array@1.1.12:
- resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==}
+ is-typed-array@1.1.15:
+ resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==}
engines: {node: '>= 0.4'}
- is-weakref@1.0.2:
- resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
+ is-weakmap@2.0.2:
+ resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
+ engines: {node: '>= 0.4'}
+
+ is-weakref@1.1.1:
+ resolution: {integrity: sha512-6i9mGWSlqzNMEqpCp93KwRS1uUOodk2OJ6b+sq7ZPDSy2WuI5NFIxp/254TytR8ftefexkWn5xNiHUNpPOfSew==}
+ engines: {node: '>= 0.4'}
+
+ is-weakset@2.0.4:
+ resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==}
+ engines: {node: '>= 0.4'}
is-windows@1.0.2:
resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==}
@@ -2042,15 +1935,11 @@ packages:
resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==}
engines: {node: '>=8'}
- jackspeak@2.3.6:
- resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==}
- engines: {node: '>=14'}
-
jackspeak@3.4.3:
resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
- jackspeak@4.0.1:
- resolution: {integrity: sha512-cub8rahkh0Q/bw1+GxP7aeSe29hHHn2V4m29nnDlvCdlgU+3UGxkZp7Z53jLUdpX3jdTO0nJZUDl3xvbWc2Xog==}
+ jackspeak@4.1.0:
+ resolution: {integrity: sha512-9DDdhb5j6cpeitCbvLO7n7J4IxnbM6hoF6O1g4HQ5TfhvvKN8ywDM7668ZhMHRqVmxqhps/F6syWK2KcPxYlkw==}
engines: {node: 20 || >=22}
jest-diff@29.7.0:
@@ -2093,6 +1982,11 @@ packages:
engines: {node: '>=4'}
hasBin: true
+ jsesc@3.1.0:
+ resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
+ engines: {node: '>=6'}
+ hasBin: true
+
json-buffer@3.0.1:
resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
@@ -2140,8 +2034,8 @@ packages:
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
engines: {node: '>= 0.8.0'}
- lilconfig@3.1.2:
- resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==}
+ lilconfig@3.1.3:
+ resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==}
engines: {node: '>=14'}
lines-and-columns@1.2.4:
@@ -2188,18 +2082,14 @@ packages:
lodash@4.17.21:
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
- loupe@3.1.1:
- resolution: {integrity: sha512-edNu/8D5MKVfGVFRhFf8aAxiTM6Wumfz5XsaatSxlD3w4R1d/WEKUTydCdPGbl9K7QG/Ca3GnDV2sIKIpXRQcw==}
-
- lru-cache@10.2.0:
- resolution: {integrity: sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==}
- engines: {node: 14 || >=16.14}
+ loupe@3.1.3:
+ resolution: {integrity: sha512-kkIp7XSkP78ZxJEsSxW3712C6teJVoeHHwgo9zJ380de7IYyJ2ISlxojcH2pC5OFLewESmnRi/+XCDIEEVyoug==}
lru-cache@10.4.3:
resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
- lru-cache@11.0.0:
- resolution: {integrity: sha512-Qv32eSV1RSCfhY3fpPE2GNZ8jgM9X7rdAfemLWqTUxwiyIC4jJ6Sy0fZ8H+oLWevO6i4/bizg7c8d8i6bxrzbA==}
+ lru-cache@11.0.2:
+ resolution: {integrity: sha512-123qHRfJBmo2jXDbo/a5YOQrJoHF/GNQTLzQ5+IdK5pWpceK17yRc6ozlWd25FxvGKQbIUs91fDFkXmDHTKcyA==}
engines: {node: 20 || >=22}
lru-cache@4.1.5:
@@ -2208,8 +2098,8 @@ packages:
lru-cache@5.1.1:
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
- magic-string@0.30.11:
- resolution: {integrity: sha512-+Wri9p0QHMy+545hKww7YAu5NyzF8iomPL/RQazugQ9+Ez4Ic3mERMd8ZTX5rfK944j+560ZJi8iAwgak1Ac7A==}
+ magic-string@0.30.17:
+ resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==}
magicast@0.3.5:
resolution: {integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==}
@@ -2222,6 +2112,10 @@ packages:
resolution: {integrity: sha512-TurLymbyLyo+kAUUAV9ggR9EPcDjP/ctlv9QAFiqUH7c+t6FlsbivPo9OKTU8xdOx9oNd2drW/Fi5RRElQbUqA==}
engines: {node: '>=0.10.0'}
+ math-intrinsics@1.1.0:
+ resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
+ engines: {node: '>= 0.4'}
+
math-random@1.0.4:
resolution: {integrity: sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A==}
@@ -2231,9 +2125,6 @@ packages:
mdast-util-to-string@2.0.0:
resolution: {integrity: sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==}
- merge-stream@2.0.0:
- resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
-
merge2@1.4.1:
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
engines: {node: '>= 8'}
@@ -2250,14 +2141,6 @@ packages:
engines: {node: '>=10.0.0'}
hasBin: true
- mimic-fn@2.1.0:
- resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==}
- engines: {node: '>=6'}
-
- mimic-fn@4.0.0:
- resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==}
- engines: {node: '>=12'}
-
minimatch@10.0.1:
resolution: {integrity: sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==}
engines: {node: 20 || >=22}
@@ -2276,10 +2159,6 @@ packages:
minimist@1.2.8:
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
- minipass@7.0.4:
- resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==}
- engines: {node: '>=16 || 14 >=14.17'}
-
minipass@7.1.2:
resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
engines: {node: '>=16 || 14 >=14.17'}
@@ -2288,18 +2167,10 @@ packages:
resolution: {integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==}
engines: {node: '>=0.10.0'}
- mkdirp@3.0.1:
- resolution: {integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==}
- engines: {node: '>=10'}
- hasBin: true
-
mri@1.2.0:
resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
engines: {node: '>=4'}
- ms@2.1.2:
- resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
-
ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
@@ -2309,8 +2180,8 @@ packages:
mz@2.7.0:
resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
- nanoid@3.3.7:
- resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
+ nanoid@3.3.8:
+ resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
@@ -2332,67 +2203,46 @@ packages:
encoding:
optional: true
- node-releases@2.0.18:
- resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==}
+ node-releases@2.0.19:
+ resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
normalize-package-data@2.5.0:
resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
- normalize-path@3.0.0:
- resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
- engines: {node: '>=0.10.0'}
-
- npm-run-path@4.0.1:
- resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
- engines: {node: '>=8'}
-
- npm-run-path@5.3.0:
- resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
object-assign@4.1.1:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
engines: {node: '>=0.10.0'}
- object-inspect@1.13.1:
- resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==}
+ object-inspect@1.13.4:
+ resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==}
+ engines: {node: '>= 0.4'}
object-keys@1.1.1:
resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
engines: {node: '>= 0.4'}
- object.assign@4.1.5:
- resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==}
+ object.assign@4.1.7:
+ resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==}
engines: {node: '>= 0.4'}
- object.fromentries@2.0.7:
- resolution: {integrity: sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==}
+ object.fromentries@2.0.8:
+ resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==}
engines: {node: '>= 0.4'}
- object.groupby@1.0.1:
- resolution: {integrity: sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==}
+ object.groupby@1.0.3:
+ resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==}
+ engines: {node: '>= 0.4'}
object.pick@1.3.0:
resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==}
engines: {node: '>=0.10.0'}
- object.values@1.1.7:
- resolution: {integrity: sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==}
+ object.values@1.2.1:
+ resolution: {integrity: sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==}
engines: {node: '>= 0.4'}
- once@1.4.0:
- resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==}
-
- onetime@5.1.2:
- resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
- engines: {node: '>=6'}
-
- onetime@6.0.0:
- resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
- engines: {node: '>=12'}
-
- optionator@0.9.3:
- resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==}
+ optionator@0.9.4:
+ resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
engines: {node: '>= 0.8.0'}
os-tmpdir@1.0.2:
@@ -2402,6 +2252,10 @@ packages:
outdent@0.5.0:
resolution: {integrity: sha512-/jHxFIzoMXdqPzTaCpFzAAWhpkSjZPF4Vsn6jAfNpmbH/ymsmd7Qc6VE9BGn0L6YMj6uwpQLxCECpus4ukKS9Q==}
+ own-keys@1.0.1:
+ resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==}
+ engines: {node: '>= 0.4'}
+
p-filter@2.1.0:
resolution: {integrity: sha512-ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw==}
engines: {node: '>=8'}
@@ -2433,6 +2287,9 @@ packages:
package-json-from-dist@1.0.0:
resolution: {integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==}
+ package-json-from-dist@1.0.1:
+ resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
+
parent-module@1.0.1:
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
engines: {node: '>=6'}
@@ -2451,25 +2308,13 @@ packages:
resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==}
engines: {node: '>=8'}
- path-is-absolute@1.0.1:
- resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
- engines: {node: '>=0.10.0'}
-
path-key@3.1.1:
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
engines: {node: '>=8'}
- path-key@4.0.0:
- resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==}
- engines: {node: '>=12'}
-
path-parse@1.0.7:
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
- path-scurry@1.10.2:
- resolution: {integrity: sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==}
- engines: {node: '>=16 || 14 >=14.17'}
-
path-scurry@1.11.1:
resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
engines: {node: '>=16 || 14 >=14.18'}
@@ -2482,20 +2327,24 @@ packages:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
engines: {node: '>=8'}
- pathe@1.1.2:
- resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==}
+ pathe@2.0.3:
+ resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==}
pathval@2.0.0:
resolution: {integrity: sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==}
engines: {node: '>= 14.16'}
- picocolors@1.0.1:
- resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==}
+ picocolors@1.1.1:
+ resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
picomatch@2.3.1:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
engines: {node: '>=8.6'}
+ picomatch@4.0.2:
+ resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
+ engines: {node: '>=12'}
+
pify@4.0.1:
resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
engines: {node: '>=6'}
@@ -2508,6 +2357,10 @@ packages:
resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==}
engines: {node: '>=8'}
+ possible-typed-array-names@1.1.0:
+ resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==}
+ engines: {node: '>= 0.4'}
+
postcss-load-config@6.0.1:
resolution: {integrity: sha512-oPtTM4oerL+UXmx+93ytZVN82RrlY/wPUV8IeDxFrzIjXOLF1pN+EmKPLbubvKHT2HC20xXsCAH2Z+CKV6Oz/g==}
engines: {node: '>= 18'}
@@ -2526,8 +2379,8 @@ packages:
yaml:
optional: true
- postcss@8.4.44:
- resolution: {integrity: sha512-Aweb9unOEpQ3ezu4Q00DPvvM2ZTUitJdNKeP/+uQgr1IBIqu574IaZoURId7BKtWMREwzKa9OgzPzezWGPWFQw==}
+ postcss@8.5.3:
+ resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==}
engines: {node: ^10 || ^12 || >=14}
preferred-pm@3.1.4:
@@ -2547,8 +2400,8 @@ packages:
engines: {node: '>=10.13.0'}
hasBin: true
- prettier@3.2.5:
- resolution: {integrity: sha512-3/GWa9aOC0YeD7LUfvOG2NiDyhOWRvt1k+rcKhOuYnMY24iiCphgneUfJDyFXd6rZCAnuLBv6UeAULtrhT/F4A==}
+ prettier@3.5.3:
+ resolution: {integrity: sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==}
engines: {node: '>=14'}
hasBin: true
@@ -2594,15 +2447,19 @@ packages:
readable-stream@2.3.8:
resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
- readdirp@3.6.0:
- resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
- engines: {node: '>=8.10.0'}
+ readdirp@4.1.2:
+ resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
+ engines: {node: '>= 14.18.0'}
+
+ reflect.getprototypeof@1.0.10:
+ resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==}
+ engines: {node: '>= 0.4'}
regenerator-runtime@0.14.1:
resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
- regexp.prototype.flags@1.5.1:
- resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==}
+ regexp.prototype.flags@1.5.4:
+ resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==}
engines: {node: '>= 0.4'}
remarkable@1.7.4:
@@ -2629,41 +2486,42 @@ packages:
resolve-pkg-maps@1.0.0:
resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
- resolve@1.22.8:
- resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
+ resolve@1.22.10:
+ resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==}
+ engines: {node: '>= 0.4'}
hasBin: true
reusify@1.0.4:
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
- rimraf@3.0.2:
- resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==}
- deprecated: Rimraf versions prior to v4 are no longer supported
- hasBin: true
-
rimraf@6.0.1:
resolution: {integrity: sha512-9dkvaxAsk/xNXSJzMgFqqMCuFgt2+KsOFek3TMLfo8NCPfWpBmqwyNn5Y+NX56QUYfCtsyhF3ayiboEoUmJk/A==}
engines: {node: 20 || >=22}
hasBin: true
- rollup@4.21.2:
- resolution: {integrity: sha512-e3TapAgYf9xjdLvKQCkQTnbTKd4a6jwlpQSJJFokHGaX2IVjoEqkIIhiQfqsi0cdwlOD+tQGuOd5AJkc5RngBw==}
+ rollup@4.34.8:
+ resolution: {integrity: sha512-489gTVMzAYdiZHFVA/ig/iYFllCcWFHMvUHI1rpFmkoUtRlQxqh6/yiNqnYibjMZ2b/+FUQwldG+aLsEt6bglQ==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
run-parallel@1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
- safe-array-concat@1.0.1:
- resolution: {integrity: sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==}
+ safe-array-concat@1.1.3:
+ resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==}
engines: {node: '>=0.4'}
safe-buffer@5.1.2:
resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==}
- safe-regex-test@1.0.0:
- resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==}
+ safe-push-apply@1.0.0:
+ resolution: {integrity: sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==}
+ engines: {node: '>= 0.4'}
+
+ safe-regex-test@1.1.0:
+ resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==}
+ engines: {node: '>= 0.4'}
safer-buffer@2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
@@ -2681,18 +2539,27 @@ packages:
engines: {node: '>=10'}
hasBin: true
- set-function-length@1.1.1:
- resolution: {integrity: sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==}
+ semver@7.7.1:
+ resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==}
+ engines: {node: '>=10'}
+ hasBin: true
+
+ set-function-length@1.2.2:
+ resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==}
engines: {node: '>= 0.4'}
- set-function-name@2.0.1:
- resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==}
+ set-function-name@2.0.2:
+ resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
engines: {node: '>= 0.4'}
set-getter@0.1.1:
resolution: {integrity: sha512-9sVWOy+gthr+0G9DzqqLaYNA7+5OKkSmcqjL9cBpDEaZrr3ShQlyX2cZ/O/ozE41oxn/Tt0LGEM/w4Rub3A3gw==}
engines: {node: '>=0.10.0'}
+ set-proto@1.0.0:
+ resolution: {integrity: sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==}
+ engines: {node: '>= 0.4'}
+
shebang-command@1.2.0:
resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}
engines: {node: '>=0.10.0'}
@@ -2709,8 +2576,21 @@ packages:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
- side-channel@1.0.4:
- resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
+ side-channel-list@1.0.0:
+ resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==}
+ engines: {node: '>= 0.4'}
+
+ side-channel-map@1.0.1:
+ resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==}
+ engines: {node: '>= 0.4'}
+
+ side-channel-weakmap@1.0.2:
+ resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==}
+ engines: {node: '>= 0.4'}
+
+ side-channel@1.1.0:
+ resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==}
+ engines: {node: '>= 0.4'}
siginfo@2.0.0:
resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==}
@@ -2726,8 +2606,8 @@ packages:
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
engines: {node: '>=8'}
- source-map-js@1.2.0:
- resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
+ source-map-js@1.2.1:
+ resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
engines: {node: '>=0.10.0'}
source-map@0.5.7:
@@ -2754,12 +2634,15 @@ packages:
spdx-expression-parse@3.0.1:
resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
- spdx-license-ids@3.0.20:
- resolution: {integrity: sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==}
+ spdx-license-ids@3.0.21:
+ resolution: {integrity: sha512-Bvg/8F5XephndSK3JffaRqdT+gyhfqIPwDHpX80tJrF8QQRYMo8sNMeaZ2Dp5+jhwKnUmIOyFFQfHRkjJm5nXg==}
sprintf-js@1.0.3:
resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
+ stable-hash@0.0.4:
+ resolution: {integrity: sha512-LjdcbuBeLcdETCrPn9i8AYAZ1eCtu4ECAWtP7UleOiZ9LzVxRzzUZEoZ8zB24nhkQnDWyET0I+3sWokSDS3E7g==}
+
stack-utils@2.0.6:
resolution: {integrity: sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==}
engines: {node: '>=10'}
@@ -2767,8 +2650,8 @@ packages:
stackback@0.0.2:
resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==}
- std-env@3.7.0:
- resolution: {integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==}
+ std-env@3.8.0:
+ resolution: {integrity: sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w==}
string-width@4.2.3:
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
@@ -2778,15 +2661,17 @@ packages:
resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
engines: {node: '>=12'}
- string.prototype.trim@1.2.8:
- resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==}
+ string.prototype.trim@1.2.10:
+ resolution: {integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==}
engines: {node: '>= 0.4'}
- string.prototype.trimend@1.0.7:
- resolution: {integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==}
+ string.prototype.trimend@1.0.9:
+ resolution: {integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==}
+ engines: {node: '>= 0.4'}
- string.prototype.trimstart@1.0.7:
- resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==}
+ string.prototype.trimstart@1.0.8:
+ resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==}
+ engines: {node: '>= 0.4'}
string_decoder@1.1.1:
resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
@@ -2811,14 +2696,6 @@ packages:
resolution: {integrity: sha512-p9LsUieSjWNNAxVCXLeilaDlmuUOrDS5/dF9znM1nZc7EGX5+zEFC0bEevsNIaldjlks+2jns5Siz6F9iK6jwA==}
engines: {node: '>=0.10.0'}
- strip-final-newline@2.0.0:
- resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
- engines: {node: '>=6'}
-
- strip-final-newline@3.0.0:
- resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==}
- engines: {node: '>=12'}
-
strip-json-comments@3.1.1:
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
engines: {node: '>=8'}
@@ -2852,9 +2729,6 @@ packages:
resolution: {integrity: sha512-pFYqmTw68LXVjeWJMST4+borgQP2AyMNbg1BpZh9LbyhUeNkeaPF9gzfPGUAnSMV3qPYdWUwDIjjCLiSDOl7vg==}
engines: {node: '>=18'}
- text-table@0.2.0:
- resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
-
thenify-all@1.6.0:
resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
engines: {node: '>=0.8'}
@@ -2868,26 +2742,29 @@ packages:
tinybench@2.9.0:
resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==}
- tinypool@1.0.1:
- resolution: {integrity: sha512-URZYihUbRPcGv95En+sz6MfghfIc2OJ1sv/RmhWZLouPY0/8Vo80viwPvg3dlaS9fuq7fQMEfgRRK7BBZThBEA==}
+ tinyexec@0.3.2:
+ resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==}
+
+ tinyglobby@0.2.12:
+ resolution: {integrity: sha512-qkf4trmKSIiMTs/E63cxH+ojC2unam7rJ0WrauAzpT3ECNTxGRMlaXxVbfxMUC/w0LaYk6jQ4y/nGR9uBO3tww==}
+ engines: {node: '>=12.0.0'}
+
+ tinypool@1.0.2:
+ resolution: {integrity: sha512-al6n+QEANGFOMf/dmUMsuS5/r9B06uwlyNjZZql/zv8J7ybHCgoihBNORZCY2mzUuAnomQa2JdhyHKzZxPCrFA==}
engines: {node: ^18.0.0 || >=20.0.0}
- tinyrainbow@1.2.0:
- resolution: {integrity: sha512-weEDEq7Z5eTHPDh4xjX789+fHfF+P8boiFB+0vbWzpbnbsEr/GRaohi/uMKxg8RZMXnl1ItAi/IUHWMsjDV7kQ==}
+ tinyrainbow@2.0.0:
+ resolution: {integrity: sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==}
engines: {node: '>=14.0.0'}
- tinyspy@3.0.0:
- resolution: {integrity: sha512-q5nmENpTHgiPVd1cJDDc9cVoYN5x4vCvwT3FMilvKPKneCBZAxn2YWQjDF0UMcE9k0Cay1gBiDfTMU0g+mPMQA==}
+ tinyspy@3.0.2:
+ resolution: {integrity: sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==}
engines: {node: '>=14.0.0'}
tmp@0.0.33:
resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==}
engines: {node: '>=0.6.0'}
- to-fast-properties@2.0.0:
- resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
- engines: {node: '>=4'}
-
to-object-path@0.3.0:
resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==}
engines: {node: '>=0.10.0'}
@@ -2909,20 +2786,20 @@ packages:
resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
hasBin: true
- ts-api-utils@1.3.0:
- resolution: {integrity: sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==}
- engines: {node: '>=16'}
+ ts-api-utils@2.0.1:
+ resolution: {integrity: sha512-dnlgjFSVetynI8nzgJ+qF62efpglpWRk8isUEWZGWlJYySCTD6aKvbUDu+zbPeDakk3bg5H4XpitHukgfL1m9w==}
+ engines: {node: '>=18.12'}
peerDependencies:
- typescript: '>=4.2.0'
+ typescript: '>=4.8.4'
ts-interface-checker@0.1.13:
resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
- ts-morph@23.0.0:
- resolution: {integrity: sha512-FcvFx7a9E8TUe6T3ShihXJLiJOiqyafzFKUO4aqIHDUCIvADdGNShcbc2W5PMr3LerXRv7mafvFZ9lRENxJmug==}
+ ts-morph@25.0.1:
+ resolution: {integrity: sha512-QJEiTdnz1YjrB3JFhd626gX4rKHDLSjSVMvGGG4v7ONc3RBwa0Eei98G9AT9uNFDMtV54JyuXsFeC+OH0n6bXQ==}
- tsconfck@3.1.3:
- resolution: {integrity: sha512-ulNZP1SVpRDesxeMLON/LtWM8HIgAJEIVpVVhBM6gsmvQ8+Rh+ZG7FWGvHh7Ah3pRABwVJWklWCr/BTZSv0xnQ==}
+ tsconfck@3.1.5:
+ resolution: {integrity: sha512-CLDfGgUp7XPswWnezWwsCRxNmgQjhYq3VXHM0/XIRxhVrKw0M1if9agzryh1QS3nxjCROvV+xWxoJO1YctzzWg==}
engines: {node: ^18 || >=20}
hasBin: true
peerDependencies:
@@ -2934,11 +2811,8 @@ packages:
tsconfig-paths@3.15.0:
resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==}
- tslib@2.7.0:
- resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==}
-
- tsup@8.2.4:
- resolution: {integrity: sha512-akpCPePnBnC/CXgRrcy72ZSntgIEUa1jN0oJbbvpALWKNOz1B7aM+UVDWGRGIO/T/PZugAESWDJUAb5FD48o8Q==}
+ tsup@8.4.0:
+ resolution: {integrity: sha512-b+eZbPCjz10fRryaAA7C8xlIHnf8VnsaRqydheLIqwG/Mcpfk8Z5zp3HayX7GaTygkigHl5cBUs+IhcySiIexQ==}
engines: {node: '>=18'}
hasBin: true
peerDependencies:
@@ -2956,8 +2830,8 @@ packages:
typescript:
optional: true
- tsx@4.19.0:
- resolution: {integrity: sha512-bV30kM7bsLZKZIOCHeMNVMJ32/LuJzLVajkQI/qf92J2Qr08ueLQvW00PUZGiuLPP760UINwupgUj8qrSCPUKg==}
+ tsx@4.19.3:
+ resolution: {integrity: sha512-4H8vUNGNjQ4V2EOoGw005+c+dGuPSnhpPBPHBtsZdGZBk/iJb4kguGlPWaZTZ3q5nMtFOEsY0nRDlh9PJyd6SQ==}
engines: {node: '>=18.0.0'}
hasBin: true
@@ -2965,10 +2839,6 @@ packages:
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
engines: {node: '>= 0.8.0'}
- type-fest@0.20.2:
- resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
- engines: {node: '>=10'}
-
type-fest@0.6.0:
resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==}
engines: {node: '>=8'}
@@ -2977,38 +2847,43 @@ packages:
resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==}
engines: {node: '>=8'}
- typed-array-buffer@1.0.0:
- resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==}
+ typed-array-buffer@1.0.3:
+ resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==}
engines: {node: '>= 0.4'}
- typed-array-byte-length@1.0.0:
- resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==}
+ typed-array-byte-length@1.0.3:
+ resolution: {integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==}
engines: {node: '>= 0.4'}
- typed-array-byte-offset@1.0.0:
- resolution: {integrity: sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==}
+ typed-array-byte-offset@1.0.4:
+ resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==}
engines: {node: '>= 0.4'}
- typed-array-length@1.0.4:
- resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==}
+ typed-array-length@1.0.7:
+ resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==}
+ engines: {node: '>= 0.4'}
typedarray@0.0.6:
resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==}
- typescript@5.5.4:
- resolution: {integrity: sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==}
+ typescript@5.8.2:
+ resolution: {integrity: sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==}
engines: {node: '>=14.17'}
hasBin: true
- unbox-primitive@1.0.2:
- resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
+ unbox-primitive@1.1.0:
+ resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==}
+ engines: {node: '>= 0.4'}
undici-types@6.19.8:
resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==}
- undici@6.19.8:
- resolution: {integrity: sha512-U8uCCl2x9TK3WANvmBavymRzxbfFYG+tAu+fgx3zxQy3qdagQqBLwJVrdyO1TBfUXvfKveMKJZhpvUYoOjM+4g==}
- engines: {node: '>=18.17'}
+ undici-types@6.20.0:
+ resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==}
+
+ undici@7.3.0:
+ resolution: {integrity: sha512-Qy96NND4Dou5jKoSJ2gm8ax8AJM/Ey9o9mz7KN1bb9GP+G0l20Zw8afxTnY2f4b7hmhn/z8aC2kfArVQlAhFBw==}
+ engines: {node: '>=20.18.1'}
unist-util-stringify-position@2.0.3:
resolution: {integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==}
@@ -3017,8 +2892,8 @@ packages:
resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
engines: {node: '>= 4.0.0'}
- update-browserslist-db@1.1.0:
- resolution: {integrity: sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==}
+ update-browserslist-db@1.1.3:
+ resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
@@ -3032,27 +2907,32 @@ packages:
validate-npm-package-license@3.0.4:
resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
- vite-node@2.0.5:
- resolution: {integrity: sha512-LdsW4pxj0Ot69FAoXZ1yTnA9bjGohr2yNBU7QKRxpz8ITSkhuDl6h3zS/tvgz4qrNjeRnvrWeXQ8ZF7Um4W00Q==}
- engines: {node: ^18.0.0 || >=20.0.0}
+ vite-node@3.0.8:
+ resolution: {integrity: sha512-6PhR4H9VGlcwXZ+KWCdMqbtG649xCPZqfI9j2PsK1FcXgEzro5bGHcVKFCTqPLaNKZES8Evqv4LwvZARsq5qlg==}
+ engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
- vite@5.4.2:
- resolution: {integrity: sha512-dDrQTRHp5C1fTFzcSaMxjk6vdpKvT+2/mIdE07Gw2ykehT49O0z/VHS3zZ8iV/Gh8BJJKHWOe5RjaNrW5xf/GA==}
- engines: {node: ^18.0.0 || >=20.0.0}
+ vite@6.2.1:
+ resolution: {integrity: sha512-n2GnqDb6XPhlt9B8olZPrgMD/es/Nd1RdChF6CBD/fHW6pUyUTt2sQW2fPRX5GiD9XEa6+8A6A4f2vT6pSsE7Q==}
+ engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
peerDependencies:
- '@types/node': ^18.0.0 || >=20.0.0
+ '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
+ jiti: '>=1.21.0'
less: '*'
lightningcss: ^1.21.0
sass: '*'
sass-embedded: '*'
stylus: '*'
sugarss: '*'
- terser: ^5.4.0
+ terser: ^5.16.0
+ tsx: ^4.8.1
+ yaml: ^2.4.2
peerDependenciesMeta:
'@types/node':
optional: true
+ jiti:
+ optional: true
less:
optional: true
lightningcss:
@@ -3067,21 +2947,28 @@ packages:
optional: true
terser:
optional: true
+ tsx:
+ optional: true
+ yaml:
+ optional: true
- vitest@2.0.5:
- resolution: {integrity: sha512-8GUxONfauuIdeSl5f9GTgVEpg5BTOlplET4WEDaeY2QBiN8wSm68vxN/tb5z405OwppfoCavnwXafiaYBC/xOA==}
- engines: {node: ^18.0.0 || >=20.0.0}
+ vitest@3.0.8:
+ resolution: {integrity: sha512-dfqAsNqRGUc8hB9OVR2P0w8PZPEckti2+5rdZip0WIz9WW0MnImJ8XiR61QhqLa92EQzKP2uPkzenKOAHyEIbA==}
+ engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
peerDependencies:
'@edge-runtime/vm': '*'
- '@types/node': ^18.0.0 || >=20.0.0
- '@vitest/browser': 2.0.5
- '@vitest/ui': 2.0.5
+ '@types/debug': ^4.1.12
+ '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
+ '@vitest/browser': 3.0.8
+ '@vitest/ui': 3.0.8
happy-dom: '*'
jsdom: '*'
peerDependenciesMeta:
'@edge-runtime/vm':
optional: true
+ '@types/debug':
+ optional: true
'@types/node':
optional: true
'@vitest/browser':
@@ -3105,15 +2992,24 @@ packages:
whatwg-url@7.1.0:
resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==}
- which-boxed-primitive@1.0.2:
- resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
+ which-boxed-primitive@1.1.1:
+ resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==}
+ engines: {node: '>= 0.4'}
+
+ which-builtin-type@1.2.1:
+ resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==}
+ engines: {node: '>= 0.4'}
+
+ which-collection@1.0.2:
+ resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==}
+ engines: {node: '>= 0.4'}
which-pm@2.2.0:
resolution: {integrity: sha512-MOiaDbA5ZZgUjkeMWM5EkJp4loW5ZRoa5bc3/aeMox/PJelMhE6t7S/mLuiY43DBupyxH+S0U1bTui9kWUlmsw==}
engines: {node: '>=8.15'}
- which-typed-array@1.1.13:
- resolution: {integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==}
+ which-typed-array@1.1.18:
+ resolution: {integrity: sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==}
engines: {node: '>= 0.4'}
which@1.3.1:
@@ -3130,6 +3026,10 @@ packages:
engines: {node: '>=8'}
hasBin: true
+ word-wrap@1.2.5:
+ resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
+ engines: {node: '>=0.10.0'}
+
wrap-ansi@7.0.0:
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
engines: {node: '>=10'}
@@ -3138,11 +3038,8 @@ packages:
resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
engines: {node: '>=12'}
- wrappy@1.0.2:
- resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
-
- ws@8.18.0:
- resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==}
+ ws@8.18.1:
+ resolution: {integrity: sha512-RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w==}
engines: {node: '>=10.0.0'}
peerDependencies:
bufferutil: ^4.0.1
@@ -3163,8 +3060,8 @@ packages:
yallist@3.1.1:
resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
- yaml@2.5.0:
- resolution: {integrity: sha512-2wWLbGbYDiSqqIKoPjar3MPgB94ErzCtrNE1FdqGuaO0pi2JGjmE8aW8TDZwzU7vuxcGRdL/4gPQwQ7hD5AMSw==}
+ yaml@2.7.0:
+ resolution: {integrity: sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==}
engines: {node: '>= 14'}
hasBin: true
@@ -3176,34 +3073,33 @@ publishDirectory: dist
snapshots:
- '@aashutoshrathi/word-wrap@1.2.6': {}
-
'@ampproject/remapping@2.3.0':
dependencies:
- '@jridgewell/gen-mapping': 0.3.5
+ '@jridgewell/gen-mapping': 0.3.8
'@jridgewell/trace-mapping': 0.3.25
- '@babel/code-frame@7.24.7':
+ '@babel/code-frame@7.26.2':
dependencies:
- '@babel/highlight': 7.24.7
- picocolors: 1.0.1
+ '@babel/helper-validator-identifier': 7.25.9
+ js-tokens: 4.0.0
+ picocolors: 1.1.1
- '@babel/compat-data@7.25.4': {}
+ '@babel/compat-data@7.26.8': {}
- '@babel/core@7.25.2':
+ '@babel/core@7.26.9':
dependencies:
'@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.24.7
- '@babel/generator': 7.25.6
- '@babel/helper-compilation-targets': 7.25.2
- '@babel/helper-module-transforms': 7.25.2(@babel/core@7.25.2)
- '@babel/helpers': 7.25.6
- '@babel/parser': 7.25.6
- '@babel/template': 7.25.0
- '@babel/traverse': 7.25.6
- '@babel/types': 7.25.6
+ '@babel/code-frame': 7.26.2
+ '@babel/generator': 7.26.9
+ '@babel/helper-compilation-targets': 7.26.5
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.9)
+ '@babel/helpers': 7.26.9
+ '@babel/parser': 7.26.9
+ '@babel/template': 7.26.9
+ '@babel/traverse': 7.26.9
+ '@babel/types': 7.26.9
convert-source-map: 2.0.0
- debug: 4.3.6
+ debug: 4.4.0
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
@@ -3212,100 +3108,85 @@ snapshots:
'@babel/generator@7.12.17':
dependencies:
- '@babel/types': 7.25.6
+ '@babel/types': 7.26.9
jsesc: 2.5.2
source-map: 0.5.7
- '@babel/generator@7.25.6':
+ '@babel/generator@7.26.9':
dependencies:
- '@babel/types': 7.25.6
- '@jridgewell/gen-mapping': 0.3.5
+ '@babel/parser': 7.26.9
+ '@babel/types': 7.26.9
+ '@jridgewell/gen-mapping': 0.3.8
'@jridgewell/trace-mapping': 0.3.25
- jsesc: 2.5.2
+ jsesc: 3.1.0
- '@babel/helper-compilation-targets@7.25.2':
+ '@babel/helper-compilation-targets@7.26.5':
dependencies:
- '@babel/compat-data': 7.25.4
- '@babel/helper-validator-option': 7.24.8
- browserslist: 4.23.3
+ '@babel/compat-data': 7.26.8
+ '@babel/helper-validator-option': 7.25.9
+ browserslist: 4.24.4
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-module-imports@7.24.7':
+ '@babel/helper-module-imports@7.25.9':
dependencies:
- '@babel/traverse': 7.25.6
- '@babel/types': 7.25.6
+ '@babel/traverse': 7.26.9
+ '@babel/types': 7.26.9
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.25.2(@babel/core@7.25.2)':
+ '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.25.2
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-simple-access': 7.24.7
- '@babel/helper-validator-identifier': 7.24.7
- '@babel/traverse': 7.25.6
+ '@babel/core': 7.26.9
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
+ '@babel/traverse': 7.26.9
transitivePeerDependencies:
- supports-color
- '@babel/helper-simple-access@7.24.7':
- dependencies:
- '@babel/traverse': 7.25.6
- '@babel/types': 7.25.6
- transitivePeerDependencies:
- - supports-color
+ '@babel/helper-string-parser@7.25.9': {}
- '@babel/helper-string-parser@7.24.8': {}
+ '@babel/helper-validator-identifier@7.25.9': {}
- '@babel/helper-validator-identifier@7.24.7': {}
+ '@babel/helper-validator-option@7.25.9': {}
- '@babel/helper-validator-option@7.24.8': {}
-
- '@babel/helpers@7.25.6':
+ '@babel/helpers@7.26.9':
dependencies:
- '@babel/template': 7.25.0
- '@babel/types': 7.25.6
-
- '@babel/highlight@7.24.7':
- dependencies:
- '@babel/helper-validator-identifier': 7.24.7
- chalk: 2.4.2
- js-tokens: 4.0.0
- picocolors: 1.0.1
+ '@babel/template': 7.26.9
+ '@babel/types': 7.26.9
- '@babel/parser@7.25.6':
+ '@babel/parser@7.26.9':
dependencies:
- '@babel/types': 7.25.6
+ '@babel/types': 7.26.9
'@babel/runtime@7.25.6':
dependencies:
regenerator-runtime: 0.14.1
- '@babel/template@7.25.0':
+ '@babel/template@7.26.9':
dependencies:
- '@babel/code-frame': 7.24.7
- '@babel/parser': 7.25.6
- '@babel/types': 7.25.6
+ '@babel/code-frame': 7.26.2
+ '@babel/parser': 7.26.9
+ '@babel/types': 7.26.9
- '@babel/traverse@7.25.6':
+ '@babel/traverse@7.26.9':
dependencies:
- '@babel/code-frame': 7.24.7
- '@babel/generator': 7.25.6
- '@babel/parser': 7.25.6
- '@babel/template': 7.25.0
- '@babel/types': 7.25.6
- debug: 4.3.6
+ '@babel/code-frame': 7.26.2
+ '@babel/generator': 7.26.9
+ '@babel/parser': 7.26.9
+ '@babel/template': 7.26.9
+ '@babel/types': 7.26.9
+ debug: 4.4.0
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/types@7.25.6':
+ '@babel/types@7.26.9':
dependencies:
- '@babel/helper-string-parser': 7.24.8
- '@babel/helper-validator-identifier': 7.24.7
- to-fast-properties: 2.0.0
+ '@babel/helper-string-parser': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
- '@bcoe/v8-coverage@0.2.3': {}
+ '@bcoe/v8-coverage@1.0.2': {}
'@changesets/apply-release-plan@7.0.4':
dependencies:
@@ -3480,26 +3361,25 @@ snapshots:
'@dprint/formatter@0.4.1': {}
- '@dprint/typescript@0.91.7': {}
+ '@dprint/typescript@0.91.8': {}
- '@effect/cli@0.42.0(@effect/platform@0.63.0(@effect/schema@0.72.0(effect@3.7.0))(effect@3.7.0))(@effect/printer-ansi@0.35.0(@effect/typeclass@0.26.0(effect@3.7.0))(effect@3.7.0))(@effect/printer@0.35.0(@effect/typeclass@0.26.0(effect@3.7.0))(effect@3.7.0))(@effect/schema@0.72.0(effect@3.7.0))(effect@3.7.0)':
+ '@effect/cli@0.57.0(@effect/platform@0.78.0(effect@3.13.7))(@effect/printer-ansi@0.41.2(@effect/typeclass@0.32.2(effect@3.13.7))(effect@3.13.7))(@effect/printer@0.41.2(@effect/typeclass@0.32.2(effect@3.13.7))(effect@3.13.7))(effect@3.13.7)':
dependencies:
- '@effect/platform': 0.63.0(@effect/schema@0.72.0(effect@3.7.0))(effect@3.7.0)
- '@effect/printer': 0.35.0(@effect/typeclass@0.26.0(effect@3.7.0))(effect@3.7.0)
- '@effect/printer-ansi': 0.35.0(@effect/typeclass@0.26.0(effect@3.7.0))(effect@3.7.0)
- '@effect/schema': 0.72.0(effect@3.7.0)
- effect: 3.7.0
+ '@effect/platform': 0.78.0(effect@3.13.7)
+ '@effect/printer': 0.41.2(@effect/typeclass@0.32.2(effect@3.13.7))(effect@3.13.7)
+ '@effect/printer-ansi': 0.41.2(@effect/typeclass@0.32.2(effect@3.13.7))(effect@3.13.7)
+ effect: 3.13.7
ini: 4.1.3
toml: 3.0.0
- yaml: 2.5.0
+ yaml: 2.7.0
'@effect/eslint-plugin@0.2.0':
dependencies:
'@dprint/formatter': 0.4.1
- '@dprint/typescript': 0.91.7
+ '@dprint/typescript': 0.91.8
prettier-linter-helpers: 1.0.0
- '@effect/language-service@0.1.0': {}
+ '@effect/language-service@0.2.0': {}
'@effect/markdown-toc@0.1.0':
dependencies:
@@ -3516,229 +3396,179 @@ snapshots:
repeat-string: 1.6.1
strip-color: 0.1.0
- '@effect/platform-node-shared@0.13.0(@effect/platform@0.63.0(@effect/schema@0.72.0(effect@3.7.0))(effect@3.7.0))(effect@3.7.0)':
+ '@effect/platform-node-shared@0.28.0(@effect/platform@0.78.0(effect@3.13.7))(effect@3.13.7)':
dependencies:
- '@effect/platform': 0.63.0(@effect/schema@0.72.0(effect@3.7.0))(effect@3.7.0)
- '@parcel/watcher': 2.4.1
- effect: 3.7.0
+ '@effect/platform': 0.78.0(effect@3.13.7)
+ '@parcel/watcher': 2.5.1
+ effect: 3.13.7
multipasta: 0.2.5
- '@effect/platform-node@0.58.0(@effect/platform@0.63.0(@effect/schema@0.72.0(effect@3.7.0))(effect@3.7.0))(effect@3.7.0)':
+ '@effect/platform-node@0.74.0(@effect/platform@0.78.0(effect@3.13.7))(effect@3.13.7)':
dependencies:
- '@effect/platform': 0.63.0(@effect/schema@0.72.0(effect@3.7.0))(effect@3.7.0)
- '@effect/platform-node-shared': 0.13.0(@effect/platform@0.63.0(@effect/schema@0.72.0(effect@3.7.0))(effect@3.7.0))(effect@3.7.0)
- effect: 3.7.0
+ '@effect/platform': 0.78.0(effect@3.13.7)
+ '@effect/platform-node-shared': 0.28.0(@effect/platform@0.78.0(effect@3.13.7))(effect@3.13.7)
+ effect: 3.13.7
mime: 3.0.0
- undici: 6.19.8
- ws: 8.18.0
+ undici: 7.3.0
+ ws: 8.18.1
transitivePeerDependencies:
- bufferutil
- utf-8-validate
- '@effect/platform@0.63.0(@effect/schema@0.72.0(effect@3.7.0))(effect@3.7.0)':
+ '@effect/platform@0.78.0(effect@3.13.7)':
dependencies:
- '@effect/schema': 0.72.0(effect@3.7.0)
- effect: 3.7.0
+ effect: 3.13.7
find-my-way-ts: 0.1.5
multipasta: 0.2.5
- '@effect/printer-ansi@0.35.0(@effect/typeclass@0.26.0(effect@3.7.0))(effect@3.7.0)':
+ '@effect/printer-ansi@0.41.2(@effect/typeclass@0.32.2(effect@3.13.7))(effect@3.13.7)':
dependencies:
- '@effect/printer': 0.35.0(@effect/typeclass@0.26.0(effect@3.7.0))(effect@3.7.0)
- '@effect/typeclass': 0.26.0(effect@3.7.0)
- effect: 3.7.0
+ '@effect/printer': 0.41.2(@effect/typeclass@0.32.2(effect@3.13.7))(effect@3.13.7)
+ '@effect/typeclass': 0.32.2(effect@3.13.7)
+ effect: 3.13.7
- '@effect/printer@0.35.0(@effect/typeclass@0.26.0(effect@3.7.0))(effect@3.7.0)':
+ '@effect/printer@0.41.2(@effect/typeclass@0.32.2(effect@3.13.7))(effect@3.13.7)':
dependencies:
- '@effect/typeclass': 0.26.0(effect@3.7.0)
- effect: 3.7.0
+ '@effect/typeclass': 0.32.2(effect@3.13.7)
+ effect: 3.13.7
- '@effect/schema@0.72.0(effect@3.7.0)':
+ '@effect/typeclass@0.32.2(effect@3.13.7)':
dependencies:
- effect: 3.7.0
- fast-check: 3.22.0
+ effect: 3.13.7
- '@effect/typeclass@0.26.0(effect@3.7.0)':
- dependencies:
- effect: 3.7.0
-
- '@esbuild/aix-ppc64@0.21.5':
- optional: true
-
- '@esbuild/aix-ppc64@0.23.1':
- optional: true
-
- '@esbuild/android-arm64@0.21.5':
- optional: true
-
- '@esbuild/android-arm64@0.23.1':
- optional: true
-
- '@esbuild/android-arm@0.21.5':
- optional: true
-
- '@esbuild/android-arm@0.23.1':
- optional: true
-
- '@esbuild/android-x64@0.21.5':
- optional: true
-
- '@esbuild/android-x64@0.23.1':
- optional: true
-
- '@esbuild/darwin-arm64@0.21.5':
- optional: true
-
- '@esbuild/darwin-arm64@0.23.1':
- optional: true
-
- '@esbuild/darwin-x64@0.21.5':
- optional: true
-
- '@esbuild/darwin-x64@0.23.1':
- optional: true
-
- '@esbuild/freebsd-arm64@0.21.5':
- optional: true
-
- '@esbuild/freebsd-arm64@0.23.1':
- optional: true
-
- '@esbuild/freebsd-x64@0.21.5':
+ '@esbuild/aix-ppc64@0.25.0':
optional: true
- '@esbuild/freebsd-x64@0.23.1':
+ '@esbuild/android-arm64@0.25.0':
optional: true
- '@esbuild/linux-arm64@0.21.5':
+ '@esbuild/android-arm@0.25.0':
optional: true
- '@esbuild/linux-arm64@0.23.1':
+ '@esbuild/android-x64@0.25.0':
optional: true
- '@esbuild/linux-arm@0.21.5':
+ '@esbuild/darwin-arm64@0.25.0':
optional: true
- '@esbuild/linux-arm@0.23.1':
+ '@esbuild/darwin-x64@0.25.0':
optional: true
- '@esbuild/linux-ia32@0.21.5':
+ '@esbuild/freebsd-arm64@0.25.0':
optional: true
- '@esbuild/linux-ia32@0.23.1':
+ '@esbuild/freebsd-x64@0.25.0':
optional: true
- '@esbuild/linux-loong64@0.21.5':
+ '@esbuild/linux-arm64@0.25.0':
optional: true
- '@esbuild/linux-loong64@0.23.1':
+ '@esbuild/linux-arm@0.25.0':
optional: true
- '@esbuild/linux-mips64el@0.21.5':
+ '@esbuild/linux-ia32@0.25.0':
optional: true
- '@esbuild/linux-mips64el@0.23.1':
+ '@esbuild/linux-loong64@0.25.0':
optional: true
- '@esbuild/linux-ppc64@0.21.5':
+ '@esbuild/linux-mips64el@0.25.0':
optional: true
- '@esbuild/linux-ppc64@0.23.1':
+ '@esbuild/linux-ppc64@0.25.0':
optional: true
- '@esbuild/linux-riscv64@0.21.5':
+ '@esbuild/linux-riscv64@0.25.0':
optional: true
- '@esbuild/linux-riscv64@0.23.1':
+ '@esbuild/linux-s390x@0.25.0':
optional: true
- '@esbuild/linux-s390x@0.21.5':
+ '@esbuild/linux-x64@0.25.0':
optional: true
- '@esbuild/linux-s390x@0.23.1':
+ '@esbuild/netbsd-arm64@0.25.0':
optional: true
- '@esbuild/linux-x64@0.21.5':
+ '@esbuild/netbsd-x64@0.25.0':
optional: true
- '@esbuild/linux-x64@0.23.1':
+ '@esbuild/openbsd-arm64@0.25.0':
optional: true
- '@esbuild/netbsd-x64@0.21.5':
+ '@esbuild/openbsd-x64@0.25.0':
optional: true
- '@esbuild/netbsd-x64@0.23.1':
+ '@esbuild/sunos-x64@0.25.0':
optional: true
- '@esbuild/openbsd-arm64@0.23.1':
+ '@esbuild/win32-arm64@0.25.0':
optional: true
- '@esbuild/openbsd-x64@0.21.5':
+ '@esbuild/win32-ia32@0.25.0':
optional: true
- '@esbuild/openbsd-x64@0.23.1':
+ '@esbuild/win32-x64@0.25.0':
optional: true
- '@esbuild/sunos-x64@0.21.5':
- optional: true
-
- '@esbuild/sunos-x64@0.23.1':
- optional: true
-
- '@esbuild/win32-arm64@0.21.5':
- optional: true
-
- '@esbuild/win32-arm64@0.23.1':
- optional: true
-
- '@esbuild/win32-ia32@0.21.5':
- optional: true
-
- '@esbuild/win32-ia32@0.23.1':
- optional: true
+ '@eslint-community/eslint-utils@4.4.1(eslint@9.21.0)':
+ dependencies:
+ eslint: 9.21.0
+ eslint-visitor-keys: 3.4.3
- '@esbuild/win32-x64@0.21.5':
- optional: true
+ '@eslint-community/regexpp@4.12.1': {}
- '@esbuild/win32-x64@0.23.1':
- optional: true
+ '@eslint/compat@1.2.7(eslint@9.21.0)':
+ optionalDependencies:
+ eslint: 9.21.0
- '@eslint-community/eslint-utils@4.4.0(eslint@8.56.0)':
+ '@eslint/config-array@0.19.2':
dependencies:
- eslint: 8.56.0
- eslint-visitor-keys: 3.4.3
-
- '@eslint-community/regexpp@4.10.0': {}
+ '@eslint/object-schema': 2.1.6
+ debug: 4.4.0
+ minimatch: 3.1.2
+ transitivePeerDependencies:
+ - supports-color
- '@eslint-community/regexpp@4.11.0': {}
+ '@eslint/core@0.12.0':
+ dependencies:
+ '@types/json-schema': 7.0.15
- '@eslint/eslintrc@2.1.4':
+ '@eslint/eslintrc@3.3.0':
dependencies:
ajv: 6.12.6
- debug: 4.3.4
- espree: 9.6.1
- globals: 13.24.0
- ignore: 5.3.0
- import-fresh: 3.3.0
+ debug: 4.4.0
+ espree: 10.3.0
+ globals: 14.0.0
+ ignore: 5.3.2
+ import-fresh: 3.3.1
js-yaml: 4.1.0
minimatch: 3.1.2
strip-json-comments: 3.1.1
transitivePeerDependencies:
- supports-color
- '@eslint/js@8.56.0': {}
+ '@eslint/js@9.21.0': {}
+
+ '@eslint/object-schema@2.1.6': {}
+
+ '@eslint/plugin-kit@0.2.7':
+ dependencies:
+ '@eslint/core': 0.12.0
+ levn: 0.4.1
+
+ '@humanfs/core@0.19.1': {}
- '@humanwhocodes/config-array@0.11.13':
+ '@humanfs/node@0.16.6':
dependencies:
- '@humanwhocodes/object-schema': 2.0.1
- debug: 4.3.4
- minimatch: 3.1.2
- transitivePeerDependencies:
- - supports-color
+ '@humanfs/core': 0.19.1
+ '@humanwhocodes/retry': 0.3.1
'@humanwhocodes/module-importer@1.0.1': {}
- '@humanwhocodes/object-schema@2.0.1': {}
+ '@humanwhocodes/retry@0.3.1': {}
+
+ '@humanwhocodes/retry@0.4.2': {}
'@isaacs/cliui@8.0.2':
dependencies:
@@ -3764,11 +3594,11 @@ snapshots:
'@jest/schemas': 29.6.3
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
- '@types/node': 22.5.2
+ '@types/node': 22.13.9
'@types/yargs': 17.0.33
chalk: 4.1.2
- '@jridgewell/gen-mapping@0.3.5':
+ '@jridgewell/gen-mapping@0.3.8':
dependencies:
'@jridgewell/set-array': 1.2.1
'@jridgewell/sourcemap-codec': 1.5.0
@@ -3815,144 +3645,162 @@ snapshots:
'@nolyfill/is-core-module@1.0.39': {}
- '@parcel/watcher-android-arm64@2.4.1':
+ '@parcel/watcher-android-arm64@2.5.1':
optional: true
- '@parcel/watcher-darwin-arm64@2.4.1':
+ '@parcel/watcher-darwin-arm64@2.5.1':
optional: true
- '@parcel/watcher-darwin-x64@2.4.1':
+ '@parcel/watcher-darwin-x64@2.5.1':
optional: true
- '@parcel/watcher-freebsd-x64@2.4.1':
+ '@parcel/watcher-freebsd-x64@2.5.1':
optional: true
- '@parcel/watcher-linux-arm-glibc@2.4.1':
+ '@parcel/watcher-linux-arm-glibc@2.5.1':
optional: true
- '@parcel/watcher-linux-arm64-glibc@2.4.1':
+ '@parcel/watcher-linux-arm-musl@2.5.1':
optional: true
- '@parcel/watcher-linux-arm64-musl@2.4.1':
+ '@parcel/watcher-linux-arm64-glibc@2.5.1':
optional: true
- '@parcel/watcher-linux-x64-glibc@2.4.1':
+ '@parcel/watcher-linux-arm64-musl@2.5.1':
optional: true
- '@parcel/watcher-linux-x64-musl@2.4.1':
+ '@parcel/watcher-linux-x64-glibc@2.5.1':
optional: true
- '@parcel/watcher-win32-arm64@2.4.1':
+ '@parcel/watcher-linux-x64-musl@2.5.1':
optional: true
- '@parcel/watcher-win32-ia32@2.4.1':
+ '@parcel/watcher-win32-arm64@2.5.1':
optional: true
- '@parcel/watcher-win32-x64@2.4.1':
+ '@parcel/watcher-win32-ia32@2.5.1':
optional: true
- '@parcel/watcher@2.4.1':
+ '@parcel/watcher-win32-x64@2.5.1':
+ optional: true
+
+ '@parcel/watcher@2.5.1':
dependencies:
detect-libc: 1.0.3
is-glob: 4.0.3
micromatch: 4.0.8
node-addon-api: 7.1.1
optionalDependencies:
- '@parcel/watcher-android-arm64': 2.4.1
- '@parcel/watcher-darwin-arm64': 2.4.1
- '@parcel/watcher-darwin-x64': 2.4.1
- '@parcel/watcher-freebsd-x64': 2.4.1
- '@parcel/watcher-linux-arm-glibc': 2.4.1
- '@parcel/watcher-linux-arm64-glibc': 2.4.1
- '@parcel/watcher-linux-arm64-musl': 2.4.1
- '@parcel/watcher-linux-x64-glibc': 2.4.1
- '@parcel/watcher-linux-x64-musl': 2.4.1
- '@parcel/watcher-win32-arm64': 2.4.1
- '@parcel/watcher-win32-ia32': 2.4.1
- '@parcel/watcher-win32-x64': 2.4.1
+ '@parcel/watcher-android-arm64': 2.5.1
+ '@parcel/watcher-darwin-arm64': 2.5.1
+ '@parcel/watcher-darwin-x64': 2.5.1
+ '@parcel/watcher-freebsd-x64': 2.5.1
+ '@parcel/watcher-linux-arm-glibc': 2.5.1
+ '@parcel/watcher-linux-arm-musl': 2.5.1
+ '@parcel/watcher-linux-arm64-glibc': 2.5.1
+ '@parcel/watcher-linux-arm64-musl': 2.5.1
+ '@parcel/watcher-linux-x64-glibc': 2.5.1
+ '@parcel/watcher-linux-x64-musl': 2.5.1
+ '@parcel/watcher-win32-arm64': 2.5.1
+ '@parcel/watcher-win32-ia32': 2.5.1
+ '@parcel/watcher-win32-x64': 2.5.1
'@pkgjs/parseargs@0.11.0':
optional: true
'@pnpm/deps.graph-sequencer@1.0.0': {}
- '@rollup/rollup-android-arm-eabi@4.21.2':
+ '@rollup/rollup-android-arm-eabi@4.34.8':
+ optional: true
+
+ '@rollup/rollup-android-arm64@4.34.8':
optional: true
- '@rollup/rollup-android-arm64@4.21.2':
+ '@rollup/rollup-darwin-arm64@4.34.8':
optional: true
- '@rollup/rollup-darwin-arm64@4.21.2':
+ '@rollup/rollup-darwin-x64@4.34.8':
optional: true
- '@rollup/rollup-darwin-x64@4.21.2':
+ '@rollup/rollup-freebsd-arm64@4.34.8':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.21.2':
+ '@rollup/rollup-freebsd-x64@4.34.8':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.21.2':
+ '@rollup/rollup-linux-arm-gnueabihf@4.34.8':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.21.2':
+ '@rollup/rollup-linux-arm-musleabihf@4.34.8':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.21.2':
+ '@rollup/rollup-linux-arm64-gnu@4.34.8':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.21.2':
+ '@rollup/rollup-linux-arm64-musl@4.34.8':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.21.2':
+ '@rollup/rollup-linux-loongarch64-gnu@4.34.8':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.21.2':
+ '@rollup/rollup-linux-powerpc64le-gnu@4.34.8':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.21.2':
+ '@rollup/rollup-linux-riscv64-gnu@4.34.8':
optional: true
- '@rollup/rollup-linux-x64-musl@4.21.2':
+ '@rollup/rollup-linux-s390x-gnu@4.34.8':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.21.2':
+ '@rollup/rollup-linux-x64-gnu@4.34.8':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.21.2':
+ '@rollup/rollup-linux-x64-musl@4.34.8':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.21.2':
+ '@rollup/rollup-win32-arm64-msvc@4.34.8':
optional: true
+ '@rollup/rollup-win32-ia32-msvc@4.34.8':
+ optional: true
+
+ '@rollup/rollup-win32-x64-msvc@4.34.8':
+ optional: true
+
+ '@rtsao/scc@1.1.0': {}
+
'@sinclair/typebox@0.27.8': {}
- '@ts-morph/common@0.24.0':
+ '@standard-schema/spec@1.0.0': {}
+
+ '@ts-morph/common@0.26.1':
dependencies:
- fast-glob: 3.3.2
+ fast-glob: 3.3.3
minimatch: 9.0.5
- mkdirp: 3.0.1
path-browserify: 1.0.1
+ '@types/babel__code-frame@7.0.6': {}
+
'@types/dedent@0.7.0': {}
'@types/doctrine@0.0.9': {}
'@types/eslint@8.56.12':
dependencies:
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
'@types/json-schema': 7.0.15
- '@types/estree@1.0.5': {}
+ '@types/estree@1.0.6': {}
'@types/glob@7.1.3':
dependencies:
'@types/minimatch': 5.1.2
- '@types/node': 22.5.2
+ '@types/node': 22.13.9
'@types/glob@8.1.0':
dependencies:
'@types/minimatch': 5.1.2
- '@types/node': 22.5.2
+ '@types/node': 22.13.9
'@types/istanbul-lib-coverage@2.0.6': {}
@@ -3970,7 +3818,7 @@ snapshots:
'@types/json5@0.0.29': {}
- '@types/lodash@4.17.7': {}
+ '@types/lodash@4.17.15': {}
'@types/mdast@3.0.15':
dependencies:
@@ -3980,13 +3828,13 @@ snapshots:
'@types/node@12.20.55': {}
- '@types/node@20.16.3':
+ '@types/node@20.17.19':
dependencies:
undici-types: 6.19.8
- '@types/node@22.5.2':
+ '@types/node@22.13.9':
dependencies:
- undici-types: 6.19.8
+ undici-types: 6.20.0
'@types/normalize-package-data@2.4.4': {}
@@ -4002,183 +3850,146 @@ snapshots:
dependencies:
'@types/yargs-parser': 21.0.3
- '@typescript-eslint/eslint-plugin@8.3.0(@typescript-eslint/parser@8.3.0(eslint@8.56.0)(typescript@5.5.4))(eslint@8.56.0)(typescript@5.5.4)':
+ '@typescript-eslint/eslint-plugin@8.26.0(@typescript-eslint/parser@8.26.0(eslint@9.21.0)(typescript@5.8.2))(eslint@9.21.0)(typescript@5.8.2)':
dependencies:
- '@eslint-community/regexpp': 4.11.0
- '@typescript-eslint/parser': 8.3.0(eslint@8.56.0)(typescript@5.5.4)
- '@typescript-eslint/scope-manager': 8.3.0
- '@typescript-eslint/type-utils': 8.3.0(eslint@8.56.0)(typescript@5.5.4)
- '@typescript-eslint/utils': 8.3.0(eslint@8.56.0)(typescript@5.5.4)
- '@typescript-eslint/visitor-keys': 8.3.0
- eslint: 8.56.0
+ '@eslint-community/regexpp': 4.12.1
+ '@typescript-eslint/parser': 8.26.0(eslint@9.21.0)(typescript@5.8.2)
+ '@typescript-eslint/scope-manager': 8.26.0
+ '@typescript-eslint/type-utils': 8.26.0(eslint@9.21.0)(typescript@5.8.2)
+ '@typescript-eslint/utils': 8.26.0(eslint@9.21.0)(typescript@5.8.2)
+ '@typescript-eslint/visitor-keys': 8.26.0
+ eslint: 9.21.0
graphemer: 1.4.0
ignore: 5.3.2
natural-compare: 1.4.0
- ts-api-utils: 1.3.0(typescript@5.5.4)
- optionalDependencies:
- typescript: 5.5.4
+ ts-api-utils: 2.0.1(typescript@5.8.2)
+ typescript: 5.8.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@8.3.0(eslint@8.56.0)(typescript@5.5.4)':
+ '@typescript-eslint/parser@8.26.0(eslint@9.21.0)(typescript@5.8.2)':
dependencies:
- '@typescript-eslint/scope-manager': 8.3.0
- '@typescript-eslint/types': 8.3.0
- '@typescript-eslint/typescript-estree': 8.3.0(typescript@5.5.4)
- '@typescript-eslint/visitor-keys': 8.3.0
- debug: 4.3.6
- eslint: 8.56.0
- optionalDependencies:
- typescript: 5.5.4
+ '@typescript-eslint/scope-manager': 8.26.0
+ '@typescript-eslint/types': 8.26.0
+ '@typescript-eslint/typescript-estree': 8.26.0(typescript@5.8.2)
+ '@typescript-eslint/visitor-keys': 8.26.0
+ debug: 4.4.0
+ eslint: 9.21.0
+ typescript: 5.8.2
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/scope-manager@7.18.0':
- dependencies:
- '@typescript-eslint/types': 7.18.0
- '@typescript-eslint/visitor-keys': 7.18.0
-
- '@typescript-eslint/scope-manager@8.3.0':
+ '@typescript-eslint/scope-manager@8.26.0':
dependencies:
- '@typescript-eslint/types': 8.3.0
- '@typescript-eslint/visitor-keys': 8.3.0
+ '@typescript-eslint/types': 8.26.0
+ '@typescript-eslint/visitor-keys': 8.26.0
- '@typescript-eslint/type-utils@8.3.0(eslint@8.56.0)(typescript@5.5.4)':
+ '@typescript-eslint/type-utils@8.26.0(eslint@9.21.0)(typescript@5.8.2)':
dependencies:
- '@typescript-eslint/typescript-estree': 8.3.0(typescript@5.5.4)
- '@typescript-eslint/utils': 8.3.0(eslint@8.56.0)(typescript@5.5.4)
- debug: 4.3.6
- ts-api-utils: 1.3.0(typescript@5.5.4)
- optionalDependencies:
- typescript: 5.5.4
+ '@typescript-eslint/typescript-estree': 8.26.0(typescript@5.8.2)
+ '@typescript-eslint/utils': 8.26.0(eslint@9.21.0)(typescript@5.8.2)
+ debug: 4.4.0
+ eslint: 9.21.0
+ ts-api-utils: 2.0.1(typescript@5.8.2)
+ typescript: 5.8.2
transitivePeerDependencies:
- - eslint
- supports-color
- '@typescript-eslint/types@7.18.0': {}
-
- '@typescript-eslint/types@8.3.0': {}
-
- '@typescript-eslint/typescript-estree@7.18.0(typescript@5.5.4)':
- dependencies:
- '@typescript-eslint/types': 7.18.0
- '@typescript-eslint/visitor-keys': 7.18.0
- debug: 4.3.6
- globby: 11.1.0
- is-glob: 4.0.3
- minimatch: 9.0.5
- semver: 7.6.3
- ts-api-utils: 1.3.0(typescript@5.5.4)
- optionalDependencies:
- typescript: 5.5.4
- transitivePeerDependencies:
- - supports-color
+ '@typescript-eslint/types@8.26.0': {}
- '@typescript-eslint/typescript-estree@8.3.0(typescript@5.5.4)':
+ '@typescript-eslint/typescript-estree@8.26.0(typescript@5.8.2)':
dependencies:
- '@typescript-eslint/types': 8.3.0
- '@typescript-eslint/visitor-keys': 8.3.0
- debug: 4.3.6
- fast-glob: 3.3.2
+ '@typescript-eslint/types': 8.26.0
+ '@typescript-eslint/visitor-keys': 8.26.0
+ debug: 4.4.0
+ fast-glob: 3.3.3
is-glob: 4.0.3
minimatch: 9.0.5
- semver: 7.6.3
- ts-api-utils: 1.3.0(typescript@5.5.4)
- optionalDependencies:
- typescript: 5.5.4
- transitivePeerDependencies:
- - supports-color
-
- '@typescript-eslint/utils@7.18.0(eslint@8.56.0)(typescript@5.5.4)':
- dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0)
- '@typescript-eslint/scope-manager': 7.18.0
- '@typescript-eslint/types': 7.18.0
- '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.5.4)
- eslint: 8.56.0
+ semver: 7.7.1
+ ts-api-utils: 2.0.1(typescript@5.8.2)
+ typescript: 5.8.2
transitivePeerDependencies:
- supports-color
- - typescript
- '@typescript-eslint/utils@8.3.0(eslint@8.56.0)(typescript@5.5.4)':
+ '@typescript-eslint/utils@8.26.0(eslint@9.21.0)(typescript@5.8.2)':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0)
- '@typescript-eslint/scope-manager': 8.3.0
- '@typescript-eslint/types': 8.3.0
- '@typescript-eslint/typescript-estree': 8.3.0(typescript@5.5.4)
- eslint: 8.56.0
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.21.0)
+ '@typescript-eslint/scope-manager': 8.26.0
+ '@typescript-eslint/types': 8.26.0
+ '@typescript-eslint/typescript-estree': 8.26.0(typescript@5.8.2)
+ eslint: 9.21.0
+ typescript: 5.8.2
transitivePeerDependencies:
- supports-color
- - typescript
- '@typescript-eslint/visitor-keys@7.18.0':
+ '@typescript-eslint/visitor-keys@8.26.0':
dependencies:
- '@typescript-eslint/types': 7.18.0
- eslint-visitor-keys: 3.4.3
-
- '@typescript-eslint/visitor-keys@8.3.0':
- dependencies:
- '@typescript-eslint/types': 8.3.0
- eslint-visitor-keys: 3.4.3
+ '@typescript-eslint/types': 8.26.0
+ eslint-visitor-keys: 4.2.0
- '@ungap/structured-clone@1.2.0': {}
-
- '@vitest/coverage-v8@2.0.5(vitest@2.0.5(@types/node@22.5.2))':
+ '@vitest/coverage-v8@3.0.8(vitest@3.0.8(@types/node@22.13.9)(tsx@4.19.3)(yaml@2.7.0))':
dependencies:
'@ampproject/remapping': 2.3.0
- '@bcoe/v8-coverage': 0.2.3
- debug: 4.3.6
+ '@bcoe/v8-coverage': 1.0.2
+ debug: 4.4.0
istanbul-lib-coverage: 3.2.2
istanbul-lib-report: 3.0.1
istanbul-lib-source-maps: 5.0.6
istanbul-reports: 3.1.7
- magic-string: 0.30.11
+ magic-string: 0.30.17
magicast: 0.3.5
- std-env: 3.7.0
+ std-env: 3.8.0
test-exclude: 7.0.1
- tinyrainbow: 1.2.0
- vitest: 2.0.5(@types/node@22.5.2)
+ tinyrainbow: 2.0.0
+ vitest: 3.0.8(@types/node@22.13.9)(tsx@4.19.3)(yaml@2.7.0)
transitivePeerDependencies:
- supports-color
- '@vitest/expect@2.0.5':
+ '@vitest/expect@3.0.8':
dependencies:
- '@vitest/spy': 2.0.5
- '@vitest/utils': 2.0.5
- chai: 5.1.1
- tinyrainbow: 1.2.0
+ '@vitest/spy': 3.0.8
+ '@vitest/utils': 3.0.8
+ chai: 5.2.0
+ tinyrainbow: 2.0.0
- '@vitest/pretty-format@2.0.5':
+ '@vitest/mocker@3.0.8(vite@6.2.1(@types/node@22.13.9)(tsx@4.19.3)(yaml@2.7.0))':
dependencies:
- tinyrainbow: 1.2.0
+ '@vitest/spy': 3.0.8
+ estree-walker: 3.0.3
+ magic-string: 0.30.17
+ optionalDependencies:
+ vite: 6.2.1(@types/node@22.13.9)(tsx@4.19.3)(yaml@2.7.0)
- '@vitest/runner@2.0.5':
+ '@vitest/pretty-format@3.0.8':
dependencies:
- '@vitest/utils': 2.0.5
- pathe: 1.1.2
+ tinyrainbow: 2.0.0
- '@vitest/snapshot@2.0.5':
+ '@vitest/runner@3.0.8':
dependencies:
- '@vitest/pretty-format': 2.0.5
- magic-string: 0.30.11
- pathe: 1.1.2
+ '@vitest/utils': 3.0.8
+ pathe: 2.0.3
- '@vitest/spy@2.0.5':
+ '@vitest/snapshot@3.0.8':
dependencies:
- tinyspy: 3.0.0
+ '@vitest/pretty-format': 3.0.8
+ magic-string: 0.30.17
+ pathe: 2.0.3
- '@vitest/utils@2.0.5':
+ '@vitest/spy@3.0.8':
dependencies:
- '@vitest/pretty-format': 2.0.5
- estree-walker: 3.0.3
- loupe: 3.1.1
- tinyrainbow: 1.2.0
+ tinyspy: 3.0.2
- acorn-jsx@5.3.2(acorn@8.11.2):
+ '@vitest/utils@3.0.8':
dependencies:
- acorn: 8.11.2
+ '@vitest/pretty-format': 3.0.8
+ loupe: 3.1.3
+ tinyrainbow: 2.0.0
- acorn@8.11.2: {}
+ acorn-jsx@5.3.2(acorn@8.14.0):
+ dependencies:
+ acorn: 8.14.0
+
+ acorn@8.14.0: {}
ajv@6.12.6:
dependencies:
@@ -4191,7 +4002,7 @@ snapshots:
ansi-regex@5.0.1: {}
- ansi-regex@6.0.1: {}
+ ansi-regex@6.1.0: {}
ansi-styles@3.2.1:
dependencies:
@@ -4207,71 +4018,72 @@ snapshots:
any-promise@1.3.0: {}
- anymatch@3.1.3:
- dependencies:
- normalize-path: 3.0.0
- picomatch: 2.3.1
-
argparse@1.0.10:
dependencies:
sprintf-js: 1.0.3
argparse@2.0.1: {}
- array-buffer-byte-length@1.0.0:
+ array-buffer-byte-length@1.0.2:
dependencies:
- call-bind: 1.0.5
- is-array-buffer: 3.0.2
+ call-bound: 1.0.3
+ is-array-buffer: 3.0.5
- array-includes@3.1.7:
+ array-includes@3.1.8:
dependencies:
- call-bind: 1.0.5
+ call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.22.3
- get-intrinsic: 1.2.2
- is-string: 1.0.7
+ es-abstract: 1.23.9
+ es-object-atoms: 1.1.1
+ get-intrinsic: 1.3.0
+ is-string: 1.1.1
array-union@2.1.0: {}
- array.prototype.findlastindex@1.2.3:
+ array.prototype.findlastindex@1.2.5:
dependencies:
- call-bind: 1.0.5
+ call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.22.3
- es-shim-unscopables: 1.0.2
- get-intrinsic: 1.2.2
+ es-abstract: 1.23.9
+ es-errors: 1.3.0
+ es-object-atoms: 1.1.1
+ es-shim-unscopables: 1.1.0
- array.prototype.flat@1.3.2:
+ array.prototype.flat@1.3.3:
dependencies:
- call-bind: 1.0.5
+ call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.22.3
- es-shim-unscopables: 1.0.2
+ es-abstract: 1.23.9
+ es-shim-unscopables: 1.1.0
- array.prototype.flatmap@1.3.2:
+ array.prototype.flatmap@1.3.3:
dependencies:
- call-bind: 1.0.5
+ call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.22.3
- es-shim-unscopables: 1.0.2
+ es-abstract: 1.23.9
+ es-shim-unscopables: 1.1.0
- arraybuffer.prototype.slice@1.0.2:
+ arraybuffer.prototype.slice@1.0.4:
dependencies:
- array-buffer-byte-length: 1.0.0
- call-bind: 1.0.5
+ array-buffer-byte-length: 1.0.2
+ call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.22.3
- get-intrinsic: 1.2.2
- is-array-buffer: 3.0.2
- is-shared-array-buffer: 1.0.2
+ es-abstract: 1.23.9
+ es-errors: 1.3.0
+ get-intrinsic: 1.3.0
+ is-array-buffer: 3.0.5
assertion-error@2.0.1: {}
+ async-function@1.0.0: {}
+
autolinker@0.28.1:
dependencies:
gulp-header: 1.8.12
- available-typed-arrays@1.0.5: {}
+ available-typed-arrays@1.0.7:
+ dependencies:
+ possible-typed-array-names: 1.1.0
balanced-match@1.0.2: {}
@@ -4279,8 +4091,6 @@ snapshots:
dependencies:
is-windows: 1.0.2
- binary-extensions@2.3.0: {}
-
brace-expansion@1.1.11:
dependencies:
balanced-match: 1.0.2
@@ -4294,38 +4104,49 @@ snapshots:
dependencies:
fill-range: 7.1.1
- browserslist@4.23.3:
+ browserslist@4.24.4:
dependencies:
- caniuse-lite: 1.0.30001655
- electron-to-chromium: 1.5.13
- node-releases: 2.0.18
- update-browserslist-db: 1.1.0(browserslist@4.23.3)
+ caniuse-lite: 1.0.30001701
+ electron-to-chromium: 1.5.107
+ node-releases: 2.0.19
+ update-browserslist-db: 1.1.3(browserslist@4.24.4)
buffer-from@1.1.2: {}
- bundle-require@5.0.0(esbuild@0.23.1):
+ bundle-require@5.1.0(esbuild@0.25.0):
dependencies:
- esbuild: 0.23.1
+ esbuild: 0.25.0
load-tsconfig: 0.2.5
cac@6.7.14: {}
- call-bind@1.0.5:
+ call-bind-apply-helpers@1.0.2:
dependencies:
+ es-errors: 1.3.0
function-bind: 1.1.2
- get-intrinsic: 1.2.2
- set-function-length: 1.1.1
+
+ call-bind@1.0.8:
+ dependencies:
+ call-bind-apply-helpers: 1.0.2
+ es-define-property: 1.0.1
+ get-intrinsic: 1.3.0
+ set-function-length: 1.2.2
+
+ call-bound@1.0.3:
+ dependencies:
+ call-bind-apply-helpers: 1.0.2
+ get-intrinsic: 1.3.0
callsites@3.1.0: {}
- caniuse-lite@1.0.30001655: {}
+ caniuse-lite@1.0.30001701: {}
- chai@5.1.1:
+ chai@5.2.0:
dependencies:
assertion-error: 2.0.1
check-error: 2.1.1
deep-eql: 5.0.2
- loupe: 3.1.1
+ loupe: 3.1.3
pathval: 2.0.0
chalk@2.4.2:
@@ -4339,7 +4160,7 @@ snapshots:
ansi-styles: 4.3.0
supports-color: 7.2.0
- chalk@5.3.0: {}
+ chalk@5.4.1: {}
character-entities-legacy@1.1.4: {}
@@ -4351,21 +4172,13 @@ snapshots:
check-error@2.1.1: {}
- chokidar@3.6.0:
+ chokidar@4.0.3:
dependencies:
- anymatch: 3.1.3
- braces: 3.0.3
- glob-parent: 5.1.2
- is-binary-path: 2.1.0
- is-glob: 4.0.3
- normalize-path: 3.0.0
- readdirp: 3.6.0
- optionalDependencies:
- fsevents: 2.3.3
+ readdirp: 4.1.2
ci-info@3.9.0: {}
- code-block-writer@13.0.2: {}
+ code-block-writer@13.0.3: {}
color-convert@1.9.3:
dependencies:
@@ -4394,7 +4207,7 @@ snapshots:
dependencies:
source-map: 0.6.1
- consola@3.2.3: {}
+ consola@3.4.0: {}
convert-source-map@2.0.0: {}
@@ -4412,19 +4225,39 @@ snapshots:
shebang-command: 2.0.0
which: 2.0.2
+ cross-spawn@7.0.6:
+ dependencies:
+ path-key: 3.1.1
+ shebang-command: 2.0.0
+ which: 2.0.2
+
+ data-view-buffer@1.0.2:
+ dependencies:
+ call-bound: 1.0.3
+ es-errors: 1.3.0
+ is-data-view: 1.0.2
+
+ data-view-byte-length@1.0.2:
+ dependencies:
+ call-bound: 1.0.3
+ es-errors: 1.3.0
+ is-data-view: 1.0.2
+
+ data-view-byte-offset@1.0.1:
+ dependencies:
+ call-bound: 1.0.3
+ es-errors: 1.3.0
+ is-data-view: 1.0.2
+
dataloader@1.4.0: {}
debug@3.2.7:
dependencies:
ms: 2.1.3
- debug@4.3.4:
+ debug@4.4.0:
dependencies:
- ms: 2.1.2
-
- debug@4.3.6:
- dependencies:
- ms: 2.1.2
+ ms: 2.1.3
dedent@1.5.3: {}
@@ -4432,16 +4265,16 @@ snapshots:
deep-is@0.1.4: {}
- define-data-property@1.1.1:
+ define-data-property@1.1.4:
dependencies:
- get-intrinsic: 1.2.2
- gopd: 1.0.1
- has-property-descriptors: 1.0.1
+ es-define-property: 1.0.1
+ es-errors: 1.3.0
+ gopd: 1.2.0
define-properties@1.2.1:
dependencies:
- define-data-property: 1.1.1
- has-property-descriptors: 1.0.1
+ define-data-property: 1.1.4
+ has-property-descriptors: 1.0.2
object-keys: 1.1.1
detect-indent@6.1.0: {}
@@ -4466,17 +4299,26 @@ snapshots:
dotenv@8.6.0: {}
+ dunder-proto@1.0.1:
+ dependencies:
+ call-bind-apply-helpers: 1.0.2
+ es-errors: 1.3.0
+ gopd: 1.2.0
+
eastasianwidth@0.2.0: {}
- effect@3.7.0: {}
+ effect@3.13.7:
+ dependencies:
+ '@standard-schema/spec': 1.0.0
+ fast-check: 3.23.2
- electron-to-chromium@1.5.13: {}
+ electron-to-chromium@1.5.107: {}
emoji-regex@8.0.0: {}
emoji-regex@9.2.2: {}
- enhanced-resolve@5.17.1:
+ enhanced-resolve@5.18.1:
dependencies:
graceful-fs: 4.2.11
tapable: 2.2.1
@@ -4490,116 +4332,114 @@ snapshots:
dependencies:
is-arrayish: 0.2.1
- es-abstract@1.22.3:
- dependencies:
- array-buffer-byte-length: 1.0.0
- arraybuffer.prototype.slice: 1.0.2
- available-typed-arrays: 1.0.5
- call-bind: 1.0.5
- es-set-tostringtag: 2.0.2
- es-to-primitive: 1.2.1
- function.prototype.name: 1.1.6
- get-intrinsic: 1.2.2
- get-symbol-description: 1.0.0
- globalthis: 1.0.3
- gopd: 1.0.1
- has-property-descriptors: 1.0.1
- has-proto: 1.0.1
- has-symbols: 1.0.3
- hasown: 2.0.0
- internal-slot: 1.0.6
- is-array-buffer: 3.0.2
+ es-abstract@1.23.9:
+ dependencies:
+ array-buffer-byte-length: 1.0.2
+ arraybuffer.prototype.slice: 1.0.4
+ available-typed-arrays: 1.0.7
+ call-bind: 1.0.8
+ call-bound: 1.0.3
+ data-view-buffer: 1.0.2
+ data-view-byte-length: 1.0.2
+ data-view-byte-offset: 1.0.1
+ es-define-property: 1.0.1
+ es-errors: 1.3.0
+ es-object-atoms: 1.1.1
+ es-set-tostringtag: 2.1.0
+ es-to-primitive: 1.3.0
+ function.prototype.name: 1.1.8
+ get-intrinsic: 1.3.0
+ get-proto: 1.0.1
+ get-symbol-description: 1.1.0
+ globalthis: 1.0.4
+ gopd: 1.2.0
+ has-property-descriptors: 1.0.2
+ has-proto: 1.2.0
+ has-symbols: 1.1.0
+ hasown: 2.0.2
+ internal-slot: 1.1.0
+ is-array-buffer: 3.0.5
is-callable: 1.2.7
- is-negative-zero: 2.0.2
- is-regex: 1.1.4
- is-shared-array-buffer: 1.0.2
- is-string: 1.0.7
- is-typed-array: 1.1.12
- is-weakref: 1.0.2
- object-inspect: 1.13.1
+ is-data-view: 1.0.2
+ is-regex: 1.2.1
+ is-shared-array-buffer: 1.0.4
+ is-string: 1.1.1
+ is-typed-array: 1.1.15
+ is-weakref: 1.1.1
+ math-intrinsics: 1.1.0
+ object-inspect: 1.13.4
object-keys: 1.1.1
- object.assign: 4.1.5
- regexp.prototype.flags: 1.5.1
- safe-array-concat: 1.0.1
- safe-regex-test: 1.0.0
- string.prototype.trim: 1.2.8
- string.prototype.trimend: 1.0.7
- string.prototype.trimstart: 1.0.7
- typed-array-buffer: 1.0.0
- typed-array-byte-length: 1.0.0
- typed-array-byte-offset: 1.0.0
- typed-array-length: 1.0.4
- unbox-primitive: 1.0.2
- which-typed-array: 1.1.13
+ object.assign: 4.1.7
+ own-keys: 1.0.1
+ regexp.prototype.flags: 1.5.4
+ safe-array-concat: 1.1.3
+ safe-push-apply: 1.0.0
+ safe-regex-test: 1.1.0
+ set-proto: 1.0.0
+ string.prototype.trim: 1.2.10
+ string.prototype.trimend: 1.0.9
+ string.prototype.trimstart: 1.0.8
+ typed-array-buffer: 1.0.3
+ typed-array-byte-length: 1.0.3
+ typed-array-byte-offset: 1.0.4
+ typed-array-length: 1.0.7
+ unbox-primitive: 1.1.0
+ which-typed-array: 1.1.18
+
+ es-define-property@1.0.1: {}
+
+ es-errors@1.3.0: {}
- es-set-tostringtag@2.0.2:
+ es-module-lexer@1.6.0: {}
+
+ es-object-atoms@1.1.1:
+ dependencies:
+ es-errors: 1.3.0
+
+ es-set-tostringtag@2.1.0:
dependencies:
- get-intrinsic: 1.2.2
- has-tostringtag: 1.0.0
- hasown: 2.0.0
+ es-errors: 1.3.0
+ get-intrinsic: 1.3.0
+ has-tostringtag: 1.0.2
+ hasown: 2.0.2
- es-shim-unscopables@1.0.2:
+ es-shim-unscopables@1.1.0:
dependencies:
- hasown: 2.0.0
+ hasown: 2.0.2
- es-to-primitive@1.2.1:
+ es-to-primitive@1.3.0:
dependencies:
is-callable: 1.2.7
- is-date-object: 1.0.5
- is-symbol: 1.0.4
+ is-date-object: 1.1.0
+ is-symbol: 1.1.1
- esbuild@0.21.5:
- optionalDependencies:
- '@esbuild/aix-ppc64': 0.21.5
- '@esbuild/android-arm': 0.21.5
- '@esbuild/android-arm64': 0.21.5
- '@esbuild/android-x64': 0.21.5
- '@esbuild/darwin-arm64': 0.21.5
- '@esbuild/darwin-x64': 0.21.5
- '@esbuild/freebsd-arm64': 0.21.5
- '@esbuild/freebsd-x64': 0.21.5
- '@esbuild/linux-arm': 0.21.5
- '@esbuild/linux-arm64': 0.21.5
- '@esbuild/linux-ia32': 0.21.5
- '@esbuild/linux-loong64': 0.21.5
- '@esbuild/linux-mips64el': 0.21.5
- '@esbuild/linux-ppc64': 0.21.5
- '@esbuild/linux-riscv64': 0.21.5
- '@esbuild/linux-s390x': 0.21.5
- '@esbuild/linux-x64': 0.21.5
- '@esbuild/netbsd-x64': 0.21.5
- '@esbuild/openbsd-x64': 0.21.5
- '@esbuild/sunos-x64': 0.21.5
- '@esbuild/win32-arm64': 0.21.5
- '@esbuild/win32-ia32': 0.21.5
- '@esbuild/win32-x64': 0.21.5
-
- esbuild@0.23.1:
+ esbuild@0.25.0:
optionalDependencies:
- '@esbuild/aix-ppc64': 0.23.1
- '@esbuild/android-arm': 0.23.1
- '@esbuild/android-arm64': 0.23.1
- '@esbuild/android-x64': 0.23.1
- '@esbuild/darwin-arm64': 0.23.1
- '@esbuild/darwin-x64': 0.23.1
- '@esbuild/freebsd-arm64': 0.23.1
- '@esbuild/freebsd-x64': 0.23.1
- '@esbuild/linux-arm': 0.23.1
- '@esbuild/linux-arm64': 0.23.1
- '@esbuild/linux-ia32': 0.23.1
- '@esbuild/linux-loong64': 0.23.1
- '@esbuild/linux-mips64el': 0.23.1
- '@esbuild/linux-ppc64': 0.23.1
- '@esbuild/linux-riscv64': 0.23.1
- '@esbuild/linux-s390x': 0.23.1
- '@esbuild/linux-x64': 0.23.1
- '@esbuild/netbsd-x64': 0.23.1
- '@esbuild/openbsd-arm64': 0.23.1
- '@esbuild/openbsd-x64': 0.23.1
- '@esbuild/sunos-x64': 0.23.1
- '@esbuild/win32-arm64': 0.23.1
- '@esbuild/win32-ia32': 0.23.1
- '@esbuild/win32-x64': 0.23.1
+ '@esbuild/aix-ppc64': 0.25.0
+ '@esbuild/android-arm': 0.25.0
+ '@esbuild/android-arm64': 0.25.0
+ '@esbuild/android-x64': 0.25.0
+ '@esbuild/darwin-arm64': 0.25.0
+ '@esbuild/darwin-x64': 0.25.0
+ '@esbuild/freebsd-arm64': 0.25.0
+ '@esbuild/freebsd-x64': 0.25.0
+ '@esbuild/linux-arm': 0.25.0
+ '@esbuild/linux-arm64': 0.25.0
+ '@esbuild/linux-ia32': 0.25.0
+ '@esbuild/linux-loong64': 0.25.0
+ '@esbuild/linux-mips64el': 0.25.0
+ '@esbuild/linux-ppc64': 0.25.0
+ '@esbuild/linux-riscv64': 0.25.0
+ '@esbuild/linux-s390x': 0.25.0
+ '@esbuild/linux-x64': 0.25.0
+ '@esbuild/netbsd-arm64': 0.25.0
+ '@esbuild/netbsd-x64': 0.25.0
+ '@esbuild/openbsd-arm64': 0.25.0
+ '@esbuild/openbsd-x64': 0.25.0
+ '@esbuild/sunos-x64': 0.25.0
+ '@esbuild/win32-arm64': 0.25.0
+ '@esbuild/win32-ia32': 0.25.0
+ '@esbuild/win32-x64': 0.25.0
escalade@3.2.0: {}
@@ -4612,70 +4452,56 @@ snapshots:
eslint-import-resolver-node@0.3.9:
dependencies:
debug: 3.2.7
- is-core-module: 2.13.1
- resolve: 1.22.8
+ is-core-module: 2.16.1
+ resolve: 1.22.10
transitivePeerDependencies:
- supports-color
- eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.3.0(eslint@8.56.0)(typescript@5.5.4))(eslint-plugin-import@2.29.1)(eslint@8.56.0):
+ eslint-import-resolver-typescript@3.8.3(eslint-plugin-import@2.31.0)(eslint@9.21.0):
dependencies:
'@nolyfill/is-core-module': 1.0.39
- debug: 4.3.6
- enhanced-resolve: 5.17.1
- eslint: 8.56.0
- eslint-module-utils: 2.8.2(@typescript-eslint/parser@8.3.0(eslint@8.56.0)(typescript@5.5.4))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.3.0(eslint@8.56.0)(typescript@5.5.4))(eslint-plugin-import@2.29.1)(eslint@8.56.0))(eslint@8.56.0)
- fast-glob: 3.3.2
- get-tsconfig: 4.8.0
- is-bun-module: 1.1.0
- is-glob: 4.0.3
+ debug: 4.4.0
+ enhanced-resolve: 5.18.1
+ eslint: 9.21.0
+ get-tsconfig: 4.10.0
+ is-bun-module: 1.3.0
+ stable-hash: 0.0.4
+ tinyglobby: 0.2.12
optionalDependencies:
- eslint-plugin-import: 2.29.1(@typescript-eslint/parser@8.3.0(eslint@8.56.0)(typescript@5.5.4))(eslint-import-resolver-typescript@3.6.3)(eslint@8.56.0)
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.26.0(eslint@9.21.0)(typescript@5.8.2))(eslint-import-resolver-typescript@3.8.3)(eslint@9.21.0)
transitivePeerDependencies:
- - '@typescript-eslint/parser'
- - eslint-import-resolver-node
- - eslint-import-resolver-webpack
- supports-color
- eslint-module-utils@2.8.0(@typescript-eslint/parser@8.3.0(eslint@8.56.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.3.0(eslint@8.56.0)(typescript@5.5.4))(eslint-plugin-import@2.29.1)(eslint@8.56.0))(eslint@8.56.0):
+ eslint-module-utils@2.12.0(@typescript-eslint/parser@8.26.0(eslint@9.21.0)(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.8.3(eslint-plugin-import@2.31.0)(eslint@9.21.0))(eslint@9.21.0):
dependencies:
debug: 3.2.7
optionalDependencies:
- '@typescript-eslint/parser': 8.3.0(eslint@8.56.0)(typescript@5.5.4)
- eslint: 8.56.0
+ '@typescript-eslint/parser': 8.26.0(eslint@9.21.0)(typescript@5.8.2)
+ eslint: 9.21.0
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.3.0(eslint@8.56.0)(typescript@5.5.4))(eslint-plugin-import@2.29.1)(eslint@8.56.0)
- transitivePeerDependencies:
- - supports-color
-
- eslint-module-utils@2.8.2(@typescript-eslint/parser@8.3.0(eslint@8.56.0)(typescript@5.5.4))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.3.0(eslint@8.56.0)(typescript@5.5.4))(eslint-plugin-import@2.29.1)(eslint@8.56.0))(eslint@8.56.0):
- dependencies:
- debug: 3.2.7
- optionalDependencies:
- '@typescript-eslint/parser': 8.3.0(eslint@8.56.0)(typescript@5.5.4)
- eslint: 8.56.0
- eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.3.0(eslint@8.56.0)(typescript@5.5.4))(eslint-plugin-import@2.29.1)(eslint@8.56.0)
+ eslint-import-resolver-typescript: 3.8.3(eslint-plugin-import@2.31.0)(eslint@9.21.0)
transitivePeerDependencies:
- supports-color
- eslint-plugin-codegen@0.28.0(eslint@8.56.0):
+ eslint-plugin-codegen@0.29.0(eslint@9.21.0):
dependencies:
- '@babel/core': 7.25.2
+ '@babel/core': 7.26.9
'@babel/generator': 7.12.17
- '@babel/parser': 7.25.6
- '@babel/traverse': 7.25.6
+ '@babel/parser': 7.26.9
+ '@babel/traverse': 7.26.9
'@pnpm/deps.graph-sequencer': 1.0.0
'@types/dedent': 0.7.0
'@types/eslint': 8.56.12
'@types/glob': 7.1.3
'@types/js-yaml': 3.12.5
- '@types/lodash': 4.17.7
- '@types/node': 20.16.3
+ '@types/lodash': 4.17.15
+ '@types/node': 20.17.19
dedent: 1.5.3
- eslint-plugin-markdown: 4.0.1(eslint@8.56.0)
+ eslint-plugin-markdown: 4.0.1(eslint@9.21.0)
expect: 29.7.0
fp-ts: 2.16.9
- glob: 10.3.12
- io-ts: 2.2.21(fp-ts@2.16.9)
+ glob: 10.4.5
+ io-ts: 2.2.22(fp-ts@2.16.9)
io-ts-extra: 0.11.6
js-yaml: 3.14.1
lodash: 4.17.21
@@ -4685,118 +4511,108 @@ snapshots:
- eslint
- supports-color
- eslint-plugin-deprecation@3.0.0(eslint@8.56.0)(typescript@5.5.4):
- dependencies:
- '@typescript-eslint/utils': 7.18.0(eslint@8.56.0)(typescript@5.5.4)
- eslint: 8.56.0
- ts-api-utils: 1.3.0(typescript@5.5.4)
- tslib: 2.7.0
- typescript: 5.5.4
- transitivePeerDependencies:
- - supports-color
-
- eslint-plugin-import@2.29.1(@typescript-eslint/parser@8.3.0(eslint@8.56.0)(typescript@5.5.4))(eslint-import-resolver-typescript@3.6.3)(eslint@8.56.0):
+ eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.26.0(eslint@9.21.0)(typescript@5.8.2))(eslint-import-resolver-typescript@3.8.3)(eslint@9.21.0):
dependencies:
- array-includes: 3.1.7
- array.prototype.findlastindex: 1.2.3
- array.prototype.flat: 1.3.2
- array.prototype.flatmap: 1.3.2
+ '@rtsao/scc': 1.1.0
+ array-includes: 3.1.8
+ array.prototype.findlastindex: 1.2.5
+ array.prototype.flat: 1.3.3
+ array.prototype.flatmap: 1.3.3
debug: 3.2.7
doctrine: 2.1.0
- eslint: 8.56.0
+ eslint: 9.21.0
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.8.0(@typescript-eslint/parser@8.3.0(eslint@8.56.0)(typescript@5.5.4))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.3.0(eslint@8.56.0)(typescript@5.5.4))(eslint-plugin-import@2.29.1)(eslint@8.56.0))(eslint@8.56.0)
- hasown: 2.0.0
- is-core-module: 2.13.1
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.26.0(eslint@9.21.0)(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.8.3(eslint-plugin-import@2.31.0)(eslint@9.21.0))(eslint@9.21.0)
+ hasown: 2.0.2
+ is-core-module: 2.16.1
is-glob: 4.0.3
minimatch: 3.1.2
- object.fromentries: 2.0.7
- object.groupby: 1.0.1
- object.values: 1.1.7
+ object.fromentries: 2.0.8
+ object.groupby: 1.0.3
+ object.values: 1.2.1
semver: 6.3.1
+ string.prototype.trimend: 1.0.9
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 8.3.0(eslint@8.56.0)(typescript@5.5.4)
+ '@typescript-eslint/parser': 8.26.0(eslint@9.21.0)(typescript@5.8.2)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-markdown@4.0.1(eslint@8.56.0):
+ eslint-plugin-markdown@4.0.1(eslint@9.21.0):
dependencies:
- eslint: 8.56.0
+ eslint: 9.21.0
mdast-util-from-markdown: 0.8.5
transitivePeerDependencies:
- supports-color
- eslint-plugin-simple-import-sort@12.1.1(eslint@8.56.0):
+ eslint-plugin-simple-import-sort@12.1.1(eslint@9.21.0):
dependencies:
- eslint: 8.56.0
+ eslint: 9.21.0
- eslint-plugin-sort-destructure-keys@2.0.0(eslint@8.56.0):
+ eslint-plugin-sort-destructure-keys@2.0.0(eslint@9.21.0):
dependencies:
- eslint: 8.56.0
+ eslint: 9.21.0
natural-compare-lite: 1.4.0
- eslint-scope@7.2.2:
+ eslint-scope@8.2.0:
dependencies:
esrecurse: 4.3.0
estraverse: 5.3.0
eslint-visitor-keys@3.4.3: {}
- eslint@8.56.0:
+ eslint-visitor-keys@4.2.0: {}
+
+ eslint@9.21.0:
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0)
- '@eslint-community/regexpp': 4.10.0
- '@eslint/eslintrc': 2.1.4
- '@eslint/js': 8.56.0
- '@humanwhocodes/config-array': 0.11.13
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.21.0)
+ '@eslint-community/regexpp': 4.12.1
+ '@eslint/config-array': 0.19.2
+ '@eslint/core': 0.12.0
+ '@eslint/eslintrc': 3.3.0
+ '@eslint/js': 9.21.0
+ '@eslint/plugin-kit': 0.2.7
+ '@humanfs/node': 0.16.6
'@humanwhocodes/module-importer': 1.0.1
- '@nodelib/fs.walk': 1.2.8
- '@ungap/structured-clone': 1.2.0
+ '@humanwhocodes/retry': 0.4.2
+ '@types/estree': 1.0.6
+ '@types/json-schema': 7.0.15
ajv: 6.12.6
chalk: 4.1.2
- cross-spawn: 7.0.3
- debug: 4.3.4
- doctrine: 3.0.0
+ cross-spawn: 7.0.6
+ debug: 4.4.0
escape-string-regexp: 4.0.0
- eslint-scope: 7.2.2
- eslint-visitor-keys: 3.4.3
- espree: 9.6.1
- esquery: 1.5.0
+ eslint-scope: 8.2.0
+ eslint-visitor-keys: 4.2.0
+ espree: 10.3.0
+ esquery: 1.6.0
esutils: 2.0.3
fast-deep-equal: 3.1.3
- file-entry-cache: 6.0.1
+ file-entry-cache: 8.0.0
find-up: 5.0.0
glob-parent: 6.0.2
- globals: 13.24.0
- graphemer: 1.4.0
- ignore: 5.3.0
+ ignore: 5.3.2
imurmurhash: 0.1.4
is-glob: 4.0.3
- is-path-inside: 3.0.3
- js-yaml: 4.1.0
json-stable-stringify-without-jsonify: 1.0.1
- levn: 0.4.1
lodash.merge: 4.6.2
minimatch: 3.1.2
natural-compare: 1.4.0
- optionator: 0.9.3
- strip-ansi: 6.0.1
- text-table: 0.2.0
+ optionator: 0.9.4
transitivePeerDependencies:
- supports-color
- espree@9.6.1:
+ espree@10.3.0:
dependencies:
- acorn: 8.11.2
- acorn-jsx: 5.3.2(acorn@8.11.2)
- eslint-visitor-keys: 3.4.3
+ acorn: 8.14.0
+ acorn-jsx: 5.3.2(acorn@8.14.0)
+ eslint-visitor-keys: 4.2.0
esprima@4.0.1: {}
- esquery@1.5.0:
+ esquery@1.6.0:
dependencies:
estraverse: 5.3.0
@@ -4808,38 +4624,16 @@ snapshots:
estree-walker@3.0.3:
dependencies:
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
esutils@2.0.3: {}
- execa@5.1.1:
- dependencies:
- cross-spawn: 7.0.3
- get-stream: 6.0.1
- human-signals: 2.1.0
- is-stream: 2.0.1
- merge-stream: 2.0.0
- npm-run-path: 4.0.1
- onetime: 5.1.2
- signal-exit: 3.0.7
- strip-final-newline: 2.0.0
-
- execa@8.0.1:
- dependencies:
- cross-spawn: 7.0.3
- get-stream: 8.0.1
- human-signals: 5.0.0
- is-stream: 3.0.0
- merge-stream: 2.0.0
- npm-run-path: 5.3.0
- onetime: 6.0.0
- signal-exit: 4.1.0
- strip-final-newline: 3.0.0
-
expand-range@1.8.2:
dependencies:
fill-range: 2.2.4
+ expect-type@1.1.0: {}
+
expect@29.7.0:
dependencies:
'@jest/expect-utils': 29.7.0
@@ -4860,7 +4654,7 @@ snapshots:
iconv-lite: 0.4.24
tmp: 0.0.33
- fast-check@3.22.0:
+ fast-check@3.23.2:
dependencies:
pure-rand: 6.1.0
@@ -4876,6 +4670,14 @@ snapshots:
merge2: 1.4.1
micromatch: 4.0.8
+ fast-glob@3.3.3:
+ dependencies:
+ '@nodelib/fs.stat': 2.0.5
+ '@nodelib/fs.walk': 1.2.8
+ glob-parent: 5.1.2
+ merge2: 1.4.1
+ micromatch: 4.0.8
+
fast-json-stable-stringify@2.1.0: {}
fast-levenshtein@2.0.6: {}
@@ -4884,9 +4686,13 @@ snapshots:
dependencies:
reusify: 1.0.4
- file-entry-cache@6.0.1:
+ fdir@6.4.3(picomatch@4.0.2):
+ optionalDependencies:
+ picomatch: 4.0.2
+
+ file-entry-cache@8.0.0:
dependencies:
- flat-cache: 3.2.0
+ flat-cache: 4.0.1
fill-range@2.2.4:
dependencies:
@@ -4917,15 +4723,14 @@ snapshots:
micromatch: 4.0.8
pkg-dir: 4.2.0
- flat-cache@3.2.0:
+ flat-cache@4.0.1:
dependencies:
- flatted: 3.2.9
+ flatted: 3.3.3
keyv: 4.5.4
- rimraf: 3.0.2
- flatted@3.2.9: {}
+ flatted@3.3.3: {}
- for-each@0.3.3:
+ for-each@0.3.5:
dependencies:
is-callable: 1.2.7
@@ -4936,9 +4741,9 @@ snapshots:
cross-spawn: 7.0.3
signal-exit: 4.1.0
- foreground-child@3.3.0:
+ foreground-child@3.3.1:
dependencies:
- cross-spawn: 7.0.3
+ cross-spawn: 7.0.6
signal-exit: 4.1.0
fp-ts@2.16.9: {}
@@ -4955,43 +4760,49 @@ snapshots:
jsonfile: 4.0.0
universalify: 0.1.2
- fs.realpath@1.0.0: {}
-
fsevents@2.3.3:
optional: true
function-bind@1.1.2: {}
- function.prototype.name@1.1.6:
+ function.prototype.name@1.1.8:
dependencies:
- call-bind: 1.0.5
+ call-bind: 1.0.8
+ call-bound: 1.0.3
define-properties: 1.2.1
- es-abstract: 1.22.3
functions-have-names: 1.2.3
+ hasown: 2.0.2
+ is-callable: 1.2.7
functions-have-names@1.2.3: {}
gensync@1.0.0-beta.2: {}
- get-func-name@2.0.2: {}
-
- get-intrinsic@1.2.2:
+ get-intrinsic@1.3.0:
dependencies:
+ call-bind-apply-helpers: 1.0.2
+ es-define-property: 1.0.1
+ es-errors: 1.3.0
+ es-object-atoms: 1.1.1
function-bind: 1.1.2
- has-proto: 1.0.1
- has-symbols: 1.0.3
- hasown: 2.0.0
-
- get-stream@6.0.1: {}
+ get-proto: 1.0.1
+ gopd: 1.2.0
+ has-symbols: 1.1.0
+ hasown: 2.0.2
+ math-intrinsics: 1.1.0
- get-stream@8.0.1: {}
+ get-proto@1.0.1:
+ dependencies:
+ dunder-proto: 1.0.1
+ es-object-atoms: 1.1.1
- get-symbol-description@1.0.0:
+ get-symbol-description@1.1.0:
dependencies:
- call-bind: 1.0.5
- get-intrinsic: 1.2.2
+ call-bound: 1.0.3
+ es-errors: 1.3.0
+ get-intrinsic: 1.3.0
- get-tsconfig@4.8.0:
+ get-tsconfig@4.10.0:
dependencies:
resolve-pkg-maps: 1.0.0
@@ -5003,50 +4814,32 @@ snapshots:
dependencies:
is-glob: 4.0.3
- glob@10.3.12:
- dependencies:
- foreground-child: 3.1.1
- jackspeak: 2.3.6
- minimatch: 9.0.4
- minipass: 7.0.4
- path-scurry: 1.10.2
-
glob@10.4.5:
dependencies:
- foreground-child: 3.3.0
+ foreground-child: 3.1.1
jackspeak: 3.4.3
- minimatch: 9.0.5
+ minimatch: 9.0.4
minipass: 7.1.2
- package-json-from-dist: 1.0.0
+ package-json-from-dist: 1.0.1
path-scurry: 1.11.1
- glob@11.0.0:
+ glob@11.0.1:
dependencies:
- foreground-child: 3.3.0
- jackspeak: 4.0.1
+ foreground-child: 3.3.1
+ jackspeak: 4.1.0
minimatch: 10.0.1
minipass: 7.1.2
- package-json-from-dist: 1.0.0
+ package-json-from-dist: 1.0.1
path-scurry: 2.0.0
- glob@7.2.3:
- dependencies:
- fs.realpath: 1.0.0
- inflight: 1.0.6
- inherits: 2.0.4
- minimatch: 3.1.2
- once: 1.4.0
- path-is-absolute: 1.0.1
-
globals@11.12.0: {}
- globals@13.24.0:
- dependencies:
- type-fest: 0.20.2
+ globals@14.0.0: {}
- globalthis@1.0.3:
+ globalthis@1.0.4:
dependencies:
define-properties: 1.2.1
+ gopd: 1.2.0
globby@11.1.0:
dependencies:
@@ -5057,9 +4850,7 @@ snapshots:
merge2: 1.4.1
slash: 3.0.0
- gopd@1.0.1:
- dependencies:
- get-intrinsic: 1.2.2
+ gopd@1.2.0: {}
graceful-fs@4.2.11: {}
@@ -5078,25 +4869,27 @@ snapshots:
lodash.template: 4.5.0
through2: 2.0.5
- has-bigints@1.0.2: {}
+ has-bigints@1.1.0: {}
has-flag@3.0.0: {}
has-flag@4.0.0: {}
- has-property-descriptors@1.0.1:
+ has-property-descriptors@1.0.2:
dependencies:
- get-intrinsic: 1.2.2
+ es-define-property: 1.0.1
- has-proto@1.0.1: {}
+ has-proto@1.2.0:
+ dependencies:
+ dunder-proto: 1.0.1
- has-symbols@1.0.3: {}
+ has-symbols@1.1.0: {}
- has-tostringtag@1.0.0:
+ has-tostringtag@1.0.2:
dependencies:
- has-symbols: 1.0.3
+ has-symbols: 1.1.0
- hasown@2.0.0:
+ hasown@2.0.2:
dependencies:
function-bind: 1.1.2
@@ -5106,46 +4899,35 @@ snapshots:
human-id@1.0.2: {}
- human-signals@2.1.0: {}
-
- human-signals@5.0.0: {}
-
iconv-lite@0.4.24:
dependencies:
safer-buffer: 2.1.2
- ignore@5.3.0: {}
-
ignore@5.3.2: {}
- import-fresh@3.3.0:
+ import-fresh@3.3.1:
dependencies:
parent-module: 1.0.1
resolve-from: 4.0.0
imurmurhash@0.1.4: {}
- inflight@1.0.6:
- dependencies:
- once: 1.4.0
- wrappy: 1.0.2
-
inherits@2.0.4: {}
ini@4.1.3: {}
- internal-slot@1.0.6:
+ internal-slot@1.1.0:
dependencies:
- get-intrinsic: 1.2.2
- hasown: 2.0.0
- side-channel: 1.0.4
+ es-errors: 1.3.0
+ hasown: 2.0.2
+ side-channel: 1.1.0
io-ts-extra@0.11.6:
dependencies:
fp-ts: 2.16.9
- io-ts: 2.2.21(fp-ts@2.16.9)
+ io-ts: 2.2.22(fp-ts@2.16.9)
- io-ts@2.2.21(fp-ts@2.16.9):
+ io-ts@2.2.22(fp-ts@2.16.9):
dependencies:
fp-ts: 2.16.9
@@ -5156,42 +4938,53 @@ snapshots:
is-alphabetical: 1.0.4
is-decimal: 1.0.4
- is-array-buffer@3.0.2:
+ is-array-buffer@3.0.5:
dependencies:
- call-bind: 1.0.5
- get-intrinsic: 1.2.2
- is-typed-array: 1.1.12
+ call-bind: 1.0.8
+ call-bound: 1.0.3
+ get-intrinsic: 1.3.0
is-arrayish@0.2.1: {}
- is-bigint@1.0.4:
+ is-async-function@2.1.1:
dependencies:
- has-bigints: 1.0.2
+ async-function: 1.0.0
+ call-bound: 1.0.3
+ get-proto: 1.0.1
+ has-tostringtag: 1.0.2
+ safe-regex-test: 1.1.0
- is-binary-path@2.1.0:
+ is-bigint@1.1.0:
dependencies:
- binary-extensions: 2.3.0
+ has-bigints: 1.1.0
- is-boolean-object@1.1.2:
+ is-boolean-object@1.2.2:
dependencies:
- call-bind: 1.0.5
- has-tostringtag: 1.0.0
+ call-bound: 1.0.3
+ has-tostringtag: 1.0.2
is-buffer@1.1.6: {}
- is-bun-module@1.1.0:
+ is-bun-module@1.3.0:
dependencies:
- semver: 7.6.3
+ semver: 7.7.1
is-callable@1.2.7: {}
- is-core-module@2.13.1:
+ is-core-module@2.16.1:
+ dependencies:
+ hasown: 2.0.2
+
+ is-data-view@1.0.2:
dependencies:
- hasown: 2.0.0
+ call-bound: 1.0.3
+ get-intrinsic: 1.3.0
+ is-typed-array: 1.1.15
- is-date-object@1.0.5:
+ is-date-object@1.1.0:
dependencies:
- has-tostringtag: 1.0.0
+ call-bound: 1.0.3
+ has-tostringtag: 1.0.2
is-decimal@1.0.4: {}
@@ -5203,19 +4996,31 @@ snapshots:
is-extglob@2.1.1: {}
+ is-finalizationregistry@1.1.1:
+ dependencies:
+ call-bound: 1.0.3
+
is-fullwidth-code-point@3.0.0: {}
+ is-generator-function@1.1.0:
+ dependencies:
+ call-bound: 1.0.3
+ get-proto: 1.0.1
+ has-tostringtag: 1.0.2
+ safe-regex-test: 1.1.0
+
is-glob@4.0.3:
dependencies:
is-extglob: 2.1.1
is-hexadecimal@1.0.4: {}
- is-negative-zero@2.0.2: {}
+ is-map@2.0.3: {}
- is-number-object@1.0.7:
+ is-number-object@1.1.1:
dependencies:
- has-tostringtag: 1.0.0
+ call-bound: 1.0.3
+ has-tostringtag: 1.0.2
is-number@2.1.0:
dependencies:
@@ -5225,44 +5030,52 @@ snapshots:
is-number@7.0.0: {}
- is-path-inside@3.0.3: {}
-
is-plain-object@2.0.4:
dependencies:
isobject: 3.0.1
- is-regex@1.1.4:
- dependencies:
- call-bind: 1.0.5
- has-tostringtag: 1.0.0
-
- is-shared-array-buffer@1.0.2:
+ is-regex@1.2.1:
dependencies:
- call-bind: 1.0.5
+ call-bound: 1.0.3
+ gopd: 1.2.0
+ has-tostringtag: 1.0.2
+ hasown: 2.0.2
- is-stream@2.0.1: {}
+ is-set@2.0.3: {}
- is-stream@3.0.0: {}
+ is-shared-array-buffer@1.0.4:
+ dependencies:
+ call-bound: 1.0.3
- is-string@1.0.7:
+ is-string@1.1.1:
dependencies:
- has-tostringtag: 1.0.0
+ call-bound: 1.0.3
+ has-tostringtag: 1.0.2
is-subdir@1.2.0:
dependencies:
better-path-resolve: 1.0.0
- is-symbol@1.0.4:
+ is-symbol@1.1.1:
+ dependencies:
+ call-bound: 1.0.3
+ has-symbols: 1.1.0
+ safe-regex-test: 1.1.0
+
+ is-typed-array@1.1.15:
dependencies:
- has-symbols: 1.0.3
+ which-typed-array: 1.1.18
+
+ is-weakmap@2.0.2: {}
- is-typed-array@1.1.12:
+ is-weakref@1.1.1:
dependencies:
- which-typed-array: 1.1.13
+ call-bound: 1.0.3
- is-weakref@1.0.2:
+ is-weakset@2.0.4:
dependencies:
- call-bind: 1.0.5
+ call-bound: 1.0.3
+ get-intrinsic: 1.3.0
is-windows@1.0.2: {}
@@ -5289,7 +5102,7 @@ snapshots:
istanbul-lib-source-maps@5.0.6:
dependencies:
'@jridgewell/trace-mapping': 0.3.25
- debug: 4.3.6
+ debug: 4.4.0
istanbul-lib-coverage: 3.2.2
transitivePeerDependencies:
- supports-color
@@ -5299,23 +5112,15 @@ snapshots:
html-escaper: 2.0.2
istanbul-lib-report: 3.0.1
- jackspeak@2.3.6:
- dependencies:
- '@isaacs/cliui': 8.0.2
- optionalDependencies:
- '@pkgjs/parseargs': 0.11.0
-
jackspeak@3.4.3:
dependencies:
'@isaacs/cliui': 8.0.2
optionalDependencies:
'@pkgjs/parseargs': 0.11.0
- jackspeak@4.0.1:
+ jackspeak@4.1.0:
dependencies:
'@isaacs/cliui': 8.0.2
- optionalDependencies:
- '@pkgjs/parseargs': 0.11.0
jest-diff@29.7.0:
dependencies:
@@ -5335,7 +5140,7 @@ snapshots:
jest-message-util@29.7.0:
dependencies:
- '@babel/code-frame': 7.24.7
+ '@babel/code-frame': 7.26.2
'@jest/types': 29.6.3
'@types/stack-utils': 2.0.3
chalk: 4.1.2
@@ -5348,7 +5153,7 @@ snapshots:
jest-util@29.7.0:
dependencies:
'@jest/types': 29.6.3
- '@types/node': 22.5.2
+ '@types/node': 22.13.9
chalk: 4.1.2
ci-info: 3.9.0
graceful-fs: 4.2.11
@@ -5369,6 +5174,8 @@ snapshots:
jsesc@2.5.2: {}
+ jsesc@3.1.0: {}
+
json-buffer@3.0.1: {}
json-parse-even-better-errors@2.3.1: {}
@@ -5408,7 +5215,7 @@ snapshots:
prelude-ls: 1.2.1
type-check: 0.4.0
- lilconfig@3.1.2: {}
+ lilconfig@3.1.3: {}
lines-and-columns@1.2.4: {}
@@ -5455,15 +5262,11 @@ snapshots:
lodash@4.17.21: {}
- loupe@3.1.1:
- dependencies:
- get-func-name: 2.0.2
-
- lru-cache@10.2.0: {}
+ loupe@3.1.3: {}
lru-cache@10.4.3: {}
- lru-cache@11.0.0: {}
+ lru-cache@11.0.2: {}
lru-cache@4.1.5:
dependencies:
@@ -5474,22 +5277,24 @@ snapshots:
dependencies:
yallist: 3.1.1
- magic-string@0.30.11:
+ magic-string@0.30.17:
dependencies:
'@jridgewell/sourcemap-codec': 1.5.0
magicast@0.3.5:
dependencies:
- '@babel/parser': 7.25.6
- '@babel/types': 7.25.6
- source-map-js: 1.2.0
+ '@babel/parser': 7.26.9
+ '@babel/types': 7.26.9
+ source-map-js: 1.2.1
make-dir@4.0.0:
dependencies:
- semver: 7.6.3
+ semver: 7.7.1
markdown-link@0.1.1: {}
+ math-intrinsics@1.1.0: {}
+
math-random@1.0.4: {}
mdast-util-from-markdown@0.8.5:
@@ -5504,13 +5309,11 @@ snapshots:
mdast-util-to-string@2.0.0: {}
- merge-stream@2.0.0: {}
-
merge2@1.4.1: {}
micromark@2.11.4:
dependencies:
- debug: 4.3.6
+ debug: 4.4.0
parse-entities: 2.0.0
transitivePeerDependencies:
- supports-color
@@ -5522,10 +5325,6 @@ snapshots:
mime@3.0.0: {}
- mimic-fn@2.1.0: {}
-
- mimic-fn@4.0.0: {}
-
minimatch@10.0.1:
dependencies:
brace-expansion: 2.0.1
@@ -5544,8 +5343,6 @@ snapshots:
minimist@1.2.8: {}
- minipass@7.0.4: {}
-
minipass@7.1.2: {}
mixin-deep@1.3.2:
@@ -5553,12 +5350,8 @@ snapshots:
for-in: 1.0.2
is-extendable: 1.0.1
- mkdirp@3.0.1: {}
-
mri@1.2.0: {}
- ms@2.1.2: {}
-
ms@2.1.3: {}
multipasta@0.2.5: {}
@@ -5569,7 +5362,7 @@ snapshots:
object-assign: 4.1.1
thenify-all: 1.6.0
- nanoid@3.3.7: {}
+ nanoid@3.3.8: {}
natural-compare-lite@1.4.0: {}
@@ -5581,86 +5374,73 @@ snapshots:
dependencies:
whatwg-url: 5.0.0
- node-releases@2.0.18: {}
+ node-releases@2.0.19: {}
normalize-package-data@2.5.0:
dependencies:
hosted-git-info: 2.8.9
- resolve: 1.22.8
+ resolve: 1.22.10
semver: 5.7.2
validate-npm-package-license: 3.0.4
- normalize-path@3.0.0: {}
-
- npm-run-path@4.0.1:
- dependencies:
- path-key: 3.1.1
-
- npm-run-path@5.3.0:
- dependencies:
- path-key: 4.0.0
-
object-assign@4.1.1: {}
- object-inspect@1.13.1: {}
+ object-inspect@1.13.4: {}
object-keys@1.1.1: {}
- object.assign@4.1.5:
+ object.assign@4.1.7:
dependencies:
- call-bind: 1.0.5
+ call-bind: 1.0.8
+ call-bound: 1.0.3
define-properties: 1.2.1
- has-symbols: 1.0.3
+ es-object-atoms: 1.1.1
+ has-symbols: 1.1.0
object-keys: 1.1.1
- object.fromentries@2.0.7:
+ object.fromentries@2.0.8:
dependencies:
- call-bind: 1.0.5
+ call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.22.3
+ es-abstract: 1.23.9
+ es-object-atoms: 1.1.1
- object.groupby@1.0.1:
+ object.groupby@1.0.3:
dependencies:
- call-bind: 1.0.5
+ call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.22.3
- get-intrinsic: 1.2.2
+ es-abstract: 1.23.9
object.pick@1.3.0:
dependencies:
isobject: 3.0.1
- object.values@1.1.7:
+ object.values@1.2.1:
dependencies:
- call-bind: 1.0.5
+ call-bind: 1.0.8
+ call-bound: 1.0.3
define-properties: 1.2.1
- es-abstract: 1.22.3
-
- once@1.4.0:
- dependencies:
- wrappy: 1.0.2
-
- onetime@5.1.2:
- dependencies:
- mimic-fn: 2.1.0
+ es-object-atoms: 1.1.1
- onetime@6.0.0:
+ optionator@0.9.4:
dependencies:
- mimic-fn: 4.0.0
-
- optionator@0.9.3:
- dependencies:
- '@aashutoshrathi/word-wrap': 1.2.6
deep-is: 0.1.4
fast-levenshtein: 2.0.6
levn: 0.4.1
prelude-ls: 1.2.1
type-check: 0.4.0
+ word-wrap: 1.2.5
os-tmpdir@1.0.2: {}
outdent@0.5.0: {}
+ own-keys@1.0.1:
+ dependencies:
+ get-intrinsic: 1.3.0
+ object-keys: 1.1.1
+ safe-push-apply: 1.0.0
+
p-filter@2.1.0:
dependencies:
p-map: 2.1.0
@@ -5687,6 +5467,8 @@ snapshots:
package-json-from-dist@1.0.0: {}
+ package-json-from-dist@1.0.1: {}
+
parent-module@1.0.1:
dependencies:
callsites: 3.1.0
@@ -5702,7 +5484,7 @@ snapshots:
parse-json@5.2.0:
dependencies:
- '@babel/code-frame': 7.24.7
+ '@babel/code-frame': 7.26.2
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
@@ -5711,19 +5493,10 @@ snapshots:
path-exists@4.0.0: {}
- path-is-absolute@1.0.1: {}
-
path-key@3.1.1: {}
- path-key@4.0.0: {}
-
path-parse@1.0.7: {}
- path-scurry@1.10.2:
- dependencies:
- lru-cache: 10.2.0
- minipass: 7.0.4
-
path-scurry@1.11.1:
dependencies:
lru-cache: 10.4.3
@@ -5731,19 +5504,21 @@ snapshots:
path-scurry@2.0.0:
dependencies:
- lru-cache: 11.0.0
+ lru-cache: 11.0.2
minipass: 7.1.2
path-type@4.0.0: {}
- pathe@1.1.2: {}
+ pathe@2.0.3: {}
pathval@2.0.0: {}
- picocolors@1.0.1: {}
+ picocolors@1.1.1: {}
picomatch@2.3.1: {}
+ picomatch@4.0.2: {}
+
pify@4.0.1: {}
pirates@4.0.6: {}
@@ -5752,19 +5527,21 @@ snapshots:
dependencies:
find-up: 4.1.0
- postcss-load-config@6.0.1(postcss@8.4.44)(tsx@4.19.0)(yaml@2.5.0):
+ possible-typed-array-names@1.1.0: {}
+
+ postcss-load-config@6.0.1(postcss@8.5.3)(tsx@4.19.3)(yaml@2.7.0):
dependencies:
- lilconfig: 3.1.2
+ lilconfig: 3.1.3
optionalDependencies:
- postcss: 8.4.44
- tsx: 4.19.0
- yaml: 2.5.0
+ postcss: 8.5.3
+ tsx: 4.19.3
+ yaml: 2.7.0
- postcss@8.4.44:
+ postcss@8.5.3:
dependencies:
- nanoid: 3.3.7
- picocolors: 1.0.1
- source-map-js: 1.2.0
+ nanoid: 3.3.8
+ picocolors: 1.1.1
+ source-map-js: 1.2.1
preferred-pm@3.1.4:
dependencies:
@@ -5781,7 +5558,7 @@ snapshots:
prettier@2.8.8: {}
- prettier@3.2.5: {}
+ prettier@3.5.3: {}
pretty-format@29.7.0:
dependencies:
@@ -5837,17 +5614,29 @@ snapshots:
string_decoder: 1.1.1
util-deprecate: 1.0.2
- readdirp@3.6.0:
+ readdirp@4.1.2: {}
+
+ reflect.getprototypeof@1.0.10:
dependencies:
- picomatch: 2.3.1
+ call-bind: 1.0.8
+ define-properties: 1.2.1
+ es-abstract: 1.23.9
+ es-errors: 1.3.0
+ es-object-atoms: 1.1.1
+ get-intrinsic: 1.3.0
+ get-proto: 1.0.1
+ which-builtin-type: 1.2.1
regenerator-runtime@0.14.1: {}
- regexp.prototype.flags@1.5.1:
+ regexp.prototype.flags@1.5.4:
dependencies:
- call-bind: 1.0.5
+ call-bind: 1.0.8
define-properties: 1.2.1
- set-function-name: 2.0.1
+ es-errors: 1.3.0
+ get-proto: 1.0.1
+ gopd: 1.2.0
+ set-function-name: 2.0.2
remarkable@1.7.4:
dependencies:
@@ -5864,63 +5653,68 @@ snapshots:
resolve-pkg-maps@1.0.0: {}
- resolve@1.22.8:
+ resolve@1.22.10:
dependencies:
- is-core-module: 2.13.1
+ is-core-module: 2.16.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
reusify@1.0.4: {}
- rimraf@3.0.2:
- dependencies:
- glob: 7.2.3
-
rimraf@6.0.1:
dependencies:
- glob: 11.0.0
+ glob: 11.0.1
package-json-from-dist: 1.0.0
- rollup@4.21.2:
+ rollup@4.34.8:
dependencies:
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.21.2
- '@rollup/rollup-android-arm64': 4.21.2
- '@rollup/rollup-darwin-arm64': 4.21.2
- '@rollup/rollup-darwin-x64': 4.21.2
- '@rollup/rollup-linux-arm-gnueabihf': 4.21.2
- '@rollup/rollup-linux-arm-musleabihf': 4.21.2
- '@rollup/rollup-linux-arm64-gnu': 4.21.2
- '@rollup/rollup-linux-arm64-musl': 4.21.2
- '@rollup/rollup-linux-powerpc64le-gnu': 4.21.2
- '@rollup/rollup-linux-riscv64-gnu': 4.21.2
- '@rollup/rollup-linux-s390x-gnu': 4.21.2
- '@rollup/rollup-linux-x64-gnu': 4.21.2
- '@rollup/rollup-linux-x64-musl': 4.21.2
- '@rollup/rollup-win32-arm64-msvc': 4.21.2
- '@rollup/rollup-win32-ia32-msvc': 4.21.2
- '@rollup/rollup-win32-x64-msvc': 4.21.2
+ '@rollup/rollup-android-arm-eabi': 4.34.8
+ '@rollup/rollup-android-arm64': 4.34.8
+ '@rollup/rollup-darwin-arm64': 4.34.8
+ '@rollup/rollup-darwin-x64': 4.34.8
+ '@rollup/rollup-freebsd-arm64': 4.34.8
+ '@rollup/rollup-freebsd-x64': 4.34.8
+ '@rollup/rollup-linux-arm-gnueabihf': 4.34.8
+ '@rollup/rollup-linux-arm-musleabihf': 4.34.8
+ '@rollup/rollup-linux-arm64-gnu': 4.34.8
+ '@rollup/rollup-linux-arm64-musl': 4.34.8
+ '@rollup/rollup-linux-loongarch64-gnu': 4.34.8
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.34.8
+ '@rollup/rollup-linux-riscv64-gnu': 4.34.8
+ '@rollup/rollup-linux-s390x-gnu': 4.34.8
+ '@rollup/rollup-linux-x64-gnu': 4.34.8
+ '@rollup/rollup-linux-x64-musl': 4.34.8
+ '@rollup/rollup-win32-arm64-msvc': 4.34.8
+ '@rollup/rollup-win32-ia32-msvc': 4.34.8
+ '@rollup/rollup-win32-x64-msvc': 4.34.8
fsevents: 2.3.3
run-parallel@1.2.0:
dependencies:
queue-microtask: 1.2.3
- safe-array-concat@1.0.1:
+ safe-array-concat@1.1.3:
dependencies:
- call-bind: 1.0.5
- get-intrinsic: 1.2.2
- has-symbols: 1.0.3
+ call-bind: 1.0.8
+ call-bound: 1.0.3
+ get-intrinsic: 1.3.0
+ has-symbols: 1.1.0
isarray: 2.0.5
safe-buffer@5.1.2: {}
- safe-regex-test@1.0.0:
+ safe-push-apply@1.0.0:
+ dependencies:
+ es-errors: 1.3.0
+ isarray: 2.0.5
+
+ safe-regex-test@1.1.0:
dependencies:
- call-bind: 1.0.5
- get-intrinsic: 1.2.2
- is-regex: 1.1.4
+ call-bound: 1.0.3
+ es-errors: 1.3.0
+ is-regex: 1.2.1
safer-buffer@2.1.2: {}
@@ -5930,23 +5724,34 @@ snapshots:
semver@7.6.3: {}
- set-function-length@1.1.1:
+ semver@7.7.1: {}
+
+ set-function-length@1.2.2:
dependencies:
- define-data-property: 1.1.1
- get-intrinsic: 1.2.2
- gopd: 1.0.1
- has-property-descriptors: 1.0.1
+ define-data-property: 1.1.4
+ es-errors: 1.3.0
+ function-bind: 1.1.2
+ get-intrinsic: 1.3.0
+ gopd: 1.2.0
+ has-property-descriptors: 1.0.2
- set-function-name@2.0.1:
+ set-function-name@2.0.2:
dependencies:
- define-data-property: 1.1.1
+ define-data-property: 1.1.4
+ es-errors: 1.3.0
functions-have-names: 1.2.3
- has-property-descriptors: 1.0.1
+ has-property-descriptors: 1.0.2
set-getter@0.1.1:
dependencies:
to-object-path: 0.3.0
+ set-proto@1.0.0:
+ dependencies:
+ dunder-proto: 1.0.1
+ es-errors: 1.3.0
+ es-object-atoms: 1.1.1
+
shebang-command@1.2.0:
dependencies:
shebang-regex: 1.0.0
@@ -5959,11 +5764,33 @@ snapshots:
shebang-regex@3.0.0: {}
- side-channel@1.0.4:
+ side-channel-list@1.0.0:
dependencies:
- call-bind: 1.0.5
- get-intrinsic: 1.2.2
- object-inspect: 1.13.1
+ es-errors: 1.3.0
+ object-inspect: 1.13.4
+
+ side-channel-map@1.0.1:
+ dependencies:
+ call-bound: 1.0.3
+ es-errors: 1.3.0
+ get-intrinsic: 1.3.0
+ object-inspect: 1.13.4
+
+ side-channel-weakmap@1.0.2:
+ dependencies:
+ call-bound: 1.0.3
+ es-errors: 1.3.0
+ get-intrinsic: 1.3.0
+ object-inspect: 1.13.4
+ side-channel-map: 1.0.1
+
+ side-channel@1.1.0:
+ dependencies:
+ es-errors: 1.3.0
+ object-inspect: 1.13.4
+ side-channel-list: 1.0.0
+ side-channel-map: 1.0.1
+ side-channel-weakmap: 1.0.2
siginfo@2.0.0: {}
@@ -5973,7 +5800,7 @@ snapshots:
slash@3.0.0: {}
- source-map-js@1.2.0: {}
+ source-map-js@1.2.1: {}
source-map@0.5.7: {}
@@ -5991,26 +5818,28 @@ snapshots:
spdx-correct@3.2.0:
dependencies:
spdx-expression-parse: 3.0.1
- spdx-license-ids: 3.0.20
+ spdx-license-ids: 3.0.21
spdx-exceptions@2.5.0: {}
spdx-expression-parse@3.0.1:
dependencies:
spdx-exceptions: 2.5.0
- spdx-license-ids: 3.0.20
+ spdx-license-ids: 3.0.21
- spdx-license-ids@3.0.20: {}
+ spdx-license-ids@3.0.21: {}
sprintf-js@1.0.3: {}
+ stable-hash@0.0.4: {}
+
stack-utils@2.0.6:
dependencies:
escape-string-regexp: 2.0.0
stackback@0.0.2: {}
- std-env@3.7.0: {}
+ std-env@3.8.0: {}
string-width@4.2.3:
dependencies:
@@ -6024,23 +5853,28 @@ snapshots:
emoji-regex: 9.2.2
strip-ansi: 7.1.0
- string.prototype.trim@1.2.8:
+ string.prototype.trim@1.2.10:
dependencies:
- call-bind: 1.0.5
+ call-bind: 1.0.8
+ call-bound: 1.0.3
+ define-data-property: 1.1.4
define-properties: 1.2.1
- es-abstract: 1.22.3
+ es-abstract: 1.23.9
+ es-object-atoms: 1.1.1
+ has-property-descriptors: 1.0.2
- string.prototype.trimend@1.0.7:
+ string.prototype.trimend@1.0.9:
dependencies:
- call-bind: 1.0.5
+ call-bind: 1.0.8
+ call-bound: 1.0.3
define-properties: 1.2.1
- es-abstract: 1.22.3
+ es-object-atoms: 1.1.1
- string.prototype.trimstart@1.0.7:
+ string.prototype.trimstart@1.0.8:
dependencies:
- call-bind: 1.0.5
+ call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.22.3
+ es-object-atoms: 1.1.1
string_decoder@1.1.1:
dependencies:
@@ -6052,7 +5886,7 @@ snapshots:
strip-ansi@7.1.0:
dependencies:
- ansi-regex: 6.0.1
+ ansi-regex: 6.1.0
strip-bom-string@1.0.0: {}
@@ -6060,17 +5894,13 @@ snapshots:
strip-color@0.1.0: {}
- strip-final-newline@2.0.0: {}
-
- strip-final-newline@3.0.0: {}
-
strip-json-comments@3.1.1: {}
sucrase@3.35.0:
dependencies:
- '@jridgewell/gen-mapping': 0.3.5
+ '@jridgewell/gen-mapping': 0.3.8
commander: 4.1.1
- glob: 10.3.12
+ glob: 10.4.5
lines-and-columns: 1.2.4
mz: 2.7.0
pirates: 4.0.6
@@ -6096,8 +5926,6 @@ snapshots:
glob: 10.4.5
minimatch: 9.0.5
- text-table@0.2.0: {}
-
thenify-all@1.6.0:
dependencies:
thenify: 3.3.1
@@ -6113,18 +5941,23 @@ snapshots:
tinybench@2.9.0: {}
- tinypool@1.0.1: {}
+ tinyexec@0.3.2: {}
+
+ tinyglobby@0.2.12:
+ dependencies:
+ fdir: 6.4.3(picomatch@4.0.2)
+ picomatch: 4.0.2
+
+ tinypool@1.0.2: {}
- tinyrainbow@1.2.0: {}
+ tinyrainbow@2.0.0: {}
- tinyspy@3.0.0: {}
+ tinyspy@3.0.2: {}
tmp@0.0.33:
dependencies:
os-tmpdir: 1.0.2
- to-fast-properties@2.0.0: {}
-
to-object-path@0.3.0:
dependencies:
kind-of: 3.2.2
@@ -6143,20 +5976,20 @@ snapshots:
tree-kill@1.2.2: {}
- ts-api-utils@1.3.0(typescript@5.5.4):
+ ts-api-utils@2.0.1(typescript@5.8.2):
dependencies:
- typescript: 5.5.4
+ typescript: 5.8.2
ts-interface-checker@0.1.13: {}
- ts-morph@23.0.0:
+ ts-morph@25.0.1:
dependencies:
- '@ts-morph/common': 0.24.0
- code-block-writer: 13.0.2
+ '@ts-morph/common': 0.26.1
+ code-block-writer: 13.0.3
- tsconfck@3.1.3(typescript@5.5.4):
+ tsconfck@3.1.5(typescript@5.8.2):
optionalDependencies:
- typescript: 5.5.4
+ typescript: 5.8.2
tsconfig-paths@3.15.0:
dependencies:
@@ -6165,39 +5998,37 @@ snapshots:
minimist: 1.2.8
strip-bom: 3.0.0
- tslib@2.7.0: {}
-
- tsup@8.2.4(postcss@8.4.44)(tsx@4.19.0)(typescript@5.5.4)(yaml@2.5.0):
+ tsup@8.4.0(postcss@8.5.3)(tsx@4.19.3)(typescript@5.8.2)(yaml@2.7.0):
dependencies:
- bundle-require: 5.0.0(esbuild@0.23.1)
+ bundle-require: 5.1.0(esbuild@0.25.0)
cac: 6.7.14
- chokidar: 3.6.0
- consola: 3.2.3
- debug: 4.3.6
- esbuild: 0.23.1
- execa: 5.1.1
- globby: 11.1.0
+ chokidar: 4.0.3
+ consola: 3.4.0
+ debug: 4.4.0
+ esbuild: 0.25.0
joycon: 3.1.1
- picocolors: 1.0.1
- postcss-load-config: 6.0.1(postcss@8.4.44)(tsx@4.19.0)(yaml@2.5.0)
+ picocolors: 1.1.1
+ postcss-load-config: 6.0.1(postcss@8.5.3)(tsx@4.19.3)(yaml@2.7.0)
resolve-from: 5.0.0
- rollup: 4.21.2
+ rollup: 4.34.8
source-map: 0.8.0-beta.0
sucrase: 3.35.0
+ tinyexec: 0.3.2
+ tinyglobby: 0.2.12
tree-kill: 1.2.2
optionalDependencies:
- postcss: 8.4.44
- typescript: 5.5.4
+ postcss: 8.5.3
+ typescript: 5.8.2
transitivePeerDependencies:
- jiti
- supports-color
- tsx
- yaml
- tsx@4.19.0:
+ tsx@4.19.3:
dependencies:
- esbuild: 0.23.1
- get-tsconfig: 4.8.0
+ esbuild: 0.25.0
+ get-tsconfig: 4.10.0
optionalDependencies:
fsevents: 2.3.3
@@ -6205,53 +6036,59 @@ snapshots:
dependencies:
prelude-ls: 1.2.1
- type-fest@0.20.2: {}
-
type-fest@0.6.0: {}
type-fest@0.8.1: {}
- typed-array-buffer@1.0.0:
+ typed-array-buffer@1.0.3:
dependencies:
- call-bind: 1.0.5
- get-intrinsic: 1.2.2
- is-typed-array: 1.1.12
+ call-bound: 1.0.3
+ es-errors: 1.3.0
+ is-typed-array: 1.1.15
- typed-array-byte-length@1.0.0:
+ typed-array-byte-length@1.0.3:
dependencies:
- call-bind: 1.0.5
- for-each: 0.3.3
- has-proto: 1.0.1
- is-typed-array: 1.1.12
+ call-bind: 1.0.8
+ for-each: 0.3.5
+ gopd: 1.2.0
+ has-proto: 1.2.0
+ is-typed-array: 1.1.15
- typed-array-byte-offset@1.0.0:
+ typed-array-byte-offset@1.0.4:
dependencies:
- available-typed-arrays: 1.0.5
- call-bind: 1.0.5
- for-each: 0.3.3
- has-proto: 1.0.1
- is-typed-array: 1.1.12
+ available-typed-arrays: 1.0.7
+ call-bind: 1.0.8
+ for-each: 0.3.5
+ gopd: 1.2.0
+ has-proto: 1.2.0
+ is-typed-array: 1.1.15
+ reflect.getprototypeof: 1.0.10
- typed-array-length@1.0.4:
+ typed-array-length@1.0.7:
dependencies:
- call-bind: 1.0.5
- for-each: 0.3.3
- is-typed-array: 1.1.12
+ call-bind: 1.0.8
+ for-each: 0.3.5
+ gopd: 1.2.0
+ is-typed-array: 1.1.15
+ possible-typed-array-names: 1.1.0
+ reflect.getprototypeof: 1.0.10
typedarray@0.0.6: {}
- typescript@5.5.4: {}
+ typescript@5.8.2: {}
- unbox-primitive@1.0.2:
+ unbox-primitive@1.1.0:
dependencies:
- call-bind: 1.0.5
- has-bigints: 1.0.2
- has-symbols: 1.0.3
- which-boxed-primitive: 1.0.2
+ call-bound: 1.0.3
+ has-bigints: 1.1.0
+ has-symbols: 1.1.0
+ which-boxed-primitive: 1.1.1
undici-types@6.19.8: {}
- undici@6.19.8: {}
+ undici-types@6.20.0: {}
+
+ undici@7.3.0: {}
unist-util-stringify-position@2.0.3:
dependencies:
@@ -6259,11 +6096,11 @@ snapshots:
universalify@0.1.2: {}
- update-browserslist-db@1.1.0(browserslist@4.23.3):
+ update-browserslist-db@1.1.3(browserslist@4.24.4):
dependencies:
- browserslist: 4.23.3
+ browserslist: 4.24.4
escalade: 3.2.0
- picocolors: 1.0.1
+ picocolors: 1.1.1
uri-js@4.4.1:
dependencies:
@@ -6276,15 +6113,16 @@ snapshots:
spdx-correct: 3.2.0
spdx-expression-parse: 3.0.1
- vite-node@2.0.5(@types/node@22.5.2):
+ vite-node@3.0.8(@types/node@22.13.9)(tsx@4.19.3)(yaml@2.7.0):
dependencies:
cac: 6.7.14
- debug: 4.3.6
- pathe: 1.1.2
- tinyrainbow: 1.2.0
- vite: 5.4.2(@types/node@22.5.2)
+ debug: 4.4.0
+ es-module-lexer: 1.6.0
+ pathe: 2.0.3
+ vite: 6.2.1(@types/node@22.13.9)(tsx@4.19.3)(yaml@2.7.0)
transitivePeerDependencies:
- '@types/node'
+ - jiti
- less
- lightningcss
- sass
@@ -6293,48 +6131,57 @@ snapshots:
- sugarss
- supports-color
- terser
+ - tsx
+ - yaml
- vite@5.4.2(@types/node@22.5.2):
+ vite@6.2.1(@types/node@22.13.9)(tsx@4.19.3)(yaml@2.7.0):
dependencies:
- esbuild: 0.21.5
- postcss: 8.4.44
- rollup: 4.21.2
+ esbuild: 0.25.0
+ postcss: 8.5.3
+ rollup: 4.34.8
optionalDependencies:
- '@types/node': 22.5.2
+ '@types/node': 22.13.9
fsevents: 2.3.3
-
- vitest@2.0.5(@types/node@22.5.2):
- dependencies:
- '@ampproject/remapping': 2.3.0
- '@vitest/expect': 2.0.5
- '@vitest/pretty-format': 2.0.5
- '@vitest/runner': 2.0.5
- '@vitest/snapshot': 2.0.5
- '@vitest/spy': 2.0.5
- '@vitest/utils': 2.0.5
- chai: 5.1.1
- debug: 4.3.6
- execa: 8.0.1
- magic-string: 0.30.11
- pathe: 1.1.2
- std-env: 3.7.0
+ tsx: 4.19.3
+ yaml: 2.7.0
+
+ vitest@3.0.8(@types/node@22.13.9)(tsx@4.19.3)(yaml@2.7.0):
+ dependencies:
+ '@vitest/expect': 3.0.8
+ '@vitest/mocker': 3.0.8(vite@6.2.1(@types/node@22.13.9)(tsx@4.19.3)(yaml@2.7.0))
+ '@vitest/pretty-format': 3.0.8
+ '@vitest/runner': 3.0.8
+ '@vitest/snapshot': 3.0.8
+ '@vitest/spy': 3.0.8
+ '@vitest/utils': 3.0.8
+ chai: 5.2.0
+ debug: 4.4.0
+ expect-type: 1.1.0
+ magic-string: 0.30.17
+ pathe: 2.0.3
+ std-env: 3.8.0
tinybench: 2.9.0
- tinypool: 1.0.1
- tinyrainbow: 1.2.0
- vite: 5.4.2(@types/node@22.5.2)
- vite-node: 2.0.5(@types/node@22.5.2)
+ tinyexec: 0.3.2
+ tinypool: 1.0.2
+ tinyrainbow: 2.0.0
+ vite: 6.2.1(@types/node@22.13.9)(tsx@4.19.3)(yaml@2.7.0)
+ vite-node: 3.0.8(@types/node@22.13.9)(tsx@4.19.3)(yaml@2.7.0)
why-is-node-running: 2.3.0
optionalDependencies:
- '@types/node': 22.5.2
+ '@types/node': 22.13.9
transitivePeerDependencies:
+ - jiti
- less
- lightningcss
+ - msw
- sass
- sass-embedded
- stylus
- sugarss
- supports-color
- terser
+ - tsx
+ - yaml
webidl-conversions@3.0.1: {}
@@ -6351,26 +6198,50 @@ snapshots:
tr46: 1.0.1
webidl-conversions: 4.0.2
- which-boxed-primitive@1.0.2:
+ which-boxed-primitive@1.1.1:
+ dependencies:
+ is-bigint: 1.1.0
+ is-boolean-object: 1.2.2
+ is-number-object: 1.1.1
+ is-string: 1.1.1
+ is-symbol: 1.1.1
+
+ which-builtin-type@1.2.1:
+ dependencies:
+ call-bound: 1.0.3
+ function.prototype.name: 1.1.8
+ has-tostringtag: 1.0.2
+ is-async-function: 2.1.1
+ is-date-object: 1.1.0
+ is-finalizationregistry: 1.1.1
+ is-generator-function: 1.1.0
+ is-regex: 1.2.1
+ is-weakref: 1.1.1
+ isarray: 2.0.5
+ which-boxed-primitive: 1.1.1
+ which-collection: 1.0.2
+ which-typed-array: 1.1.18
+
+ which-collection@1.0.2:
dependencies:
- is-bigint: 1.0.4
- is-boolean-object: 1.1.2
- is-number-object: 1.0.7
- is-string: 1.0.7
- is-symbol: 1.0.4
+ is-map: 2.0.3
+ is-set: 2.0.3
+ is-weakmap: 2.0.2
+ is-weakset: 2.0.4
which-pm@2.2.0:
dependencies:
load-yaml-file: 0.2.0
path-exists: 4.0.0
- which-typed-array@1.1.13:
+ which-typed-array@1.1.18:
dependencies:
- available-typed-arrays: 1.0.5
- call-bind: 1.0.5
- for-each: 0.3.3
- gopd: 1.0.1
- has-tostringtag: 1.0.0
+ available-typed-arrays: 1.0.7
+ call-bind: 1.0.8
+ call-bound: 1.0.3
+ for-each: 0.3.5
+ gopd: 1.2.0
+ has-tostringtag: 1.0.2
which@1.3.1:
dependencies:
@@ -6385,6 +6256,8 @@ snapshots:
siginfo: 2.0.0
stackback: 0.0.2
+ word-wrap@1.2.5: {}
+
wrap-ansi@7.0.0:
dependencies:
ansi-styles: 4.3.0
@@ -6397,9 +6270,7 @@ snapshots:
string-width: 5.1.2
strip-ansi: 7.1.0
- wrappy@1.0.2: {}
-
- ws@8.18.0: {}
+ ws@8.18.1: {}
xtend@4.0.2: {}
@@ -6407,6 +6278,6 @@ snapshots:
yallist@3.1.1: {}
- yaml@2.5.0: {}
+ yaml@2.7.0: {}
yocto-queue@0.1.0: {}
diff --git a/schema.json b/schema.json
index e49e438..9d9dcce 100644
--- a/schema.json
+++ b/schema.json
@@ -1,6 +1,5 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
- "$ref": "#/$defs/ConfigurationSchema",
"$defs": {
"ConfigurationSchema": {
"type": "object",
@@ -13,6 +12,10 @@
"type": "string",
"description": "Will link to the project homepage from the Auxiliary Links of the generated documentation."
},
+ "srcLink": {
+ "type": "string",
+ "description": "Will link to the project source code."
+ },
"srcDir": {
"type": "string",
"description": "The directory in which docgen will search for TypeScript files to parse.",
@@ -48,6 +51,16 @@
"description": "Whether or not @since tags for each module export should be required.",
"default": true
},
+ "tscExecutable": {
+ "type": "string",
+ "description": "The path to the TypeScript compiler executable that docgen should use when invoking the compiler programmatically.",
+ "default": "tsc"
+ },
+ "runExamples": {
+ "type": "boolean",
+ "description": "Whether or not docgen should attempt to run example code snippets and include the output in the generated documentation.",
+ "default": false
+ },
"exclude": {
"type": "array",
"items": {
@@ -65,11 +78,9 @@
"type": "object",
"required": [],
"properties": {},
- "patternProperties": {
- "": {
- "$id": "/schemas/unknown",
- "title": "unknown"
- }
+ "additionalProperties": {
+ "$id": "/schemas/unknown",
+ "title": "unknown"
}
}
],
@@ -85,11 +96,9 @@
"type": "object",
"required": [],
"properties": {},
- "patternProperties": {
- "": {
- "$id": "/schemas/unknown",
- "title": "unknown"
- }
+ "additionalProperties": {
+ "$id": "/schemas/unknown",
+ "title": "unknown"
}
}
],
@@ -99,5 +108,6 @@
},
"additionalProperties": false
}
- }
+ },
+ "$ref": "#/$defs/ConfigurationSchema"
}
\ No newline at end of file
diff --git a/scripts/copy-package-json.ts b/scripts/copy-package-json.ts
index 3ddfa90..3549b4c 100644
--- a/scripts/copy-package-json.ts
+++ b/scripts/copy-package-json.ts
@@ -1,14 +1,14 @@
import { FileSystem, Path } from "@effect/platform"
import { NodeFileSystem, NodePath } from "@effect/platform-node"
-import { Effect, Layer } from "effect"
+import { Effect, Layer, pipe } from "effect"
-const program = Effect.gen(function*(_) {
- const fs = yield* _(FileSystem.FileSystem)
- const path = yield* _(Path.Path)
- yield* _(Effect.log(`[Build] Copying schema.json ...`))
- yield* _(fs.copyFile("schema.json", path.join("dist", "schema.json")))
- yield* _(Effect.log(`[Build] Copying package.json ...`))
- const json: any = yield* _(fs.readFileString("package.json"), Effect.map(JSON.parse))
+const program = Effect.gen(function*() {
+ const fs = yield* FileSystem.FileSystem
+ const path = yield* Path.Path
+ yield* Effect.log(`[Build] Copying schema.json ...`)
+ yield* fs.copyFile("schema.json", path.join("dist", "schema.json"))
+ yield* Effect.log(`[Build] Copying package.json ...`)
+ const json: any = yield* pipe(fs.readFileString("package.json"), Effect.map(JSON.parse))
const pkg = {
name: json.name,
version: json.version,
@@ -27,8 +27,8 @@ const program = Effect.gen(function*(_) {
tags: json.tags,
keywords: json.keywords
}
- yield* _(fs.writeFileString(path.join("dist", "package.json"), JSON.stringify(pkg, null, 2)))
- yield* _(Effect.log("[Build] Build completed."))
+ yield* fs.writeFileString(path.join("dist", "package.json"), JSON.stringify(pkg, null, 2))
+ yield* Effect.log("[Build] Build completed.")
}).pipe(
Effect.provide(Layer.merge(NodeFileSystem.layer, NodePath.layerPosix))
)
diff --git a/scripts/gen-schema.ts b/scripts/gen-schema.ts
index a60a2a9..aa58820 100644
--- a/scripts/gen-schema.ts
+++ b/scripts/gen-schema.ts
@@ -1,16 +1,15 @@
import { ConfigurationSchema } from "@effect/docgen/Configuration"
import { FileSystem } from "@effect/platform"
import { NodeFileSystem, NodeRuntime } from "@effect/platform-node"
-import { JSONSchema } from "@effect/schema"
-import { Effect } from "effect"
+import { Effect, JSONSchema } from "effect"
const jsonSchema = JSON.stringify(JSONSchema.make(ConfigurationSchema), null, 2)
-const program = Effect.gen(function*(_) {
- const fs = yield* _(FileSystem.FileSystem)
- yield* _(Effect.log("Writing config schema"))
- yield* _(fs.writeFileString("schema.json", jsonSchema))
- yield* _(Effect.log("Wrote schema to ./schema.json"))
+const program = Effect.gen(function*() {
+ const fs = yield* FileSystem.FileSystem
+ yield* Effect.log("Writing config schema")
+ yield* fs.writeFileString("schema.json", jsonSchema)
+ yield* Effect.log("Wrote schema to ./schema.json")
})
program.pipe(
diff --git a/scripts/version.mjs b/scripts/version.mjs
index 0d78e46..f23a62c 100644
--- a/scripts/version.mjs
+++ b/scripts/version.mjs
@@ -1,10 +1,9 @@
-import * as Fs from "node:fs";
-import Package from "../package.json" assert { type: "json" };
+import * as Fs from "node:fs"
+import Package from "../package.json" assert { type: "json" }
-const tpl = Fs.readFileSync("./scripts/version.template.txt").toString("utf8");
+const tpl = Fs.readFileSync("./scripts/version.template.txt").toString("utf8")
Fs.writeFileSync(
"src/internal/version.ts",
tpl.replace("VERSION", Package.version)
-);
-
+)
diff --git a/src/CLI.ts b/src/CLI.ts
index e5cdda5..f0b908e 100644
--- a/src/CLI.ts
+++ b/src/CLI.ts
@@ -1,21 +1,22 @@
#!/usr/bin/env node
/**
- * @since 1.0.0
+ * @since 0.6.0
*/
import * as Command from "@effect/cli/Command"
import * as HelpDoc from "@effect/cli/HelpDoc"
import * as Options from "@effect/cli/Options"
import * as ValidationError from "@effect/cli/ValidationError"
-import * as Schema from "@effect/schema/Schema"
-import * as TreeFormatter from "@effect/schema/TreeFormatter"
import * as Array from "effect/Array"
import * as Config from "effect/Config"
import * as Effect from "effect/Effect"
import * as Either from "effect/Either"
+import * as ParseResult from "effect/ParseResult"
+import * as Schema from "effect/Schema"
import * as Configuration from "./Configuration.js"
import * as Core from "./Core.js"
+import * as Domain from "./Domain.js"
import * as InternalVersion from "./internal/version.js"
const projectHomepage = Options.text("homepage").pipe(
@@ -27,6 +28,14 @@ const projectHomepage = Options.text("homepage").pipe(
Options.optional
)
+const srcLink = Options.text("srcLink").pipe(
+ Options.withFallbackConfig(Config.string("srcLink")),
+ Options.withDescription(
+ "The link to the project source code"
+ ),
+ Options.optional
+)
+
const srcDir = Options.directory("src", { exists: "yes" }).pipe(
Options.withFallbackConfig(Config.string("src").pipe(Config.withDefault("src"))),
Options.withDescription(
@@ -44,7 +53,7 @@ const outDir = Options.directory("out").pipe(
const theme = Options.directory("theme").pipe(
Options.withFallbackConfig(
Config.string("theme").pipe(
- Config.withDefault("mikearnaldi/just-the-docs")
+ Config.withDefault(Configuration.DEFAULT_THEME)
)
),
Options.withDescription(
@@ -91,9 +100,8 @@ const enforceVersion = Options.boolean("no-enforce-version", {
)
)
-const runExamples = Options.boolean("no-run-examples", {
- ifPresent: false,
- negationNames: ["run-examples"]
+const runExamples = Options.boolean("run-examples", {
+ negationNames: ["no-run-examples"]
}).pipe(
Options.withFallbackConfig(Config.boolean("runExamples")),
Options.withDescription(
@@ -125,7 +133,7 @@ const parseCompilerOptions = Options.file("parse-tsconfig-file", { exists: "yes"
Schema.decodeUnknownEither(compilerOptionsSchema)(options).pipe(
Either.mapLeft((e) => {
const error = HelpDoc.p(
- `Invalid TypeScript compiler options:\n${TreeFormatter.formatErrorSync(e)}`
+ `Invalid TypeScript compiler options:\n${ParseResult.TreeFormatter.formatErrorSync(e)}`
)
return ValidationError.invalidValue(error)
})
@@ -145,7 +153,7 @@ const examplesCompilerOptions = Options.file("examples-tsconfig-file", { exists:
Schema.decodeUnknownEither(compilerOptionsSchema)(options).pipe(
Either.mapLeft((e) => {
const error = HelpDoc.p(
- `Invalid TypeScript compiler options:\n${TreeFormatter.formatErrorSync(e)}`
+ `Invalid TypeScript compiler options:\n${ParseResult.TreeFormatter.formatErrorSync(e)}`
)
return ValidationError.invalidValue(error)
})
@@ -158,6 +166,7 @@ const examplesCompilerOptions = Options.file("examples-tsconfig-file", { exists:
const options = {
projectHomepage,
+ srcLink,
srcDir,
outDir,
theme,
@@ -174,9 +183,22 @@ const options = {
/** @internal */
export const docgenCommand = Command.make("docgen", options)
-/** @internal */
+/**
+ * @category CLI
+ * @since 0.6.0
+ */
export const cli = docgenCommand.pipe(
- Command.withHandler(() => Effect.scoped(Core.program)),
+ Command.withHandler(() =>
+ Effect.scoped(Core.program).pipe(Effect.catchTag("DocgenError", (err) =>
+ Effect.gen(function*() {
+ const config = yield* Configuration.Configuration
+ return yield* Effect.fail(
+ new Domain.DocgenError({
+ message: `[${config.projectName}] ${err.message}`
+ })
+ )
+ })))
+ ),
Command.provideEffect(Configuration.Configuration, (args) => Configuration.load(args)),
Command.run({
name: "docgen",
diff --git a/src/Checker.ts b/src/Checker.ts
new file mode 100644
index 0000000..293e87f
--- /dev/null
+++ b/src/Checker.ts
@@ -0,0 +1,218 @@
+/**
+ * @since 0.6.0
+ */
+import { codeFrameColumns } from "@babel/code-frame"
+import { Array, Effect } from "effect"
+import * as Configuration from "./Configuration.js"
+import type * as Domain from "./Domain.js"
+import * as Parser from "./Parser.js"
+
+const makeError = (
+ source: Parser.SourceShape,
+ position: Domain.Position,
+ message: (filePath: string, frame: string) => string
+) => {
+ const location = { start: position }
+ const frame = codeFrameColumns(source.sourceFile.getFullText(), location)
+ return [message(source.sourceFile.getFilePath(), frame)]
+}
+
+type Entry = {
+ readonly doc: Domain.Doc
+ readonly position: Domain.Position
+}
+
+function checkEntry(model: Entry, options: {
+ readonly enforceVersion: boolean
+}) {
+ return Effect.gen(function*() {
+ const source = yield* Parser.Source
+ const config = yield* Configuration.Configuration
+
+ let errors: Array = []
+
+ // description
+ if (config.enforceDescriptions) {
+ if (model.doc.description === undefined) {
+ errors = errors.concat(makeError(
+ source,
+ model.position,
+ (filePath, frame) => `Missing description in file ${filePath}:\n\n${frame}`
+ ))
+ }
+ }
+
+ // @example tags
+ if (config.enforceExamples) {
+ if (model.doc.examples.length === 0) {
+ errors = errors.concat(makeError(
+ source,
+ model.position,
+ (filePath, frame) => `Missing examples in file ${filePath}:\n\n${frame}`
+ ))
+ }
+ }
+
+ // @since tags
+ if (config.enforceVersion && options.enforceVersion !== false) {
+ const since = model.doc.since
+ if (since.length === 0) {
+ errors = errors.concat(makeError(
+ source,
+ model.position,
+ (filePath, frame) => `Missing \`@since\` tag in file ${filePath}:\n\n${frame}`
+ ))
+ }
+ }
+
+ return errors
+ })
+}
+
+function checkEntries(models: ReadonlyArray, options: {
+ readonly enforceVersion: boolean
+}) {
+ return Effect.forEach(models, (model) => checkEntry(model, options)).pipe(Effect.map(Array.flatten))
+}
+
+function checkFunction(model: Domain.Function) {
+ return checkEntry(model, {
+ enforceVersion: true
+ })
+}
+
+/**
+ * @since 0.6.0
+ */
+export function checkFunctions(models: ReadonlyArray) {
+ return Effect.forEach(models, checkFunction).pipe(Effect.map(Array.flatten))
+}
+
+function checkClass(model: Domain.Class) {
+ return Effect.gen(function*() {
+ const docErrors = yield* checkEntry(model, {
+ enforceVersion: true
+ })
+ const staticMethodsErrors = yield* checkEntries(model.staticMethods, {
+ enforceVersion: false
+ })
+ const methodsErrors = yield* checkEntries(model.methods, {
+ enforceVersion: false
+ })
+ const propertiesErrors = yield* checkEntries(model.properties, {
+ enforceVersion: false
+ })
+ return Array.flatten([docErrors, staticMethodsErrors, methodsErrors, propertiesErrors])
+ })
+}
+
+/**
+ * @since 0.6.0
+ */
+export function checkClasses(models: ReadonlyArray) {
+ return Effect.forEach(models, checkClass).pipe(Effect.map(Array.flatten))
+}
+
+function checkConstant(model: Domain.Constant) {
+ return checkEntry(model, {
+ enforceVersion: true
+ })
+}
+
+/**
+ * @since 0.6.0
+ */
+export function checkConstants(models: ReadonlyArray) {
+ return Effect.forEach(models, checkConstant).pipe(Effect.map(Array.flatten))
+}
+
+function checkInterface(model: Domain.Interface) {
+ return checkEntry(model, {
+ enforceVersion: true
+ })
+}
+
+/**
+ * @since 0.6.0
+ */
+export function checkInterfaces(models: ReadonlyArray) {
+ return Effect.forEach(models, checkInterface).pipe(Effect.map(Array.flatten))
+}
+
+function checkTypeAlias(model: Domain.TypeAlias) {
+ return checkEntry(model, {
+ enforceVersion: true
+ })
+}
+
+/**
+ * @since 0.6.0
+ */
+export function checkTypeAliases(models: ReadonlyArray) {
+ return Effect.forEach(models, checkTypeAlias).pipe(Effect.map(Array.flatten))
+}
+
+function checkNamespace(
+ model: Domain.Namespace
+): Effect.Effect, never, Parser.Source | Configuration.Configuration> {
+ return Effect.gen(function*() {
+ const docErrors = yield* checkEntry(model, {
+ enforceVersion: true
+ })
+ const interfacesErrors = yield* checkInterfaces(model.interfaces)
+ const typeAliasesErrors = yield* checkTypeAliases(model.typeAliases)
+ const namespacesErrors = yield* checkNamespaces(model.namespaces)
+ return Array.flatten([docErrors, interfacesErrors, typeAliasesErrors, namespacesErrors])
+ })
+}
+
+/**
+ * @since 0.6.0
+ */
+export function checkNamespaces(models: ReadonlyArray) {
+ return Effect.forEach(models, checkNamespace).pipe(Effect.map(Array.flatten))
+}
+
+function checkExport(model: Domain.Export) {
+ return checkEntry(model, {
+ enforceVersion: true
+ })
+}
+
+/**
+ * @since 0.6.0
+ */
+export function checkExports(models: ReadonlyArray) {
+ return Effect.forEach(models, checkExport).pipe(Effect.map(Array.flatten))
+}
+
+/**
+ * @since 0.6.0
+ */
+export function checkModule(module: Domain.Module) {
+ return Effect.gen(function*() {
+ const functionsErrors = yield* checkFunctions(module.functions)
+ const classesErrors = yield* checkClasses(module.classes)
+ const constantsErrors = yield* checkConstants(module.constants)
+ const interfacesErrors = yield* checkInterfaces(module.interfaces)
+ const typeAliasesErrors = yield* checkTypeAliases(module.typeAliases)
+ const namespacesErrors = yield* checkNamespaces(module.namespaces)
+ const exportsErrors = yield* checkExports(module.exports)
+ return Array.flatten([
+ functionsErrors,
+ classesErrors,
+ constantsErrors,
+ interfacesErrors,
+ typeAliasesErrors,
+ namespacesErrors,
+ exportsErrors
+ ])
+ }).pipe(Effect.provideService(Parser.Source, module.source))
+}
+
+/**
+ * @since 0.6.0
+ */
+export function checkModules(modules: ReadonlyArray) {
+ return Effect.forEach(modules, checkModule).pipe(Effect.map(Array.flatten))
+}
diff --git a/src/Configuration.ts b/src/Configuration.ts
index bbc5349..a06bcd6 100644
--- a/src/Configuration.ts
+++ b/src/Configuration.ts
@@ -1,22 +1,27 @@
/**
- * @since 1.0.0
+ * @since 0.6.0
*/
import * as FileSystem from "@effect/platform/FileSystem"
import * as Path from "@effect/platform/Path"
-import * as Schema from "@effect/schema/Schema"
-import * as TreeFormatter from "@effect/schema/TreeFormatter"
import * as Array from "effect/Array"
import * as Config from "effect/Config"
import * as ConfigProvider from "effect/ConfigProvider"
import * as Context from "effect/Context"
import * as Effect from "effect/Effect"
-import { identity } from "effect/Function"
+import { identity, pipe } from "effect/Function"
import * as Layer from "effect/Layer"
import * as Option from "effect/Option"
+import * as ParseResult from "effect/ParseResult"
+import * as Schema from "effect/Schema"
import * as tsconfck from "tsconfck"
-import { DocgenError } from "./Error.js"
-import * as Process from "./Process.js"
+import * as Domain from "./Domain.js"
+import { DocgenError } from "./Domain.js"
+
+/**
+ * @since 0.6.0
+ */
+export const DEFAULT_THEME = "mikearnaldi/just-the-docs"
const PACKAGE_JSON_FILE_NAME = "package.json"
const CONFIG_FILE_NAME = "docgen.json"
@@ -28,13 +33,15 @@ const compilerOptionsSchema = Schema.Union(
/**
* @category service
- * @since 1.0.0
+ * @since 0.6.0
*/
export const ConfigurationSchema = Schema.Struct({
"$schema": Schema.optional(Schema.String),
projectHomepage: Schema.optional(Schema.String).annotations({
- description:
- "Will link to the project homepage from the Auxiliary Links of the generated documentation."
+ description: "Will link to the project homepage from the Auxiliary Links of the generated documentation."
+ }),
+ srcLink: Schema.optional(Schema.String).annotations({
+ description: "Will link to the project source code."
}),
srcDir: Schema.optional(Schema.String).annotations({
description: "The directory in which docgen will search for TypeScript files to parse.",
@@ -45,13 +52,11 @@ export const ConfigurationSchema = Schema.Struct({
default: "docs"
}),
theme: Schema.optional(Schema.String).annotations({
- description:
- "The theme that docgen will specify should be used for GitHub Docs in the generated _config.yml file.",
- default: "mikearnaldi/just-the-docs"
+ description: "The theme that docgen will specify should be used for GitHub Docs in the generated _config.yml file.",
+ default: DEFAULT_THEME
}),
enableSearch: Schema.optional(Schema.Boolean).annotations({
- description:
- "Whether or not search should be enabled for GitHub Docs in the generated _config.yml file.",
+ description: "Whether or not search should be enabled for GitHub Docs in the generated _config.yml file.",
default: true
}),
enforceDescriptions: Schema.optional(Schema.Boolean).annotations({
@@ -67,9 +72,18 @@ export const ConfigurationSchema = Schema.Struct({
description: "Whether or not @since tags for each module export should be required.",
default: true
}),
- exclude: Schema.optional(Schema.Array(Schema.String)).annotations({
+ tscExecutable: Schema.optional(Schema.String).annotations({
+ description:
+ "The path to the TypeScript compiler executable that docgen should use when invoking the compiler programmatically.",
+ default: "tsc"
+ }),
+ runExamples: Schema.optional(Schema.Boolean).annotations({
description:
- "An array of glob strings specifying files that should be excluded from the documentation.",
+ "Whether or not docgen should attempt to run example code snippets and include the output in the generated documentation.",
+ default: false
+ }),
+ exclude: Schema.optional(Schema.Array(Schema.String)).annotations({
+ description: "An array of glob strings specifying files that should be excluded from the documentation.",
default: []
}),
parseCompilerOptions: Schema.optional(compilerOptionsSchema).annotations({
@@ -84,11 +98,12 @@ export const ConfigurationSchema = Schema.Struct({
/**
* @category service
- * @since 1.0.0
+ * @since 0.6.0
*/
export interface ConfigurationShape {
readonly projectName: string
readonly projectHomepage: string
+ readonly srcLink: string
readonly srcDir: string
readonly outDir: string
readonly theme: string
@@ -96,6 +111,7 @@ export interface ConfigurationShape {
readonly enforceDescriptions: boolean
readonly enforceExamples: boolean
readonly enforceVersion: boolean
+ readonly tscExecutable: string
readonly runExamples: boolean
readonly exclude: ReadonlyArray
readonly parseCompilerOptions: Record
@@ -104,11 +120,9 @@ export interface ConfigurationShape {
/**
* @category service
- * @since 1.0.0
+ * @since 0.6.0
*/
-export class Configuration
- extends Context.Tag("Configuration")()
-{}
+export class Configuration extends Context.Tag("Configuration")() {}
/** @internal */
export const defaultCompilerOptions = {
@@ -126,14 +140,13 @@ export const defaultCompilerOptions = {
const readJsonFile = (
path: string
): Effect.Effect =>
- Effect.gen(function*(_) {
- const fs = yield* _(FileSystem.FileSystem)
- const content = yield* _(Effect.orDie(fs.readFileString(path)))
- return yield* _(
+ Effect.gen(function*() {
+ const fs = yield* FileSystem.FileSystem
+ const content = yield* Effect.orDie(fs.readFileString(path))
+ return yield* pipe(
Effect.try({
try: () => JSON.parse(content),
- catch: (error) =>
- `[FileSystem] Unable to read and parse JSON file from '${path}': ${String(error)}`
+ catch: (error) => `[FileSystem] Unable to read and parse JSON file from '${path}': ${String(error)}`
}),
Effect.orDie
)
@@ -143,46 +156,44 @@ const validateJsonFile = (
schema: Schema.Schema,
path: string
): Effect.Effect =>
- Effect.gen(function*(_) {
- const content = yield* _(readJsonFile(path))
- return yield* _(
+ Effect.gen(function*() {
+ const content = yield* readJsonFile(path)
+ return yield* pipe(
Schema.decodeUnknown(schema)(content),
Effect.orDieWith((error) =>
new DocgenError({
- message: `[Configuration.validateJsonFile]\n${TreeFormatter.formatErrorSync(error)}`
+ message: `[Configuration.validateJsonFile]\n${ParseResult.TreeFormatter.formatErrorSync(error)}`
})
)
)
})
+// TODO: this is invoked twice
const readDocgenConfig = (
path: string
-): Effect.Effect<
- Option.Option>,
- never,
- FileSystem.FileSystem
-> =>
- Effect.gen(function*(_) {
- const fs = yield* _(FileSystem.FileSystem)
- const exists = yield* _(Effect.orDie(fs.exists(path)))
+): Effect.Effect>, never, FileSystem.FileSystem> => {
+ return Effect.gen(function*() {
+ const fs = yield* FileSystem.FileSystem
+ const exists = yield* Effect.orDie(fs.exists(path))
if (exists) {
- const config = yield* _(validateJsonFile(ConfigurationSchema, path))
+ const config = yield* validateJsonFile(ConfigurationSchema, path)
return Option.some(config)
} else {
return Option.none()
}
})
+}
const readTSConfig = (fileName: string): Effect.Effect<
{ readonly [x: string]: unknown },
never,
- Path.Path | Process.Process
+ Path.Path | Domain.Process
> =>
- Effect.gen(function*(_) {
- const path = yield* _(Path.Path)
- const process = yield* _(Process.Process)
- const cwd = yield* _(process.cwd)
- return yield* _(
+ Effect.gen(function*() {
+ const path = yield* Path.Path
+ const process = yield* Domain.Process
+ const cwd = yield* process.cwd
+ return yield* pipe(
Effect.promise(() => tsconfck.parse(path.resolve(cwd, fileName))).pipe(
Effect.map(({ tsconfig }) => tsconfig.compilerOptions ?? defaultCompilerOptions),
Effect.orDieWith((error) =>
@@ -196,16 +207,14 @@ const readTSConfig = (fileName: string): Effect.Effect<
const loadCompilerOptions = (configKey: string) =>
Config.string(configKey).pipe(
- Effect.flatMap((config) =>
- Schema.decodeUnknown(JsonRecordSchema)(config).pipe(Effect.orElseSucceed(() => config))
- )
+ Effect.flatMap((config) => Schema.decodeUnknown(JsonRecordSchema)(config).pipe(Effect.orElseSucceed(() => config)))
)
const resolveCompilerOptions = (
configKey: string,
fromCLI: Option.Option>,
fromDocgenJson: Option.Option>
-): Effect.Effect<{ readonly [x: string]: unknown }, never, Path.Path | Process.Process> => {
+): Effect.Effect<{ readonly [x: string]: unknown }, never, Path.Path | Domain.Process> => {
const fromConfigProvider = loadCompilerOptions(configKey)
return fromCLI.pipe(
Effect.orElse(() => fromConfigProvider),
@@ -233,6 +242,7 @@ const PackageJsonSchema = Schema.Struct({
/** @internal */
export const load = (args: {
readonly projectHomepage: Option.Option
+ readonly srcLink: Option.Option
readonly srcDir: string
readonly outDir: string
readonly theme: string
@@ -245,22 +255,23 @@ export const load = (args: {
readonly parseCompilerOptions: Option.Option>
readonly examplesCompilerOptions: Option.Option>
}) =>
- Effect.gen(function*(_) {
+ Effect.gen(function*() {
// Extract the requisite services
- const process = yield* _(Process.Process)
- const cwd = yield* _(process.cwd)
- const path = yield* _(Path.Path)
+ const process = yield* Domain.Process
+ const cwd = yield* process.cwd
+ const path = yield* Path.Path
// Read and parse the required fields from the `package.json`
const packageJsonPath = path.join(cwd, PACKAGE_JSON_FILE_NAME)
- const packageJson = yield* _(validateJsonFile(PackageJsonSchema, packageJsonPath))
+ const packageJson = yield* validateJsonFile(PackageJsonSchema, packageJsonPath)
const projectName = packageJson.name
const projectHomepage = Option.getOrElse(args.projectHomepage, () => packageJson.homepage)
+ const srcLink = Option.getOrElse(args.srcLink, () => `${projectHomepage}/blob/main/src/`)
// Read the `docgen.json` configuration file to gain access to the TypeScript
// configuration options
const configPath = path.join(cwd, CONFIG_FILE_NAME)
- const config = yield* _(readDocgenConfig(configPath))
+ const config = yield* readDocgenConfig(configPath)
// Resolve the excluded files
const exclude = Array.match(args.exclude, {
@@ -273,19 +284,15 @@ export const load = (args: {
})
// Resolve the TypeScript configuration options
- const examplesCompilerOptions = yield* _(
- resolveCompilerOptions(
- "examplesCompilerOptions",
- args.examplesCompilerOptions,
- Option.flatMap(config, (config) => Option.fromNullable(config.examplesCompilerOptions))
- )
+ const examplesCompilerOptions = yield* resolveCompilerOptions(
+ "examplesCompilerOptions",
+ args.examplesCompilerOptions,
+ Option.flatMap(config, (config) => Option.fromNullable(config.examplesCompilerOptions))
)
- const parseCompilerOptions = yield* _(
- resolveCompilerOptions(
- "parseCompilerOptions",
- args.parseCompilerOptions,
- Option.flatMap(config, (config) => Option.fromNullable(config.parseCompilerOptions))
- )
+ const parseCompilerOptions = yield* resolveCompilerOptions(
+ "parseCompilerOptions",
+ args.parseCompilerOptions,
+ Option.flatMap(config, (config) => Option.fromNullable(config.parseCompilerOptions))
)
const srcDir = config.pipe(
@@ -298,27 +305,40 @@ export const load = (args: {
Option.getOrElse(() => args.outDir)
)
+ const runExamples = config.pipe(
+ Option.flatMapNullable((config) => config.runExamples),
+ Option.getOrElse(() => args.runExamples)
+ )
+
+ const tscExecutable = config.pipe(
+ Option.flatMapNullable((config) => config.tscExecutable),
+ Option.getOrElse(() => "tsc")
+ )
+
return Configuration.of({
...args,
srcDir,
outDir,
projectName,
projectHomepage,
+ srcLink,
exclude,
examplesCompilerOptions,
- parseCompilerOptions
+ parseCompilerOptions,
+ runExamples,
+ tscExecutable
})
})
/** @internal */
-export const configProviderLayer = Layer.scopedDiscard(Effect.gen(function*(_) {
+export const configProviderLayer = Layer.scopedDiscard(Effect.gen(function*() {
// Extract the requisite services
- const process = yield* _(Process.Process)
- const cwd = yield* _(process.cwd)
- const path = yield* _(Path.Path)
+ const process = yield* Domain.Process
+ const cwd = yield* process.cwd
+ const path = yield* Path.Path
// Attempt to load the `docgen.json` configuration file
const configPath = path.join(cwd, CONFIG_FILE_NAME)
- const maybeConfig = yield* _(readDocgenConfig(configPath))
+ const maybeConfig = yield* readDocgenConfig(configPath)
// Construct a config provider for the environment
const fromEnv = ConfigProvider.fromEnv({ pathDelim: "_", seqDelim: "," }).pipe(
ConfigProvider.nested("DOCGEN"),
@@ -328,5 +348,5 @@ export const configProviderLayer = Layer.scopedDiscard(Effect.gen(function*(_) {
const fromDocgenJson = ConfigProvider.fromJson(Option.getOrElse(maybeConfig, () => ({})))
// Prefer the environment over the `docgen.json` file
const provider = fromEnv.pipe(ConfigProvider.orElse(() => fromDocgenJson))
- yield* _(Effect.withConfigProviderScoped(provider))
+ yield* Effect.withConfigProviderScoped(provider)
}))
diff --git a/src/Core.ts b/src/Core.ts
index 4f7a6c8..4bc5030 100644
--- a/src/Core.ts
+++ b/src/Core.ts
@@ -1,5 +1,5 @@
/**
- * @since 1.0.0
+ * @since 0.6.0
*/
import * as NodePath from "@effect/platform-node/NodePath"
@@ -8,21 +8,19 @@ import * as CommandExecutor from "@effect/platform/CommandExecutor"
import * as FileSystem from "@effect/platform/FileSystem"
import * as Path from "@effect/platform/Path"
import chalk from "chalk"
-import { pipe } from "effect"
import * as Array from "effect/Array"
import * as Chunk from "effect/Chunk"
import * as Effect from "effect/Effect"
+import * as Fiber from "effect/Fiber"
+import { pipe } from "effect/Function"
import * as Stream from "effect/Stream"
import * as String from "effect/String"
import * as Glob from "glob"
+import * as Checker from "./Checker.js"
import * as Configuration from "./Configuration.js"
-import type * as Domain from "./Domain.js"
-import { DocgenError } from "./Error.js"
-import * as File from "./File.js"
-import { printModule } from "./Markdown.js"
+import * as Domain from "./Domain.js"
import * as Parser from "./Parser.js"
-import * as Process from "./Process.js"
-
+import * as Printer from "./Printer.js"
/**
* Find all files matching the specified `glob` pattern, optionally excluding
* files matching the provided `exclude` patterns.
@@ -35,7 +33,7 @@ const glob = (pattern: string, exclude: ReadonlyArray = []) =>
})
).pipe(
Effect.orDieWith(() =>
- new DocgenError({
+ new Domain.DocgenError({
message: `[Core.glob] Unable to execute glob pattern '${pattern}' ` +
`excluding files matching '${exclude}'`
})
@@ -46,62 +44,60 @@ const glob = (pattern: string, exclude: ReadonlyArray = []) =>
* Reads all TypeScript files in the source directory and returns an array of file objects.
* Each file object contains the file path and its content.
*/
-const readSourceFiles = Effect.gen(function*(_) {
- const config = yield* _(Configuration.Configuration)
- const fs = yield* _(FileSystem.FileSystem)
- const path = yield* _(Path.Path, Effect.provide(NodePath.layerPosix))
+const readSourceFiles = Effect.gen(function*() {
+ const config = yield* Configuration.Configuration
+ const fs = yield* FileSystem.FileSystem
+ const path = yield* pipe(Path.Path, Effect.provide(NodePath.layerPosix))
const pattern = path.normalize(path.join(config.srcDir, "**", "*.ts"))
- const paths = yield* _(glob(pattern, config.exclude))
- yield* _(Effect.logInfo(chalk.bold(`${paths.length} module(s) found`)))
- return yield* _(Effect.forEach(paths, (path) =>
+ const paths = yield* glob(pattern, config.exclude)
+ yield* Effect.logInfo(chalk.bold(`${paths.length} module(s) found`))
+ return yield* Effect.forEach(paths, (path) =>
Effect.map(
fs.readFileString(path),
- (content) => File.createFile(path, content, false)
- ), { concurrency: "inherit" }))
+ (content) => new Domain.File(path, content, false)
+ ), { concurrency: "inherit" })
})
/**
* Writes a file to the `config.outDir` directory, taking into account the configuration and existing files.
*/
-const writeFileToOutDir = (file: File.File) =>
- Effect.gen(function*(_) {
- const config = yield* _(Configuration.Configuration)
- const fs = yield* _(FileSystem.FileSystem)
- const path = yield* _(Path.Path)
- const process = yield* _(Process.Process)
- const cwd = yield* _(process.cwd)
+const writeFileToOutDir = (file: Domain.File) =>
+ Effect.gen(function*() {
+ const config = yield* Configuration.Configuration
+ const fs = yield* FileSystem.FileSystem
+ const path = yield* Path.Path
+ const process = yield* Domain.Process
+ const cwd = yield* process.cwd
const fileName = path.relative(path.join(cwd, config.outDir), file.path)
- const exists = yield* _(fs.exists(file.path))
+ const exists = yield* fs.exists(file.path)
if (exists) {
if (file.isOverwriteable) {
- yield* _(Effect.logDebug(`Overwriting file ${chalk.black(fileName)}...`))
- yield* _(fs.makeDirectory(path.dirname(file.path), { recursive: true }))
- yield* _(fs.writeFileString(file.path, file.content))
+ yield* Effect.logDebug(`Overwriting file ${chalk.black(fileName)}...`)
+ yield* fs.makeDirectory(path.dirname(file.path), { recursive: true })
+ yield* fs.writeFileString(file.path, file.content)
} else {
- yield* _(Effect.logDebug(
+ yield* Effect.logDebug(
`File ${chalk.black(fileName)} already exists, skipping creation.`
- ))
+ )
}
} else {
- yield* _(fs.makeDirectory(path.dirname(file.path), { recursive: true }))
- yield* _(fs.writeFileString(file.path, file.content))
+ yield* fs.makeDirectory(path.dirname(file.path), { recursive: true })
+ yield* fs.writeFileString(file.path, file.content)
}
})
const writeFilesToOutDir = (
- files: ReadonlyArray
+ files: ReadonlyArray
) => Effect.forEach(files, writeFileToOutDir, { discard: true })
-const parseModules = (files: ReadonlyArray) =>
+const parseModules = (files: ReadonlyArray) =>
Parser.parseFiles(files).pipe(
Effect.mapError((errors) =>
- new DocgenError({
+ new Domain.DocgenError({
message: "[Core.parseModules] The following error(s) occurred while " +
- `parsing the TypeScript source files:\n${
- errors.map((errors) => errors.join("\n")).join("\n")
- }`
+ `parsing the TypeScript source files:\n${errors.map((errors) => errors.join("\n")).join("\n")}`
})
)
)
@@ -110,25 +106,27 @@ const parseModules = (files: ReadonlyArray) =>
* Runs the example files for the given modules, type-checking them before execution.
*/
const typeCheckAndRunExamples = (modules: ReadonlyArray) =>
- Effect.gen(function*(_) {
- const config = yield* _(Configuration.Configuration)
- if (config.runExamples) {
- yield* _(Effect.logInfo("Typechecking examples..."))
- yield* _(cleanupExamples)
- const files = yield* _(getExampleFiles(modules))
- const examples = yield* _(handleImports(files))
- const len = examples.length
- if (len > 0) {
- yield* _(Effect.logInfo(`${len} example(s) found`))
- yield* _(writeExamplesToOutDir(examples))
- yield* _(createExamplesTsConfigJson)
- yield* _(runTscOnExamples)
- yield* _(runTsxOnExamples)
+ Effect.gen(function*() {
+ const config = yield* Configuration.Configuration
+ yield* cleanupExamples
+ const files = yield* getExampleFiles(modules)
+ const len = files.length
+ if (len > 0) {
+ yield* Effect.logInfo(`${len} example(s) found`)
+ yield* writeExamplesToOutDir(files)
+ yield* createExamplesTsConfigJson
+ yield* Effect.logInfo("Typechecking examples...")
+ yield* runTscOnExamples
+ if (config.runExamples) {
+ yield* Effect.logInfo("Running examples...")
+ yield* runTsxOnExamples
} else {
- yield* _(Effect.logInfo("No examples found."))
+ yield* Effect.logInfo(chalk.gray("Skipping running examples"))
}
- yield* _(cleanupExamples)
+ } else {
+ yield* Effect.logInfo("No examples found.")
}
+ yield* cleanupExamples
})
/**
@@ -157,37 +155,97 @@ const extractPrefixedNestedNamespaces = (
return Array.prepend(namespaces, [prefix, doc])
}
+/**
+ * The metadata key for skipping type-checking.
+ *
+ * @since 0.6.0
+ */
+export const SKIP_TYPE_CHECKING_FENCE_METADATA = "skip-type-checking"
+
+/**
+ * Extracts all fenced code blocks from markdown content.
+ * Handles both ``` and ~~~ fences, including any metadata like language, title, and other attributes.
+ *
+ * @internal
+ */
+export const extractFencedCode = (content: string): [examples: Array, warnings: Array] => {
+ // The regex now captures the closing fence (group 3) if present.
+ // If there's no closing fence, group 3 will be undefined.
+ const fenceRegex = /(?:```|~~~)(.*?)\n([\s\S]*?)(?:(```|~~~)|$)/g
+ const matches = Array.fromIterable(content.matchAll(fenceRegex))
+
+ const warnings: Array = []
+
+ // Log a warning if a code fence is not properly closed.
+ for (const match of matches) {
+ if (match[3] === undefined) {
+ warnings.push(`Code block does not have a matching closing fence:\n${content}`)
+ }
+ }
+
+ return [
+ matches
+ .filter((match) => {
+ const meta = match[1].toLocaleLowerCase()
+ const isTypeScript = meta.startsWith("ts") || meta.startsWith("typescript")
+ const isSkipTypeChecking = meta.includes(SKIP_TYPE_CHECKING_FENCE_METADATA)
+ return isTypeScript && !isSkipTypeChecking
+ })
+ .map((match) => match[2].trim()),
+ warnings
+ ]
+}
+
/**
* Generates example files for the given modules.
*/
const getExampleFiles = (modules: ReadonlyArray) =>
- Effect.gen(function*(_) {
- const config = yield* _(Configuration.Configuration)
- const path = yield* _(Path.Path)
- return Array.flatMap(modules, (module) => {
+ Effect.gen(function*() {
+ const config = yield* Configuration.Configuration
+ const path = yield* Path.Path
+ let warnings: Array = []
+ const files = Array.flatMap(modules, (module) => {
const prefix = module.path.join("-")
- const getFiles = (exampleId: string) => (doc: Domain.NamedDoc): ReadonlyArray =>
- Array.map(
- doc.examples,
- (content, i) =>
- File.createFile(
- path.join(
- config.outDir,
- "examples",
- `${prefix}-${exampleId}-${doc.name}-${i}.ts`
- ),
- `${content.body}\n`,
- true // make the file overwritable
- )
- )
+ const getFiles =
+ (exampleId: string) =>
+ (namedDoc: { readonly name: string; readonly doc: Domain.Doc }): ReadonlyArray => {
+ let descriptionExamples: Array = []
+ if (namedDoc.doc.description !== undefined) {
+ const [es, ws] = extractFencedCode(namedDoc.doc.description)
+ warnings = warnings.concat(ws)
+ descriptionExamples = es
+ }
+ let exampleTagExamples: Array = []
+ for (const example of namedDoc.doc.examples) {
+ const [es, ws] = extractFencedCode(example)
+ warnings = warnings.concat(ws)
+ exampleTagExamples = exampleTagExamples.concat(es)
+ }
+ const examples = descriptionExamples.concat(exampleTagExamples)
+ return Array.map(
+ examples,
+ (example, i) => {
+ return new Domain.File(
+ path.join(
+ config.outDir,
+ "examples",
+ `${prefix}-${exampleId}-${namedDoc.name}-${i}.ts`
+ ),
+ example,
+ true // make the file overwritable
+ )
+ }
+ )
+ }
const allPrefixedNamespaces = Array.flatMap(module.namespaces, (namespace) =>
extractPrefixedNestedNamespaces(namespace, ""))
const moduleExamples = getFiles("module")(module)
- const methodsExamples = Array.flatMap(module.classes, (c) =>
+ const classExamples = Array.flatMap(module.classes, (c) =>
Array.flatten([
+ getFiles("class")(c),
Array.flatMap(
c.methods,
getFiles(`${c.name}-method`)
@@ -208,13 +266,10 @@ const getExampleFiles = (modules: ReadonlyArray) =>
]
const interfacesExamples = Array.flatMap(
allPrefixedInterfaces,
- ([ns, doc]) =>
- getFiles(filterJoin(["interface", ns]))(doc)
+ ([ns, doc]) => getFiles(filterJoin(["interface", ns]))(doc)
)
const allPrefixedTypeAliases = [
- ...module.typeAliases.map((typeAlias) =>
- ["" as string, typeAlias] as const
- ),
+ ...module.typeAliases.map((typeAlias) => ["" as string, typeAlias] as const),
...Array.flatMap(allPrefixedNamespaces, ([prefix, namespace]) =>
namespace.typeAliases.map((typeAlias) =>
[filterJoin([prefix, namespace.name]), typeAlias] as const
@@ -233,70 +288,44 @@ const getExampleFiles = (modules: ReadonlyArray) =>
module.functions,
getFiles("function")
)
+ const exportsExamples = Array.flatMap(
+ module.exports,
+ getFiles("export")
+ )
const namespacesExamples = Array.flatMap(
allPrefixedNamespaces,
- ([ns, doc]) =>
- getFiles(filterJoin(["namespace", ns]))(doc)
+ ([ns, doc]) => getFiles(filterJoin(["namespace", ns]))(doc)
)
return Array.flatten([
moduleExamples,
- methodsExamples,
+ classExamples,
interfacesExamples,
typeAliasesExamples,
constantsExamples,
functionsExamples,
- namespacesExamples
+ namespacesExamples,
+ exportsExamples
])
})
- })
-
-/**
- * Adds an import statement for the `assert` module to the beginning of the given code, if it doesn't already exist.
- */
-const addAssertImport = (code: string): string =>
- code.indexOf("assert.") !== -1
- ? `import * as assert from 'assert'\n${code}`
- : code
-
-/**
- * Replaces the project name in the given source code imports with the configured project name.
- */
-const replaceProjectName = (source: string) =>
- Effect.gen(function*(_) {
- const config = yield* _(Configuration.Configuration)
- const importRegex = (projectName: string) =>
- new RegExp(
- `from (?['"])${projectName}(?:/lib)?(?:/(?.*))?\\k`,
- "g"
- )
- const out = source.replace(importRegex(config.projectName), (...args) => {
- const groups: { path?: string } = args[args.length - 1]
- return `from '../../src${groups.path ? `/${groups.path}` : ""}'`
- })
+ if (warnings.length > 0) {
+ yield* Effect.logWarning(warnings.join("\n"))
+ }
- return out
+ return files
})
-const handleImports = (files: ReadonlyArray) =>
- Effect.forEach(files, (file) =>
- Effect.gen(function*(_) {
- const source = yield* _(replaceProjectName(file.content))
- const content = addAssertImport(source)
- return File.createFile(file.path, content, file.isOverwriteable)
- }))
-
/**
* Generates an entry point file for the given examples.
*/
-const getExamplesEntryPoint = (examples: ReadonlyArray) =>
- Effect.gen(function*(_) {
- const config = yield* _(Configuration.Configuration)
- const path = yield* _(Path.Path)
+const getExamplesEntryPoint = (examples: ReadonlyArray) =>
+ Effect.gen(function*() {
+ const config = yield* Configuration.Configuration
+ const path = yield* Path.Path
const content = examples.map((example) => `import './${path.basename(example.path, ".ts")}'`)
.join("\n")
- return File.createFile(
+ return new Domain.File(
path.normalize(path.join(config.outDir, "examples", "index.ts")),
`${content}\n`,
true // make the file overwritable
@@ -306,37 +335,37 @@ const getExamplesEntryPoint = (examples: ReadonlyArray) =>
/**
* Removes the "examples" directory from the output directory specified in the configuration.
*/
-const cleanupExamples = Effect.gen(function*(_) {
- const fs = yield* _(FileSystem.FileSystem)
- const config = yield* _(Configuration.Configuration)
- const path = yield* _(Path.Path)
+const cleanupExamples = Effect.gen(function*() {
+ const fs = yield* FileSystem.FileSystem
+ const config = yield* Configuration.Configuration
+ const path = yield* Path.Path
const examplesDir = path.join(config.outDir, "examples")
- const exists = yield* _(Effect.orDie(fs.exists(examplesDir)))
+ const exists = yield* Effect.orDie(fs.exists(examplesDir))
if (exists) {
- yield* _(fs.remove(examplesDir, { recursive: true }))
+ yield* fs.remove(examplesDir, { recursive: true })
}
})
/**
* Runs tsc on the examples directory.
*/
-const runTscOnExamples = Effect.gen(function*(_) {
- const config = yield* _(Configuration.Configuration)
- const process = yield* _(Process.Process)
- const executor = yield* _(CommandExecutor.CommandExecutor)
- const cwd = yield* _(process.cwd)
- const path = yield* _(Path.Path)
- const platform = yield* _(process.platform)
+const runTscOnExamples = Effect.gen(function*() {
+ const config = yield* Configuration.Configuration
+ const process = yield* Domain.Process
+ const executor = yield* CommandExecutor.CommandExecutor
+ const cwd = yield* process.cwd
+ const path = yield* Path.Path
+ const platform = yield* process.platform
const tsconfig = path.normalize(path.join(cwd, config.outDir, "examples", "tsconfig.json"))
const options = ["--noEmit", "--project", tsconfig]
const command = platform === "win32"
- ? Command.runInShell(Command.make("tsc.cmd", ...options), true)
- : Command.make("tsc", ...options)
+ ? Command.runInShell(Command.make(`${config.tscExecutable}.cmd`, ...options), true)
+ : Command.make(config.tscExecutable, ...options)
- yield* _(Effect.logDebug("Running tsc on examples..."))
+ yield* Effect.logDebug("Running tsc on examples...")
- const [stdout, exitCode] = yield* _(
+ const [stdout, exitCode] = yield* pipe(
executor.start(command),
Effect.flatMap((process) =>
Effect.all([
@@ -352,24 +381,22 @@ const runTscOnExamples = Effect.gen(function*(_) {
)
if (exitCode !== 0) {
- yield* _(
- new DocgenError({
- message: `Something went wrong while running tsc on examples:\n\n${stdout.join("\n")}`
- })
- )
+ yield* new Domain.DocgenError({
+ message: `Something went wrong while running tsc on examples:\n\n${stdout.join("\n")}`
+ })
}
})
/**
* Runs tsc on the examples directory.
*/
-const runTsxOnExamples = Effect.gen(function*(_) {
- const config = yield* _(Configuration.Configuration)
- const path = yield* _(Path.Path)
- const process = yield* _(Process.Process)
- const executor = yield* _(CommandExecutor.CommandExecutor)
- const cwd = yield* _(process.cwd)
- const platform = yield* _(process.platform)
+const runTsxOnExamples = Effect.gen(function*() {
+ const config = yield* Configuration.Configuration
+ const path = yield* Path.Path
+ const process = yield* Domain.Process
+ const executor = yield* CommandExecutor.CommandExecutor
+ const cwd = yield* process.cwd
+ const platform = yield* process.platform
const examples = path.normalize(path.join(cwd, config.outDir, "examples"))
const tsconfig = path.join(examples, "tsconfig.json")
@@ -379,9 +406,9 @@ const runTsxOnExamples = Effect.gen(function*(_) {
? Command.runInShell(Command.make("tsx.cmd", ...options), true)
: Command.make("tsx", ...options)
- yield* _(Effect.logDebug("Running tsx on examples..."))
+ yield* Effect.logDebug("Running tsx on examples...")
- const [stdout, exitCode] = yield* _(
+ const [stdout, exitCode] = yield* pipe(
executor.start(command),
Effect.flatMap((process) =>
Effect.all([
@@ -397,54 +424,52 @@ const runTsxOnExamples = Effect.gen(function*(_) {
)
if (exitCode !== 0) {
- yield* _(
- Effect.fail(
- new DocgenError({
- message: `Something went wrong while running tsx on examples:\n\n${stdout.join("\n")}`
- })
- )
+ yield* Effect.fail(
+ new Domain.DocgenError({
+ message: `Something went wrong while running tsx on examples:\n\n${stdout.join("\n")}`
+ })
)
}
})
-const writeExamplesToOutDir = (examples: ReadonlyArray) =>
- Effect.gen(function*(_) {
- yield* _(Effect.logDebug("Writing examples..."))
- const entryPoint = yield* _(getExamplesEntryPoint(examples))
+const writeExamplesToOutDir = (examples: ReadonlyArray) =>
+ Effect.gen(function*() {
+ yield* Effect.logDebug("Writing examples...")
+ const entryPoint = yield* getExamplesEntryPoint(examples)
const files = [entryPoint, ...examples]
- yield* _(writeFilesToOutDir(files))
+ yield* writeFilesToOutDir(files)
})
-const createExamplesTsConfigJson = Effect.gen(function*(_) {
- yield* _(Effect.logDebug("Writing examples tsconfig..."))
- const config = yield* _(Configuration.Configuration)
- const process = yield* _(Process.Process)
- const cwd = yield* _(process.cwd)
- const path = yield* _(Path.Path)
- yield* _(writeFileToOutDir(
- File.createFile(
+const createExamplesTsConfigJson = Effect.gen(function*() {
+ yield* Effect.logDebug("Writing examples tsconfig...")
+ const config = yield* Configuration.Configuration
+ const process = yield* Domain.Process
+ const cwd = yield* process.cwd
+ const path = yield* Path.Path
+ yield* writeFileToOutDir(
+ new Domain.File(
path.join(cwd, config.outDir, "examples", "tsconfig.json"),
JSON.stringify({ compilerOptions: config.examplesCompilerOptions }, null, 2),
true // make the file overwritable
)
- ))
+ )
})
const getMarkdown = (modules: ReadonlyArray) =>
- Effect.gen(function*(_) {
- const homepage = yield* _(getMarkdownHomepage)
- const index = yield* _(getMarkdownIndex)
- const yml = yield* _(getMarkdownConfigYML)
- const moduleFiles = yield* _(getModuleMarkdownFiles(modules))
+ Effect.gen(function*() {
+ const homepage = yield* getMarkdownHomepage
+ const index = yield* getMarkdownIndex
+ const yml = yield* getMarkdownConfigYML
+ const moduleFiles = yield* getModuleMarkdownFiles(modules)
return [homepage, index, yml, ...moduleFiles]
})
-const getMarkdownHomepage = Effect.gen(function*(_) {
- const config = yield* _(Configuration.Configuration)
- const process = yield* _(Process.Process)
- const cwd = yield* _(process.cwd)
- const path = yield* _(Path.Path)
- return File.createFile(
+const getMarkdownHomepage = Effect.gen(function*() {
+ const config = yield* Configuration.Configuration
+ const process = yield* Domain.Process
+ const cwd = yield* process.cwd
+ const path = yield* Path.Path
+ return new Domain.File(
path.join(cwd, config.outDir, "index.md"),
String.stripMargin(
`|---
@@ -457,12 +482,12 @@ const getMarkdownHomepage = Effect.gen(function*(_) {
)
})
-const getMarkdownIndex = Effect.gen(function*(_) {
- const config = yield* _(Configuration.Configuration)
- const process = yield* _(Process.Process)
- const cwd = yield* _(process.cwd)
- const path = yield* _(Path.Path)
- return File.createFile(
+const getMarkdownIndex = Effect.gen(function*() {
+ const config = yield* Configuration.Configuration
+ const process = yield* Domain.Process
+ const cwd = yield* process.cwd
+ const path = yield* Path.Path
+ return new Domain.File(
path.join(cwd, config.outDir, "modules", "index.md"),
String.stripMargin(
`|---
@@ -478,8 +503,8 @@ const getMarkdownIndex = Effect.gen(function*(_) {
})
const resolveConfigYML = (content: string) =>
- Effect.gen(function*(_) {
- const config = yield* _(Configuration.Configuration)
+ Effect.gen(function*() {
+ const config = yield* Configuration.Configuration
return content
.replace(/^remote_theme:.*$/m, `remote_theme: ${config.theme}`)
.replace(
@@ -496,20 +521,20 @@ const getHomepageNavigationHeader = (config: Configuration.ConfigurationShape):
return isGitHub ? config.projectName + " on GitHub" : "Homepage"
}
-const getMarkdownConfigYML = Effect.gen(function*(_) {
- const config = yield* _(Configuration.Configuration)
- const process = yield* _(Process.Process)
- const fs = yield* _(FileSystem.FileSystem)
- const cwd = yield* _(process.cwd)
- const path = yield* _(Path.Path)
+const getMarkdownConfigYML = Effect.gen(function*() {
+ const config = yield* Configuration.Configuration
+ const process = yield* Domain.Process
+ const fs = yield* FileSystem.FileSystem
+ const cwd = yield* process.cwd
+ const path = yield* Path.Path
const configPath = path.join(cwd, config.outDir, "_config.yml")
- const exists = yield* _(fs.exists(configPath))
+ const exists = yield* fs.exists(configPath)
if (exists) {
- const content = yield* _(fs.readFileString(configPath))
- const resolved = yield* _(resolveConfigYML(content))
- return File.createFile(configPath, resolved, true)
+ const content = yield* fs.readFileString(configPath)
+ const resolved = yield* resolveConfigYML(content)
+ return new Domain.File(configPath, resolved, true)
} else {
- return File.createFile(
+ return new Domain.File(
configPath,
String.stripMargin(
`|remote_theme: ${config.theme}
@@ -527,49 +552,83 @@ const getMarkdownConfigYML = Effect.gen(function*(_) {
}
})
-const getModuleMarkdownOutputPath = (module: Domain.Module) =>
- Effect.map(
- Effect.all([Configuration.Configuration, Path.Path]),
- ([config, path]) =>
- path.normalize(path.join(
- config.outDir,
- "modules",
- `${module.path.slice(1).join(path.sep)}.md`
- ))
- )
+const getModuleMarkdownOutputPath = (module: Domain.Module) => {
+ return Effect.gen(function*() {
+ const config = yield* Configuration.Configuration
+ const path = yield* Path.Path
+ return path.normalize(path.join(
+ config.outDir,
+ "modules",
+ `${module.path.slice(1).join(path.sep)}.md`
+ ))
+ })
+}
const getModuleMarkdownFiles = (modules: ReadonlyArray) =>
- Effect.forEach(modules, (module, order) =>
- Effect.gen(function*(_) {
- const outputPath = yield* _(getModuleMarkdownOutputPath(module))
- const content = yield* _(printModule(module, order + 1))
- return File.createFile(outputPath, content, true)
+ Effect.forEach(modules, (module, i) =>
+ Effect.gen(function*() {
+ const outputPath = yield* getModuleMarkdownOutputPath(module)
+ const moduleContent = yield* Printer.printModule(module)
+ const tocgen = yield* Effect.promise(async () => {
+ // @ts-expect-error
+ return await import("@effect/markdown-toc").then((m) => m.default)
+ }).pipe(Effect.orDie)
+ const toc = tocgen(moduleContent, { bullets: "-" }).content
+ const frontMatter = Printer.printFrontMatter(module, i + 1)
+ const content = (frontMatter + "\n\n" + moduleContent).replace(
+ "",
+ `---
+## Exports Grouped by Category
+${toc}
+---`
+ )
+
+ const prettified = yield* Printer.prettify(content)
+ return new Domain.File(outputPath, prettified, true)
}))
-const writeMarkdown = (files: ReadonlyArray) =>
- Effect.gen(function*(_) {
- const config = yield* _(Configuration.Configuration)
- const path = yield* _(Path.Path, Effect.provide(NodePath.layerPosix))
- const fileSystem = yield* _(FileSystem.FileSystem)
+const writeMarkdown = (files: ReadonlyArray) =>
+ Effect.gen(function*() {
+ const config = yield* Configuration.Configuration
+ const path = yield* pipe(Path.Path, Effect.provide(NodePath.layerPosix))
+ const fileSystem = yield* FileSystem.FileSystem
const pattern = path.normalize(path.join(config.outDir, "**/*.ts.md"))
- yield* _(Effect.logDebug(`Deleting ${chalk.black(pattern)}...`))
- const paths = yield* _(glob(pattern))
- yield* _(Effect.forEach(paths, (path) => fileSystem.remove(path, { recursive: true }), {
+ yield* Effect.logDebug(`Deleting ${chalk.black(pattern)}...`)
+ const paths = yield* glob(pattern)
+ yield* Effect.forEach(paths, (path) => fileSystem.remove(path, { recursive: true }), {
concurrency: "unbounded"
- }))
- return yield* _(writeFilesToOutDir(files))
+ })
+ return yield* writeFilesToOutDir(files)
})
/** @internal */
-export const program = Effect.gen(function*(_) {
- yield* _(Effect.logInfo("Reading modules..."))
- const sourceFiles = yield* _(readSourceFiles)
- yield* _(Effect.logInfo("Parsing modules..."))
- const modules = yield* _(parseModules(sourceFiles))
- yield* _(typeCheckAndRunExamples(modules))
- yield* _(Effect.logInfo("Creating markdown files..."))
- const outputFiles = yield* _(getMarkdown(modules))
- yield* _(Effect.logInfo("Writing markdown files..."))
- yield* _(writeMarkdown(outputFiles))
- yield* _(Effect.logInfo(chalk.bold.green("Docs generation succeeded!")))
+export const program = Effect.gen(function*() {
+ yield* Effect.logInfo("Reading modules...")
+ const sourceFiles = yield* readSourceFiles
+ yield* Effect.logInfo("Parsing modules...")
+ const modules = yield* parseModules(sourceFiles)
+
+ const checkFiber = yield* Effect.gen(function*() {
+ yield* Effect.logInfo("Checking modules...")
+ const errors = yield* Checker.checkModules(modules)
+ if (errors.length > 0) {
+ yield* Effect.fail(
+ new Domain.DocgenError({
+ message: `The following errors occurred while checking the modules:\n\n${errors.join("\n\n")}`
+ })
+ )
+ }
+ yield* typeCheckAndRunExamples(modules)
+ }).pipe(Effect.fork)
+
+ const markdownFiber = yield* Effect.gen(function*() {
+ yield* Effect.logInfo("Creating markdown files...")
+ const outputFiles = yield* getMarkdown(modules)
+ yield* Effect.logInfo("Writing markdown files...")
+ yield* writeMarkdown(outputFiles)
+ }).pipe(Effect.fork)
+
+ yield* Fiber.joinAll([checkFiber, markdownFiber])
+
+ yield* Effect.logInfo(chalk.bold.green("✓ Docs generation succeeded!"))
})
diff --git a/src/Domain.ts b/src/Domain.ts
index 9c93e93..a4d3ad2 100644
--- a/src/Domain.ts
+++ b/src/Domain.ts
@@ -1,126 +1,173 @@
/**
- * @since 1.0.0
+ * @since 0.6.0
*/
-import type * as Option from "effect/Option"
+import type * as Array from "effect/Array"
+import * as Data from "effect/Data"
+import * as Effect from "effect/Effect"
import * as Order from "effect/Order"
import * as String from "effect/String"
+import type * as Parser from "./Parser.js"
/**
* @category model
- * @since 1.0.0
+ * @since 0.6.0
*/
-export interface Module extends NamedDoc {
- readonly path: ReadonlyArray
- readonly classes: ReadonlyArray
- readonly interfaces: ReadonlyArray
- readonly functions: ReadonlyArray
- readonly typeAliases: ReadonlyArray
- readonly constants: ReadonlyArray
- readonly exports: ReadonlyArray
- readonly namespaces: ReadonlyArray
+export class DocEntry {
+ constructor(
+ readonly name: string,
+ readonly doc: Doc,
+ readonly signature: string,
+ readonly position: Position
+ ) {}
}
/**
* @category model
- * @since 1.0.0
+ * @since 0.6.0
*/
-export type Example = {
- body: string
- fences?: {
- start: string
- end: string
- }
-}
-
-/**
- * @category model
- * @since 1.0.0
- */
-export interface Doc {
- readonly description: Option.Option
- readonly since: Option.Option
- readonly deprecated: boolean
- readonly examples: ReadonlyArray
- readonly category: Option.Option
-}
+export class Doc {
+ constructor(
+ readonly description: string | undefined,
+ readonly since: ReadonlyArray,
+ readonly deprecated: ReadonlyArray,
+ readonly examples: ReadonlyArray,
+ readonly category: ReadonlyArray,
+ readonly throws: ReadonlyArray,
+ readonly sees: ReadonlyArray,
+ readonly tags: Record | undefined>
+ ) {}
-/**
- * @category model
- * @since 1.0.0
- */
-export interface NamedDoc extends Doc {
- readonly name: string
+ modifyDescription(description: string | undefined): Doc {
+ return new Doc(
+ description,
+ this.since,
+ this.deprecated,
+ this.examples,
+ this.category,
+ this.throws,
+ this.sees,
+ this.tags
+ )
+ }
}
/**
* @category model
- * @since 1.0.0
+ * @since 0.6.0
*/
-export interface Class extends NamedDoc {
- readonly _tag: "Class"
- readonly signature: string
- readonly methods: ReadonlyArray
- readonly staticMethods: ReadonlyArray
- readonly properties: ReadonlyArray
+export class Module {
+ constructor(
+ readonly source: Parser.SourceShape,
+ readonly name: string,
+ readonly doc: Doc,
+ readonly path: Array.NonEmptyReadonlyArray,
+ readonly classes: ReadonlyArray,
+ readonly interfaces: ReadonlyArray,
+ readonly functions: ReadonlyArray,
+ readonly typeAliases: ReadonlyArray,
+ readonly constants: ReadonlyArray,
+ readonly exports: ReadonlyArray,
+ readonly namespaces: ReadonlyArray
+ ) {}
}
/**
* @category model
- * @since 1.0.0
+ * @since 0.6.0
*/
-export interface Method extends NamedDoc {
- readonly signatures: ReadonlyArray
+export class Class extends DocEntry {
+ readonly _tag = "Class"
+ constructor(
+ name: string,
+ doc: Doc,
+ signature: string,
+ position: Position,
+ readonly methods: ReadonlyArray,
+ readonly staticMethods: ReadonlyArray,
+ readonly properties: ReadonlyArray
+ ) {
+ super(name, doc, signature, position)
+ }
}
/**
* @category model
- * @since 1.0.0
+ * @since 0.6.0
*/
-export interface Property extends NamedDoc {
- readonly signature: string
+export class Interface extends DocEntry {
+ readonly _tag = "Interface"
+ constructor(
+ name: string,
+ doc: Doc,
+ signature: string,
+ position: Position
+ ) {
+ super(name, doc, signature, position)
+ }
}
/**
* @category model
- * @since 1.0.0
+ * @since 0.6.0
*/
-export interface Interface extends NamedDoc {
- readonly _tag: "Interface"
- readonly signature: string
+export interface Position {
+ readonly line: number
+ readonly column: number
}
/**
* @category model
- * @since 1.0.0
+ * @since 0.6.0
*/
-export interface Function extends NamedDoc {
- readonly _tag: "Function"
- readonly signatures: ReadonlyArray
+export class Function extends DocEntry {
+ readonly _tag = "Function"
+ constructor(
+ name: string,
+ doc: Doc,
+ signature: string,
+ position: Position
+ ) {
+ super(name, doc, signature, position)
+ }
}
/**
* @category model
- * @since 1.0.0
+ * @since 0.6.0
*/
-export interface TypeAlias extends NamedDoc {
- readonly _tag: "TypeAlias"
- readonly signature: string
+export class TypeAlias extends DocEntry {
+ readonly _tag = "TypeAlias"
+ constructor(
+ name: string,
+ doc: Doc,
+ signature: string,
+ position: Position
+ ) {
+ super(name, doc, signature, position)
+ }
}
/**
* @category model
- * @since 1.0.0
+ * @since 0.6.0
*/
-export interface Constant extends NamedDoc {
- readonly _tag: "Constant"
- readonly signature: string
+export class Constant extends DocEntry {
+ readonly _tag = "Constant"
+ constructor(
+ name: string,
+ doc: Doc,
+ signature: string,
+ position: Position
+ ) {
+ super(name, doc, signature, position)
+ }
}
/**
* These are manual exports, like:
*
- * ```ts
+ * ```ts skip-type-checking
* const _null = ...
*
* export {
@@ -129,178 +176,93 @@ export interface Constant extends NamedDoc {
* ```
*
* @category model
- * @since 1.0.0
+ * @since 0.6.0
*/
-export interface Export extends NamedDoc {
- readonly _tag: "Export"
- readonly signature: string
+export class Export extends DocEntry {
+ readonly _tag = "Export"
+ constructor(
+ name: string,
+ doc: Doc,
+ signature: string,
+ position: Position,
+ readonly isNamespaceExport: boolean
+ ) {
+ super(name, doc, signature, position)
+ }
}
/**
* @category model
- * @since 1.0.0
+ * @since 0.6.0
*/
-export interface Namespace extends NamedDoc {
- readonly _tag: "Namespace"
- readonly interfaces: ReadonlyArray
- readonly typeAliases: ReadonlyArray
- readonly namespaces: ReadonlyArray
+export class Namespace {
+ readonly _tag = "Namespace"
+ constructor(
+ readonly name: string,
+ readonly doc: Doc,
+ readonly position: Position,
+ readonly interfaces: ReadonlyArray,
+ readonly typeAliases: ReadonlyArray,
+ readonly namespaces: ReadonlyArray
+ ) {}
}
-// -------------------------------------------------------------------------------------
-// constructors
-// -------------------------------------------------------------------------------------
-
-/**
- * @category constructors
- * @since 1.0.0
- */
-export const createDoc = (
- description: Option.Option,
- since: Option.Option,
- deprecated: boolean,
- examples: ReadonlyArray,
- category: Option.Option
-): Doc => ({ description, since, deprecated, examples, category })
-
-/**
- * @category constructors
- * @since 1.0.0
- */
-export const createNamedDoc = (
- name: string,
- description: Option.Option,
- since: Option.Option,
- deprecated: boolean,
- examples: ReadonlyArray,
- category: Option.Option
-): NamedDoc => ({ name, description, since, deprecated, examples, category })
-
-/**
- * @category constructors
- * @since 1.0.0
- */
-export const createModule = (
- doc: NamedDoc,
- path: ReadonlyArray,
- classes: ReadonlyArray,
- interfaces: ReadonlyArray,
- functions: ReadonlyArray,
- typeAliases: ReadonlyArray,
- constants: ReadonlyArray,
- exports: ReadonlyArray,
- namespaces: ReadonlyArray
-): Module => ({
- ...doc,
- path,
- classes,
- interfaces,
- functions,
- typeAliases,
- constants,
- exports,
- namespaces
-})
-
-/**
- * @category constructors
- * @since 1.0.0
- */
-export const createClass = (
- doc: NamedDoc,
- signature: string,
- methods: ReadonlyArray,
- staticMethods: ReadonlyArray,
- properties: ReadonlyArray
-): Class => ({ _tag: "Class", ...doc, signature, methods, staticMethods, properties })
-
/**
- * @category constructors
- * @since 1.0.0
- */
-export const createConstant = (doc: NamedDoc, signature: string): Constant => ({
- _tag: "Constant",
- ...doc,
- signature
-})
-
-/**
- * @category constructors
- * @since 1.0.0
- */
-export const createMethod = (doc: NamedDoc, signatures: ReadonlyArray): Method => ({
- ...doc,
- signatures
-})
-
-/**
- * @category constructors
- * @since 1.0.0
- */
-export const createProperty = (doc: NamedDoc, signature: string): Property => ({
- ...doc,
- signature
-})
-
-/**
- * @category constructors
- * @since 1.0.0
+ * A comparator function for sorting `Module` objects by their file path, represented as a string.
+ * The file path is converted to lowercase before comparison.
+ *
+ * @category sorting
+ * @since 0.6.0
*/
-export const createInterface = (doc: NamedDoc, signature: string): Interface => ({
- _tag: "Interface",
- ...doc,
- signature
-})
+export const ByPath: Order.Order = Order.mapInput(
+ String.Order,
+ (module: Module) => module.path.join("/").toLowerCase()
+)
/**
- * @category constructors
- * @since 1.0.0
+ * Represents a file which can be optionally overwriteable.
+ *
+ * @category model
+ * @since 0.6.0
*/
-export const createFunction = (doc: NamedDoc, signatures: ReadonlyArray): Function => ({
- _tag: "Function",
- ...doc,
- signatures
-})
+export class File {
+ constructor(
+ readonly path: string,
+ readonly content: string,
+ readonly isOverwriteable: boolean = false
+ ) {}
+}
/**
- * @category constructors
- * @since 1.0.0
+ * @category symbol
+ * @since 0.6.0
*/
-export const createTypeAlias = (doc: NamedDoc, signature: string): TypeAlias => ({
- _tag: "TypeAlias",
- ...doc,
- signature
-})
+export const DocgenErrorTypeId = Symbol.for("@effect/docgen/DocgenError")
/**
- * @category constructors
- * @since 1.0.0
+ * @category symbol
+ * @since 0.6.0
*/
-export const createExport = (doc: NamedDoc, signature: string): Export => ({
- _tag: "Export",
- ...doc,
- signature
-})
+export type DocgenErrorTypeId = typeof DocgenErrorTypeId
/**
- * @category constructors
- * @since 1.0.0
+ * @category model
+ * @since 0.6.0
*/
-export const createNamespace = (
- doc: NamedDoc,
- interfaces: ReadonlyArray,
- typeAliases: ReadonlyArray,
- namespaces: ReadonlyArray
-): Namespace => ({ _tag: "Namespace", ...doc, interfaces, typeAliases, namespaces })
+export class DocgenError extends Data.TaggedError("DocgenError")<{
+ readonly message: string
+}> {}
/**
- * A comparator function for sorting `Module` objects by their file path, represented as a string.
- * The file path is converted to lowercase before comparison.
+ * Represents a handle to the currently executing process.
*
- * @category sorting
- * @since 1.0.0
+ * @category service
+ * @since 0.6.0
*/
-export const ByPath: Order.Order = Order.mapInput(
- String.Order,
- (module: Module) => module.path.join("/").toLowerCase()
-)
+export class Process extends Effect.Service()("Process", {
+ succeed: {
+ cwd: Effect.sync(() => process.cwd()),
+ platform: Effect.sync(() => process.platform),
+ argv: Effect.sync(() => process.argv)
+ }
+}) {}
diff --git a/src/Error.ts b/src/Error.ts
deleted file mode 100644
index 45f5dc5..0000000
--- a/src/Error.ts
+++ /dev/null
@@ -1,26 +0,0 @@
-/**
- * @since 1.0.0
- */
-
-import * as Data from "effect/Data"
-
-/**
- * @category symbol
- * @since 1.0.0
- */
-export const DocgenErrorTypeId = Symbol.for("@effect/docgen/DocgenError")
-
-/**
- * @category symbol
- * @since 1.0.0
- */
-export type DocgenErrorTypeId = typeof DocgenErrorTypeId
-
-/**
- * @category model
- * @since 1.0.0
- */
-export class DocgenError extends Data.TaggedError("DocgenError")<{
- readonly message: string
-}> {
-}
diff --git a/src/File.ts b/src/File.ts
deleted file mode 100644
index 58d8c9a..0000000
--- a/src/File.ts
+++ /dev/null
@@ -1,26 +0,0 @@
-/**
- * @since 1.0.0
- */
-
-import * as Data from "effect/Data"
-
-/**
- * Represents a file which can be optionally overwriteable.
- *
- * @category model
- * @since 1.0.0
- */
-export interface File {
- readonly path: string
- readonly content: string
- readonly isOverwriteable: boolean
-}
-
-/**
- * By default files are readonly (`isOverwriteable = false`).
- *
- * @category constructors
- * @since 1.0.0
- */
-export const createFile = (path: string, content: string, isOverwriteable = false): File =>
- Data.struct({ path, content, isOverwriteable })
diff --git a/src/Markdown.ts b/src/Markdown.ts
deleted file mode 100644
index 7e22038..0000000
--- a/src/Markdown.ts
+++ /dev/null
@@ -1,353 +0,0 @@
-/**
- * @since 1.0.0
- */
-import * as Array from "effect/Array"
-import * as Effect from "effect/Effect"
-import { identity, pipe } from "effect/Function"
-import * as Option from "effect/Option"
-import * as Order from "effect/Order"
-import * as Record from "effect/Record"
-import * as String from "effect/String"
-import * as Prettier from "prettier"
-import type * as Domain from "./Domain.js"
-
-type Printable =
- | Domain.Class
- | Domain.Constant
- | Domain.Export
- | Domain.Function
- | Domain.Interface
- | Domain.TypeAlias
- | Domain.Namespace
-
-const createHeaderPrinter = (level: number) => (content: string): string =>
- "#".repeat(level) + " " + content + "\n\n"
-
-const MarkdownPrinter = {
- bold: (s: string) => `**${s}**`,
- fence: (start: string, content: string, end: string) =>
- start + "\n" + content + "\n" + end + "\n\n",
- paragraph: (...content: ReadonlyArray