├── .gitattributes ├── .github ├── dependabot.yaml └── workflows │ ├── build.yaml │ └── test.yaml ├── .gitignore ├── .npmrc ├── .prettierignore ├── LICENSE ├── README.md ├── action.yml ├── dist └── action.mjs ├── eslint.config.js ├── lefthook.yml ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── rollup.config.js ├── src ├── action.ts ├── cmake.test.ts ├── cmake.ts ├── context.test.ts ├── context.ts ├── exec.test.ts ├── exec.ts └── utils.ts ├── tsconfig.json └── vitest.config.ts /.gitattributes: -------------------------------------------------------------------------------- 1 | dist/** -diff linguist-generated 2 | pnpm-lock.yaml -diff linguist-generated 3 | -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: github-actions 4 | directory: / 5 | schedule: 6 | interval: daily 7 | commit-message: 8 | prefix: chore 9 | labels: [] 10 | 11 | - package-ecosystem: npm 12 | directory: / 13 | schedule: 14 | interval: daily 15 | commit-message: 16 | prefix: chore 17 | labels: [] 18 | versioning-strategy: increase 19 | -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- 1 | name: Build 2 | on: 3 | workflow_dispatch: 4 | pull_request: 5 | push: 6 | branches: [main] 7 | jobs: 8 | build-action: 9 | name: Build Action 10 | runs-on: ubuntu-24.04 11 | steps: 12 | - name: Checkout Project 13 | uses: actions/checkout@v4.2.2 14 | 15 | - name: Setup pnpm 16 | uses: threeal/setup-pnpm-action@v1.0.0 17 | 18 | - name: Install Dependencies 19 | run: pnpm install 20 | 21 | - name: Check Formatting 22 | run: pnpm prettier --check . 23 | 24 | - name: Check Lint 25 | run: pnpm eslint 26 | 27 | - name: Check Types 28 | run: pnpm tsc --noEmit 29 | 30 | - name: Test Action 31 | run: pnpm test 32 | 33 | - name: Build Action 34 | run: pnpm rollup -c && git diff --exit-code dist 35 | -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- 1 | name: Test 2 | on: 3 | workflow_dispatch: 4 | pull_request: 5 | push: 6 | branches: [main] 7 | jobs: 8 | test-action: 9 | name: Test Action 10 | runs-on: ${{ matrix.os }} 11 | strategy: 12 | fail-fast: false 13 | matrix: 14 | os: [ubuntu-24.04, macos-14, windows-2022] 15 | steps: 16 | - name: Checkout Sample Project 17 | uses: actions/checkout@v4.2.2 18 | with: 19 | repository: threeal/cpp-starter 20 | ref: v1.0.0 21 | 22 | - name: Checkout Action 23 | uses: actions/checkout@v4.2.2 24 | with: 25 | path: cmake-action 26 | sparse-checkout: | 27 | action.yml 28 | dist 29 | sparse-checkout-cone-mode: false 30 | 31 | - name: Build Sample Project 32 | id: cmake-action 33 | uses: ./cmake-action 34 | 35 | - name: Run Sample Project 36 | run: ${{ steps.cmake-action.outputs.build-dir }}/${{ matrix.os == 'windows-2022' && 'Debug/generate_sequence.exe' || 'generate_sequence' }} 5 37 | 38 | test-action-with-specified-dirs: 39 | name: Test Action With Specified Directories 40 | runs-on: ubuntu-24.04 41 | steps: 42 | - name: Checkout Sample Project 43 | uses: actions/checkout@v4.2.2 44 | with: 45 | repository: threeal/cpp-starter 46 | ref: v1.0.0 47 | path: project 48 | 49 | - name: Checkout Action 50 | uses: actions/checkout@v4.2.2 51 | with: 52 | path: cmake-action 53 | sparse-checkout: | 54 | action.yml 55 | dist 56 | sparse-checkout-cone-mode: false 57 | 58 | - name: Build Sample Project 59 | id: cmake-action 60 | uses: ./cmake-action 61 | with: 62 | source-dir: project 63 | build-dir: output 64 | 65 | - name: Run Sample Project 66 | run: output/generate_sequence 5 67 | 68 | test-action-without-run-build: 69 | name: Test Action Without Run Build 70 | runs-on: ubuntu-24.04 71 | steps: 72 | - name: Checkout Sample Project 73 | uses: actions/checkout@v4.2.2 74 | with: 75 | repository: threeal/cpp-starter 76 | ref: v1.0.0 77 | 78 | - name: Checkout Action 79 | uses: actions/checkout@v4.2.2 80 | with: 81 | path: cmake-action 82 | sparse-checkout: | 83 | action.yml 84 | dist 85 | sparse-checkout-cone-mode: false 86 | 87 | - name: Modify Sample Project 88 | run: echo 'invalid' >> src/main.cpp 89 | 90 | - name: Configure Sample Project 91 | uses: ./cmake-action 92 | with: 93 | run-build: false 94 | 95 | test-action-with-additional-options: 96 | name: Test Action With Additional Options 97 | runs-on: ubuntu-24.04 98 | steps: 99 | - name: Checkout Sample Project 100 | uses: actions/checkout@v4.2.2 101 | with: 102 | repository: threeal/cpp-starter 103 | ref: v1.0.0 104 | 105 | - name: Checkout Action 106 | uses: actions/checkout@v4.2.2 107 | with: 108 | path: cmake-action 109 | sparse-checkout: | 110 | action.yml 111 | dist 112 | sparse-checkout-cone-mode: false 113 | 114 | - name: Build Sample Project 115 | uses: ./cmake-action 116 | with: 117 | options: BUILD_TESTING=ON 118 | 119 | - name: Test Sample Project 120 | uses: threeal/ctest-action@v1.1.0 121 | 122 | test-action-with-custom-generator: 123 | name: Test Action With Custom Generator 124 | runs-on: ubuntu-24.04 125 | steps: 126 | - name: Checkout Sample Project 127 | uses: actions/checkout@v4.2.2 128 | with: 129 | repository: threeal/cpp-starter 130 | ref: v1.0.0 131 | 132 | - name: Checkout Action 133 | uses: actions/checkout@v4.2.2 134 | with: 135 | path: cmake-action 136 | sparse-checkout: | 137 | action.yml 138 | dist 139 | sparse-checkout-cone-mode: false 140 | 141 | - name: Setup Ninja 142 | uses: seanmiddleditch/gha-setup-ninja@v6 143 | 144 | - name: Configure Sample Project 145 | id: cmake-action 146 | uses: ./cmake-action 147 | with: 148 | generator: Ninja 149 | run-build: false 150 | 151 | - name: Build Sample Project 152 | run: ninja -C ${{ steps.cmake-action.outputs.build-dir }} 153 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .* 2 | !.git* 3 | !.npmrc 4 | !.prettierignore 5 | 6 | node_modules/ 7 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | use-node-version=20.19.2 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist 2 | pnpm-lock.yaml 3 | README.md 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023-2025 Alfi Maulana 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CMake Action 2 | 3 | Configure and build [CMake](https://cmake.org/) projects on [GitHub Actions](https://github.com/features/actions). 4 | 5 | This action wraps the [`cmake`](https://cmake.org/cmake/help/latest/manual/cmake.1.html) command for configuring and building CMake projects. It provides a more streamlined syntax for specifying build options compared to calling the `cmake` command directly. 6 | 7 | ## Available Inputs 8 | 9 | | Name | Value Type | Description | 10 | | --- | --- | --- | 11 | | `source-dir` | Path | The source directory of the CMake project. Defaults to the current working directory. | 12 | | `build-dir` | Path | The build directory of the CMake project. Defaults to the `build` directory inside the source directory. | 13 | | `generator` | String | The build system generator for the CMake project. Equivalent to setting the `-G` option. | 14 | | `c-compiler` | String | The preferred executable for compiling C language files. Equivalent to defining the `CMAKE_C_COMPILER` variable. | 15 | | `cxx-compiler` | String | The preferred executable for compiling C++ language files. Equivalent to defining the `CMAKE_CXX_COMPILER` variable. | 16 | | `c-flags` | Multiple strings | Additional flags to pass when compiling C language files. Equivalent to defining the `CMAKE_C_FLAGS` variable. | 17 | | `cxx-flags` | Multiple strings | Additional flags to pass when compiling C++ language files. Equivalent to defining the `CMAKE_CXX_FLAGS` variable. | 18 | | `options` | Multiple strings | Additional options to pass during the CMake configuration. Equivalent to setting the `-D` option. | 19 | | `args` | Multiple strings | Additional arguments to pass during the CMake configuration. | 20 | | `run-build` | `true` or `false` | If enabled, builds the project using CMake. Defaults to `true`. | 21 | | `build-args` | Multiple strings | Additional arguments to pass during the CMake build. | 22 | 23 | ## Available Outputs 24 | 25 | | Name | Value Type | Description | 26 | | --- | --- | --- | 27 | | `build-dir` | Path | The build directory of the CMake project. | 28 | 29 | ## Example Usages 30 | 31 | This example demonstrates how to use this action to configure and build a CMake project in a GitHub Actions workflow: 32 | 33 | ```yaml 34 | name: Build 35 | on: 36 | push: 37 | jobs: 38 | build-project: 39 | name: Build Project 40 | runs-on: ubuntu-24.04 41 | steps: 42 | - name: Checkout Project 43 | uses: actions/checkout@v4.2.2 44 | 45 | - name: Build Project 46 | uses: threeal/cmake-action@v2.1.0 47 | ``` 48 | 49 | ### Specify the Source and Build Directories 50 | 51 | By default, this action uses the current working directory as the source directory and the `build` directory inside the source directory as the build directory. To use different directories, set the `source-dir` and/or `build-dir` inputs: 52 | 53 | ```yaml 54 | - name: Build Project 55 | uses: threeal/cmake-action@v2.1.0 56 | with: 57 | source-dir: source 58 | build-dir: output 59 | ``` 60 | 61 | ### Specify Build System Generator and Compiler 62 | 63 | The following example demonstrates how to use this action to configure and build the project using [Ninja](https://ninja-build.org/) as the build system generator and [Clang](https://clang.llvm.org/) as the compiler: 64 | 65 | ```yaml 66 | - name: Setup Ninja 67 | uses: seanmiddleditch/gha-setup-ninja@v5 68 | 69 | - name: Build Project 70 | uses: threeal/cmake-action@v2.1.0 71 | with: 72 | generator: Ninja 73 | cxx-compiler: clang++ 74 | ``` 75 | 76 | ### Specify Additional Options 77 | 78 | Use the `options` input to specify additional options for configuring a project: 79 | 80 | ```yaml 81 | - name: Build Project 82 | uses: threeal/cmake-action@v2.1.0 83 | with: 84 | options: | 85 | BUILD_TESTS=ON 86 | BUILD_EXAMPLES=ON 87 | ``` 88 | 89 | The above example is equivalent to calling the `cmake` command with the `-DBUILD_TESTS=ON` and `-DBUILD_EXAMPLES=ON` arguments. 90 | 91 | ### Configure Project Without Building 92 | 93 | By default, this action builds the project after configuration. To skip the build process, set the `run-build` option to `false`: 94 | 95 | ```yaml 96 | - name: Configure Project 97 | uses: threeal/cmake-action@v2.1.0 98 | with: 99 | run-build: false 100 | ``` 101 | 102 | ## License 103 | 104 | This project is licensed under the terms of the [MIT License](./LICENSE). 105 | 106 | Copyright © 2023-2025 [Alfi Maulana](https://github.com/threeal/) 107 | -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- 1 | name: CMake Action 2 | description: Configure and build CMake projects 3 | author: Alfi Maulana 4 | branding: 5 | color: gray-dark 6 | icon: terminal 7 | inputs: 8 | source-dir: 9 | description: The source directory of the CMake project 10 | build-dir: 11 | description: The build directory of the CMake project 12 | generator: 13 | description: The build system generator for the CMake project 14 | c-compiler: 15 | description: The preferred executable for compiling C language files 16 | cxx-compiler: 17 | description: The preferred executable for compiling C++ language files 18 | c-flags: 19 | description: Additional flags to pass when compiling C language files 20 | cxx-flags: 21 | description: Additional flags to pass when compiling C++ language files 22 | options: 23 | description: Additional options to pass during the CMake configuration 24 | args: 25 | description: Additional arguments to pass during the CMake configuration 26 | run-build: 27 | description: If enabled, builds the project using CMake 28 | default: true 29 | build-args: 30 | description: Additional arguments to pass during the CMake build 31 | outputs: 32 | build-dir: 33 | description: The build directory of the CMake project 34 | value: ${{ steps.process-inputs.outputs.build-dir }} 35 | runs: 36 | using: node20 37 | main: dist/action.mjs 38 | -------------------------------------------------------------------------------- /dist/action.mjs: -------------------------------------------------------------------------------- 1 | import 'node:fs'; 2 | import fsPromises from 'node:fs/promises'; 3 | import os from 'node:os'; 4 | import path from 'node:path'; 5 | import { spawn } from 'node:child_process'; 6 | 7 | /** 8 | * @internal 9 | * Retrieves the value of an environment variable. 10 | * 11 | * @param name - The name of the environment variable. 12 | * @returns The value of the environment variable. 13 | * @throws Error if the environment variable is not defined. 14 | */ 15 | function mustGetEnvironment(name) { 16 | const value = process.env[name]; 17 | if (value === undefined) { 18 | throw new Error(`the ${name} environment variable must be defined`); 19 | } 20 | return value; 21 | } 22 | /** 23 | * Retrieves the value of a GitHub Actions input. 24 | * 25 | * @param name - The name of the GitHub Actions input. 26 | * @returns The value of the GitHub Actions input, or an empty string if not found. 27 | */ 28 | function getInput(name) { 29 | const value = process.env[`INPUT_${name.toUpperCase()}`] ?? ""; 30 | return value.trim(); 31 | } 32 | /** 33 | * Sets the value of a GitHub Actions output. 34 | * 35 | * @param name - The name of the GitHub Actions output. 36 | * @param value - The value to set for the GitHub Actions output. 37 | * @returns A promise that resolves when the value is successfully set. 38 | */ 39 | async function setOutput(name, value) { 40 | const filePath = mustGetEnvironment("GITHUB_OUTPUT"); 41 | await fsPromises.appendFile(filePath, `${name}=${value}${os.EOL}`); 42 | } 43 | 44 | /** 45 | * Logs an error message in GitHub Actions. 46 | * 47 | * @param err - The error, which can be of any type. 48 | */ 49 | function logError(err) { 50 | const message = err instanceof Error ? err.message : String(err); 51 | process.stdout.write(`::error::${message}${os.EOL}`); 52 | } 53 | /** 54 | * Logs a command along with its arguments in GitHub Actions. 55 | * 56 | * @param command - The command to log. 57 | * @param args - The arguments of the command. 58 | */ 59 | function logCommand(command, ...args) { 60 | const message = [command, ...args].join(" "); 61 | process.stdout.write(`[command]${message}${os.EOL}`); 62 | } 63 | 64 | /** 65 | * Executes a command with the given arguments. 66 | * 67 | * The command is executed with `stdin` ignored and both `stdout` and `stderr` inherited by the parent process. 68 | * 69 | * @param command The command to execute. 70 | * @param args The arguments to pass to the command. 71 | * @returns A promise that resolves when the command exits successfully or rejects if it exits with a non-zero status code or encounters an error. 72 | */ 73 | async function exec(command, args) { 74 | return new Promise((resolve, reject) => { 75 | const proc = spawn(command, args, { 76 | stdio: ["ignore", "inherit", "inherit"], 77 | }); 78 | logCommand(proc.spawnfile, ...proc.spawnargs.splice(1)); 79 | proc.on("error", reject); 80 | proc.on("close", (code) => { 81 | if (code === 0) { 82 | resolve(); 83 | } 84 | else { 85 | reject(new Error(`Command exited with status code ${code}`)); 86 | } 87 | }); 88 | }); 89 | } 90 | 91 | /** 92 | * Configures the build system for a CMake project. 93 | * 94 | * Constructs and runs the `cmake` command to configure the project with the specified 95 | * source directory, build directory, generator, options, and additional arguments. 96 | * 97 | * @param context - The action context containing configuration details. 98 | * @returns A promise that resolves when the build system is successfully configured. 99 | */ 100 | async function configureProject(context) { 101 | const configureArgs = []; 102 | if (context.sourceDir) { 103 | configureArgs.push(context.sourceDir); 104 | } 105 | configureArgs.push("-B", context.buildDir); 106 | if (context.configure.generator) { 107 | configureArgs.push("-G", context.configure.generator); 108 | } 109 | configureArgs.push(...context.configure.options.map((opt) => "-D" + opt)); 110 | configureArgs.push(...context.configure.args); 111 | await exec("cmake", configureArgs); 112 | } 113 | /** 114 | * Builds a CMake project. 115 | * 116 | * Runs the `cmake --build` command to build the project using the specified 117 | * build directory and additional arguments. 118 | * 119 | * @param context - The action context containing build details. 120 | * @returns A promise that resolves when the project is successfully built. 121 | */ 122 | async function buildProject(context) { 123 | await exec("cmake", ["--build", context.buildDir, ...context.build.args]); 124 | } 125 | 126 | const regex = /"([^"]*)"|'([^']*)'|`([^`]*)`|(\S+)/g; 127 | /** 128 | * Converts a space-separated string into a list of arguments. 129 | * 130 | * This function parses the provided string, which contains arguments separated by spaces and possibly enclosed in quotes, into a list of arguments. 131 | * 132 | * @param str - The space-separated string to parse. 133 | * @returns A list of arguments. 134 | */ 135 | function parse(str) { 136 | const args = []; 137 | let match; 138 | while ((match = regex.exec(str)) !== null) { 139 | args.push(match[1] ?? match[2] ?? match[3] ?? match[4]); 140 | } 141 | return args; 142 | } 143 | 144 | function getContext() { 145 | const sourceDir = getInput("source-dir"); 146 | const options = []; 147 | let input = getInput("c-compiler"); 148 | if (input) 149 | options.push(`CMAKE_C_COMPILER=${input}`); 150 | input = getInput("cxx-compiler"); 151 | if (input) 152 | options.push(`CMAKE_CXX_COMPILER=${input}`); 153 | input = getInput("c-flags"); 154 | if (input) { 155 | const flags = input.replaceAll(/\s+/g, " "); 156 | options.push(`CMAKE_C_FLAGS=${flags}`); 157 | } 158 | input = getInput("cxx-flags"); 159 | if (input) { 160 | const flags = input.replaceAll(/\s+/g, " "); 161 | options.push(`CMAKE_CXX_FLAGS=${flags}`); 162 | } 163 | input = getInput("options"); 164 | if (input) { 165 | options.push(...parse(input).map((opt) => opt.toString())); 166 | } 167 | return { 168 | sourceDir, 169 | buildDir: getInput("build-dir") || path.join(sourceDir, "build"), 170 | configure: { 171 | generator: getInput("generator"), 172 | options, 173 | args: parse(getInput("args")).map((arg) => arg.toString()), 174 | }, 175 | build: { 176 | enabled: getInput("run-build") == "true", 177 | args: parse(getInput("build-args")).map((arg) => arg.toString()), 178 | }, 179 | }; 180 | } 181 | 182 | try { 183 | const context = getContext(); 184 | await configureProject(context); 185 | await setOutput("build-dir", context.buildDir); 186 | if (context.build.enabled) { 187 | await buildProject(context); 188 | } 189 | } 190 | catch (err) { 191 | logError(err); 192 | process.exit(1); 193 | } 194 | -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- 1 | import eslint from "@eslint/js"; 2 | import tseslint from "typescript-eslint"; 3 | 4 | export default [ 5 | eslint.configs.recommended, 6 | ...tseslint.configs.recommended, 7 | ...tseslint.configs.stylistic, 8 | { ignores: ["dist"] }, 9 | ]; 10 | -------------------------------------------------------------------------------- /lefthook.yml: -------------------------------------------------------------------------------- 1 | pre-commit: 2 | piped: true 3 | jobs: 4 | - name: install dependencies 5 | run: pnpm install 6 | glob: 7 | - package.json 8 | - pnpm-lock.yaml 9 | - pnpm-workspace.yaml 10 | 11 | - name: fix formatting 12 | run: pnpm prettier --write --ignore-unknown {staged_files} 13 | 14 | - name: fix lint 15 | run: pnpm eslint --no-warn-ignored --fix {staged_files} 16 | 17 | - name: check types 18 | run: pnpm tsc --noEmit 19 | glob: 20 | - src/*.ts 21 | - .npmrc 22 | - pnpm-lock.yaml 23 | - tsconfig.json 24 | exclude: 25 | - src/*.test.ts 26 | 27 | - name: build action 28 | run: pnpm rollup -c 29 | glob: 30 | - dist/* 31 | - src/*.ts 32 | - .npmrc 33 | - pnpm-lock.yaml 34 | - tsconfig.json 35 | exclude: 36 | - src/*.test.ts 37 | 38 | - name: check diff 39 | run: git diff --exit-code dist {staged_files} 40 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "root", 3 | "private": true, 4 | "type": "module", 5 | "scripts": { 6 | "test": "vitest run" 7 | }, 8 | "dependencies": { 9 | "gha-utils": "^0.4.1" 10 | }, 11 | "devDependencies": { 12 | "@eslint/js": "^9.28.0", 13 | "@rollup/plugin-node-resolve": "^16.0.1", 14 | "@rollup/plugin-typescript": "^12.1.2", 15 | "@tsconfig/node20": "^20.1.5", 16 | "@types/node": "^22.15.30", 17 | "@vitest/coverage-v8": "^3.1.4", 18 | "eslint": "^9.28.0", 19 | "lefthook": "^1.11.13", 20 | "prettier": "^3.5.3", 21 | "rollup": "^4.41.1", 22 | "tslib": "^2.8.1", 23 | "typescript": "^5.8.3", 24 | "typescript-eslint": "^8.33.1", 25 | "vitest": "^3.1.4" 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- 1 | lockfileVersion: '9.0' 2 | 3 | settings: 4 | autoInstallPeers: true 5 | excludeLinksFromLockfile: false 6 | 7 | importers: 8 | 9 | .: 10 | dependencies: 11 | gha-utils: 12 | specifier: ^0.4.1 13 | version: 0.4.1 14 | devDependencies: 15 | '@eslint/js': 16 | specifier: ^9.28.0 17 | version: 9.28.0 18 | '@rollup/plugin-node-resolve': 19 | specifier: ^16.0.1 20 | version: 16.0.1(rollup@4.41.1) 21 | '@rollup/plugin-typescript': 22 | specifier: ^12.1.2 23 | version: 12.1.2(rollup@4.41.1)(tslib@2.8.1)(typescript@5.8.3) 24 | '@tsconfig/node20': 25 | specifier: ^20.1.5 26 | version: 20.1.5 27 | '@types/node': 28 | specifier: ^22.15.30 29 | version: 22.15.30 30 | '@vitest/coverage-v8': 31 | specifier: ^3.1.4 32 | version: 3.1.4(vitest@3.1.4(@types/node@22.15.30)) 33 | eslint: 34 | specifier: ^9.28.0 35 | version: 9.28.0 36 | lefthook: 37 | specifier: ^1.11.13 38 | version: 1.11.13 39 | prettier: 40 | specifier: ^3.5.3 41 | version: 3.5.3 42 | rollup: 43 | specifier: ^4.41.1 44 | version: 4.41.1 45 | tslib: 46 | specifier: ^2.8.1 47 | version: 2.8.1 48 | typescript: 49 | specifier: ^5.8.3 50 | version: 5.8.3 51 | typescript-eslint: 52 | specifier: ^8.33.1 53 | version: 8.33.1(eslint@9.28.0)(typescript@5.8.3) 54 | vitest: 55 | specifier: ^3.1.4 56 | version: 3.1.4(@types/node@22.15.30) 57 | 58 | packages: 59 | 60 | '@ampproject/remapping@2.3.0': 61 | resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} 62 | engines: {node: '>=6.0.0'} 63 | 64 | '@babel/helper-string-parser@7.25.9': 65 | resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==} 66 | engines: {node: '>=6.9.0'} 67 | 68 | '@babel/helper-validator-identifier@7.25.9': 69 | resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==} 70 | engines: {node: '>=6.9.0'} 71 | 72 | '@babel/parser@7.26.9': 73 | resolution: {integrity: sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A==} 74 | engines: {node: '>=6.0.0'} 75 | hasBin: true 76 | 77 | '@babel/types@7.26.9': 78 | resolution: {integrity: sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw==} 79 | engines: {node: '>=6.9.0'} 80 | 81 | '@bcoe/v8-coverage@1.0.2': 82 | resolution: {integrity: sha512-6zABk/ECA/QYSCQ1NGiVwwbQerUCZ+TQbp64Q3AgmfNvurHH0j8TtXa1qbShXA6qqkpAj4V5W8pP6mLe1mcMqA==} 83 | engines: {node: '>=18'} 84 | 85 | '@esbuild/aix-ppc64@0.25.0': 86 | resolution: {integrity: sha512-O7vun9Sf8DFjH2UtqK8Ku3LkquL9SZL8OLY1T5NZkA34+wG3OQF7cl4Ql8vdNzM6fzBbYfLaiRLIOZ+2FOCgBQ==} 87 | engines: {node: '>=18'} 88 | cpu: [ppc64] 89 | os: [aix] 90 | 91 | '@esbuild/android-arm64@0.25.0': 92 | resolution: {integrity: sha512-grvv8WncGjDSyUBjN9yHXNt+cq0snxXbDxy5pJtzMKGmmpPxeAmAhWxXI+01lU5rwZomDgD3kJwulEnhTRUd6g==} 93 | engines: {node: '>=18'} 94 | cpu: [arm64] 95 | os: [android] 96 | 97 | '@esbuild/android-arm@0.25.0': 98 | resolution: {integrity: sha512-PTyWCYYiU0+1eJKmw21lWtC+d08JDZPQ5g+kFyxP0V+es6VPPSUhM6zk8iImp2jbV6GwjX4pap0JFbUQN65X1g==} 99 | engines: {node: '>=18'} 100 | cpu: [arm] 101 | os: [android] 102 | 103 | '@esbuild/android-x64@0.25.0': 104 | resolution: {integrity: sha512-m/ix7SfKG5buCnxasr52+LI78SQ+wgdENi9CqyCXwjVR2X4Jkz+BpC3le3AoBPYTC9NHklwngVXvbJ9/Akhrfg==} 105 | engines: {node: '>=18'} 106 | cpu: [x64] 107 | os: [android] 108 | 109 | '@esbuild/darwin-arm64@0.25.0': 110 | resolution: {integrity: sha512-mVwdUb5SRkPayVadIOI78K7aAnPamoeFR2bT5nszFUZ9P8UpK4ratOdYbZZXYSqPKMHfS1wdHCJk1P1EZpRdvw==} 111 | engines: {node: '>=18'} 112 | cpu: [arm64] 113 | os: [darwin] 114 | 115 | '@esbuild/darwin-x64@0.25.0': 116 | resolution: {integrity: sha512-DgDaYsPWFTS4S3nWpFcMn/33ZZwAAeAFKNHNa1QN0rI4pUjgqf0f7ONmXf6d22tqTY+H9FNdgeaAa+YIFUn2Rg==} 117 | engines: {node: '>=18'} 118 | cpu: [x64] 119 | os: [darwin] 120 | 121 | '@esbuild/freebsd-arm64@0.25.0': 122 | resolution: {integrity: sha512-VN4ocxy6dxefN1MepBx/iD1dH5K8qNtNe227I0mnTRjry8tj5MRk4zprLEdG8WPyAPb93/e4pSgi1SoHdgOa4w==} 123 | engines: {node: '>=18'} 124 | cpu: [arm64] 125 | os: [freebsd] 126 | 127 | '@esbuild/freebsd-x64@0.25.0': 128 | resolution: {integrity: sha512-mrSgt7lCh07FY+hDD1TxiTyIHyttn6vnjesnPoVDNmDfOmggTLXRv8Id5fNZey1gl/V2dyVK1VXXqVsQIiAk+A==} 129 | engines: {node: '>=18'} 130 | cpu: [x64] 131 | os: [freebsd] 132 | 133 | '@esbuild/linux-arm64@0.25.0': 134 | resolution: {integrity: sha512-9QAQjTWNDM/Vk2bgBl17yWuZxZNQIF0OUUuPZRKoDtqF2k4EtYbpyiG5/Dk7nqeK6kIJWPYldkOcBqjXjrUlmg==} 135 | engines: {node: '>=18'} 136 | cpu: [arm64] 137 | os: [linux] 138 | 139 | '@esbuild/linux-arm@0.25.0': 140 | resolution: {integrity: sha512-vkB3IYj2IDo3g9xX7HqhPYxVkNQe8qTK55fraQyTzTX/fxaDtXiEnavv9geOsonh2Fd2RMB+i5cbhu2zMNWJwg==} 141 | engines: {node: '>=18'} 142 | cpu: [arm] 143 | os: [linux] 144 | 145 | '@esbuild/linux-ia32@0.25.0': 146 | resolution: {integrity: sha512-43ET5bHbphBegyeqLb7I1eYn2P/JYGNmzzdidq/w0T8E2SsYL1U6un2NFROFRg1JZLTzdCoRomg8Rvf9M6W6Gg==} 147 | engines: {node: '>=18'} 148 | cpu: [ia32] 149 | os: [linux] 150 | 151 | '@esbuild/linux-loong64@0.25.0': 152 | resolution: {integrity: sha512-fC95c/xyNFueMhClxJmeRIj2yrSMdDfmqJnyOY4ZqsALkDrrKJfIg5NTMSzVBr5YW1jf+l7/cndBfP3MSDpoHw==} 153 | engines: {node: '>=18'} 154 | cpu: [loong64] 155 | os: [linux] 156 | 157 | '@esbuild/linux-mips64el@0.25.0': 158 | resolution: {integrity: sha512-nkAMFju7KDW73T1DdH7glcyIptm95a7Le8irTQNO/qtkoyypZAnjchQgooFUDQhNAy4iu08N79W4T4pMBwhPwQ==} 159 | engines: {node: '>=18'} 160 | cpu: [mips64el] 161 | os: [linux] 162 | 163 | '@esbuild/linux-ppc64@0.25.0': 164 | resolution: {integrity: sha512-NhyOejdhRGS8Iwv+KKR2zTq2PpysF9XqY+Zk77vQHqNbo/PwZCzB5/h7VGuREZm1fixhs4Q/qWRSi5zmAiO4Fw==} 165 | engines: {node: '>=18'} 166 | cpu: [ppc64] 167 | os: [linux] 168 | 169 | '@esbuild/linux-riscv64@0.25.0': 170 | resolution: {integrity: sha512-5S/rbP5OY+GHLC5qXp1y/Mx//e92L1YDqkiBbO9TQOvuFXM+iDqUNG5XopAnXoRH3FjIUDkeGcY1cgNvnXp/kA==} 171 | engines: {node: '>=18'} 172 | cpu: [riscv64] 173 | os: [linux] 174 | 175 | '@esbuild/linux-s390x@0.25.0': 176 | resolution: {integrity: sha512-XM2BFsEBz0Fw37V0zU4CXfcfuACMrppsMFKdYY2WuTS3yi8O1nFOhil/xhKTmE1nPmVyvQJjJivgDT+xh8pXJA==} 177 | engines: {node: '>=18'} 178 | cpu: [s390x] 179 | os: [linux] 180 | 181 | '@esbuild/linux-x64@0.25.0': 182 | resolution: {integrity: sha512-9yl91rHw/cpwMCNytUDxwj2XjFpxML0y9HAOH9pNVQDpQrBxHy01Dx+vaMu0N1CKa/RzBD2hB4u//nfc+Sd3Cw==} 183 | engines: {node: '>=18'} 184 | cpu: [x64] 185 | os: [linux] 186 | 187 | '@esbuild/netbsd-arm64@0.25.0': 188 | resolution: {integrity: sha512-RuG4PSMPFfrkH6UwCAqBzauBWTygTvb1nxWasEJooGSJ/NwRw7b2HOwyRTQIU97Hq37l3npXoZGYMy3b3xYvPw==} 189 | engines: {node: '>=18'} 190 | cpu: [arm64] 191 | os: [netbsd] 192 | 193 | '@esbuild/netbsd-x64@0.25.0': 194 | resolution: {integrity: sha512-jl+qisSB5jk01N5f7sPCsBENCOlPiS/xptD5yxOx2oqQfyourJwIKLRA2yqWdifj3owQZCL2sn6o08dBzZGQzA==} 195 | engines: {node: '>=18'} 196 | cpu: [x64] 197 | os: [netbsd] 198 | 199 | '@esbuild/openbsd-arm64@0.25.0': 200 | resolution: {integrity: sha512-21sUNbq2r84YE+SJDfaQRvdgznTD8Xc0oc3p3iW/a1EVWeNj/SdUCbm5U0itZPQYRuRTW20fPMWMpcrciH2EJw==} 201 | engines: {node: '>=18'} 202 | cpu: [arm64] 203 | os: [openbsd] 204 | 205 | '@esbuild/openbsd-x64@0.25.0': 206 | resolution: {integrity: sha512-2gwwriSMPcCFRlPlKx3zLQhfN/2WjJ2NSlg5TKLQOJdV0mSxIcYNTMhk3H3ulL/cak+Xj0lY1Ym9ysDV1igceg==} 207 | engines: {node: '>=18'} 208 | cpu: [x64] 209 | os: [openbsd] 210 | 211 | '@esbuild/sunos-x64@0.25.0': 212 | resolution: {integrity: sha512-bxI7ThgLzPrPz484/S9jLlvUAHYMzy6I0XiU1ZMeAEOBcS0VePBFxh1JjTQt3Xiat5b6Oh4x7UC7IwKQKIJRIg==} 213 | engines: {node: '>=18'} 214 | cpu: [x64] 215 | os: [sunos] 216 | 217 | '@esbuild/win32-arm64@0.25.0': 218 | resolution: {integrity: sha512-ZUAc2YK6JW89xTbXvftxdnYy3m4iHIkDtK3CLce8wg8M2L+YZhIvO1DKpxrd0Yr59AeNNkTiic9YLf6FTtXWMw==} 219 | engines: {node: '>=18'} 220 | cpu: [arm64] 221 | os: [win32] 222 | 223 | '@esbuild/win32-ia32@0.25.0': 224 | resolution: {integrity: sha512-eSNxISBu8XweVEWG31/JzjkIGbGIJN/TrRoiSVZwZ6pkC6VX4Im/WV2cz559/TXLcYbcrDN8JtKgd9DJVIo8GA==} 225 | engines: {node: '>=18'} 226 | cpu: [ia32] 227 | os: [win32] 228 | 229 | '@esbuild/win32-x64@0.25.0': 230 | resolution: {integrity: sha512-ZENoHJBxA20C2zFzh6AI4fT6RraMzjYw4xKWemRTRmRVtN9c5DcH9r/f2ihEkMjOW5eGgrwCslG/+Y/3bL+DHQ==} 231 | engines: {node: '>=18'} 232 | cpu: [x64] 233 | os: [win32] 234 | 235 | '@eslint-community/eslint-utils@4.7.0': 236 | resolution: {integrity: sha512-dyybb3AcajC7uha6CvhdVRJqaKyn7w2YKqKyAN37NKYgZT36w+iRb0Dymmc5qEJ549c/S31cMMSFd75bteCpCw==} 237 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 238 | peerDependencies: 239 | eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 240 | 241 | '@eslint-community/regexpp@4.12.1': 242 | resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} 243 | engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 244 | 245 | '@eslint/config-array@0.20.0': 246 | resolution: {integrity: sha512-fxlS1kkIjx8+vy2SjuCB94q3htSNrufYTXubwiBFeaQHbH6Ipi43gFJq2zCMt6PHhImH3Xmr0NksKDvchWlpQQ==} 247 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 248 | 249 | '@eslint/config-helpers@0.2.2': 250 | resolution: {integrity: sha512-+GPzk8PlG0sPpzdU5ZvIRMPidzAnZDl/s9L+y13iodqvb8leL53bTannOrQ/Im7UkpsmFU5Ily5U60LWixnmLg==} 251 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 252 | 253 | '@eslint/core@0.14.0': 254 | resolution: {integrity: sha512-qIbV0/JZr7iSDjqAc60IqbLdsj9GDt16xQtWD+B78d/HAlvysGdZZ6rpJHGAc2T0FQx1X6thsSPdnoiGKdNtdg==} 255 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 256 | 257 | '@eslint/eslintrc@3.3.1': 258 | resolution: {integrity: sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==} 259 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 260 | 261 | '@eslint/js@9.28.0': 262 | resolution: {integrity: sha512-fnqSjGWd/CoIp4EXIxWVK/sHA6DOHN4+8Ix2cX5ycOY7LG0UY8nHCU5pIp2eaE1Mc7Qd8kHspYNzYXT2ojPLzg==} 263 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 264 | 265 | '@eslint/object-schema@2.1.6': 266 | resolution: {integrity: sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==} 267 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 268 | 269 | '@eslint/plugin-kit@0.3.1': 270 | resolution: {integrity: sha512-0J+zgWxHN+xXONWIyPWKFMgVuJoZuGiIFu8yxk7RJjxkzpGmyja5wRFqZIVtjDVOQpV+Rw0iOAjYPE2eQyjr0w==} 271 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 272 | 273 | '@humanfs/core@0.19.1': 274 | resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==} 275 | engines: {node: '>=18.18.0'} 276 | 277 | '@humanfs/node@0.16.6': 278 | resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==} 279 | engines: {node: '>=18.18.0'} 280 | 281 | '@humanwhocodes/module-importer@1.0.1': 282 | resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} 283 | engines: {node: '>=12.22'} 284 | 285 | '@humanwhocodes/retry@0.3.1': 286 | resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==} 287 | engines: {node: '>=18.18'} 288 | 289 | '@humanwhocodes/retry@0.4.3': 290 | resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==} 291 | engines: {node: '>=18.18'} 292 | 293 | '@isaacs/cliui@8.0.2': 294 | resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} 295 | engines: {node: '>=12'} 296 | 297 | '@istanbuljs/schema@0.1.3': 298 | resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} 299 | engines: {node: '>=8'} 300 | 301 | '@jridgewell/gen-mapping@0.3.8': 302 | resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==} 303 | engines: {node: '>=6.0.0'} 304 | 305 | '@jridgewell/resolve-uri@3.1.2': 306 | resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} 307 | engines: {node: '>=6.0.0'} 308 | 309 | '@jridgewell/set-array@1.2.1': 310 | resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} 311 | engines: {node: '>=6.0.0'} 312 | 313 | '@jridgewell/sourcemap-codec@1.5.0': 314 | resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} 315 | 316 | '@jridgewell/trace-mapping@0.3.25': 317 | resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} 318 | 319 | '@nodelib/fs.scandir@2.1.5': 320 | resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 321 | engines: {node: '>= 8'} 322 | 323 | '@nodelib/fs.stat@2.0.5': 324 | resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 325 | engines: {node: '>= 8'} 326 | 327 | '@nodelib/fs.walk@1.2.8': 328 | resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 329 | engines: {node: '>= 8'} 330 | 331 | '@pkgjs/parseargs@0.11.0': 332 | resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} 333 | engines: {node: '>=14'} 334 | 335 | '@rollup/plugin-node-resolve@16.0.1': 336 | resolution: {integrity: sha512-tk5YCxJWIG81umIvNkSod2qK5KyQW19qcBF/B78n1bjtOON6gzKoVeSzAE8yHCZEDmqkHKkxplExA8KzdJLJpA==} 337 | engines: {node: '>=14.0.0'} 338 | peerDependencies: 339 | rollup: ^2.78.0||^3.0.0||^4.0.0 340 | peerDependenciesMeta: 341 | rollup: 342 | optional: true 343 | 344 | '@rollup/plugin-typescript@12.1.2': 345 | resolution: {integrity: sha512-cdtSp154H5sv637uMr1a8OTWB0L1SWDSm1rDGiyfcGcvQ6cuTs4MDk2BVEBGysUWago4OJN4EQZqOTl/QY3Jgg==} 346 | engines: {node: '>=14.0.0'} 347 | peerDependencies: 348 | rollup: ^2.14.0||^3.0.0||^4.0.0 349 | tslib: '*' 350 | typescript: '>=3.7.0' 351 | peerDependenciesMeta: 352 | rollup: 353 | optional: true 354 | tslib: 355 | optional: true 356 | 357 | '@rollup/pluginutils@5.1.4': 358 | resolution: {integrity: sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==} 359 | engines: {node: '>=14.0.0'} 360 | peerDependencies: 361 | rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 362 | peerDependenciesMeta: 363 | rollup: 364 | optional: true 365 | 366 | '@rollup/rollup-android-arm-eabi@4.41.1': 367 | resolution: {integrity: sha512-NELNvyEWZ6R9QMkiytB4/L4zSEaBC03KIXEghptLGLZWJ6VPrL63ooZQCOnlx36aQPGhzuOMwDerC1Eb2VmrLw==} 368 | cpu: [arm] 369 | os: [android] 370 | 371 | '@rollup/rollup-android-arm64@4.41.1': 372 | resolution: {integrity: sha512-DXdQe1BJ6TK47ukAoZLehRHhfKnKg9BjnQYUu9gzhI8Mwa1d2fzxA1aw2JixHVl403bwp1+/o/NhhHtxWJBgEA==} 373 | cpu: [arm64] 374 | os: [android] 375 | 376 | '@rollup/rollup-darwin-arm64@4.41.1': 377 | resolution: {integrity: sha512-5afxvwszzdulsU2w8JKWwY8/sJOLPzf0e1bFuvcW5h9zsEg+RQAojdW0ux2zyYAz7R8HvvzKCjLNJhVq965U7w==} 378 | cpu: [arm64] 379 | os: [darwin] 380 | 381 | '@rollup/rollup-darwin-x64@4.41.1': 382 | resolution: {integrity: sha512-egpJACny8QOdHNNMZKf8xY0Is6gIMz+tuqXlusxquWu3F833DcMwmGM7WlvCO9sB3OsPjdC4U0wHw5FabzCGZg==} 383 | cpu: [x64] 384 | os: [darwin] 385 | 386 | '@rollup/rollup-freebsd-arm64@4.41.1': 387 | resolution: {integrity: sha512-DBVMZH5vbjgRk3r0OzgjS38z+atlupJ7xfKIDJdZZL6sM6wjfDNo64aowcLPKIx7LMQi8vybB56uh1Ftck/Atg==} 388 | cpu: [arm64] 389 | os: [freebsd] 390 | 391 | '@rollup/rollup-freebsd-x64@4.41.1': 392 | resolution: {integrity: sha512-3FkydeohozEskBxNWEIbPfOE0aqQgB6ttTkJ159uWOFn42VLyfAiyD9UK5mhu+ItWzft60DycIN1Xdgiy8o/SA==} 393 | cpu: [x64] 394 | os: [freebsd] 395 | 396 | '@rollup/rollup-linux-arm-gnueabihf@4.41.1': 397 | resolution: {integrity: sha512-wC53ZNDgt0pqx5xCAgNunkTzFE8GTgdZ9EwYGVcg+jEjJdZGtq9xPjDnFgfFozQI/Xm1mh+D9YlYtl+ueswNEg==} 398 | cpu: [arm] 399 | os: [linux] 400 | 401 | '@rollup/rollup-linux-arm-musleabihf@4.41.1': 402 | resolution: {integrity: sha512-jwKCca1gbZkZLhLRtsrka5N8sFAaxrGz/7wRJ8Wwvq3jug7toO21vWlViihG85ei7uJTpzbXZRcORotE+xyrLA==} 403 | cpu: [arm] 404 | os: [linux] 405 | 406 | '@rollup/rollup-linux-arm64-gnu@4.41.1': 407 | resolution: {integrity: sha512-g0UBcNknsmmNQ8V2d/zD2P7WWfJKU0F1nu0k5pW4rvdb+BIqMm8ToluW/eeRmxCared5dD76lS04uL4UaNgpNA==} 408 | cpu: [arm64] 409 | os: [linux] 410 | 411 | '@rollup/rollup-linux-arm64-musl@4.41.1': 412 | resolution: {integrity: sha512-XZpeGB5TKEZWzIrj7sXr+BEaSgo/ma/kCgrZgL0oo5qdB1JlTzIYQKel/RmhT6vMAvOdM2teYlAaOGJpJ9lahg==} 413 | cpu: [arm64] 414 | os: [linux] 415 | 416 | '@rollup/rollup-linux-loongarch64-gnu@4.41.1': 417 | resolution: {integrity: sha512-bkCfDJ4qzWfFRCNt5RVV4DOw6KEgFTUZi2r2RuYhGWC8WhCA8lCAJhDeAmrM/fdiAH54m0mA0Vk2FGRPyzI+tw==} 418 | cpu: [loong64] 419 | os: [linux] 420 | 421 | '@rollup/rollup-linux-powerpc64le-gnu@4.41.1': 422 | resolution: {integrity: sha512-3mr3Xm+gvMX+/8EKogIZSIEF0WUu0HL9di+YWlJpO8CQBnoLAEL/roTCxuLncEdgcfJcvA4UMOf+2dnjl4Ut1A==} 423 | cpu: [ppc64] 424 | os: [linux] 425 | 426 | '@rollup/rollup-linux-riscv64-gnu@4.41.1': 427 | resolution: {integrity: sha512-3rwCIh6MQ1LGrvKJitQjZFuQnT2wxfU+ivhNBzmxXTXPllewOF7JR1s2vMX/tWtUYFgphygxjqMl76q4aMotGw==} 428 | cpu: [riscv64] 429 | os: [linux] 430 | 431 | '@rollup/rollup-linux-riscv64-musl@4.41.1': 432 | resolution: {integrity: sha512-LdIUOb3gvfmpkgFZuccNa2uYiqtgZAz3PTzjuM5bH3nvuy9ty6RGc/Q0+HDFrHrizJGVpjnTZ1yS5TNNjFlklw==} 433 | cpu: [riscv64] 434 | os: [linux] 435 | 436 | '@rollup/rollup-linux-s390x-gnu@4.41.1': 437 | resolution: {integrity: sha512-oIE6M8WC9ma6xYqjvPhzZYk6NbobIURvP/lEbh7FWplcMO6gn7MM2yHKA1eC/GvYwzNKK/1LYgqzdkZ8YFxR8g==} 438 | cpu: [s390x] 439 | os: [linux] 440 | 441 | '@rollup/rollup-linux-x64-gnu@4.41.1': 442 | resolution: {integrity: sha512-cWBOvayNvA+SyeQMp79BHPK8ws6sHSsYnK5zDcsC3Hsxr1dgTABKjMnMslPq1DvZIp6uO7kIWhiGwaTdR4Og9A==} 443 | cpu: [x64] 444 | os: [linux] 445 | 446 | '@rollup/rollup-linux-x64-musl@4.41.1': 447 | resolution: {integrity: sha512-y5CbN44M+pUCdGDlZFzGGBSKCA4A/J2ZH4edTYSSxFg7ce1Xt3GtydbVKWLlzL+INfFIZAEg1ZV6hh9+QQf9YQ==} 448 | cpu: [x64] 449 | os: [linux] 450 | 451 | '@rollup/rollup-win32-arm64-msvc@4.41.1': 452 | resolution: {integrity: sha512-lZkCxIrjlJlMt1dLO/FbpZbzt6J/A8p4DnqzSa4PWqPEUUUnzXLeki/iyPLfV0BmHItlYgHUqJe+3KiyydmiNQ==} 453 | cpu: [arm64] 454 | os: [win32] 455 | 456 | '@rollup/rollup-win32-ia32-msvc@4.41.1': 457 | resolution: {integrity: sha512-+psFT9+pIh2iuGsxFYYa/LhS5MFKmuivRsx9iPJWNSGbh2XVEjk90fmpUEjCnILPEPJnikAU6SFDiEUyOv90Pg==} 458 | cpu: [ia32] 459 | os: [win32] 460 | 461 | '@rollup/rollup-win32-x64-msvc@4.41.1': 462 | resolution: {integrity: sha512-Wq2zpapRYLfi4aKxf2Xff0tN+7slj2d4R87WEzqw7ZLsVvO5zwYCIuEGSZYiK41+GlwUo1HiR+GdkLEJnCKTCw==} 463 | cpu: [x64] 464 | os: [win32] 465 | 466 | '@tsconfig/node20@20.1.5': 467 | resolution: {integrity: sha512-Vm8e3WxDTqMGPU4GATF9keQAIy1Drd7bPwlgzKJnZtoOsTm1tduUTbDjg0W5qERvGuxPI2h9RbMufH0YdfBylA==} 468 | 469 | '@types/estree@1.0.7': 470 | resolution: {integrity: sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==} 471 | 472 | '@types/json-schema@7.0.15': 473 | resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} 474 | 475 | '@types/node@22.15.30': 476 | resolution: {integrity: sha512-6Q7lr06bEHdlfplU6YRbgG1SFBdlsfNC4/lX+SkhiTs0cpJkOElmWls8PxDFv4yY/xKb8Y6SO0OmSX4wgqTZbA==} 477 | 478 | '@types/resolve@1.20.2': 479 | resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} 480 | 481 | '@typescript-eslint/eslint-plugin@8.33.1': 482 | resolution: {integrity: sha512-TDCXj+YxLgtvxvFlAvpoRv9MAncDLBV2oT9Bd7YBGC/b/sEURoOYuIwLI99rjWOfY3QtDzO+mk0n4AmdFExW8A==} 483 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 484 | peerDependencies: 485 | '@typescript-eslint/parser': ^8.33.1 486 | eslint: ^8.57.0 || ^9.0.0 487 | typescript: '>=4.8.4 <5.9.0' 488 | 489 | '@typescript-eslint/parser@8.33.1': 490 | resolution: {integrity: sha512-qwxv6dq682yVvgKKp2qWwLgRbscDAYktPptK4JPojCwwi3R9cwrvIxS4lvBpzmcqzR4bdn54Z0IG1uHFskW4dA==} 491 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 492 | peerDependencies: 493 | eslint: ^8.57.0 || ^9.0.0 494 | typescript: '>=4.8.4 <5.9.0' 495 | 496 | '@typescript-eslint/project-service@8.33.1': 497 | resolution: {integrity: sha512-DZR0efeNklDIHHGRpMpR5gJITQpu6tLr9lDJnKdONTC7vvzOlLAG/wcfxcdxEWrbiZApcoBCzXqU/Z458Za5Iw==} 498 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 499 | peerDependencies: 500 | typescript: '>=4.8.4 <5.9.0' 501 | 502 | '@typescript-eslint/scope-manager@8.33.1': 503 | resolution: {integrity: sha512-dM4UBtgmzHR9bS0Rv09JST0RcHYearoEoo3pG5B6GoTR9XcyeqX87FEhPo+5kTvVfKCvfHaHrcgeJQc6mrDKrA==} 504 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 505 | 506 | '@typescript-eslint/tsconfig-utils@8.33.1': 507 | resolution: {integrity: sha512-STAQsGYbHCF0/e+ShUQ4EatXQ7ceh3fBCXkNU7/MZVKulrlq1usH7t2FhxvCpuCi5O5oi1vmVaAjrGeL71OK1g==} 508 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 509 | peerDependencies: 510 | typescript: '>=4.8.4 <5.9.0' 511 | 512 | '@typescript-eslint/type-utils@8.33.1': 513 | resolution: {integrity: sha512-1cG37d9xOkhlykom55WVwG2QRNC7YXlxMaMzqw2uPeJixBFfKWZgaP/hjAObqMN/u3fr5BrTwTnc31/L9jQ2ww==} 514 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 515 | peerDependencies: 516 | eslint: ^8.57.0 || ^9.0.0 517 | typescript: '>=4.8.4 <5.9.0' 518 | 519 | '@typescript-eslint/types@8.33.1': 520 | resolution: {integrity: sha512-xid1WfizGhy/TKMTwhtVOgalHwPtV8T32MS9MaH50Cwvz6x6YqRIPdD2WvW0XaqOzTV9p5xdLY0h/ZusU5Lokg==} 521 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 522 | 523 | '@typescript-eslint/typescript-estree@8.33.1': 524 | resolution: {integrity: sha512-+s9LYcT8LWjdYWu7IWs7FvUxpQ/DGkdjZeE/GGulHvv8rvYwQvVaUZ6DE+j5x/prADUgSbbCWZ2nPI3usuVeOA==} 525 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 526 | peerDependencies: 527 | typescript: '>=4.8.4 <5.9.0' 528 | 529 | '@typescript-eslint/utils@8.33.1': 530 | resolution: {integrity: sha512-52HaBiEQUaRYqAXpfzWSR2U3gxk92Kw006+xZpElaPMg3C4PgM+A5LqwoQI1f9E5aZ/qlxAZxzm42WX+vn92SQ==} 531 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 532 | peerDependencies: 533 | eslint: ^8.57.0 || ^9.0.0 534 | typescript: '>=4.8.4 <5.9.0' 535 | 536 | '@typescript-eslint/visitor-keys@8.33.1': 537 | resolution: {integrity: sha512-3i8NrFcZeeDHJ+7ZUuDkGT+UHq+XoFGsymNK2jZCOHcfEzRQ0BdpRtdpSx/Iyf3MHLWIcLS0COuOPibKQboIiQ==} 538 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 539 | 540 | '@vitest/coverage-v8@3.1.4': 541 | resolution: {integrity: sha512-G4p6OtioySL+hPV7Y6JHlhpsODbJzt1ndwHAFkyk6vVjpK03PFsKnauZIzcd0PrK4zAbc5lc+jeZ+eNGiMA+iw==} 542 | peerDependencies: 543 | '@vitest/browser': 3.1.4 544 | vitest: 3.1.4 545 | peerDependenciesMeta: 546 | '@vitest/browser': 547 | optional: true 548 | 549 | '@vitest/expect@3.1.4': 550 | resolution: {integrity: sha512-xkD/ljeliyaClDYqHPNCiJ0plY5YIcM0OlRiZizLhlPmpXWpxnGMyTZXOHFhFeG7w9P5PBeL4IdtJ/HeQwTbQA==} 551 | 552 | '@vitest/mocker@3.1.4': 553 | resolution: {integrity: sha512-8IJ3CvwtSw/EFXqWFL8aCMu+YyYXG2WUSrQbViOZkWTKTVicVwZ/YiEZDSqD00kX+v/+W+OnxhNWoeVKorHygA==} 554 | peerDependencies: 555 | msw: ^2.4.9 556 | vite: ^5.0.0 || ^6.0.0 557 | peerDependenciesMeta: 558 | msw: 559 | optional: true 560 | vite: 561 | optional: true 562 | 563 | '@vitest/pretty-format@3.1.4': 564 | resolution: {integrity: sha512-cqv9H9GvAEoTaoq+cYqUTCGscUjKqlJZC7PRwY5FMySVj5J+xOm1KQcCiYHJOEzOKRUhLH4R2pTwvFlWCEScsg==} 565 | 566 | '@vitest/runner@3.1.4': 567 | resolution: {integrity: sha512-djTeF1/vt985I/wpKVFBMWUlk/I7mb5hmD5oP8K9ACRmVXgKTae3TUOtXAEBfslNKPzUQvnKhNd34nnRSYgLNQ==} 568 | 569 | '@vitest/snapshot@3.1.4': 570 | resolution: {integrity: sha512-JPHf68DvuO7vilmvwdPr9TS0SuuIzHvxeaCkxYcCD4jTk67XwL45ZhEHFKIuCm8CYstgI6LZ4XbwD6ANrwMpFg==} 571 | 572 | '@vitest/spy@3.1.4': 573 | resolution: {integrity: sha512-Xg1bXhu+vtPXIodYN369M86K8shGLouNjoVI78g8iAq2rFoHFdajNvJJ5A/9bPMFcfQqdaCpOgWKEoMQg/s0Yg==} 574 | 575 | '@vitest/utils@3.1.4': 576 | resolution: {integrity: sha512-yriMuO1cfFhmiGc8ataN51+9ooHRuURdfAZfwFd3usWynjzpLslZdYnRegTv32qdgtJTsj15FoeZe2g15fY1gg==} 577 | 578 | acorn-jsx@5.3.2: 579 | resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 580 | peerDependencies: 581 | acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 582 | 583 | acorn@8.14.1: 584 | resolution: {integrity: sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==} 585 | engines: {node: '>=0.4.0'} 586 | hasBin: true 587 | 588 | ajv@6.12.6: 589 | resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} 590 | 591 | ansi-regex@5.0.1: 592 | resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 593 | engines: {node: '>=8'} 594 | 595 | ansi-regex@6.1.0: 596 | resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==} 597 | engines: {node: '>=12'} 598 | 599 | ansi-styles@4.3.0: 600 | resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 601 | engines: {node: '>=8'} 602 | 603 | ansi-styles@6.2.1: 604 | resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} 605 | engines: {node: '>=12'} 606 | 607 | argparse@2.0.1: 608 | resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 609 | 610 | assertion-error@2.0.1: 611 | resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} 612 | engines: {node: '>=12'} 613 | 614 | balanced-match@1.0.2: 615 | resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 616 | 617 | brace-expansion@1.1.11: 618 | resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} 619 | 620 | brace-expansion@2.0.1: 621 | resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} 622 | 623 | braces@3.0.3: 624 | resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} 625 | engines: {node: '>=8'} 626 | 627 | cac@6.7.14: 628 | resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} 629 | engines: {node: '>=8'} 630 | 631 | callsites@3.1.0: 632 | resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} 633 | engines: {node: '>=6'} 634 | 635 | chai@5.2.0: 636 | resolution: {integrity: sha512-mCuXncKXk5iCLhfhwTc0izo0gtEmpz5CtG2y8GiOINBlMVS6v8TMRc5TaLWKS6692m9+dVVfzgeVxR5UxWHTYw==} 637 | engines: {node: '>=12'} 638 | 639 | chalk@4.1.2: 640 | resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 641 | engines: {node: '>=10'} 642 | 643 | check-error@2.1.1: 644 | resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==} 645 | engines: {node: '>= 16'} 646 | 647 | color-convert@2.0.1: 648 | resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 649 | engines: {node: '>=7.0.0'} 650 | 651 | color-name@1.1.4: 652 | resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 653 | 654 | concat-map@0.0.1: 655 | resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 656 | 657 | cross-spawn@7.0.6: 658 | resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} 659 | engines: {node: '>= 8'} 660 | 661 | debug@4.4.1: 662 | resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==} 663 | engines: {node: '>=6.0'} 664 | peerDependencies: 665 | supports-color: '*' 666 | peerDependenciesMeta: 667 | supports-color: 668 | optional: true 669 | 670 | deep-eql@5.0.2: 671 | resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==} 672 | engines: {node: '>=6'} 673 | 674 | deep-is@0.1.4: 675 | resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 676 | 677 | deepmerge@4.3.1: 678 | resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==} 679 | engines: {node: '>=0.10.0'} 680 | 681 | eastasianwidth@0.2.0: 682 | resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} 683 | 684 | emoji-regex@8.0.0: 685 | resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 686 | 687 | emoji-regex@9.2.2: 688 | resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} 689 | 690 | es-module-lexer@1.7.0: 691 | resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==} 692 | 693 | esbuild@0.25.0: 694 | resolution: {integrity: sha512-BXq5mqc8ltbaN34cDqWuYKyNhX8D/Z0J1xdtdQ8UcIIIyJyz+ZMKUt58tF3SrZ85jcfN/PZYhjR5uDQAYNVbuw==} 695 | engines: {node: '>=18'} 696 | hasBin: true 697 | 698 | escape-string-regexp@4.0.0: 699 | resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 700 | engines: {node: '>=10'} 701 | 702 | eslint-scope@8.3.0: 703 | resolution: {integrity: sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==} 704 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 705 | 706 | eslint-visitor-keys@3.4.3: 707 | resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} 708 | engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 709 | 710 | eslint-visitor-keys@4.2.0: 711 | resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==} 712 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 713 | 714 | eslint@9.28.0: 715 | resolution: {integrity: sha512-ocgh41VhRlf9+fVpe7QKzwLj9c92fDiqOj8Y3Sd4/ZmVA4Btx4PlUYPq4pp9JDyupkf1upbEXecxL2mwNV7jPQ==} 716 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 717 | hasBin: true 718 | peerDependencies: 719 | jiti: '*' 720 | peerDependenciesMeta: 721 | jiti: 722 | optional: true 723 | 724 | espree@10.3.0: 725 | resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==} 726 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 727 | 728 | esquery@1.6.0: 729 | resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} 730 | engines: {node: '>=0.10'} 731 | 732 | esrecurse@4.3.0: 733 | resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} 734 | engines: {node: '>=4.0'} 735 | 736 | estraverse@5.3.0: 737 | resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} 738 | engines: {node: '>=4.0'} 739 | 740 | estree-walker@2.0.2: 741 | resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} 742 | 743 | estree-walker@3.0.3: 744 | resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} 745 | 746 | esutils@2.0.3: 747 | resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} 748 | engines: {node: '>=0.10.0'} 749 | 750 | expect-type@1.2.1: 751 | resolution: {integrity: sha512-/kP8CAwxzLVEeFrMm4kMmy4CCDlpipyA7MYLVrdJIkV0fYF0UaigQHRsxHiuY/GEea+bh4KSv3TIlgr+2UL6bw==} 752 | engines: {node: '>=12.0.0'} 753 | 754 | fast-deep-equal@3.1.3: 755 | resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 756 | 757 | fast-glob@3.3.3: 758 | resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} 759 | engines: {node: '>=8.6.0'} 760 | 761 | fast-json-stable-stringify@2.1.0: 762 | resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} 763 | 764 | fast-levenshtein@2.0.6: 765 | resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} 766 | 767 | fastq@1.19.1: 768 | resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==} 769 | 770 | fdir@6.4.5: 771 | resolution: {integrity: sha512-4BG7puHpVsIYxZUbiUE3RqGloLaSSwzYie5jvasC4LWuBWzZawynvYouhjbQKw2JuIGYdm0DzIxl8iVidKlUEw==} 772 | peerDependencies: 773 | picomatch: ^3 || ^4 774 | peerDependenciesMeta: 775 | picomatch: 776 | optional: true 777 | 778 | file-entry-cache@8.0.0: 779 | resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} 780 | engines: {node: '>=16.0.0'} 781 | 782 | fill-range@7.1.1: 783 | resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} 784 | engines: {node: '>=8'} 785 | 786 | find-up@5.0.0: 787 | resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 788 | engines: {node: '>=10'} 789 | 790 | flat-cache@4.0.1: 791 | resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} 792 | engines: {node: '>=16'} 793 | 794 | flatted@3.3.3: 795 | resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==} 796 | 797 | foreground-child@3.3.1: 798 | resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==} 799 | engines: {node: '>=14'} 800 | 801 | fsevents@2.3.3: 802 | resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 803 | engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 804 | os: [darwin] 805 | 806 | function-bind@1.1.2: 807 | resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} 808 | 809 | gha-utils@0.4.1: 810 | resolution: {integrity: sha512-KHWQj6SQWFfsTt4epwcyx/LfLUU/3bFFkGhfkzpFKV/77w46Nm5vt8O+3KVk10sfON+3Ca578RZk0hQnLMUtCw==} 811 | 812 | glob-parent@5.1.2: 813 | resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 814 | engines: {node: '>= 6'} 815 | 816 | glob-parent@6.0.2: 817 | resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} 818 | engines: {node: '>=10.13.0'} 819 | 820 | glob@10.4.5: 821 | resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} 822 | hasBin: true 823 | 824 | globals@14.0.0: 825 | resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} 826 | engines: {node: '>=18'} 827 | 828 | graphemer@1.4.0: 829 | resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} 830 | 831 | has-flag@4.0.0: 832 | resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 833 | engines: {node: '>=8'} 834 | 835 | hasown@2.0.2: 836 | resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} 837 | engines: {node: '>= 0.4'} 838 | 839 | html-escaper@2.0.2: 840 | resolution: {integrity: sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==} 841 | 842 | ignore@5.3.2: 843 | resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} 844 | engines: {node: '>= 4'} 845 | 846 | ignore@7.0.5: 847 | resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==} 848 | engines: {node: '>= 4'} 849 | 850 | import-fresh@3.3.1: 851 | resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==} 852 | engines: {node: '>=6'} 853 | 854 | imurmurhash@0.1.4: 855 | resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} 856 | engines: {node: '>=0.8.19'} 857 | 858 | is-core-module@2.16.1: 859 | resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==} 860 | engines: {node: '>= 0.4'} 861 | 862 | is-extglob@2.1.1: 863 | resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 864 | engines: {node: '>=0.10.0'} 865 | 866 | is-fullwidth-code-point@3.0.0: 867 | resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 868 | engines: {node: '>=8'} 869 | 870 | is-glob@4.0.3: 871 | resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 872 | engines: {node: '>=0.10.0'} 873 | 874 | is-module@1.0.0: 875 | resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==} 876 | 877 | is-number@7.0.0: 878 | resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 879 | engines: {node: '>=0.12.0'} 880 | 881 | isexe@2.0.0: 882 | resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 883 | 884 | istanbul-lib-coverage@3.2.2: 885 | resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==} 886 | engines: {node: '>=8'} 887 | 888 | istanbul-lib-report@3.0.1: 889 | resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==} 890 | engines: {node: '>=10'} 891 | 892 | istanbul-lib-source-maps@5.0.6: 893 | resolution: {integrity: sha512-yg2d+Em4KizZC5niWhQaIomgf5WlL4vOOjZ5xGCmF8SnPE/mDWWXgvRExdcpCgh9lLRRa1/fSYp2ymmbJ1pI+A==} 894 | engines: {node: '>=10'} 895 | 896 | istanbul-reports@3.1.7: 897 | resolution: {integrity: sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g==} 898 | engines: {node: '>=8'} 899 | 900 | jackspeak@3.4.3: 901 | resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} 902 | 903 | js-yaml@4.1.0: 904 | resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 905 | hasBin: true 906 | 907 | json-buffer@3.0.1: 908 | resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} 909 | 910 | json-schema-traverse@0.4.1: 911 | resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} 912 | 913 | json-stable-stringify-without-jsonify@1.0.1: 914 | resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} 915 | 916 | keyv@4.5.4: 917 | resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} 918 | 919 | lefthook-darwin-arm64@1.11.13: 920 | resolution: {integrity: sha512-gHwHofXupCtzNLN+8esdWfFTnAEkmBxE/WKA0EwxPPJXdZYa1GUsiG5ipq/CdG/0j8ekYyM9Hzyrrk5BqJ42xw==} 921 | cpu: [arm64] 922 | os: [darwin] 923 | 924 | lefthook-darwin-x64@1.11.13: 925 | resolution: {integrity: sha512-zYxkWNUirmTidhskY9J9AwxvdMi3YKH+TqZ3AQ1EOqkOwPBWJQW5PbnzsXDrd3YnrtZScYm/tE/moXJpEPPIpQ==} 926 | cpu: [x64] 927 | os: [darwin] 928 | 929 | lefthook-freebsd-arm64@1.11.13: 930 | resolution: {integrity: sha512-gJzWnllcMcivusmPorEkXPpEciKotlBHn7QxWwYaSjss/U3YdZu+NTjDO30b3qeiVlyq4RAZ4BPKJODXxHHwUA==} 931 | cpu: [arm64] 932 | os: [freebsd] 933 | 934 | lefthook-freebsd-x64@1.11.13: 935 | resolution: {integrity: sha512-689XdchgtDvZQWFFx1szUvm/mqrq/v6laki0odq5FAfcSgUeLu3w+z6UicBS5l55eFJuQTDNKARFqrKJ04e+Vw==} 936 | cpu: [x64] 937 | os: [freebsd] 938 | 939 | lefthook-linux-arm64@1.11.13: 940 | resolution: {integrity: sha512-ujCLbaZg5S/Ao8KZAcNSb+Y3gl898ZEM0YKyiZmZo22dFFpm/5gcV46pF3xaqIw5IpH+3YYDTKDU+qTetmARyQ==} 941 | cpu: [arm64] 942 | os: [linux] 943 | 944 | lefthook-linux-x64@1.11.13: 945 | resolution: {integrity: sha512-O5WdodeBtFOXQlvPcckqp4W/yqVM9DbVQBkvOxwSJlmsxO4sGYK1TqdxH9ihLB85B2kPPssZj9ze36/oizzhVQ==} 946 | cpu: [x64] 947 | os: [linux] 948 | 949 | lefthook-openbsd-arm64@1.11.13: 950 | resolution: {integrity: sha512-SyBpciUfvY/lUDbZu7L6MtL/SVG2+yMTckBgb4PdJQhJlisY0IsyOYdlTw2icPPrY7JnwdsFv8UW0EJOB76W4g==} 951 | cpu: [arm64] 952 | os: [openbsd] 953 | 954 | lefthook-openbsd-x64@1.11.13: 955 | resolution: {integrity: sha512-6+/0j6O2dzo9cjTWUKfL2J6hRR7Krna/ssqnW8cWh8QHZKO9WJn34epto9qgjeHwSysou8byI7Mwv5zOGthLCQ==} 956 | cpu: [x64] 957 | os: [openbsd] 958 | 959 | lefthook-windows-arm64@1.11.13: 960 | resolution: {integrity: sha512-w5TwZ8bsZ17uOMtYGc5oEb4tCHjNTSeSXRy6H9Yic8E7IsPZtZLkaZGnIIwgXFuhhrcCdc6FuTvKt2tyV7EW2g==} 961 | cpu: [arm64] 962 | os: [win32] 963 | 964 | lefthook-windows-x64@1.11.13: 965 | resolution: {integrity: sha512-7lvwnIs8CNOXKU4y3i1Pbqna+QegIORkSD2VCuHBNpIJ8H84NpjoG3tKU91IM/aI1a2eUvCk+dw+1rfMRz7Ytg==} 966 | cpu: [x64] 967 | os: [win32] 968 | 969 | lefthook@1.11.13: 970 | resolution: {integrity: sha512-SDTk3D4nW1XRpR9u9fdYQ/qj1xeZVIwZmIFdJUnyq+w9ZLdCCvIrOmtD8SFiJowSevISjQDC+f9nqyFXUxc0SQ==} 971 | hasBin: true 972 | 973 | levn@0.4.1: 974 | resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} 975 | engines: {node: '>= 0.8.0'} 976 | 977 | locate-path@6.0.0: 978 | resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 979 | engines: {node: '>=10'} 980 | 981 | lodash.merge@4.6.2: 982 | resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} 983 | 984 | loupe@3.1.3: 985 | resolution: {integrity: sha512-kkIp7XSkP78ZxJEsSxW3712C6teJVoeHHwgo9zJ380de7IYyJ2ISlxojcH2pC5OFLewESmnRi/+XCDIEEVyoug==} 986 | 987 | lru-cache@10.4.3: 988 | resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} 989 | 990 | magic-string@0.30.17: 991 | resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==} 992 | 993 | magicast@0.3.5: 994 | resolution: {integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==} 995 | 996 | make-dir@4.0.0: 997 | resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} 998 | engines: {node: '>=10'} 999 | 1000 | merge2@1.4.1: 1001 | resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 1002 | engines: {node: '>= 8'} 1003 | 1004 | micromatch@4.0.8: 1005 | resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} 1006 | engines: {node: '>=8.6'} 1007 | 1008 | minimatch@3.1.2: 1009 | resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} 1010 | 1011 | minimatch@9.0.5: 1012 | resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} 1013 | engines: {node: '>=16 || 14 >=14.17'} 1014 | 1015 | minipass@7.1.2: 1016 | resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} 1017 | engines: {node: '>=16 || 14 >=14.17'} 1018 | 1019 | ms@2.1.3: 1020 | resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 1021 | 1022 | nanoid@3.3.8: 1023 | resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==} 1024 | engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 1025 | hasBin: true 1026 | 1027 | natural-compare@1.4.0: 1028 | resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} 1029 | 1030 | optionator@0.9.4: 1031 | resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} 1032 | engines: {node: '>= 0.8.0'} 1033 | 1034 | p-limit@3.1.0: 1035 | resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 1036 | engines: {node: '>=10'} 1037 | 1038 | p-locate@5.0.0: 1039 | resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 1040 | engines: {node: '>=10'} 1041 | 1042 | package-json-from-dist@1.0.1: 1043 | resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} 1044 | 1045 | parent-module@1.0.1: 1046 | resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} 1047 | engines: {node: '>=6'} 1048 | 1049 | path-exists@4.0.0: 1050 | resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 1051 | engines: {node: '>=8'} 1052 | 1053 | path-key@3.1.1: 1054 | resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 1055 | engines: {node: '>=8'} 1056 | 1057 | path-parse@1.0.7: 1058 | resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 1059 | 1060 | path-scurry@1.11.1: 1061 | resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} 1062 | engines: {node: '>=16 || 14 >=14.18'} 1063 | 1064 | pathe@2.0.3: 1065 | resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==} 1066 | 1067 | pathval@2.0.0: 1068 | resolution: {integrity: sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==} 1069 | engines: {node: '>= 14.16'} 1070 | 1071 | picocolors@1.1.1: 1072 | resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} 1073 | 1074 | picomatch@2.3.1: 1075 | resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 1076 | engines: {node: '>=8.6'} 1077 | 1078 | picomatch@4.0.2: 1079 | resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} 1080 | engines: {node: '>=12'} 1081 | 1082 | postcss@8.5.3: 1083 | resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==} 1084 | engines: {node: ^10 || ^12 || >=14} 1085 | 1086 | prelude-ls@1.2.1: 1087 | resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} 1088 | engines: {node: '>= 0.8.0'} 1089 | 1090 | prettier@3.5.3: 1091 | resolution: {integrity: sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==} 1092 | engines: {node: '>=14'} 1093 | hasBin: true 1094 | 1095 | punycode@2.3.1: 1096 | resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} 1097 | engines: {node: '>=6'} 1098 | 1099 | queue-microtask@1.2.3: 1100 | resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 1101 | 1102 | resolve-from@4.0.0: 1103 | resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} 1104 | engines: {node: '>=4'} 1105 | 1106 | resolve@1.22.10: 1107 | resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==} 1108 | engines: {node: '>= 0.4'} 1109 | hasBin: true 1110 | 1111 | reusify@1.1.0: 1112 | resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==} 1113 | engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 1114 | 1115 | rollup@4.41.1: 1116 | resolution: {integrity: sha512-cPmwD3FnFv8rKMBc1MxWCwVQFxwf1JEmSX3iQXrRVVG15zerAIXRjMFVWnd5Q5QvgKF7Aj+5ykXFhUl+QGnyOw==} 1117 | engines: {node: '>=18.0.0', npm: '>=8.0.0'} 1118 | hasBin: true 1119 | 1120 | run-parallel@1.2.0: 1121 | resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 1122 | 1123 | semver@7.7.2: 1124 | resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==} 1125 | engines: {node: '>=10'} 1126 | hasBin: true 1127 | 1128 | shebang-command@2.0.0: 1129 | resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 1130 | engines: {node: '>=8'} 1131 | 1132 | shebang-regex@3.0.0: 1133 | resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 1134 | engines: {node: '>=8'} 1135 | 1136 | siginfo@2.0.0: 1137 | resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==} 1138 | 1139 | signal-exit@4.1.0: 1140 | resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} 1141 | engines: {node: '>=14'} 1142 | 1143 | source-map-js@1.2.1: 1144 | resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} 1145 | engines: {node: '>=0.10.0'} 1146 | 1147 | stackback@0.0.2: 1148 | resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} 1149 | 1150 | std-env@3.9.0: 1151 | resolution: {integrity: sha512-UGvjygr6F6tpH7o2qyqR6QYpwraIjKSdtzyBdyytFOHmPZY917kwdwLG0RbOjWOnKmnm3PeHjaoLLMie7kPLQw==} 1152 | 1153 | string-width@4.2.3: 1154 | resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 1155 | engines: {node: '>=8'} 1156 | 1157 | string-width@5.1.2: 1158 | resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} 1159 | engines: {node: '>=12'} 1160 | 1161 | strip-ansi@6.0.1: 1162 | resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 1163 | engines: {node: '>=8'} 1164 | 1165 | strip-ansi@7.1.0: 1166 | resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} 1167 | engines: {node: '>=12'} 1168 | 1169 | strip-json-comments@3.1.1: 1170 | resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} 1171 | engines: {node: '>=8'} 1172 | 1173 | supports-color@7.2.0: 1174 | resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 1175 | engines: {node: '>=8'} 1176 | 1177 | supports-preserve-symlinks-flag@1.0.0: 1178 | resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 1179 | engines: {node: '>= 0.4'} 1180 | 1181 | test-exclude@7.0.1: 1182 | resolution: {integrity: sha512-pFYqmTw68LXVjeWJMST4+borgQP2AyMNbg1BpZh9LbyhUeNkeaPF9gzfPGUAnSMV3qPYdWUwDIjjCLiSDOl7vg==} 1183 | engines: {node: '>=18'} 1184 | 1185 | tinybench@2.9.0: 1186 | resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} 1187 | 1188 | tinyexec@0.3.2: 1189 | resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==} 1190 | 1191 | tinyglobby@0.2.14: 1192 | resolution: {integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==} 1193 | engines: {node: '>=12.0.0'} 1194 | 1195 | tinypool@1.0.2: 1196 | resolution: {integrity: sha512-al6n+QEANGFOMf/dmUMsuS5/r9B06uwlyNjZZql/zv8J7ybHCgoihBNORZCY2mzUuAnomQa2JdhyHKzZxPCrFA==} 1197 | engines: {node: ^18.0.0 || >=20.0.0} 1198 | 1199 | tinyrainbow@2.0.0: 1200 | resolution: {integrity: sha512-op4nsTR47R6p0vMUUoYl/a+ljLFVtlfaXkLQmqfLR1qHma1h/ysYk4hEXZ880bf2CYgTskvTa/e196Vd5dDQXw==} 1201 | engines: {node: '>=14.0.0'} 1202 | 1203 | tinyspy@3.0.2: 1204 | resolution: {integrity: sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==} 1205 | engines: {node: '>=14.0.0'} 1206 | 1207 | to-regex-range@5.0.1: 1208 | resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 1209 | engines: {node: '>=8.0'} 1210 | 1211 | ts-api-utils@2.1.0: 1212 | resolution: {integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==} 1213 | engines: {node: '>=18.12'} 1214 | peerDependencies: 1215 | typescript: '>=4.8.4' 1216 | 1217 | tslib@2.8.1: 1218 | resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} 1219 | 1220 | type-check@0.4.0: 1221 | resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} 1222 | engines: {node: '>= 0.8.0'} 1223 | 1224 | typescript-eslint@8.33.1: 1225 | resolution: {integrity: sha512-AgRnV4sKkWOiZ0Kjbnf5ytTJXMUZQ0qhSVdQtDNYLPLnjsATEYhaO94GlRQwi4t4gO8FfjM6NnikHeKjUm8D7A==} 1226 | engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} 1227 | peerDependencies: 1228 | eslint: ^8.57.0 || ^9.0.0 1229 | typescript: '>=4.8.4 <5.9.0' 1230 | 1231 | typescript@5.8.3: 1232 | resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==} 1233 | engines: {node: '>=14.17'} 1234 | hasBin: true 1235 | 1236 | undici-types@6.21.0: 1237 | resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==} 1238 | 1239 | uri-js@4.4.1: 1240 | resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 1241 | 1242 | vite-node@3.1.4: 1243 | resolution: {integrity: sha512-6enNwYnpyDo4hEgytbmc6mYWHXDHYEn0D1/rw4Q+tnHUGtKTJsn8T1YkX6Q18wI5LCrS8CTYlBaiCqxOy2kvUA==} 1244 | engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} 1245 | hasBin: true 1246 | 1247 | vite@6.2.0: 1248 | resolution: {integrity: sha512-7dPxoo+WsT/64rDcwoOjk76XHj+TqNTIvHKcuMQ1k4/SeHDaQt5GFAeLYzrimZrMpn/O6DtdI03WUjdxuPM0oQ==} 1249 | engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} 1250 | hasBin: true 1251 | peerDependencies: 1252 | '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 1253 | jiti: '>=1.21.0' 1254 | less: '*' 1255 | lightningcss: ^1.21.0 1256 | sass: '*' 1257 | sass-embedded: '*' 1258 | stylus: '*' 1259 | sugarss: '*' 1260 | terser: ^5.16.0 1261 | tsx: ^4.8.1 1262 | yaml: ^2.4.2 1263 | peerDependenciesMeta: 1264 | '@types/node': 1265 | optional: true 1266 | jiti: 1267 | optional: true 1268 | less: 1269 | optional: true 1270 | lightningcss: 1271 | optional: true 1272 | sass: 1273 | optional: true 1274 | sass-embedded: 1275 | optional: true 1276 | stylus: 1277 | optional: true 1278 | sugarss: 1279 | optional: true 1280 | terser: 1281 | optional: true 1282 | tsx: 1283 | optional: true 1284 | yaml: 1285 | optional: true 1286 | 1287 | vitest@3.1.4: 1288 | resolution: {integrity: sha512-Ta56rT7uWxCSJXlBtKgIlApJnT6e6IGmTYxYcmxjJ4ujuZDI59GUQgVDObXXJujOmPDBYXHK1qmaGtneu6TNIQ==} 1289 | engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} 1290 | hasBin: true 1291 | peerDependencies: 1292 | '@edge-runtime/vm': '*' 1293 | '@types/debug': ^4.1.12 1294 | '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 1295 | '@vitest/browser': 3.1.4 1296 | '@vitest/ui': 3.1.4 1297 | happy-dom: '*' 1298 | jsdom: '*' 1299 | peerDependenciesMeta: 1300 | '@edge-runtime/vm': 1301 | optional: true 1302 | '@types/debug': 1303 | optional: true 1304 | '@types/node': 1305 | optional: true 1306 | '@vitest/browser': 1307 | optional: true 1308 | '@vitest/ui': 1309 | optional: true 1310 | happy-dom: 1311 | optional: true 1312 | jsdom: 1313 | optional: true 1314 | 1315 | which@2.0.2: 1316 | resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 1317 | engines: {node: '>= 8'} 1318 | hasBin: true 1319 | 1320 | why-is-node-running@2.3.0: 1321 | resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==} 1322 | engines: {node: '>=8'} 1323 | hasBin: true 1324 | 1325 | word-wrap@1.2.5: 1326 | resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} 1327 | engines: {node: '>=0.10.0'} 1328 | 1329 | wrap-ansi@7.0.0: 1330 | resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} 1331 | engines: {node: '>=10'} 1332 | 1333 | wrap-ansi@8.1.0: 1334 | resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} 1335 | engines: {node: '>=12'} 1336 | 1337 | yocto-queue@0.1.0: 1338 | resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 1339 | engines: {node: '>=10'} 1340 | 1341 | snapshots: 1342 | 1343 | '@ampproject/remapping@2.3.0': 1344 | dependencies: 1345 | '@jridgewell/gen-mapping': 0.3.8 1346 | '@jridgewell/trace-mapping': 0.3.25 1347 | 1348 | '@babel/helper-string-parser@7.25.9': {} 1349 | 1350 | '@babel/helper-validator-identifier@7.25.9': {} 1351 | 1352 | '@babel/parser@7.26.9': 1353 | dependencies: 1354 | '@babel/types': 7.26.9 1355 | 1356 | '@babel/types@7.26.9': 1357 | dependencies: 1358 | '@babel/helper-string-parser': 7.25.9 1359 | '@babel/helper-validator-identifier': 7.25.9 1360 | 1361 | '@bcoe/v8-coverage@1.0.2': {} 1362 | 1363 | '@esbuild/aix-ppc64@0.25.0': 1364 | optional: true 1365 | 1366 | '@esbuild/android-arm64@0.25.0': 1367 | optional: true 1368 | 1369 | '@esbuild/android-arm@0.25.0': 1370 | optional: true 1371 | 1372 | '@esbuild/android-x64@0.25.0': 1373 | optional: true 1374 | 1375 | '@esbuild/darwin-arm64@0.25.0': 1376 | optional: true 1377 | 1378 | '@esbuild/darwin-x64@0.25.0': 1379 | optional: true 1380 | 1381 | '@esbuild/freebsd-arm64@0.25.0': 1382 | optional: true 1383 | 1384 | '@esbuild/freebsd-x64@0.25.0': 1385 | optional: true 1386 | 1387 | '@esbuild/linux-arm64@0.25.0': 1388 | optional: true 1389 | 1390 | '@esbuild/linux-arm@0.25.0': 1391 | optional: true 1392 | 1393 | '@esbuild/linux-ia32@0.25.0': 1394 | optional: true 1395 | 1396 | '@esbuild/linux-loong64@0.25.0': 1397 | optional: true 1398 | 1399 | '@esbuild/linux-mips64el@0.25.0': 1400 | optional: true 1401 | 1402 | '@esbuild/linux-ppc64@0.25.0': 1403 | optional: true 1404 | 1405 | '@esbuild/linux-riscv64@0.25.0': 1406 | optional: true 1407 | 1408 | '@esbuild/linux-s390x@0.25.0': 1409 | optional: true 1410 | 1411 | '@esbuild/linux-x64@0.25.0': 1412 | optional: true 1413 | 1414 | '@esbuild/netbsd-arm64@0.25.0': 1415 | optional: true 1416 | 1417 | '@esbuild/netbsd-x64@0.25.0': 1418 | optional: true 1419 | 1420 | '@esbuild/openbsd-arm64@0.25.0': 1421 | optional: true 1422 | 1423 | '@esbuild/openbsd-x64@0.25.0': 1424 | optional: true 1425 | 1426 | '@esbuild/sunos-x64@0.25.0': 1427 | optional: true 1428 | 1429 | '@esbuild/win32-arm64@0.25.0': 1430 | optional: true 1431 | 1432 | '@esbuild/win32-ia32@0.25.0': 1433 | optional: true 1434 | 1435 | '@esbuild/win32-x64@0.25.0': 1436 | optional: true 1437 | 1438 | '@eslint-community/eslint-utils@4.7.0(eslint@9.28.0)': 1439 | dependencies: 1440 | eslint: 9.28.0 1441 | eslint-visitor-keys: 3.4.3 1442 | 1443 | '@eslint-community/regexpp@4.12.1': {} 1444 | 1445 | '@eslint/config-array@0.20.0': 1446 | dependencies: 1447 | '@eslint/object-schema': 2.1.6 1448 | debug: 4.4.1 1449 | minimatch: 3.1.2 1450 | transitivePeerDependencies: 1451 | - supports-color 1452 | 1453 | '@eslint/config-helpers@0.2.2': {} 1454 | 1455 | '@eslint/core@0.14.0': 1456 | dependencies: 1457 | '@types/json-schema': 7.0.15 1458 | 1459 | '@eslint/eslintrc@3.3.1': 1460 | dependencies: 1461 | ajv: 6.12.6 1462 | debug: 4.4.1 1463 | espree: 10.3.0 1464 | globals: 14.0.0 1465 | ignore: 5.3.2 1466 | import-fresh: 3.3.1 1467 | js-yaml: 4.1.0 1468 | minimatch: 3.1.2 1469 | strip-json-comments: 3.1.1 1470 | transitivePeerDependencies: 1471 | - supports-color 1472 | 1473 | '@eslint/js@9.28.0': {} 1474 | 1475 | '@eslint/object-schema@2.1.6': {} 1476 | 1477 | '@eslint/plugin-kit@0.3.1': 1478 | dependencies: 1479 | '@eslint/core': 0.14.0 1480 | levn: 0.4.1 1481 | 1482 | '@humanfs/core@0.19.1': {} 1483 | 1484 | '@humanfs/node@0.16.6': 1485 | dependencies: 1486 | '@humanfs/core': 0.19.1 1487 | '@humanwhocodes/retry': 0.3.1 1488 | 1489 | '@humanwhocodes/module-importer@1.0.1': {} 1490 | 1491 | '@humanwhocodes/retry@0.3.1': {} 1492 | 1493 | '@humanwhocodes/retry@0.4.3': {} 1494 | 1495 | '@isaacs/cliui@8.0.2': 1496 | dependencies: 1497 | string-width: 5.1.2 1498 | string-width-cjs: string-width@4.2.3 1499 | strip-ansi: 7.1.0 1500 | strip-ansi-cjs: strip-ansi@6.0.1 1501 | wrap-ansi: 8.1.0 1502 | wrap-ansi-cjs: wrap-ansi@7.0.0 1503 | 1504 | '@istanbuljs/schema@0.1.3': {} 1505 | 1506 | '@jridgewell/gen-mapping@0.3.8': 1507 | dependencies: 1508 | '@jridgewell/set-array': 1.2.1 1509 | '@jridgewell/sourcemap-codec': 1.5.0 1510 | '@jridgewell/trace-mapping': 0.3.25 1511 | 1512 | '@jridgewell/resolve-uri@3.1.2': {} 1513 | 1514 | '@jridgewell/set-array@1.2.1': {} 1515 | 1516 | '@jridgewell/sourcemap-codec@1.5.0': {} 1517 | 1518 | '@jridgewell/trace-mapping@0.3.25': 1519 | dependencies: 1520 | '@jridgewell/resolve-uri': 3.1.2 1521 | '@jridgewell/sourcemap-codec': 1.5.0 1522 | 1523 | '@nodelib/fs.scandir@2.1.5': 1524 | dependencies: 1525 | '@nodelib/fs.stat': 2.0.5 1526 | run-parallel: 1.2.0 1527 | 1528 | '@nodelib/fs.stat@2.0.5': {} 1529 | 1530 | '@nodelib/fs.walk@1.2.8': 1531 | dependencies: 1532 | '@nodelib/fs.scandir': 2.1.5 1533 | fastq: 1.19.1 1534 | 1535 | '@pkgjs/parseargs@0.11.0': 1536 | optional: true 1537 | 1538 | '@rollup/plugin-node-resolve@16.0.1(rollup@4.41.1)': 1539 | dependencies: 1540 | '@rollup/pluginutils': 5.1.4(rollup@4.41.1) 1541 | '@types/resolve': 1.20.2 1542 | deepmerge: 4.3.1 1543 | is-module: 1.0.0 1544 | resolve: 1.22.10 1545 | optionalDependencies: 1546 | rollup: 4.41.1 1547 | 1548 | '@rollup/plugin-typescript@12.1.2(rollup@4.41.1)(tslib@2.8.1)(typescript@5.8.3)': 1549 | dependencies: 1550 | '@rollup/pluginutils': 5.1.4(rollup@4.41.1) 1551 | resolve: 1.22.10 1552 | typescript: 5.8.3 1553 | optionalDependencies: 1554 | rollup: 4.41.1 1555 | tslib: 2.8.1 1556 | 1557 | '@rollup/pluginutils@5.1.4(rollup@4.41.1)': 1558 | dependencies: 1559 | '@types/estree': 1.0.7 1560 | estree-walker: 2.0.2 1561 | picomatch: 4.0.2 1562 | optionalDependencies: 1563 | rollup: 4.41.1 1564 | 1565 | '@rollup/rollup-android-arm-eabi@4.41.1': 1566 | optional: true 1567 | 1568 | '@rollup/rollup-android-arm64@4.41.1': 1569 | optional: true 1570 | 1571 | '@rollup/rollup-darwin-arm64@4.41.1': 1572 | optional: true 1573 | 1574 | '@rollup/rollup-darwin-x64@4.41.1': 1575 | optional: true 1576 | 1577 | '@rollup/rollup-freebsd-arm64@4.41.1': 1578 | optional: true 1579 | 1580 | '@rollup/rollup-freebsd-x64@4.41.1': 1581 | optional: true 1582 | 1583 | '@rollup/rollup-linux-arm-gnueabihf@4.41.1': 1584 | optional: true 1585 | 1586 | '@rollup/rollup-linux-arm-musleabihf@4.41.1': 1587 | optional: true 1588 | 1589 | '@rollup/rollup-linux-arm64-gnu@4.41.1': 1590 | optional: true 1591 | 1592 | '@rollup/rollup-linux-arm64-musl@4.41.1': 1593 | optional: true 1594 | 1595 | '@rollup/rollup-linux-loongarch64-gnu@4.41.1': 1596 | optional: true 1597 | 1598 | '@rollup/rollup-linux-powerpc64le-gnu@4.41.1': 1599 | optional: true 1600 | 1601 | '@rollup/rollup-linux-riscv64-gnu@4.41.1': 1602 | optional: true 1603 | 1604 | '@rollup/rollup-linux-riscv64-musl@4.41.1': 1605 | optional: true 1606 | 1607 | '@rollup/rollup-linux-s390x-gnu@4.41.1': 1608 | optional: true 1609 | 1610 | '@rollup/rollup-linux-x64-gnu@4.41.1': 1611 | optional: true 1612 | 1613 | '@rollup/rollup-linux-x64-musl@4.41.1': 1614 | optional: true 1615 | 1616 | '@rollup/rollup-win32-arm64-msvc@4.41.1': 1617 | optional: true 1618 | 1619 | '@rollup/rollup-win32-ia32-msvc@4.41.1': 1620 | optional: true 1621 | 1622 | '@rollup/rollup-win32-x64-msvc@4.41.1': 1623 | optional: true 1624 | 1625 | '@tsconfig/node20@20.1.5': {} 1626 | 1627 | '@types/estree@1.0.7': {} 1628 | 1629 | '@types/json-schema@7.0.15': {} 1630 | 1631 | '@types/node@22.15.30': 1632 | dependencies: 1633 | undici-types: 6.21.0 1634 | 1635 | '@types/resolve@1.20.2': {} 1636 | 1637 | '@typescript-eslint/eslint-plugin@8.33.1(@typescript-eslint/parser@8.33.1(eslint@9.28.0)(typescript@5.8.3))(eslint@9.28.0)(typescript@5.8.3)': 1638 | dependencies: 1639 | '@eslint-community/regexpp': 4.12.1 1640 | '@typescript-eslint/parser': 8.33.1(eslint@9.28.0)(typescript@5.8.3) 1641 | '@typescript-eslint/scope-manager': 8.33.1 1642 | '@typescript-eslint/type-utils': 8.33.1(eslint@9.28.0)(typescript@5.8.3) 1643 | '@typescript-eslint/utils': 8.33.1(eslint@9.28.0)(typescript@5.8.3) 1644 | '@typescript-eslint/visitor-keys': 8.33.1 1645 | eslint: 9.28.0 1646 | graphemer: 1.4.0 1647 | ignore: 7.0.5 1648 | natural-compare: 1.4.0 1649 | ts-api-utils: 2.1.0(typescript@5.8.3) 1650 | typescript: 5.8.3 1651 | transitivePeerDependencies: 1652 | - supports-color 1653 | 1654 | '@typescript-eslint/parser@8.33.1(eslint@9.28.0)(typescript@5.8.3)': 1655 | dependencies: 1656 | '@typescript-eslint/scope-manager': 8.33.1 1657 | '@typescript-eslint/types': 8.33.1 1658 | '@typescript-eslint/typescript-estree': 8.33.1(typescript@5.8.3) 1659 | '@typescript-eslint/visitor-keys': 8.33.1 1660 | debug: 4.4.1 1661 | eslint: 9.28.0 1662 | typescript: 5.8.3 1663 | transitivePeerDependencies: 1664 | - supports-color 1665 | 1666 | '@typescript-eslint/project-service@8.33.1(typescript@5.8.3)': 1667 | dependencies: 1668 | '@typescript-eslint/tsconfig-utils': 8.33.1(typescript@5.8.3) 1669 | '@typescript-eslint/types': 8.33.1 1670 | debug: 4.4.1 1671 | typescript: 5.8.3 1672 | transitivePeerDependencies: 1673 | - supports-color 1674 | 1675 | '@typescript-eslint/scope-manager@8.33.1': 1676 | dependencies: 1677 | '@typescript-eslint/types': 8.33.1 1678 | '@typescript-eslint/visitor-keys': 8.33.1 1679 | 1680 | '@typescript-eslint/tsconfig-utils@8.33.1(typescript@5.8.3)': 1681 | dependencies: 1682 | typescript: 5.8.3 1683 | 1684 | '@typescript-eslint/type-utils@8.33.1(eslint@9.28.0)(typescript@5.8.3)': 1685 | dependencies: 1686 | '@typescript-eslint/typescript-estree': 8.33.1(typescript@5.8.3) 1687 | '@typescript-eslint/utils': 8.33.1(eslint@9.28.0)(typescript@5.8.3) 1688 | debug: 4.4.1 1689 | eslint: 9.28.0 1690 | ts-api-utils: 2.1.0(typescript@5.8.3) 1691 | typescript: 5.8.3 1692 | transitivePeerDependencies: 1693 | - supports-color 1694 | 1695 | '@typescript-eslint/types@8.33.1': {} 1696 | 1697 | '@typescript-eslint/typescript-estree@8.33.1(typescript@5.8.3)': 1698 | dependencies: 1699 | '@typescript-eslint/project-service': 8.33.1(typescript@5.8.3) 1700 | '@typescript-eslint/tsconfig-utils': 8.33.1(typescript@5.8.3) 1701 | '@typescript-eslint/types': 8.33.1 1702 | '@typescript-eslint/visitor-keys': 8.33.1 1703 | debug: 4.4.1 1704 | fast-glob: 3.3.3 1705 | is-glob: 4.0.3 1706 | minimatch: 9.0.5 1707 | semver: 7.7.2 1708 | ts-api-utils: 2.1.0(typescript@5.8.3) 1709 | typescript: 5.8.3 1710 | transitivePeerDependencies: 1711 | - supports-color 1712 | 1713 | '@typescript-eslint/utils@8.33.1(eslint@9.28.0)(typescript@5.8.3)': 1714 | dependencies: 1715 | '@eslint-community/eslint-utils': 4.7.0(eslint@9.28.0) 1716 | '@typescript-eslint/scope-manager': 8.33.1 1717 | '@typescript-eslint/types': 8.33.1 1718 | '@typescript-eslint/typescript-estree': 8.33.1(typescript@5.8.3) 1719 | eslint: 9.28.0 1720 | typescript: 5.8.3 1721 | transitivePeerDependencies: 1722 | - supports-color 1723 | 1724 | '@typescript-eslint/visitor-keys@8.33.1': 1725 | dependencies: 1726 | '@typescript-eslint/types': 8.33.1 1727 | eslint-visitor-keys: 4.2.0 1728 | 1729 | '@vitest/coverage-v8@3.1.4(vitest@3.1.4(@types/node@22.15.30))': 1730 | dependencies: 1731 | '@ampproject/remapping': 2.3.0 1732 | '@bcoe/v8-coverage': 1.0.2 1733 | debug: 4.4.1 1734 | istanbul-lib-coverage: 3.2.2 1735 | istanbul-lib-report: 3.0.1 1736 | istanbul-lib-source-maps: 5.0.6 1737 | istanbul-reports: 3.1.7 1738 | magic-string: 0.30.17 1739 | magicast: 0.3.5 1740 | std-env: 3.9.0 1741 | test-exclude: 7.0.1 1742 | tinyrainbow: 2.0.0 1743 | vitest: 3.1.4(@types/node@22.15.30) 1744 | transitivePeerDependencies: 1745 | - supports-color 1746 | 1747 | '@vitest/expect@3.1.4': 1748 | dependencies: 1749 | '@vitest/spy': 3.1.4 1750 | '@vitest/utils': 3.1.4 1751 | chai: 5.2.0 1752 | tinyrainbow: 2.0.0 1753 | 1754 | '@vitest/mocker@3.1.4(vite@6.2.0(@types/node@22.15.30))': 1755 | dependencies: 1756 | '@vitest/spy': 3.1.4 1757 | estree-walker: 3.0.3 1758 | magic-string: 0.30.17 1759 | optionalDependencies: 1760 | vite: 6.2.0(@types/node@22.15.30) 1761 | 1762 | '@vitest/pretty-format@3.1.4': 1763 | dependencies: 1764 | tinyrainbow: 2.0.0 1765 | 1766 | '@vitest/runner@3.1.4': 1767 | dependencies: 1768 | '@vitest/utils': 3.1.4 1769 | pathe: 2.0.3 1770 | 1771 | '@vitest/snapshot@3.1.4': 1772 | dependencies: 1773 | '@vitest/pretty-format': 3.1.4 1774 | magic-string: 0.30.17 1775 | pathe: 2.0.3 1776 | 1777 | '@vitest/spy@3.1.4': 1778 | dependencies: 1779 | tinyspy: 3.0.2 1780 | 1781 | '@vitest/utils@3.1.4': 1782 | dependencies: 1783 | '@vitest/pretty-format': 3.1.4 1784 | loupe: 3.1.3 1785 | tinyrainbow: 2.0.0 1786 | 1787 | acorn-jsx@5.3.2(acorn@8.14.1): 1788 | dependencies: 1789 | acorn: 8.14.1 1790 | 1791 | acorn@8.14.1: {} 1792 | 1793 | ajv@6.12.6: 1794 | dependencies: 1795 | fast-deep-equal: 3.1.3 1796 | fast-json-stable-stringify: 2.1.0 1797 | json-schema-traverse: 0.4.1 1798 | uri-js: 4.4.1 1799 | 1800 | ansi-regex@5.0.1: {} 1801 | 1802 | ansi-regex@6.1.0: {} 1803 | 1804 | ansi-styles@4.3.0: 1805 | dependencies: 1806 | color-convert: 2.0.1 1807 | 1808 | ansi-styles@6.2.1: {} 1809 | 1810 | argparse@2.0.1: {} 1811 | 1812 | assertion-error@2.0.1: {} 1813 | 1814 | balanced-match@1.0.2: {} 1815 | 1816 | brace-expansion@1.1.11: 1817 | dependencies: 1818 | balanced-match: 1.0.2 1819 | concat-map: 0.0.1 1820 | 1821 | brace-expansion@2.0.1: 1822 | dependencies: 1823 | balanced-match: 1.0.2 1824 | 1825 | braces@3.0.3: 1826 | dependencies: 1827 | fill-range: 7.1.1 1828 | 1829 | cac@6.7.14: {} 1830 | 1831 | callsites@3.1.0: {} 1832 | 1833 | chai@5.2.0: 1834 | dependencies: 1835 | assertion-error: 2.0.1 1836 | check-error: 2.1.1 1837 | deep-eql: 5.0.2 1838 | loupe: 3.1.3 1839 | pathval: 2.0.0 1840 | 1841 | chalk@4.1.2: 1842 | dependencies: 1843 | ansi-styles: 4.3.0 1844 | supports-color: 7.2.0 1845 | 1846 | check-error@2.1.1: {} 1847 | 1848 | color-convert@2.0.1: 1849 | dependencies: 1850 | color-name: 1.1.4 1851 | 1852 | color-name@1.1.4: {} 1853 | 1854 | concat-map@0.0.1: {} 1855 | 1856 | cross-spawn@7.0.6: 1857 | dependencies: 1858 | path-key: 3.1.1 1859 | shebang-command: 2.0.0 1860 | which: 2.0.2 1861 | 1862 | debug@4.4.1: 1863 | dependencies: 1864 | ms: 2.1.3 1865 | 1866 | deep-eql@5.0.2: {} 1867 | 1868 | deep-is@0.1.4: {} 1869 | 1870 | deepmerge@4.3.1: {} 1871 | 1872 | eastasianwidth@0.2.0: {} 1873 | 1874 | emoji-regex@8.0.0: {} 1875 | 1876 | emoji-regex@9.2.2: {} 1877 | 1878 | es-module-lexer@1.7.0: {} 1879 | 1880 | esbuild@0.25.0: 1881 | optionalDependencies: 1882 | '@esbuild/aix-ppc64': 0.25.0 1883 | '@esbuild/android-arm': 0.25.0 1884 | '@esbuild/android-arm64': 0.25.0 1885 | '@esbuild/android-x64': 0.25.0 1886 | '@esbuild/darwin-arm64': 0.25.0 1887 | '@esbuild/darwin-x64': 0.25.0 1888 | '@esbuild/freebsd-arm64': 0.25.0 1889 | '@esbuild/freebsd-x64': 0.25.0 1890 | '@esbuild/linux-arm': 0.25.0 1891 | '@esbuild/linux-arm64': 0.25.0 1892 | '@esbuild/linux-ia32': 0.25.0 1893 | '@esbuild/linux-loong64': 0.25.0 1894 | '@esbuild/linux-mips64el': 0.25.0 1895 | '@esbuild/linux-ppc64': 0.25.0 1896 | '@esbuild/linux-riscv64': 0.25.0 1897 | '@esbuild/linux-s390x': 0.25.0 1898 | '@esbuild/linux-x64': 0.25.0 1899 | '@esbuild/netbsd-arm64': 0.25.0 1900 | '@esbuild/netbsd-x64': 0.25.0 1901 | '@esbuild/openbsd-arm64': 0.25.0 1902 | '@esbuild/openbsd-x64': 0.25.0 1903 | '@esbuild/sunos-x64': 0.25.0 1904 | '@esbuild/win32-arm64': 0.25.0 1905 | '@esbuild/win32-ia32': 0.25.0 1906 | '@esbuild/win32-x64': 0.25.0 1907 | 1908 | escape-string-regexp@4.0.0: {} 1909 | 1910 | eslint-scope@8.3.0: 1911 | dependencies: 1912 | esrecurse: 4.3.0 1913 | estraverse: 5.3.0 1914 | 1915 | eslint-visitor-keys@3.4.3: {} 1916 | 1917 | eslint-visitor-keys@4.2.0: {} 1918 | 1919 | eslint@9.28.0: 1920 | dependencies: 1921 | '@eslint-community/eslint-utils': 4.7.0(eslint@9.28.0) 1922 | '@eslint-community/regexpp': 4.12.1 1923 | '@eslint/config-array': 0.20.0 1924 | '@eslint/config-helpers': 0.2.2 1925 | '@eslint/core': 0.14.0 1926 | '@eslint/eslintrc': 3.3.1 1927 | '@eslint/js': 9.28.0 1928 | '@eslint/plugin-kit': 0.3.1 1929 | '@humanfs/node': 0.16.6 1930 | '@humanwhocodes/module-importer': 1.0.1 1931 | '@humanwhocodes/retry': 0.4.3 1932 | '@types/estree': 1.0.7 1933 | '@types/json-schema': 7.0.15 1934 | ajv: 6.12.6 1935 | chalk: 4.1.2 1936 | cross-spawn: 7.0.6 1937 | debug: 4.4.1 1938 | escape-string-regexp: 4.0.0 1939 | eslint-scope: 8.3.0 1940 | eslint-visitor-keys: 4.2.0 1941 | espree: 10.3.0 1942 | esquery: 1.6.0 1943 | esutils: 2.0.3 1944 | fast-deep-equal: 3.1.3 1945 | file-entry-cache: 8.0.0 1946 | find-up: 5.0.0 1947 | glob-parent: 6.0.2 1948 | ignore: 5.3.2 1949 | imurmurhash: 0.1.4 1950 | is-glob: 4.0.3 1951 | json-stable-stringify-without-jsonify: 1.0.1 1952 | lodash.merge: 4.6.2 1953 | minimatch: 3.1.2 1954 | natural-compare: 1.4.0 1955 | optionator: 0.9.4 1956 | transitivePeerDependencies: 1957 | - supports-color 1958 | 1959 | espree@10.3.0: 1960 | dependencies: 1961 | acorn: 8.14.1 1962 | acorn-jsx: 5.3.2(acorn@8.14.1) 1963 | eslint-visitor-keys: 4.2.0 1964 | 1965 | esquery@1.6.0: 1966 | dependencies: 1967 | estraverse: 5.3.0 1968 | 1969 | esrecurse@4.3.0: 1970 | dependencies: 1971 | estraverse: 5.3.0 1972 | 1973 | estraverse@5.3.0: {} 1974 | 1975 | estree-walker@2.0.2: {} 1976 | 1977 | estree-walker@3.0.3: 1978 | dependencies: 1979 | '@types/estree': 1.0.7 1980 | 1981 | esutils@2.0.3: {} 1982 | 1983 | expect-type@1.2.1: {} 1984 | 1985 | fast-deep-equal@3.1.3: {} 1986 | 1987 | fast-glob@3.3.3: 1988 | dependencies: 1989 | '@nodelib/fs.stat': 2.0.5 1990 | '@nodelib/fs.walk': 1.2.8 1991 | glob-parent: 5.1.2 1992 | merge2: 1.4.1 1993 | micromatch: 4.0.8 1994 | 1995 | fast-json-stable-stringify@2.1.0: {} 1996 | 1997 | fast-levenshtein@2.0.6: {} 1998 | 1999 | fastq@1.19.1: 2000 | dependencies: 2001 | reusify: 1.1.0 2002 | 2003 | fdir@6.4.5(picomatch@4.0.2): 2004 | optionalDependencies: 2005 | picomatch: 4.0.2 2006 | 2007 | file-entry-cache@8.0.0: 2008 | dependencies: 2009 | flat-cache: 4.0.1 2010 | 2011 | fill-range@7.1.1: 2012 | dependencies: 2013 | to-regex-range: 5.0.1 2014 | 2015 | find-up@5.0.0: 2016 | dependencies: 2017 | locate-path: 6.0.0 2018 | path-exists: 4.0.0 2019 | 2020 | flat-cache@4.0.1: 2021 | dependencies: 2022 | flatted: 3.3.3 2023 | keyv: 4.5.4 2024 | 2025 | flatted@3.3.3: {} 2026 | 2027 | foreground-child@3.3.1: 2028 | dependencies: 2029 | cross-spawn: 7.0.6 2030 | signal-exit: 4.1.0 2031 | 2032 | fsevents@2.3.3: 2033 | optional: true 2034 | 2035 | function-bind@1.1.2: {} 2036 | 2037 | gha-utils@0.4.1: {} 2038 | 2039 | glob-parent@5.1.2: 2040 | dependencies: 2041 | is-glob: 4.0.3 2042 | 2043 | glob-parent@6.0.2: 2044 | dependencies: 2045 | is-glob: 4.0.3 2046 | 2047 | glob@10.4.5: 2048 | dependencies: 2049 | foreground-child: 3.3.1 2050 | jackspeak: 3.4.3 2051 | minimatch: 9.0.5 2052 | minipass: 7.1.2 2053 | package-json-from-dist: 1.0.1 2054 | path-scurry: 1.11.1 2055 | 2056 | globals@14.0.0: {} 2057 | 2058 | graphemer@1.4.0: {} 2059 | 2060 | has-flag@4.0.0: {} 2061 | 2062 | hasown@2.0.2: 2063 | dependencies: 2064 | function-bind: 1.1.2 2065 | 2066 | html-escaper@2.0.2: {} 2067 | 2068 | ignore@5.3.2: {} 2069 | 2070 | ignore@7.0.5: {} 2071 | 2072 | import-fresh@3.3.1: 2073 | dependencies: 2074 | parent-module: 1.0.1 2075 | resolve-from: 4.0.0 2076 | 2077 | imurmurhash@0.1.4: {} 2078 | 2079 | is-core-module@2.16.1: 2080 | dependencies: 2081 | hasown: 2.0.2 2082 | 2083 | is-extglob@2.1.1: {} 2084 | 2085 | is-fullwidth-code-point@3.0.0: {} 2086 | 2087 | is-glob@4.0.3: 2088 | dependencies: 2089 | is-extglob: 2.1.1 2090 | 2091 | is-module@1.0.0: {} 2092 | 2093 | is-number@7.0.0: {} 2094 | 2095 | isexe@2.0.0: {} 2096 | 2097 | istanbul-lib-coverage@3.2.2: {} 2098 | 2099 | istanbul-lib-report@3.0.1: 2100 | dependencies: 2101 | istanbul-lib-coverage: 3.2.2 2102 | make-dir: 4.0.0 2103 | supports-color: 7.2.0 2104 | 2105 | istanbul-lib-source-maps@5.0.6: 2106 | dependencies: 2107 | '@jridgewell/trace-mapping': 0.3.25 2108 | debug: 4.4.1 2109 | istanbul-lib-coverage: 3.2.2 2110 | transitivePeerDependencies: 2111 | - supports-color 2112 | 2113 | istanbul-reports@3.1.7: 2114 | dependencies: 2115 | html-escaper: 2.0.2 2116 | istanbul-lib-report: 3.0.1 2117 | 2118 | jackspeak@3.4.3: 2119 | dependencies: 2120 | '@isaacs/cliui': 8.0.2 2121 | optionalDependencies: 2122 | '@pkgjs/parseargs': 0.11.0 2123 | 2124 | js-yaml@4.1.0: 2125 | dependencies: 2126 | argparse: 2.0.1 2127 | 2128 | json-buffer@3.0.1: {} 2129 | 2130 | json-schema-traverse@0.4.1: {} 2131 | 2132 | json-stable-stringify-without-jsonify@1.0.1: {} 2133 | 2134 | keyv@4.5.4: 2135 | dependencies: 2136 | json-buffer: 3.0.1 2137 | 2138 | lefthook-darwin-arm64@1.11.13: 2139 | optional: true 2140 | 2141 | lefthook-darwin-x64@1.11.13: 2142 | optional: true 2143 | 2144 | lefthook-freebsd-arm64@1.11.13: 2145 | optional: true 2146 | 2147 | lefthook-freebsd-x64@1.11.13: 2148 | optional: true 2149 | 2150 | lefthook-linux-arm64@1.11.13: 2151 | optional: true 2152 | 2153 | lefthook-linux-x64@1.11.13: 2154 | optional: true 2155 | 2156 | lefthook-openbsd-arm64@1.11.13: 2157 | optional: true 2158 | 2159 | lefthook-openbsd-x64@1.11.13: 2160 | optional: true 2161 | 2162 | lefthook-windows-arm64@1.11.13: 2163 | optional: true 2164 | 2165 | lefthook-windows-x64@1.11.13: 2166 | optional: true 2167 | 2168 | lefthook@1.11.13: 2169 | optionalDependencies: 2170 | lefthook-darwin-arm64: 1.11.13 2171 | lefthook-darwin-x64: 1.11.13 2172 | lefthook-freebsd-arm64: 1.11.13 2173 | lefthook-freebsd-x64: 1.11.13 2174 | lefthook-linux-arm64: 1.11.13 2175 | lefthook-linux-x64: 1.11.13 2176 | lefthook-openbsd-arm64: 1.11.13 2177 | lefthook-openbsd-x64: 1.11.13 2178 | lefthook-windows-arm64: 1.11.13 2179 | lefthook-windows-x64: 1.11.13 2180 | 2181 | levn@0.4.1: 2182 | dependencies: 2183 | prelude-ls: 1.2.1 2184 | type-check: 0.4.0 2185 | 2186 | locate-path@6.0.0: 2187 | dependencies: 2188 | p-locate: 5.0.0 2189 | 2190 | lodash.merge@4.6.2: {} 2191 | 2192 | loupe@3.1.3: {} 2193 | 2194 | lru-cache@10.4.3: {} 2195 | 2196 | magic-string@0.30.17: 2197 | dependencies: 2198 | '@jridgewell/sourcemap-codec': 1.5.0 2199 | 2200 | magicast@0.3.5: 2201 | dependencies: 2202 | '@babel/parser': 7.26.9 2203 | '@babel/types': 7.26.9 2204 | source-map-js: 1.2.1 2205 | 2206 | make-dir@4.0.0: 2207 | dependencies: 2208 | semver: 7.7.2 2209 | 2210 | merge2@1.4.1: {} 2211 | 2212 | micromatch@4.0.8: 2213 | dependencies: 2214 | braces: 3.0.3 2215 | picomatch: 2.3.1 2216 | 2217 | minimatch@3.1.2: 2218 | dependencies: 2219 | brace-expansion: 1.1.11 2220 | 2221 | minimatch@9.0.5: 2222 | dependencies: 2223 | brace-expansion: 2.0.1 2224 | 2225 | minipass@7.1.2: {} 2226 | 2227 | ms@2.1.3: {} 2228 | 2229 | nanoid@3.3.8: {} 2230 | 2231 | natural-compare@1.4.0: {} 2232 | 2233 | optionator@0.9.4: 2234 | dependencies: 2235 | deep-is: 0.1.4 2236 | fast-levenshtein: 2.0.6 2237 | levn: 0.4.1 2238 | prelude-ls: 1.2.1 2239 | type-check: 0.4.0 2240 | word-wrap: 1.2.5 2241 | 2242 | p-limit@3.1.0: 2243 | dependencies: 2244 | yocto-queue: 0.1.0 2245 | 2246 | p-locate@5.0.0: 2247 | dependencies: 2248 | p-limit: 3.1.0 2249 | 2250 | package-json-from-dist@1.0.1: {} 2251 | 2252 | parent-module@1.0.1: 2253 | dependencies: 2254 | callsites: 3.1.0 2255 | 2256 | path-exists@4.0.0: {} 2257 | 2258 | path-key@3.1.1: {} 2259 | 2260 | path-parse@1.0.7: {} 2261 | 2262 | path-scurry@1.11.1: 2263 | dependencies: 2264 | lru-cache: 10.4.3 2265 | minipass: 7.1.2 2266 | 2267 | pathe@2.0.3: {} 2268 | 2269 | pathval@2.0.0: {} 2270 | 2271 | picocolors@1.1.1: {} 2272 | 2273 | picomatch@2.3.1: {} 2274 | 2275 | picomatch@4.0.2: {} 2276 | 2277 | postcss@8.5.3: 2278 | dependencies: 2279 | nanoid: 3.3.8 2280 | picocolors: 1.1.1 2281 | source-map-js: 1.2.1 2282 | 2283 | prelude-ls@1.2.1: {} 2284 | 2285 | prettier@3.5.3: {} 2286 | 2287 | punycode@2.3.1: {} 2288 | 2289 | queue-microtask@1.2.3: {} 2290 | 2291 | resolve-from@4.0.0: {} 2292 | 2293 | resolve@1.22.10: 2294 | dependencies: 2295 | is-core-module: 2.16.1 2296 | path-parse: 1.0.7 2297 | supports-preserve-symlinks-flag: 1.0.0 2298 | 2299 | reusify@1.1.0: {} 2300 | 2301 | rollup@4.41.1: 2302 | dependencies: 2303 | '@types/estree': 1.0.7 2304 | optionalDependencies: 2305 | '@rollup/rollup-android-arm-eabi': 4.41.1 2306 | '@rollup/rollup-android-arm64': 4.41.1 2307 | '@rollup/rollup-darwin-arm64': 4.41.1 2308 | '@rollup/rollup-darwin-x64': 4.41.1 2309 | '@rollup/rollup-freebsd-arm64': 4.41.1 2310 | '@rollup/rollup-freebsd-x64': 4.41.1 2311 | '@rollup/rollup-linux-arm-gnueabihf': 4.41.1 2312 | '@rollup/rollup-linux-arm-musleabihf': 4.41.1 2313 | '@rollup/rollup-linux-arm64-gnu': 4.41.1 2314 | '@rollup/rollup-linux-arm64-musl': 4.41.1 2315 | '@rollup/rollup-linux-loongarch64-gnu': 4.41.1 2316 | '@rollup/rollup-linux-powerpc64le-gnu': 4.41.1 2317 | '@rollup/rollup-linux-riscv64-gnu': 4.41.1 2318 | '@rollup/rollup-linux-riscv64-musl': 4.41.1 2319 | '@rollup/rollup-linux-s390x-gnu': 4.41.1 2320 | '@rollup/rollup-linux-x64-gnu': 4.41.1 2321 | '@rollup/rollup-linux-x64-musl': 4.41.1 2322 | '@rollup/rollup-win32-arm64-msvc': 4.41.1 2323 | '@rollup/rollup-win32-ia32-msvc': 4.41.1 2324 | '@rollup/rollup-win32-x64-msvc': 4.41.1 2325 | fsevents: 2.3.3 2326 | 2327 | run-parallel@1.2.0: 2328 | dependencies: 2329 | queue-microtask: 1.2.3 2330 | 2331 | semver@7.7.2: {} 2332 | 2333 | shebang-command@2.0.0: 2334 | dependencies: 2335 | shebang-regex: 3.0.0 2336 | 2337 | shebang-regex@3.0.0: {} 2338 | 2339 | siginfo@2.0.0: {} 2340 | 2341 | signal-exit@4.1.0: {} 2342 | 2343 | source-map-js@1.2.1: {} 2344 | 2345 | stackback@0.0.2: {} 2346 | 2347 | std-env@3.9.0: {} 2348 | 2349 | string-width@4.2.3: 2350 | dependencies: 2351 | emoji-regex: 8.0.0 2352 | is-fullwidth-code-point: 3.0.0 2353 | strip-ansi: 6.0.1 2354 | 2355 | string-width@5.1.2: 2356 | dependencies: 2357 | eastasianwidth: 0.2.0 2358 | emoji-regex: 9.2.2 2359 | strip-ansi: 7.1.0 2360 | 2361 | strip-ansi@6.0.1: 2362 | dependencies: 2363 | ansi-regex: 5.0.1 2364 | 2365 | strip-ansi@7.1.0: 2366 | dependencies: 2367 | ansi-regex: 6.1.0 2368 | 2369 | strip-json-comments@3.1.1: {} 2370 | 2371 | supports-color@7.2.0: 2372 | dependencies: 2373 | has-flag: 4.0.0 2374 | 2375 | supports-preserve-symlinks-flag@1.0.0: {} 2376 | 2377 | test-exclude@7.0.1: 2378 | dependencies: 2379 | '@istanbuljs/schema': 0.1.3 2380 | glob: 10.4.5 2381 | minimatch: 9.0.5 2382 | 2383 | tinybench@2.9.0: {} 2384 | 2385 | tinyexec@0.3.2: {} 2386 | 2387 | tinyglobby@0.2.14: 2388 | dependencies: 2389 | fdir: 6.4.5(picomatch@4.0.2) 2390 | picomatch: 4.0.2 2391 | 2392 | tinypool@1.0.2: {} 2393 | 2394 | tinyrainbow@2.0.0: {} 2395 | 2396 | tinyspy@3.0.2: {} 2397 | 2398 | to-regex-range@5.0.1: 2399 | dependencies: 2400 | is-number: 7.0.0 2401 | 2402 | ts-api-utils@2.1.0(typescript@5.8.3): 2403 | dependencies: 2404 | typescript: 5.8.3 2405 | 2406 | tslib@2.8.1: {} 2407 | 2408 | type-check@0.4.0: 2409 | dependencies: 2410 | prelude-ls: 1.2.1 2411 | 2412 | typescript-eslint@8.33.1(eslint@9.28.0)(typescript@5.8.3): 2413 | dependencies: 2414 | '@typescript-eslint/eslint-plugin': 8.33.1(@typescript-eslint/parser@8.33.1(eslint@9.28.0)(typescript@5.8.3))(eslint@9.28.0)(typescript@5.8.3) 2415 | '@typescript-eslint/parser': 8.33.1(eslint@9.28.0)(typescript@5.8.3) 2416 | '@typescript-eslint/utils': 8.33.1(eslint@9.28.0)(typescript@5.8.3) 2417 | eslint: 9.28.0 2418 | typescript: 5.8.3 2419 | transitivePeerDependencies: 2420 | - supports-color 2421 | 2422 | typescript@5.8.3: {} 2423 | 2424 | undici-types@6.21.0: {} 2425 | 2426 | uri-js@4.4.1: 2427 | dependencies: 2428 | punycode: 2.3.1 2429 | 2430 | vite-node@3.1.4(@types/node@22.15.30): 2431 | dependencies: 2432 | cac: 6.7.14 2433 | debug: 4.4.1 2434 | es-module-lexer: 1.7.0 2435 | pathe: 2.0.3 2436 | vite: 6.2.0(@types/node@22.15.30) 2437 | transitivePeerDependencies: 2438 | - '@types/node' 2439 | - jiti 2440 | - less 2441 | - lightningcss 2442 | - sass 2443 | - sass-embedded 2444 | - stylus 2445 | - sugarss 2446 | - supports-color 2447 | - terser 2448 | - tsx 2449 | - yaml 2450 | 2451 | vite@6.2.0(@types/node@22.15.30): 2452 | dependencies: 2453 | esbuild: 0.25.0 2454 | postcss: 8.5.3 2455 | rollup: 4.41.1 2456 | optionalDependencies: 2457 | '@types/node': 22.15.30 2458 | fsevents: 2.3.3 2459 | 2460 | vitest@3.1.4(@types/node@22.15.30): 2461 | dependencies: 2462 | '@vitest/expect': 3.1.4 2463 | '@vitest/mocker': 3.1.4(vite@6.2.0(@types/node@22.15.30)) 2464 | '@vitest/pretty-format': 3.1.4 2465 | '@vitest/runner': 3.1.4 2466 | '@vitest/snapshot': 3.1.4 2467 | '@vitest/spy': 3.1.4 2468 | '@vitest/utils': 3.1.4 2469 | chai: 5.2.0 2470 | debug: 4.4.1 2471 | expect-type: 1.2.1 2472 | magic-string: 0.30.17 2473 | pathe: 2.0.3 2474 | std-env: 3.9.0 2475 | tinybench: 2.9.0 2476 | tinyexec: 0.3.2 2477 | tinyglobby: 0.2.14 2478 | tinypool: 1.0.2 2479 | tinyrainbow: 2.0.0 2480 | vite: 6.2.0(@types/node@22.15.30) 2481 | vite-node: 3.1.4(@types/node@22.15.30) 2482 | why-is-node-running: 2.3.0 2483 | optionalDependencies: 2484 | '@types/node': 22.15.30 2485 | transitivePeerDependencies: 2486 | - jiti 2487 | - less 2488 | - lightningcss 2489 | - msw 2490 | - sass 2491 | - sass-embedded 2492 | - stylus 2493 | - sugarss 2494 | - supports-color 2495 | - terser 2496 | - tsx 2497 | - yaml 2498 | 2499 | which@2.0.2: 2500 | dependencies: 2501 | isexe: 2.0.0 2502 | 2503 | why-is-node-running@2.3.0: 2504 | dependencies: 2505 | siginfo: 2.0.0 2506 | stackback: 0.0.2 2507 | 2508 | word-wrap@1.2.5: {} 2509 | 2510 | wrap-ansi@7.0.0: 2511 | dependencies: 2512 | ansi-styles: 4.3.0 2513 | string-width: 4.2.3 2514 | strip-ansi: 6.0.1 2515 | 2516 | wrap-ansi@8.1.0: 2517 | dependencies: 2518 | ansi-styles: 6.2.1 2519 | string-width: 5.1.2 2520 | strip-ansi: 7.1.0 2521 | 2522 | yocto-queue@0.1.0: {} 2523 | -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- 1 | onlyBuiltDependencies: 2 | - esbuild 3 | - lefthook 4 | -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- 1 | import { nodeResolve } from "@rollup/plugin-node-resolve"; 2 | import typescript from "@rollup/plugin-typescript"; 3 | 4 | export default { 5 | input: "src/action.ts", 6 | output: { 7 | dir: "dist", 8 | entryFileNames: "[name].mjs", 9 | }, 10 | plugins: [nodeResolve(), typescript()], 11 | }; 12 | -------------------------------------------------------------------------------- /src/action.ts: -------------------------------------------------------------------------------- 1 | import { logError, setOutput } from "gha-utils"; 2 | import { buildProject, configureProject } from "./cmake.js"; 3 | import { getContext } from "./context.js"; 4 | 5 | try { 6 | const context = getContext(); 7 | 8 | await configureProject(context); 9 | 10 | await setOutput("build-dir", context.buildDir); 11 | 12 | if (context.build.enabled) { 13 | await buildProject(context); 14 | } 15 | } catch (err) { 16 | logError(err); 17 | process.exit(1); 18 | } 19 | -------------------------------------------------------------------------------- /src/cmake.test.ts: -------------------------------------------------------------------------------- 1 | import { describe, expect, it, vi } from "vitest"; 2 | import { buildProject, configureProject } from "./cmake.js"; 3 | import type { Context } from "./context.js"; 4 | import { exec } from "./exec.js"; 5 | 6 | interface TestCase { 7 | name: string; 8 | context?: Partial; 9 | expectedArgs: string[]; 10 | } 11 | 12 | const defaultContext: Context = { 13 | sourceDir: "", 14 | buildDir: "build", 15 | configure: { 16 | generator: "", 17 | options: [], 18 | args: [], 19 | }, 20 | build: { 21 | enabled: true, 22 | args: [], 23 | }, 24 | }; 25 | 26 | vi.mock("./exec.js", () => ({ exec: vi.fn() })); 27 | 28 | describe("configure a CMake project", () => { 29 | const testCases: TestCase[] = [ 30 | { 31 | name: "with nothing specified", 32 | expectedArgs: ["-B", "build"], 33 | }, 34 | { 35 | name: "with source directory specified", 36 | context: { sourceDir: "project" }, 37 | expectedArgs: ["project", "-B", "build"], 38 | }, 39 | { 40 | name: "with build directory specified", 41 | context: { buildDir: "output" }, 42 | expectedArgs: ["-B", "output"], 43 | }, 44 | { 45 | name: "with generator specified", 46 | context: { configure: { generator: "Ninja", options: [], args: [] } }, 47 | expectedArgs: ["-B", "build", "-G", "Ninja"], 48 | }, 49 | { 50 | name: "with additional options specified", 51 | context: { 52 | configure: { 53 | generator: "", 54 | options: ["BUILD_TESTING=ON", "BUILD_EXAMPLES=ON"], 55 | args: [], 56 | }, 57 | }, 58 | expectedArgs: [ 59 | "-B", 60 | "build", 61 | "-DBUILD_TESTING=ON", 62 | "-DBUILD_EXAMPLES=ON", 63 | ], 64 | }, 65 | { 66 | name: "with additional arguments specified", 67 | context: { 68 | configure: { 69 | generator: "", 70 | options: [], 71 | args: ["-Wdev", "-Wdeprecated"], 72 | }, 73 | }, 74 | expectedArgs: ["-B", "build", "-Wdev", "-Wdeprecated"], 75 | }, 76 | { 77 | name: "with all specified", 78 | context: { 79 | sourceDir: "project", 80 | buildDir: "output", 81 | configure: { 82 | generator: "Ninja", 83 | options: ["BUILD_TESTING=ON", "BUILD_EXAMPLES=ON"], 84 | args: ["-Wdev", "-Wdeprecated"], 85 | }, 86 | }, 87 | expectedArgs: [ 88 | "project", 89 | "-B", 90 | "output", 91 | "-G", 92 | "Ninja", 93 | "-DBUILD_TESTING=ON", 94 | "-DBUILD_EXAMPLES=ON", 95 | "-Wdev", 96 | "-Wdeprecated", 97 | ], 98 | }, 99 | ]; 100 | 101 | for (const testCase of testCases) { 102 | it(`should execute the correct command ${testCase.name}`, async () => { 103 | vi.mocked(exec).mockReset(); 104 | 105 | await configureProject({ ...defaultContext, ...testCase.context }); 106 | 107 | expect(exec).toHaveBeenCalledTimes(1); 108 | expect(exec).toHaveBeenLastCalledWith("cmake", testCase.expectedArgs); 109 | }); 110 | } 111 | }); 112 | 113 | describe("build a CMake project", () => { 114 | const testCases: TestCase[] = [ 115 | { 116 | name: "with nothing specified", 117 | expectedArgs: ["--build", "build"], 118 | }, 119 | { 120 | name: "with build directory specified", 121 | context: { buildDir: "output" }, 122 | expectedArgs: ["--build", "output"], 123 | }, 124 | { 125 | name: "with additional arguments specified", 126 | context: { build: { enabled: true, args: ["--target", "foo"] } }, 127 | expectedArgs: ["--build", "build", "--target", "foo"], 128 | }, 129 | { 130 | name: "with all specified", 131 | context: { 132 | buildDir: "output", 133 | build: { 134 | enabled: true, 135 | args: ["--target", "foo"], 136 | }, 137 | }, 138 | expectedArgs: ["--build", "output", "--target", "foo"], 139 | }, 140 | ]; 141 | 142 | for (const testCase of testCases) { 143 | it(`should execute the correct command ${testCase.name}`, async () => { 144 | vi.mocked(exec).mockReset(); 145 | 146 | await buildProject({ ...defaultContext, ...testCase.context }); 147 | 148 | expect(exec).toHaveBeenCalledTimes(1); 149 | expect(exec).toHaveBeenLastCalledWith("cmake", testCase.expectedArgs); 150 | }); 151 | } 152 | }); 153 | -------------------------------------------------------------------------------- /src/cmake.ts: -------------------------------------------------------------------------------- 1 | import { exec } from "./exec.js"; 2 | import type { Context } from "./context.js"; 3 | 4 | /** 5 | * Configures the build system for a CMake project. 6 | * 7 | * Constructs and runs the `cmake` command to configure the project with the specified 8 | * source directory, build directory, generator, options, and additional arguments. 9 | * 10 | * @param context - The action context containing configuration details. 11 | * @returns A promise that resolves when the build system is successfully configured. 12 | */ 13 | export async function configureProject(context: Context): Promise { 14 | const configureArgs = []; 15 | 16 | if (context.sourceDir) { 17 | configureArgs.push(context.sourceDir); 18 | } 19 | 20 | configureArgs.push("-B", context.buildDir); 21 | 22 | if (context.configure.generator) { 23 | configureArgs.push("-G", context.configure.generator); 24 | } 25 | 26 | configureArgs.push(...context.configure.options.map((opt) => "-D" + opt)); 27 | configureArgs.push(...context.configure.args); 28 | 29 | await exec("cmake", configureArgs); 30 | } 31 | 32 | /** 33 | * Builds a CMake project. 34 | * 35 | * Runs the `cmake --build` command to build the project using the specified 36 | * build directory and additional arguments. 37 | * 38 | * @param context - The action context containing build details. 39 | * @returns A promise that resolves when the project is successfully built. 40 | */ 41 | export async function buildProject(context: Context): Promise { 42 | await exec("cmake", ["--build", context.buildDir, ...context.build.args]); 43 | } 44 | -------------------------------------------------------------------------------- /src/context.test.ts: -------------------------------------------------------------------------------- 1 | import path from "node:path"; 2 | import { describe, expect, it, vi } from "vitest"; 3 | import type { Context } from "./context.js"; 4 | 5 | vi.mock("gha-utils", () => ({ getInput: vi.fn() })); 6 | 7 | describe("get action context", () => { 8 | interface TestCase { 9 | name: string; 10 | inputs?: Record; 11 | expectedContext?: Partial; 12 | } 13 | 14 | const testCases: TestCase[] = [ 15 | { 16 | name: "with nothing specified", 17 | }, 18 | { 19 | name: "with source directory specified", 20 | inputs: { "source-dir": "project" }, 21 | expectedContext: { 22 | sourceDir: "project", 23 | buildDir: path.join("project", "build"), 24 | }, 25 | }, 26 | { 27 | name: "with build directory specified", 28 | inputs: { "build-dir": "output" }, 29 | expectedContext: { buildDir: "output" }, 30 | }, 31 | { 32 | name: "with source and build directories specified", 33 | inputs: { 34 | "source-dir": "project", 35 | "build-dir": "output", 36 | }, 37 | expectedContext: { 38 | sourceDir: "project", 39 | buildDir: "output", 40 | }, 41 | }, 42 | { 43 | name: "with generator specified", 44 | inputs: { generator: "Ninja" }, 45 | expectedContext: { 46 | configure: { 47 | generator: "Ninja", 48 | options: [], 49 | args: [], 50 | }, 51 | }, 52 | }, 53 | { 54 | name: "with C compiler specified", 55 | inputs: { "c-compiler": "clang" }, 56 | expectedContext: { 57 | configure: { 58 | generator: "", 59 | options: ["CMAKE_C_COMPILER=clang"], 60 | args: [], 61 | }, 62 | }, 63 | }, 64 | { 65 | name: "with C++ compiler specified", 66 | inputs: { "cxx-compiler": "clang++" }, 67 | expectedContext: { 68 | configure: { 69 | generator: "", 70 | options: ["CMAKE_CXX_COMPILER=clang++"], 71 | args: [], 72 | }, 73 | }, 74 | }, 75 | { 76 | name: "with C flags specified", 77 | inputs: { "c-flags": "-Werror -Wall\n-Wextra" }, 78 | expectedContext: { 79 | configure: { 80 | generator: "", 81 | options: ["CMAKE_C_FLAGS=-Werror -Wall -Wextra"], 82 | args: [], 83 | }, 84 | }, 85 | }, 86 | { 87 | name: "with C++ flags specified", 88 | inputs: { "cxx-flags": "-Werror -Wall\n-Wextra -Wpedantic" }, 89 | expectedContext: { 90 | configure: { 91 | generator: "", 92 | options: ["CMAKE_CXX_FLAGS=-Werror -Wall -Wextra -Wpedantic"], 93 | args: [], 94 | }, 95 | }, 96 | }, 97 | { 98 | name: "with additional options specified", 99 | inputs: { 100 | options: `BUILD_TESTING=ON BUILD_EXAMPLES=ON\nBUILD_DOCS=ON "FOO=BAR BAZ"`, 101 | }, 102 | expectedContext: { 103 | configure: { 104 | generator: "", 105 | options: [ 106 | "BUILD_TESTING=ON", 107 | "BUILD_EXAMPLES=ON", 108 | "BUILD_DOCS=ON", 109 | "FOO=BAR BAZ", 110 | ], 111 | args: [], 112 | }, 113 | }, 114 | }, 115 | { 116 | name: "with additional arguments specified", 117 | inputs: { args: `-Wdev -Wdeprecated\n--fresh --foo "bar baz"` }, 118 | expectedContext: { 119 | configure: { 120 | generator: "", 121 | options: [], 122 | args: ["-Wdev", "-Wdeprecated", "--fresh", "--foo", "bar baz"], 123 | }, 124 | }, 125 | }, 126 | { 127 | name: "with run build specified", 128 | inputs: { "run-build": "true" }, 129 | expectedContext: { build: { enabled: true, args: [] } }, 130 | }, 131 | { 132 | name: "with additional build arguments specified", 133 | inputs: { "build-args": `--target foo\n--parallel 8 --foo "bar baz"` }, 134 | expectedContext: { 135 | build: { 136 | enabled: false, 137 | args: ["--target", "foo", "--parallel", "8", "--foo", "bar baz"], 138 | }, 139 | }, 140 | }, 141 | { 142 | name: "with all specified", 143 | inputs: { 144 | "source-dir": "project", 145 | "build-dir": "output", 146 | generator: "Ninja", 147 | "c-compiler": "clang", 148 | "cxx-compiler": "clang++", 149 | "c-flags": "-Werror -Wall\n-Wextra", 150 | "cxx-flags": "-Werror -Wall\n-Wextra -Wpedantic", 151 | options: `BUILD_TESTING=ON BUILD_EXAMPLES=ON\nBUILD_DOCS=ON "FOO=BAR BAZ"`, 152 | args: `-Wdev -Wdeprecated\n--fresh --foo "bar baz"`, 153 | "run-build": "true", 154 | "build-args": `--target foo\n--parallel 8 --foo "bar baz"`, 155 | }, 156 | expectedContext: { 157 | sourceDir: "project", 158 | buildDir: "output", 159 | configure: { 160 | generator: "Ninja", 161 | options: [ 162 | "CMAKE_C_COMPILER=clang", 163 | "CMAKE_CXX_COMPILER=clang++", 164 | "CMAKE_C_FLAGS=-Werror -Wall -Wextra", 165 | "CMAKE_CXX_FLAGS=-Werror -Wall -Wextra -Wpedantic", 166 | "BUILD_TESTING=ON", 167 | "BUILD_EXAMPLES=ON", 168 | "BUILD_DOCS=ON", 169 | "FOO=BAR BAZ", 170 | ], 171 | args: ["-Wdev", "-Wdeprecated", "--fresh", "--foo", "bar baz"], 172 | }, 173 | build: { 174 | enabled: true, 175 | args: ["--target", "foo", "--parallel", "8", "--foo", "bar baz"], 176 | }, 177 | }, 178 | }, 179 | ]; 180 | 181 | for (const testCase of testCases) { 182 | it(`should get the action context ${testCase.name}`, async () => { 183 | const { getInput } = await import("gha-utils"); 184 | const { getContext } = await import("./context.js"); 185 | 186 | const inputs = testCase.inputs || {}; 187 | vi.mocked(getInput).mockImplementation((name) => inputs[name] ?? ""); 188 | 189 | expect(getContext()).toStrictEqual({ 190 | sourceDir: "", 191 | buildDir: "build", 192 | configure: { 193 | generator: "", 194 | options: [], 195 | args: [], 196 | }, 197 | build: { 198 | enabled: false, 199 | args: [], 200 | }, 201 | ...testCase.expectedContext, 202 | }); 203 | }); 204 | } 205 | }); 206 | -------------------------------------------------------------------------------- /src/context.ts: -------------------------------------------------------------------------------- 1 | import { getInput } from "gha-utils"; 2 | import path from "node:path"; 3 | import { parse } from "./utils.js"; 4 | 5 | export interface Context { 6 | sourceDir: string; 7 | buildDir: string; 8 | configure: { 9 | generator: string; 10 | options: string[]; 11 | args: string[]; 12 | }; 13 | build: { 14 | enabled: boolean; 15 | args: string[]; 16 | }; 17 | } 18 | 19 | export function getContext(): Context { 20 | const sourceDir = getInput("source-dir"); 21 | const options: string[] = []; 22 | 23 | let input = getInput("c-compiler"); 24 | if (input) options.push(`CMAKE_C_COMPILER=${input}`); 25 | 26 | input = getInput("cxx-compiler"); 27 | if (input) options.push(`CMAKE_CXX_COMPILER=${input}`); 28 | 29 | input = getInput("c-flags"); 30 | if (input) { 31 | const flags = input.replaceAll(/\s+/g, " "); 32 | options.push(`CMAKE_C_FLAGS=${flags}`); 33 | } 34 | 35 | input = getInput("cxx-flags"); 36 | if (input) { 37 | const flags = input.replaceAll(/\s+/g, " "); 38 | options.push(`CMAKE_CXX_FLAGS=${flags}`); 39 | } 40 | 41 | input = getInput("options"); 42 | if (input) { 43 | options.push(...parse(input).map((opt) => opt.toString())); 44 | } 45 | 46 | return { 47 | sourceDir, 48 | buildDir: getInput("build-dir") || path.join(sourceDir, "build"), 49 | configure: { 50 | generator: getInput("generator"), 51 | options, 52 | args: parse(getInput("args")).map((arg) => arg.toString()), 53 | }, 54 | build: { 55 | enabled: getInput("run-build") == "true", 56 | args: parse(getInput("build-args")).map((arg) => arg.toString()), 57 | }, 58 | }; 59 | } 60 | -------------------------------------------------------------------------------- /src/exec.test.ts: -------------------------------------------------------------------------------- 1 | import { logCommand } from "gha-utils"; 2 | import { beforeEach, describe, expect, it, vi } from "vitest"; 3 | import { exec } from "./exec.js"; 4 | 5 | describe("execute commands", () => { 6 | vi.mock("gha-utils", () => ({ 7 | logCommand: vi.fn<(command: string, ...args: string[]) => void>(), 8 | })); 9 | 10 | beforeEach(() => { 11 | vi.mocked(logCommand).mockClear(); 12 | }); 13 | 14 | it("should successfully execute a command", async () => { 15 | await exec("node", ["--version"]); 16 | 17 | expect(logCommand).toHaveBeenCalledTimes(1); 18 | expect(logCommand).toHaveBeenCalledWith("node", "--version"); 19 | }); 20 | 21 | it("should fail to execute a command", async () => { 22 | await expect(exec("node", ["--invalid"])).rejects.toThrow( 23 | "Command exited with status code 9", 24 | ); 25 | 26 | expect(logCommand).toHaveBeenCalledTimes(1); 27 | expect(logCommand).toHaveBeenCalledWith("node", "--invalid"); 28 | }); 29 | }); 30 | -------------------------------------------------------------------------------- /src/exec.ts: -------------------------------------------------------------------------------- 1 | import { logCommand } from "gha-utils"; 2 | import { spawn } from "node:child_process"; 3 | 4 | /** 5 | * Executes a command with the given arguments. 6 | * 7 | * The command is executed with `stdin` ignored and both `stdout` and `stderr` inherited by the parent process. 8 | * 9 | * @param command The command to execute. 10 | * @param args The arguments to pass to the command. 11 | * @returns A promise that resolves when the command exits successfully or rejects if it exits with a non-zero status code or encounters an error. 12 | */ 13 | export async function exec(command: string, args: string[]): Promise { 14 | return new Promise((resolve, reject) => { 15 | const proc = spawn(command, args, { 16 | stdio: ["ignore", "inherit", "inherit"], 17 | }); 18 | logCommand(proc.spawnfile, ...proc.spawnargs.splice(1)); 19 | proc.on("error", reject); 20 | proc.on("close", (code) => { 21 | if (code === 0) { 22 | resolve(); 23 | } else { 24 | reject(new Error(`Command exited with status code ${code}`)); 25 | } 26 | }); 27 | }); 28 | } 29 | -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- 1 | const regex = /"([^"]*)"|'([^']*)'|`([^`]*)`|(\S+)/g; 2 | 3 | /** 4 | * Converts a space-separated string into a list of arguments. 5 | * 6 | * This function parses the provided string, which contains arguments separated by spaces and possibly enclosed in quotes, into a list of arguments. 7 | * 8 | * @param str - The space-separated string to parse. 9 | * @returns A list of arguments. 10 | */ 11 | export function parse(str: string): string[] { 12 | const args: string[] = []; 13 | let match: RegExpExecArray | null; 14 | while ((match = regex.exec(str)) !== null) { 15 | args.push(match[1] ?? match[2] ?? match[3] ?? match[4]); 16 | } 17 | return args; 18 | } 19 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@tsconfig/node20", 3 | "include": ["src"], 4 | "exclude": ["**/*.test.ts"], 5 | "compilerOptions": { 6 | "module": "node16" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- 1 | import { defineConfig } from "vitest/config"; 2 | 3 | export default defineConfig({ 4 | test: { 5 | coverage: { 6 | all: false, 7 | enabled: true, 8 | reporter: ["text"], 9 | thresholds: { 100: true }, 10 | }, 11 | }, 12 | }); 13 | --------------------------------------------------------------------------------