From 2871370241ddf707866169fe115ca024347ad5db Mon Sep 17 00:00:00 2001 From: kurone-kito Date: Sun, 22 Dec 2024 17:27:51 +0900 Subject: [PATCH 01/13] chore: updated the dependencies --- Packages/vpm-manifest.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Packages/vpm-manifest.json b/Packages/vpm-manifest.json index 1b237d69..3e603058 100644 --- a/Packages/vpm-manifest.json +++ b/Packages/vpm-manifest.json @@ -13,7 +13,7 @@ "version": "1.0.2" }, "com.vrchat.worlds": { - "version": "3.7.4" + "version": "3.7.5" } }, "locked": { @@ -39,13 +39,13 @@ } }, "com.vrchat.worlds": { - "version": "3.7.4", + "version": "3.7.5", "dependencies": { - "com.vrchat.base": "3.7.4" + "com.vrchat.base": "3.7.5" } }, "com.vrchat.base": { - "version": "3.7.4", + "version": "3.7.5", "dependencies": {} } } From f60c331cecdb055f465f722c7717d884f589c9bd Mon Sep 17 00:00:00 2001 From: kurone-kito Date: Mon, 23 Dec 2024 00:11:10 +0900 Subject: [PATCH 02/13] chore(node:root): merged from pnpm-project-template --- .commitlintrc.yml | 2 + .gitattributes | 1 + .github/dependabot.yml | 10 + .github/workflows/push.yml | 47 +- .github/workflows/release.yml | 4 +- .gitignore | 163 +- .husky/commit-msg | 5 + .husky/pre-commit | 5 + .lintstagedrc.mjs | 1 + .markdownlint-cli2.yaml | 1 + .node-version | 1 + .npmrc | 1 + .nvmrc | 3 + .prettierignore | 38 + .prettierrc.mjs | 15 + .tool-versions | 1 + .vim/coc-settings.json | 3 + .vscode/extensions.json | 3 + .vscode/settings.json | 12 +- Assets/TextMesh Pro/Sprites/EmojiOne.json | 313 +- Packages/com.vrchat.core.bootstrap/License.md | 4 +- .../com.vrchat.core.bootstrap/package.json | 30 +- .../Serilog.Sinks.Unity3D.License.md | 1 - .../com.vrchat.core.vpm-resolver/License.md | 4 +- .../com.vrchat.core.vpm-resolver/package.json | 30 +- .../Packages/com.vrchat.base/settings.json | 2 +- ProjectSettings/SceneTemplateSettings.json | 2 +- Website/app.js | 168 +- Website/index.html | 2 +- Website/styles.css | 2 +- cspell.config.yml | 22 +- eslint.config.mjs | 1 + package.json | 67 + pnpm-lock.yaml | 5801 +++++++++++++++++ pnpm-workspace.yaml | 2 + tsconfig.json | 3 + 36 files changed, 6473 insertions(+), 297 deletions(-) create mode 100644 .commitlintrc.yml create mode 100755 .husky/commit-msg create mode 100755 .husky/pre-commit create mode 100644 .lintstagedrc.mjs create mode 100644 .node-version create mode 100644 .npmrc create mode 100644 .nvmrc create mode 100644 .prettierignore create mode 100644 .prettierrc.mjs create mode 100644 .vim/coc-settings.json create mode 100644 eslint.config.mjs create mode 100644 package.json create mode 100644 pnpm-lock.yaml create mode 100644 pnpm-workspace.yaml create mode 100644 tsconfig.json diff --git a/.commitlintrc.yml b/.commitlintrc.yml new file mode 100644 index 00000000..958687e3 --- /dev/null +++ b/.commitlintrc.yml @@ -0,0 +1,2 @@ +extends: + - '@kurone-kito/commitlint-config' diff --git a/.gitattributes b/.gitattributes index 21f27e93..93d26e91 100644 --- a/.gitattributes +++ b/.gitattributes @@ -13,4 +13,5 @@ .coderabbit.yaml export-ignore .git* export-ignore .github/** export-ignore +.husky/** export-ignore .imgbotconfig export-ignore diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 0bbf125e..3cdb0a4c 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -10,3 +10,13 @@ updates: - kurone-kito schedule: interval: monthly + - directory: / + labels: + - dependencies + package-ecosystem: npm + reviewers: + - kurone-kito + assignees: + - kurone-kito + schedule: + interval: monthly diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index b4c336e2..ec0eb8bd 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -7,7 +7,7 @@ on: permissions: contents: read jobs: - build: + build-unity: runs-on: ubuntu-latest env: listPublishDirectory: Website @@ -47,3 +47,48 @@ jobs: run: '"${{ env.pathToCi }}/build.cmd" BuildRepoListing --root "${{ env.pathToCi }}" --list-publish-directory "$GITHUB_WORKSPACE/${{ env.listPublishDirectory }}" --current-package-name "${{ vars.PACKAGE_NAME }}"' env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + build-web: + defaults: + run: + shell: ${{ matrix.platform.shell }} + name: The build process + runs-on: ${{ matrix.platform.os }} + steps: + - name: Set git to use LF + run: | + git config --global core.autocrlf false + git config --global core.eol lf + - name: Stages the pushed branch + uses: actions/checkout@v4 + - name: Pre-prepare the Node.js version ${{ matrix.node-version }} environment + uses: actions/setup-node@v4 + with: + node-version: ${{ matrix.node-version }} + - name: Enable the corepack because of the pnpm + run: corepack enable + - name: Post-prepare the Node.js version ${{ matrix.node-version }} environment + uses: actions/setup-node@v4 + with: + cache: ${{ !env.ACT && 'pnpm' || '' }} + node-version: ${{ matrix.node-version }} + - env: + HUSKY: 0 + name: Install the dependencies + run: pnpm install --prefer-frozen-lockfile + - name: Run the tests + run: pnpm run test + strategy: + matrix: + node-version: + - 18.x + - 20.x + - 21.x + platform: + - os: ubuntu-latest + shell: bash + - os: windows-latest + shell: bash + - os: windows-latest + shell: powershell + fail-fast: false + timeout-minutes: 30 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f1a408ec..9981e55d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -64,7 +64,7 @@ jobs: echo "version=${{ steps.version.outputs.value }}" >> $GITHUB_ENV echo "zipFile=${{ vars.PACKAGE_NAME }}-${{ steps.version.outputs.value }}.zip" >> $GITHUB_ENV - name: Zip the Package for release - working-directory: "${{ env.packagePath }}" + working-directory: '${{ env.packagePath }}' run: zip -r -9 "${{ github.workspace }}/${{ env.zipFile }}" . - name: Build a list of .meta files for future use run: find "${{ env.packagePath }}/" -name '*.meta' -type f >> metaList @@ -87,7 +87,7 @@ jobs: # cspell: disable-next-line uses: rickstaa/action-create-tag@v1 with: - tag: "${{ env.version }}" + tag: '${{ env.version }}' gpg_passphrase: ${{ secrets.GPG_PASSPHRASE }} gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} - name: Publish the Release to GitHub diff --git a/.gitignore b/.gitignore index 4fa02eae..527d1dc0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ -# Created by https://www.toptal.com/developers/gitignore/api/linux,macos,unity,vim,visualstudiocode,windows -# Edit at https://www.toptal.com/developers/gitignore?templates=linux,macos,unity,vim,visualstudiocode,windows +# Created by https://www.toptal.com/developers/gitignore/api/linux,macos,node,unity,vim,visualstudiocode,windows,yarn +# Edit at https://www.toptal.com/developers/gitignore?templates=linux,macos,node,unity,vim,visualstudiocode,windows,yarn ### Linux ### *~ @@ -49,6 +49,146 @@ Temporary Items # iCloud generated files *.icloud +### Node ### +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +lerna-debug.log* +.pnpm-debug.log* + +# Diagnostic reports (https://nodejs.org/api/report.html) +report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage +*.lcov + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Bower dependency directory (https://bower.io/) +bower_components + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +node_modules/ +jspm_packages/ + +# Snowpack dependency directory (https://snowpack.dev/) +web_modules/ + +# TypeScript cache +*.tsbuildinfo + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Optional stylelint cache +.stylelintcache + +# Microbundle cache +.rpt2_cache/ +.rts2_cache_cjs/ +.rts2_cache_es/ +.rts2_cache_umd/ + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# dotenv environment variable files +.env +.env.development.local +.env.test.local +.env.production.local +.env.local + +# parcel-bundler cache (https://parceljs.org/) +.cache +.parcel-cache + +# Next.js build output +.next +out + +# Nuxt.js build / generate output +.nuxt +dist + +# Gatsby files +.cache/ +# Comment in the public line in if your project uses Gatsby and not Next.js +# https://nextjs.org/blog/next-9-1#public-directory-support +# public + +# vuepress build output +.vuepress/dist + +# vuepress v2.x temp and cache directory +.temp + +# Docusaurus cache and generated files +.docusaurus + +# Serverless directories +.serverless/ + +# FuseBox cache +.fusebox/ + +# DynamoDB Local files +.dynamodb/ + +# TernJS port file +.tern-port + +# Stores VSCode versions used for testing VSCode extensions +.vscode-test + +# yarn v2 +.yarn/cache +.yarn/unplugged +.yarn/build-state.yml +.yarn/install-state.gz +.pnp.* + +### Node Patch ### +# Serverless Webpack directories +.webpack/ + +# Optional stylelint cache + +# SvelteKit build / generate output +.svelte-kit + ### Unity ### # This .gitignore file should be placed at the root of your Unity project directory # @@ -187,7 +327,24 @@ $RECYCLE.BIN/ # Windows shortcuts *.lnk -# End of https://www.toptal.com/developers/gitignore/api/linux,macos,unity,vim,visualstudiocode,windows +### yarn ### +# https://yarnpkg.com/getting-started/qa#which-files-should-be-gitignored + +.yarn/* +!.yarn/releases +!.yarn/patches +!.yarn/plugins +!.yarn/sdks +!.yarn/versions + +# if you are NOT using Zero-installs, then: +# comment the following lines +# !.yarn/cache + +# and uncomment the following lines +.pnp.* + +# End of https://www.toptal.com/developers/gitignore/api/linux,macos,node,unity,vim,visualstudiocode,windows,yarn ### THE PROJECT SPECIFIES ################################################# diff --git a/.husky/commit-msg b/.husky/commit-msg new file mode 100755 index 00000000..f5ed2cb1 --- /dev/null +++ b/.husky/commit-msg @@ -0,0 +1,5 @@ +#!/bin/sh +# -*- mode: sh -*- +# vim: set ft=sh : + +pnpm exec commitlint --edit "${1}" diff --git a/.husky/pre-commit b/.husky/pre-commit new file mode 100755 index 00000000..4ed5b018 --- /dev/null +++ b/.husky/pre-commit @@ -0,0 +1,5 @@ +#!/bin/sh +# -*- mode: sh -*- +# vim: set ft=sh : + +pnpm exec lint-staged diff --git a/.lintstagedrc.mjs b/.lintstagedrc.mjs new file mode 100644 index 00000000..fe35b324 --- /dev/null +++ b/.lintstagedrc.mjs @@ -0,0 +1 @@ +export { default } from '@kurone-kito/lint-staged-config/.lintstagedrc.json' with { type: 'json' }; diff --git a/.markdownlint-cli2.yaml b/.markdownlint-cli2.yaml index daea9ff5..bc3dc962 100644 --- a/.markdownlint-cli2.yaml +++ b/.markdownlint-cli2.yaml @@ -4,6 +4,7 @@ ignores: - Assets/** - Library/** - Logs/** + - node_modules/** - Packages/com.*/** - Packages/dev.*/** - ProjectSettings/** diff --git a/.node-version b/.node-version new file mode 100644 index 00000000..17719ce2 --- /dev/null +++ b/.node-version @@ -0,0 +1 @@ +18.20.4 diff --git a/.npmrc b/.npmrc new file mode 100644 index 00000000..ae90f705 --- /dev/null +++ b/.npmrc @@ -0,0 +1 @@ +ignore-workspace-root-check=true diff --git a/.nvmrc b/.nvmrc new file mode 100644 index 00000000..241904df --- /dev/null +++ b/.nvmrc @@ -0,0 +1,3 @@ +18.20.4 +lts/hydrogen +node diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 00000000..ffae15e1 --- /dev/null +++ b/.prettierignore @@ -0,0 +1,38 @@ +### THE PROJECT SPECIFIES ################################################# + +### Unity ### +# Example scenes +[Aa]ssets/Scenes* + +# TextMesh Pro +[Aa]ssets/TextMesh Pro + +# UdonSharp +[Aa]ssets/SerializedUdonPrograms* +[Aa]ssets/UdonSharp/PrefabBuild* + +# VRChat Creator Companion +[Pp]ackages/com.vrchat.* +[Pp]ackages/dev.* +[Pp]ackages/*.json + +# Others +[Pp]roject[Ss]ettings +debug.log* + +### Node ### +# Husky +.husky/_ + +# Ignorefiles +.*ignore + +# Pnpm +pnpm-lock.yaml + +### Unity ### +Packages/*.json + +### Others ### +Website/app.js +Website/index.html diff --git a/.prettierrc.mjs b/.prettierrc.mjs new file mode 100644 index 00000000..10f8b19c --- /dev/null +++ b/.prettierrc.mjs @@ -0,0 +1,15 @@ +// Node.js v18.20 and later can use import attributes syntax and import +// assertions syntax, but`prettier-vscode` may be under v18.20 and cannot +// use `with` syntax.This tweak will be maintained until April 2025, +// when support for the v18 series will end. +import config from '@kurone-kito/prettier-config' assert { type: 'json' }; + +/** @type {import('prettier').Config} */ +export default { + ...config, + plugins: [ + 'prettier-plugin-packagejson', + 'prettier-plugin-sh', + 'prettier-plugin-sort-json', + ], +}; diff --git a/.tool-versions b/.tool-versions index e730b3a7..db7c844e 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1 +1,2 @@ dotnet 8.0.404 +nodejs 18.20.4 ref:v18.20.4 lts-hydrogen lts latest system diff --git a/.vim/coc-settings.json b/.vim/coc-settings.json new file mode 100644 index 00000000..78facd1f --- /dev/null +++ b/.vim/coc-settings.json @@ -0,0 +1,3 @@ +{ + "workspace.workspaceFolderCheckCwd": false +} diff --git a/.vscode/extensions.json b/.vscode/extensions.json index f599870b..7cede1cf 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -1,6 +1,9 @@ { "recommendations": [ + "davidanson.vscode-markdownlint", + "dbaeumer.vscode-eslint", "editorconfig.editorconfig", + "esbenp.prettier-vscode", "fernandoescolar.vscode-solution-explorer", "mariomatheu.syntax-project-pbxproj", "mrorz.language-gettext", diff --git a/.vscode/settings.json b/.vscode/settings.json index cd1daab2..8f3332f7 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,4 +1,5 @@ { + "dotnet.preferCSharpExtension": true, "explorer.fileNesting.enabled": true, "explorer.fileNesting.expand": false, "explorer.fileNesting.patterns": { @@ -9,9 +10,13 @@ "*.png": "${capture}@*.png", "*.sln": "*.csproj", "*.xml": "${capture}.dll", + ".eslintrc*": ".eslintignore", ".gitconfig": ".gitattributes, .gitignore", ".markdownlint.*": ".markdownlint-cli2.*", - ".tool-versions": "global.json" + ".prettierrc.*": ".prettierignore", + ".tool-versions": ".node-version, .nvmrc, global.json", + "package.json": ".npmrc, pnpm-lock.yaml, pnpm-workspace.yaml", + "tsconfig.json": "*.tsbuildinfo" }, "files.associations": { "*.anim": "yaml", @@ -55,13 +60,16 @@ "XRSettings.asset": "json" }, "files.readonlyInclude": { + "**/node_modules/**/*": true, "Packages/com.*/**": true, "Packages/dev.*/**": true, "Packages/*.json": true, "ProjectSettings/**": true }, "files.watcherExclude": { + "**/.eslintcache": true, "**/*.suo": true, + "**/node_modules/**/*": true, "Build/": true, "Library/**": true, "Logs/**": true, @@ -72,6 +80,7 @@ "git.branchProtection": ["main"], "search.exclude": { "**/*.suo": true, + "**/node_modules/**/*": true, "Build/": true, "Library/**": true, "Logs/**": true, @@ -79,6 +88,7 @@ "Temp/": true, "UserSettings/**": true }, + "typescript.enablePromptUseWorkspaceTsdk": true, "yaml.customTags": [ "tag:unity3d.com,2011:1 mapping", "tag:unity3d.com,2011:4 mapping", diff --git a/Assets/TextMesh Pro/Sprites/EmojiOne.json b/Assets/TextMesh Pro/Sprites/EmojiOne.json index 16c800d5..2b5e1e6a 100644 --- a/Assets/TextMesh Pro/Sprites/EmojiOne.json +++ b/Assets/TextMesh Pro/Sprites/EmojiOne.json @@ -1,156 +1,157 @@ -{"frames": [ - -{ - "filename": "1f60a.png", - "frame": {"x":0,"y":0,"w":128,"h":128}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, - "sourceSize": {"w":128,"h":128}, - "pivot": {"x":0.5,"y":0.5} -}, -{ - "filename": "1f60b.png", - "frame": {"x":128,"y":0,"w":128,"h":128}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, - "sourceSize": {"w":128,"h":128}, - "pivot": {"x":0.5,"y":0.5} -}, -{ - "filename": "1f60d.png", - "frame": {"x":256,"y":0,"w":128,"h":128}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, - "sourceSize": {"w":128,"h":128}, - "pivot": {"x":0.5,"y":0.5} -}, -{ - "filename": "1f60e.png", - "frame": {"x":384,"y":0,"w":128,"h":128}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, - "sourceSize": {"w":128,"h":128}, - "pivot": {"x":0.5,"y":0.5} -}, -{ - "filename": "1f600.png", - "frame": {"x":0,"y":128,"w":128,"h":128}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, - "sourceSize": {"w":128,"h":128}, - "pivot": {"x":0.5,"y":0.5} -}, -{ - "filename": "1f601.png", - "frame": {"x":128,"y":128,"w":128,"h":128}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, - "sourceSize": {"w":128,"h":128}, - "pivot": {"x":0.5,"y":0.5} -}, -{ - "filename": "1f602.png", - "frame": {"x":256,"y":128,"w":128,"h":128}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, - "sourceSize": {"w":128,"h":128}, - "pivot": {"x":0.5,"y":0.5} -}, -{ - "filename": "1f603.png", - "frame": {"x":384,"y":128,"w":128,"h":128}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, - "sourceSize": {"w":128,"h":128}, - "pivot": {"x":0.5,"y":0.5} -}, -{ - "filename": "1f604.png", - "frame": {"x":0,"y":256,"w":128,"h":128}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, - "sourceSize": {"w":128,"h":128}, - "pivot": {"x":0.5,"y":0.5} -}, -{ - "filename": "1f605.png", - "frame": {"x":128,"y":256,"w":128,"h":128}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, - "sourceSize": {"w":128,"h":128}, - "pivot": {"x":0.5,"y":0.5} -}, -{ - "filename": "1f606.png", - "frame": {"x":256,"y":256,"w":128,"h":128}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, - "sourceSize": {"w":128,"h":128}, - "pivot": {"x":0.5,"y":0.5} -}, -{ - "filename": "1f609.png", - "frame": {"x":384,"y":256,"w":128,"h":128}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, - "sourceSize": {"w":128,"h":128}, - "pivot": {"x":0.5,"y":0.5} -}, -{ - "filename": "1f618.png", - "frame": {"x":0,"y":384,"w":128,"h":128}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, - "sourceSize": {"w":128,"h":128}, - "pivot": {"x":0.5,"y":0.5} -}, -{ - "filename": "1f923.png", - "frame": {"x":128,"y":384,"w":128,"h":128}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, - "sourceSize": {"w":128,"h":128}, - "pivot": {"x":0.5,"y":0.5} -}, -{ - "filename": "263a.png", - "frame": {"x":256,"y":384,"w":128,"h":128}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, - "sourceSize": {"w":128,"h":128}, - "pivot": {"x":0.5,"y":0.5} -}, -{ - "filename": "2639.png", - "frame": {"x":384,"y":384,"w":128,"h":128}, - "rotated": false, - "trimmed": false, - "spriteSourceSize": {"x":0,"y":0,"w":128,"h":128}, - "sourceSize": {"w":128,"h":128}, - "pivot": {"x":0.5,"y":0.5} -}], -"meta": { - "app": "http://www.codeandweb.com/texturepacker", - "version": "1.0", - "image": "EmojiOne.png", - "format": "RGBA8888", - "size": {"w":512,"h":512}, - "scale": "1", - "smartupdate": "$TexturePacker:SmartUpdate:196a26a2e149d875b91ffc8fa3581e76:fc928c7e275404b7e0649307410475cb:424723c3774975ddb2053fd5c4b85f6e$" -} -} +{ + "frames": [ + { + "filename": "1f60a.png", + "frame": { "x": 0, "y": 0, "w": 128, "h": 128 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 128, "h": 128 }, + "sourceSize": { "w": 128, "h": 128 }, + "pivot": { "x": 0.5, "y": 0.5 } + }, + { + "filename": "1f60b.png", + "frame": { "x": 128, "y": 0, "w": 128, "h": 128 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 128, "h": 128 }, + "sourceSize": { "w": 128, "h": 128 }, + "pivot": { "x": 0.5, "y": 0.5 } + }, + { + "filename": "1f60d.png", + "frame": { "x": 256, "y": 0, "w": 128, "h": 128 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 128, "h": 128 }, + "sourceSize": { "w": 128, "h": 128 }, + "pivot": { "x": 0.5, "y": 0.5 } + }, + { + "filename": "1f60e.png", + "frame": { "x": 384, "y": 0, "w": 128, "h": 128 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 128, "h": 128 }, + "sourceSize": { "w": 128, "h": 128 }, + "pivot": { "x": 0.5, "y": 0.5 } + }, + { + "filename": "1f600.png", + "frame": { "x": 0, "y": 128, "w": 128, "h": 128 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 128, "h": 128 }, + "sourceSize": { "w": 128, "h": 128 }, + "pivot": { "x": 0.5, "y": 0.5 } + }, + { + "filename": "1f601.png", + "frame": { "x": 128, "y": 128, "w": 128, "h": 128 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 128, "h": 128 }, + "sourceSize": { "w": 128, "h": 128 }, + "pivot": { "x": 0.5, "y": 0.5 } + }, + { + "filename": "1f602.png", + "frame": { "x": 256, "y": 128, "w": 128, "h": 128 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 128, "h": 128 }, + "sourceSize": { "w": 128, "h": 128 }, + "pivot": { "x": 0.5, "y": 0.5 } + }, + { + "filename": "1f603.png", + "frame": { "x": 384, "y": 128, "w": 128, "h": 128 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 128, "h": 128 }, + "sourceSize": { "w": 128, "h": 128 }, + "pivot": { "x": 0.5, "y": 0.5 } + }, + { + "filename": "1f604.png", + "frame": { "x": 0, "y": 256, "w": 128, "h": 128 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 128, "h": 128 }, + "sourceSize": { "w": 128, "h": 128 }, + "pivot": { "x": 0.5, "y": 0.5 } + }, + { + "filename": "1f605.png", + "frame": { "x": 128, "y": 256, "w": 128, "h": 128 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 128, "h": 128 }, + "sourceSize": { "w": 128, "h": 128 }, + "pivot": { "x": 0.5, "y": 0.5 } + }, + { + "filename": "1f606.png", + "frame": { "x": 256, "y": 256, "w": 128, "h": 128 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 128, "h": 128 }, + "sourceSize": { "w": 128, "h": 128 }, + "pivot": { "x": 0.5, "y": 0.5 } + }, + { + "filename": "1f609.png", + "frame": { "x": 384, "y": 256, "w": 128, "h": 128 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 128, "h": 128 }, + "sourceSize": { "w": 128, "h": 128 }, + "pivot": { "x": 0.5, "y": 0.5 } + }, + { + "filename": "1f618.png", + "frame": { "x": 0, "y": 384, "w": 128, "h": 128 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 128, "h": 128 }, + "sourceSize": { "w": 128, "h": 128 }, + "pivot": { "x": 0.5, "y": 0.5 } + }, + { + "filename": "1f923.png", + "frame": { "x": 128, "y": 384, "w": 128, "h": 128 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 128, "h": 128 }, + "sourceSize": { "w": 128, "h": 128 }, + "pivot": { "x": 0.5, "y": 0.5 } + }, + { + "filename": "263a.png", + "frame": { "x": 256, "y": 384, "w": 128, "h": 128 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 128, "h": 128 }, + "sourceSize": { "w": 128, "h": 128 }, + "pivot": { "x": 0.5, "y": 0.5 } + }, + { + "filename": "2639.png", + "frame": { "x": 384, "y": 384, "w": 128, "h": 128 }, + "rotated": false, + "trimmed": false, + "spriteSourceSize": { "x": 0, "y": 0, "w": 128, "h": 128 }, + "sourceSize": { "w": 128, "h": 128 }, + "pivot": { "x": 0.5, "y": 0.5 } + } + ], + "meta": { + "app": "http://www.codeandweb.com/texturepacker", + "version": "1.0", + "image": "EmojiOne.png", + "format": "RGBA8888", + "size": { "w": 512, "h": 512 }, + "scale": "1", + "smartupdate": "$TexturePacker:SmartUpdate:196a26a2e149d875b91ffc8fa3581e76:fc928c7e275404b7e0649307410475cb:424723c3774975ddb2053fd5c4b85f6e$" + } +} diff --git a/Packages/com.vrchat.core.bootstrap/License.md b/Packages/com.vrchat.core.bootstrap/License.md index 275530cd..fca47ad5 100644 --- a/Packages/com.vrchat.core.bootstrap/License.md +++ b/Packages/com.vrchat.core.bootstrap/License.md @@ -1,5 +1,7 @@ # VRCHAT INC. + ### VRCHAT DISTRO LICENSE FILE + Version: February 24, 2022 **SUMMARY OF TERMS:** Any materials subject to this Distro Asset License may be distributed by you, with or without modifications, on a non-commercial basis (i.e., at no charge), in accordance with the full terms of the Materials License Agreement. @@ -8,4 +10,4 @@ This Distro License File is a "License File" as defined in the VRChat Materials This Distro License File applies to all the files in the Folder containing this Distro License File and those in all Child Folders within that Folder (except with respect to files in any Child Folder that contains a different License File) (such files, other than this Distro License File, the "Covered Files"). All capitalized terms used but not otherwise defined in this Distro License File have the meanings provided in the Materials License Agreement. -This Distro License File only provides a summary of the terms applicable to the Covered Files. To understand your rights and obligations and the full set of terms that apply to use of the Covered Files, please see the relevant sections of the Materials License Agreement, including terms applicable to Distro Materials. \ No newline at end of file +This Distro License File only provides a summary of the terms applicable to the Covered Files. To understand your rights and obligations and the full set of terms that apply to use of the Covered Files, please see the relevant sections of the Materials License Agreement, including terms applicable to Distro Materials. diff --git a/Packages/com.vrchat.core.bootstrap/package.json b/Packages/com.vrchat.core.bootstrap/package.json index d0b50804..7e6588a9 100644 --- a/Packages/com.vrchat.core.bootstrap/package.json +++ b/Packages/com.vrchat.core.bootstrap/package.json @@ -1,17 +1,17 @@ { - "name" : "com.vrchat.core.bootstrap", - "displayName" : "VRChat Package Bootstrapper", - "version" : "0.1.15", - "unity" : "2019.4", - "description" : "Tool to Download VPM Packages", - "vrchatVersion" : "2022.1.1", - "author" : { - "name" : "VRChat", - "email" : "developer@vrchat.com", - "url" : "https://github.com/vrchat/packages" - }, - "url" : "", - "dependencies" : { - "com.unity.nuget.newtonsoft-json" : "2.0.2" - } + "name": "com.vrchat.core.bootstrap", + "displayName": "VRChat Package Bootstrapper", + "version": "0.1.15", + "unity": "2019.4", + "description": "Tool to Download VPM Packages", + "vrchatVersion": "2022.1.1", + "author": { + "name": "VRChat", + "email": "developer@vrchat.com", + "url": "https://github.com/vrchat/packages" + }, + "url": "", + "dependencies": { + "com.unity.nuget.newtonsoft-json": "2.0.2" + } } diff --git a/Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/Serilog.Sinks.Unity3D.License.md b/Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/Serilog.Sinks.Unity3D.License.md index d9f6ecd2..3adf8176 100644 --- a/Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/Serilog.Sinks.Unity3D.License.md +++ b/Packages/com.vrchat.core.vpm-resolver/Editor/Dependencies/Serilog.Sinks.Unity3D.License.md @@ -1,4 +1,3 @@ - The MIT License (MIT) Copyright (c) 2020 Kurai András diff --git a/Packages/com.vrchat.core.vpm-resolver/License.md b/Packages/com.vrchat.core.vpm-resolver/License.md index 275530cd..fca47ad5 100644 --- a/Packages/com.vrchat.core.vpm-resolver/License.md +++ b/Packages/com.vrchat.core.vpm-resolver/License.md @@ -1,5 +1,7 @@ # VRCHAT INC. + ### VRCHAT DISTRO LICENSE FILE + Version: February 24, 2022 **SUMMARY OF TERMS:** Any materials subject to this Distro Asset License may be distributed by you, with or without modifications, on a non-commercial basis (i.e., at no charge), in accordance with the full terms of the Materials License Agreement. @@ -8,4 +10,4 @@ This Distro License File is a "License File" as defined in the VRChat Materials This Distro License File applies to all the files in the Folder containing this Distro License File and those in all Child Folders within that Folder (except with respect to files in any Child Folder that contains a different License File) (such files, other than this Distro License File, the "Covered Files"). All capitalized terms used but not otherwise defined in this Distro License File have the meanings provided in the Materials License Agreement. -This Distro License File only provides a summary of the terms applicable to the Covered Files. To understand your rights and obligations and the full set of terms that apply to use of the Covered Files, please see the relevant sections of the Materials License Agreement, including terms applicable to Distro Materials. \ No newline at end of file +This Distro License File only provides a summary of the terms applicable to the Covered Files. To understand your rights and obligations and the full set of terms that apply to use of the Covered Files, please see the relevant sections of the Materials License Agreement, including terms applicable to Distro Materials. diff --git a/Packages/com.vrchat.core.vpm-resolver/package.json b/Packages/com.vrchat.core.vpm-resolver/package.json index 4bfba435..b3eba63d 100644 --- a/Packages/com.vrchat.core.vpm-resolver/package.json +++ b/Packages/com.vrchat.core.vpm-resolver/package.json @@ -1,17 +1,17 @@ { - "name" : "com.vrchat.core.vpm-resolver", - "displayName" : "VRChat Package Resolver Tool", - "version" : "0.1.29", - "unity" : "2022.3", - "description" : "Tool to Download VPM Packages", - "vrchatVersion" : "2022.3.3", - "author" : { - "name" : "VRChat", - "email" : "developer@vrchat.com", - "url" : "https://github.com/vrchat/packages" - }, - "url" : "", - "dependencies" : { - "com.unity.nuget.newtonsoft-json" : "3.0.2" - } + "name": "com.vrchat.core.vpm-resolver", + "displayName": "VRChat Package Resolver Tool", + "version": "0.1.29", + "unity": "2022.3", + "description": "Tool to Download VPM Packages", + "vrchatVersion": "2022.3.3", + "author": { + "name": "VRChat", + "email": "developer@vrchat.com", + "url": "https://github.com/vrchat/packages" + }, + "url": "", + "dependencies": { + "com.unity.nuget.newtonsoft-json": "3.0.2" + } } diff --git a/ProjectSettings/Packages/com.vrchat.base/settings.json b/ProjectSettings/Packages/com.vrchat.base/settings.json index 8473a4d3..16185f91 100644 --- a/ProjectSettings/Packages/com.vrchat.base/settings.json +++ b/ProjectSettings/Packages/com.vrchat.base/settings.json @@ -3,4 +3,4 @@ "allowVRCPackageChanges": false, "samplesHintCreated": true, "debugVCCConnection": false -} \ No newline at end of file +} diff --git a/ProjectSettings/SceneTemplateSettings.json b/ProjectSettings/SceneTemplateSettings.json index 5e97f839..dba4ef91 100644 --- a/ProjectSettings/SceneTemplateSettings.json +++ b/ProjectSettings/SceneTemplateSettings.json @@ -118,4 +118,4 @@ "defaultInstantiationMode": 1 }, "newSceneOverride": 0 -} \ No newline at end of file +} diff --git a/Website/app.js b/Website/app.js index 6dabb394..491545f6 100644 --- a/Website/app.js +++ b/Website/app.js @@ -1,9 +1,9 @@ import { baseLayerLuminance, StandardLuminance, -} from "https://unpkg.com/@fluentui/web-components"; +} from 'https://unpkg.com/@fluentui/web-components'; -const LISTING_URL = "{{ listingInfo.Url }}"; +const LISTING_URL = '{{ listingInfo.Url }}'; const PACKAGES = eval(`({ {{~ for package in packages ~}} @@ -34,16 +34,16 @@ const PACKAGES = eval(`({ const setTheme = () => { const isDarkTheme = () => - window.matchMedia("(prefers-color-scheme: dark)").matches; + window.matchMedia('(prefers-color-scheme: dark)').matches; if (isDarkTheme()) { baseLayerLuminance.setValueFor( document.documentElement, - StandardLuminance.DarkMode + StandardLuminance.DarkMode, ); } else { baseLayerLuminance.setValueFor( document.documentElement, - StandardLuminance.LightMode + StandardLuminance.LightMode, ); } }; @@ -52,21 +52,21 @@ const setTheme = () => { setTheme(); window - .matchMedia("(prefers-color-scheme: dark)") - .addEventListener("change", () => { + .matchMedia('(prefers-color-scheme: dark)') + .addEventListener('change', () => { setTheme(); }); - const packageGrid = document.getElementById("packageGrid"); + const packageGrid = document.getElementById('packageGrid'); - const searchInput = document.getElementById("searchInput"); - searchInput.addEventListener("input", ({ target: { value = "" } }) => { + const searchInput = document.getElementById('searchInput'); + searchInput.addEventListener('input', ({ target: { value = '' } }) => { const items = packageGrid.querySelectorAll( - 'fluent-data-grid-row[row-type="default"]' + 'fluent-data-grid-row[row-type="default"]', ); items.forEach((item) => { - if (value === "") { - item.style.display = "grid"; + if (value === '') { + item.style.display = 'grid'; return; } if ( @@ -75,134 +75,134 @@ const setTheme = () => { ?.includes(value.toLowerCase()) || item.dataset?.packageId?.toLowerCase()?.includes(value.toLowerCase()) ) { - item.style.display = "grid"; + item.style.display = 'grid'; } else { - item.style.display = "none"; + item.style.display = 'none'; } }); }); - const urlBarHelpButton = document.getElementById("urlBarHelp"); - const addListingToVccHelp = document.getElementById("addListingToVccHelp"); - urlBarHelpButton.addEventListener("click", () => { + const urlBarHelpButton = document.getElementById('urlBarHelp'); + const addListingToVccHelp = document.getElementById('addListingToVccHelp'); + urlBarHelpButton.addEventListener('click', () => { addListingToVccHelp.hidden = false; }); const addListingToVccHelpClose = document.getElementById( - "addListingToVccHelpClose" + 'addListingToVccHelpClose', ); - addListingToVccHelpClose.addEventListener("click", () => { + addListingToVccHelpClose.addEventListener('click', () => { addListingToVccHelp.hidden = true; }); const vccListingInfoUrlFieldCopy = document.getElementById( - "vccListingInfoUrlFieldCopy" + 'vccListingInfoUrlFieldCopy', ); - vccListingInfoUrlFieldCopy.addEventListener("click", () => { - const vccUrlField = document.getElementById("vccListingInfoUrlField"); + vccListingInfoUrlFieldCopy.addEventListener('click', () => { + const vccUrlField = document.getElementById('vccListingInfoUrlField'); vccUrlField.select(); navigator.clipboard.writeText(vccUrlField.value); - vccUrlFieldCopy.appearance = "accent"; + vccUrlFieldCopy.appearance = 'accent'; setTimeout(() => { - vccUrlFieldCopy.appearance = "neutral"; + vccUrlFieldCopy.appearance = 'neutral'; }, 1000); }); - const vccAddRepoButton = document.getElementById("vccAddRepoButton"); - vccAddRepoButton.addEventListener("click", () => + const vccAddRepoButton = document.getElementById('vccAddRepoButton'); + vccAddRepoButton.addEventListener('click', () => window.location.assign( - `vcc://vpm/addRepo?url=${encodeURIComponent(LISTING_URL)}` - ) + `vcc://vpm/addRepo?url=${encodeURIComponent(LISTING_URL)}`, + ), ); - const vccUrlFieldCopy = document.getElementById("vccUrlFieldCopy"); - vccUrlFieldCopy.addEventListener("click", () => { - const vccUrlField = document.getElementById("vccUrlField"); + const vccUrlFieldCopy = document.getElementById('vccUrlFieldCopy'); + vccUrlFieldCopy.addEventListener('click', () => { + const vccUrlField = document.getElementById('vccUrlField'); vccUrlField.select(); navigator.clipboard.writeText(vccUrlField.value); - vccUrlFieldCopy.appearance = "accent"; + vccUrlFieldCopy.appearance = 'accent'; setTimeout(() => { - vccUrlFieldCopy.appearance = "neutral"; + vccUrlFieldCopy.appearance = 'neutral'; }, 1000); }); - const rowMoreMenu = document.getElementById("rowMoreMenu"); + const rowMoreMenu = document.getElementById('rowMoreMenu'); const hideRowMoreMenu = (e) => { if (rowMoreMenu.contains(e.target)) return; - document.removeEventListener("click", hideRowMoreMenu); + document.removeEventListener('click', hideRowMoreMenu); rowMoreMenu.hidden = true; }; - const rowMenuButtons = document.querySelectorAll(".rowMenuButton"); + const rowMenuButtons = document.querySelectorAll('.rowMenuButton'); rowMenuButtons.forEach((button) => { - button.addEventListener("click", (e) => { + button.addEventListener('click', (e) => { if (rowMoreMenu?.hidden) { rowMoreMenu.style.top = `${e.clientY + e.target.clientHeight}px`; rowMoreMenu.style.left = `${e.clientX - 120}px`; rowMoreMenu.hidden = false; - const downloadLink = rowMoreMenu.querySelector("#rowMoreMenuDownload"); + const downloadLink = rowMoreMenu.querySelector('#rowMoreMenuDownload'); const downloadListener = () => { - window.open(e?.target?.dataset?.packageUrl, "_blank"); + window.open(e?.target?.dataset?.packageUrl, '_blank'); }; - downloadLink.addEventListener("change", () => { + downloadLink.addEventListener('change', () => { downloadListener(); - downloadLink.removeEventListener("change", downloadListener); + downloadLink.removeEventListener('change', downloadListener); }); setTimeout(() => { - document.addEventListener("click", hideRowMoreMenu); + document.addEventListener('click', hideRowMoreMenu); }, 1); } }); }); - const packageInfoModal = document.getElementById("packageInfoModal"); + const packageInfoModal = document.getElementById('packageInfoModal'); const packageInfoModalClose = document.getElementById( - "packageInfoModalClose" + 'packageInfoModalClose', ); - packageInfoModalClose.addEventListener("click", () => { + packageInfoModalClose.addEventListener('click', () => { packageInfoModal.hidden = true; }); // Fluent dialogs use nested shadow-rooted elements, so we need to use JS to style them - const modalControl = packageInfoModal.shadowRoot.querySelector(".control"); - modalControl.style.maxHeight = "90%"; - modalControl.style.transition = "height 0.2s ease-in-out"; - modalControl.style.overflowY = "hidden"; + const modalControl = packageInfoModal.shadowRoot.querySelector('.control'); + modalControl.style.maxHeight = '90%'; + modalControl.style.transition = 'height 0.2s ease-in-out'; + modalControl.style.overflowY = 'hidden'; - const packageInfoName = document.getElementById("packageInfoName"); - const packageInfoId = document.getElementById("packageInfoId"); - const packageInfoVersion = document.getElementById("packageInfoVersion"); + const packageInfoName = document.getElementById('packageInfoName'); + const packageInfoId = document.getElementById('packageInfoId'); + const packageInfoVersion = document.getElementById('packageInfoVersion'); const packageInfoDescription = document.getElementById( - "packageInfoDescription" + 'packageInfoDescription', ); - const packageInfoAuthor = document.getElementById("packageInfoAuthor"); + const packageInfoAuthor = document.getElementById('packageInfoAuthor'); const packageInfoDependencies = document.getElementById( - "packageInfoDependencies" + 'packageInfoDependencies', ); - const packageInfoKeywords = document.getElementById("packageInfoKeywords"); - const packageInfoLicense = document.getElementById("packageInfoLicense"); + const packageInfoKeywords = document.getElementById('packageInfoKeywords'); + const packageInfoLicense = document.getElementById('packageInfoLicense'); - const rowAddToVccButtons = document.querySelectorAll(".rowAddToVccButton"); + const rowAddToVccButtons = document.querySelectorAll('.rowAddToVccButton'); rowAddToVccButtons.forEach((button) => { - button.addEventListener("click", () => + button.addEventListener('click', () => window.location.assign( - `vcc://vpm/addRepo?url=${encodeURIComponent(LISTING_URL)}` - ) + `vcc://vpm/addRepo?url=${encodeURIComponent(LISTING_URL)}`, + ), ); }); const rowPackageInfoButton = document.querySelectorAll( - ".rowPackageInfoButton" + '.rowPackageInfoButton', ); rowPackageInfoButton.forEach((button) => { - button.addEventListener("click", (e) => { + button.addEventListener('click', (e) => { const packageId = e.target.dataset?.packageId; const packageInfo = PACKAGES?.[packageId]; if (!packageInfo) { console.error( `Did not find package ${packageId}. Packages available:`, - PACKAGES + PACKAGES, ); return; } @@ -215,30 +215,30 @@ const setTheme = () => { packageInfoAuthor.href = packageInfo.author.url; if ((packageInfo.keywords?.length ?? 0) === 0) { - packageInfoKeywords.parentElement.classList.add("hidden"); + packageInfoKeywords.parentElement.classList.add('hidden'); } else { - packageInfoKeywords.parentElement.classList.remove("hidden"); + packageInfoKeywords.parentElement.classList.remove('hidden'); packageInfoKeywords.innerHTML = null; packageInfo.keywords.forEach((keyword) => { - const keywordDiv = document.createElement("div"); - keywordDiv.classList.add("me-2", "mb-2", "badge"); + const keywordDiv = document.createElement('div'); + keywordDiv.classList.add('me-2', 'mb-2', 'badge'); keywordDiv.textContent = keyword; packageInfoKeywords.appendChild(keywordDiv); }); } if (!packageInfo.license?.length && !packageInfo.licensesUrl?.length) { - packageInfoLicense.parentElement.classList.add("hidden"); + packageInfoLicense.parentElement.classList.add('hidden'); } else { - packageInfoLicense.parentElement.classList.remove("hidden"); - packageInfoLicense.textContent = packageInfo.license ?? "See License"; - packageInfoLicense.href = packageInfo.licensesUrl ?? "#"; + packageInfoLicense.parentElement.classList.remove('hidden'); + packageInfoLicense.textContent = packageInfo.license ?? 'See License'; + packageInfoLicense.href = packageInfo.licensesUrl ?? '#'; } packageInfoDependencies.innerHTML = null; Object.entries(packageInfo.dependencies).forEach(([name, version]) => { - const depRow = document.createElement("li"); - depRow.classList.add("mb-2"); + const depRow = document.createElement('li'); + depRow.classList.add('mb-2'); depRow.textContent = `${name} @ v${version}`; packageInfoDependencies.appendChild(depRow); }); @@ -246,29 +246,29 @@ const setTheme = () => { packageInfoModal.hidden = false; setTimeout(() => { - const height = packageInfoModal.querySelector(".col").clientHeight; - modalControl.style.setProperty("--dialog-height", `${height + 14}px`); + const height = packageInfoModal.querySelector('.col').clientHeight; + modalControl.style.setProperty('--dialog-height', `${height + 14}px`); }, 1); }); }); const packageInfoVccUrlFieldCopy = document.getElementById( - "packageInfoVccUrlFieldCopy" + 'packageInfoVccUrlFieldCopy', ); - packageInfoVccUrlFieldCopy.addEventListener("click", () => { - const vccUrlField = document.getElementById("packageInfoVccUrlField"); + packageInfoVccUrlFieldCopy.addEventListener('click', () => { + const vccUrlField = document.getElementById('packageInfoVccUrlField'); vccUrlField.select(); navigator.clipboard.writeText(vccUrlField.value); - vccUrlFieldCopy.appearance = "accent"; + vccUrlFieldCopy.appearance = 'accent'; setTimeout(() => { - vccUrlFieldCopy.appearance = "neutral"; + vccUrlFieldCopy.appearance = 'neutral'; }, 1000); }); const packageInfoListingHelp = document.getElementById( - "packageInfoListingHelp" + 'packageInfoListingHelp', ); - packageInfoListingHelp.addEventListener("click", () => { + packageInfoListingHelp.addEventListener('click', () => { addListingToVccHelp.hidden = false; }); })(); diff --git a/Website/index.html b/Website/index.html index e2da52fa..8b989458 100644 --- a/Website/index.html +++ b/Website/index.html @@ -1,4 +1,4 @@ - + diff --git a/Website/styles.css b/Website/styles.css index af71d1bd..4e7c49e4 100644 --- a/Website/styles.css +++ b/Website/styles.css @@ -14,7 +14,7 @@ body { display: flex; align-items: center; justify-content: center; - font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; + font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: var(--neutral-foreground-rest); } diff --git a/cspell.config.yml b/cspell.config.yml index d50ea36d..a69e3eb6 100644 --- a/cspell.config.yml +++ b/cspell.config.yml @@ -1,17 +1,13 @@ -allowCompoundWords: true +cache: + cacheFormat: universal + cacheLocation: node_modules/.cache/cspell/.cspell.cache + cacheStrategy: metadata + useCache: true dictionaries: - - cpp - - csharp - css - - dotnet - - en-gb - - en-us - - fsharp - php -enableGlobDot: true -features: - weighted-suggestions: true -globRoot: ${cwd} +import: + - '@kurone-kito/cspell-config' ignorePaths: - .git - .github/CODE_OF_CONDUCT.* @@ -20,19 +16,19 @@ ignorePaths: - Assets/UdonSharp - Assets/XR - cspell.config.yml + - node_modules - Packages/com.* - Packages/dev.* - Packages/*.json - ProjectSettings ignoreRegExpList: - (avtr|wrld)_([0-9a-f]{8})-([0-9a-f]{4})-([0-9a-f]{4})-([0-9a-f]{4})-([0-9a-f]{12}) -language: en,ja -useGitignore: true version: '0.2' words: - atrous - denoiser - dwlt + - lanchpadicons - kito - kuroné - Kuron diff --git a/eslint.config.mjs b/eslint.config.mjs new file mode 100644 index 00000000..2b213d41 --- /dev/null +++ b/eslint.config.mjs @@ -0,0 +1 @@ +export { default } from '@kurone-kito/eslint-config-base'; diff --git a/package.json b/package.json new file mode 100644 index 00000000..f66f1bc2 --- /dev/null +++ b/package.json @@ -0,0 +1,67 @@ +{ + "name": "@kurone-kito/yarn-project-boilerplate", + "version": "0.1.0", + "private": true, + "description": "The boilerplate project of the Node.js / Yarn", + "keywords": [ + "boilerplate", + "template" + ], + "homepage": "https://github.com/kurone-kito/yarn-project-boilerplate#readme", + "bugs": "https://github.com/kurone-kito/yarn-project-boilerplate/issues", + "repository": "github:kurone-kito/yarn-project-boilerplate", + "license": "MIT", + "author": "kurone-kito (https://kit.black/)", + "type": "module", + "files": [], + "scripts": { + "clean": "rimraf -g .eslintcache \"*.tgz\" \"*.tsbuildinfo\" \"node_modules/.cache/**/*\"", + "lint": "pnpm run \"/lint:.+:check/\"", + "lint:cspell:check": "cspell lint --no-progress --show-suggestions -u \"./**/*\"", + "lint:eslint:check": "eslint --cache --cache-location node_modules/.cache/eslint/ --cache-strategy=content -f codeframe \"./**/*\"", + "lint:eslint:fix": "pnpm run lint:eslint:check --fix", + "lint:fix": "pnpm run lint:cspell:check && pnpm run \"/lint:.+:fix/\"", + "lint:markdown:check": "markdownlint-cli2 \"**/*.md\"", + "lint:markdown:fix": "markdownlint-cli2 --fix \"**/*.md\"", + "lint:oxlint:check": "oxlint", + "lint:oxlint:fix": "oxlint --fix", + "lint:prettier:check": "pnpm run prettier -cu", + "lint:prettier:fix": "pnpm run prettier -uw", + "prepare": "husky", + "prettier": "prettier --cache --log-level=warn \"./**/*\"", + "test": "pnpm run lint" + }, + "devDependencies": { + "@commitlint/cli": "^19.6.1", + "@commitlint/config-conventional": "^19.6.0", + "@cspell/cspell-types": "^8.17.1", + "@kurone-kito/commitlint-config": "^0.17.2", + "@kurone-kito/cspell-config": "^0.17.2", + "@kurone-kito/eslint-config-base": "^0.17.2", + "@kurone-kito/lint-staged-config": "^0.17.2", + "@kurone-kito/prettier-config": "^0.17.2", + "@kurone-kito/typescript-config": "^0.17.2", + "@typescript-eslint/parser": "^8.18.2", + "cspell": "^8.17.1", + "eslint": "^9.17.0", + "eslint-formatter-codeframe": "^7.32.1", + "husky": "^9.1.7", + "lint-staged": "^15.2.11", + "markdownlint-cli2": "^0.16.0", + "oxlint": "^0.15.3", + "prettier": "^3.4.2", + "prettier-plugin-packagejson": "^2.5.6", + "prettier-plugin-sh": "^0.14.0", + "prettier-plugin-sort-json": "^4.0.0", + "rimraf": "^5.0.10", + "typescript": "~5.7.2", + "typescript-eslint-language-service": "^5.0.5" + }, + "packageManager": "pnpm@9.15.1+sha512.1acb565e6193efbebda772702950469150cf12bcc764262e7587e71d19dc98a423dff9536e57ea44c49bdf790ff694e83c27be5faa23d67e0c033b583be4bfcf", + "engines": { + "node": ">=18.20" + }, + "publishConfig": { + "access": "public" + } +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml new file mode 100644 index 00000000..23df94f1 --- /dev/null +++ b/pnpm-lock.yaml @@ -0,0 +1,5801 @@ +lockfileVersion: '9.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +importers: + + .: + devDependencies: + '@commitlint/cli': + specifier: ^19.6.1 + version: 19.6.1(@types/node@22.10.2)(typescript@5.7.2) + '@commitlint/config-conventional': + specifier: ^19.6.0 + version: 19.6.0 + '@cspell/cspell-types': + specifier: ^8.17.1 + version: 8.17.1 + '@kurone-kito/commitlint-config': + specifier: ^0.17.2 + version: 0.17.2(@commitlint/config-conventional@19.6.0) + '@kurone-kito/cspell-config': + specifier: ^0.17.2 + version: 0.17.2(cspell@8.17.1) + '@kurone-kito/eslint-config-base': + specifier: ^0.17.2 + version: 0.17.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) + '@kurone-kito/lint-staged-config': + specifier: ^0.17.2 + version: 0.17.2(cspell@8.17.1)(eslint-formatter-codeframe@7.32.1)(eslint@9.17.0(jiti@2.4.2))(lint-staged@15.2.11)(prettier@3.4.2) + '@kurone-kito/prettier-config': + specifier: ^0.17.2 + version: 0.17.2(prettier@3.4.2) + '@kurone-kito/typescript-config': + specifier: ^0.17.2 + version: 0.17.2(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(typescript-eslint-language-service@5.0.5(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(typescript@5.7.2) + '@typescript-eslint/parser': + specifier: ^8.18.2 + version: 8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) + cspell: + specifier: ^8.17.1 + version: 8.17.1 + eslint: + specifier: ^9.17.0 + version: 9.17.0(jiti@2.4.2) + eslint-formatter-codeframe: + specifier: ^7.32.1 + version: 7.32.1 + husky: + specifier: ^9.1.7 + version: 9.1.7 + lint-staged: + specifier: ^15.2.11 + version: 15.2.11 + markdownlint-cli2: + specifier: ^0.16.0 + version: 0.16.0 + oxlint: + specifier: ^0.15.3 + version: 0.15.3 + prettier: + specifier: ^3.4.2 + version: 3.4.2 + prettier-plugin-packagejson: + specifier: ^2.5.6 + version: 2.5.6(prettier@3.4.2) + prettier-plugin-sh: + specifier: ^0.14.0 + version: 0.14.0(prettier@3.4.2) + prettier-plugin-sort-json: + specifier: ^4.0.0 + version: 4.0.0(prettier@3.4.2) + rimraf: + specifier: ^5.0.10 + version: 5.0.10 + typescript: + specifier: ~5.7.2 + version: 5.7.2 + typescript-eslint-language-service: + specifier: ^5.0.5 + version: 5.0.5(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) + +packages: + + '@babel/code-frame@7.12.11': + resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==} + + '@babel/code-frame@7.26.2': + resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==} + engines: {node: '>=6.9.0'} + + '@babel/helper-validator-identifier@7.25.9': + resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==} + engines: {node: '>=6.9.0'} + + '@babel/highlight@7.25.9': + resolution: {integrity: sha512-llL88JShoCsth8fF8R4SJnIn+WLvR6ccFxu1H3FlMhDontdcmZWf2HgIZ7AIqV3Xcck1idlohrN4EUBQz6klbw==} + engines: {node: '>=6.9.0'} + + '@commitlint/cli@19.6.1': + resolution: {integrity: sha512-8hcyA6ZoHwWXC76BoC8qVOSr8xHy00LZhZpauiD0iO0VYbVhMnED0da85lTfIULxl7Lj4c6vZgF0Wu/ed1+jlQ==} + engines: {node: '>=v18'} + hasBin: true + + '@commitlint/config-conventional@19.6.0': + resolution: {integrity: sha512-DJT40iMnTYtBtUfw9ApbsLZFke1zKh6llITVJ+x9mtpHD08gsNXaIRqHTmwTZL3dNX5+WoyK7pCN/5zswvkBCQ==} + engines: {node: '>=v18'} + + '@commitlint/config-validator@19.5.0': + resolution: {integrity: sha512-CHtj92H5rdhKt17RmgALhfQt95VayrUo2tSqY9g2w+laAXyk7K/Ef6uPm9tn5qSIwSmrLjKaXK9eiNuxmQrDBw==} + engines: {node: '>=v18'} + + '@commitlint/ensure@19.5.0': + resolution: {integrity: sha512-Kv0pYZeMrdg48bHFEU5KKcccRfKmISSm9MvgIgkpI6m+ohFTB55qZlBW6eYqh/XDfRuIO0x4zSmvBjmOwWTwkg==} + engines: {node: '>=v18'} + + '@commitlint/execute-rule@19.5.0': + resolution: {integrity: sha512-aqyGgytXhl2ejlk+/rfgtwpPexYyri4t8/n4ku6rRJoRhGZpLFMqrZ+YaubeGysCP6oz4mMA34YSTaSOKEeNrg==} + engines: {node: '>=v18'} + + '@commitlint/format@19.5.0': + resolution: {integrity: sha512-yNy088miE52stCI3dhG/vvxFo9e4jFkU1Mj3xECfzp/bIS/JUay4491huAlVcffOoMK1cd296q0W92NlER6r3A==} + engines: {node: '>=v18'} + + '@commitlint/is-ignored@19.6.0': + resolution: {integrity: sha512-Ov6iBgxJQFR9koOupDPHvcHU9keFupDgtB3lObdEZDroiG4jj1rzky60fbQozFKVYRTUdrBGICHG0YVmRuAJmw==} + engines: {node: '>=v18'} + + '@commitlint/lint@19.6.0': + resolution: {integrity: sha512-LRo7zDkXtcIrpco9RnfhOKeg8PAnE3oDDoalnrVU/EVaKHYBWYL1DlRR7+3AWn0JiBqD8yKOfetVxJGdEtZ0tg==} + engines: {node: '>=v18'} + + '@commitlint/load@19.6.1': + resolution: {integrity: sha512-kE4mRKWWNju2QpsCWt428XBvUH55OET2N4QKQ0bF85qS/XbsRGG1MiTByDNlEVpEPceMkDr46LNH95DtRwcsfA==} + engines: {node: '>=v18'} + + '@commitlint/message@19.5.0': + resolution: {integrity: sha512-R7AM4YnbxN1Joj1tMfCyBryOC5aNJBdxadTZkuqtWi3Xj0kMdutq16XQwuoGbIzL2Pk62TALV1fZDCv36+JhTQ==} + engines: {node: '>=v18'} + + '@commitlint/parse@19.5.0': + resolution: {integrity: sha512-cZ/IxfAlfWYhAQV0TwcbdR1Oc0/r0Ik1GEessDJ3Lbuma/MRO8FRQX76eurcXtmhJC//rj52ZSZuXUg0oIX0Fw==} + engines: {node: '>=v18'} + + '@commitlint/read@19.5.0': + resolution: {integrity: sha512-TjS3HLPsLsxFPQj6jou8/CZFAmOP2y+6V4PGYt3ihbQKTY1Jnv0QG28WRKl/d1ha6zLODPZqsxLEov52dhR9BQ==} + engines: {node: '>=v18'} + + '@commitlint/resolve-extends@19.5.0': + resolution: {integrity: sha512-CU/GscZhCUsJwcKTJS9Ndh3AKGZTNFIOoQB2n8CmFnizE0VnEuJoum+COW+C1lNABEeqk6ssfc1Kkalm4bDklA==} + engines: {node: '>=v18'} + + '@commitlint/rules@19.6.0': + resolution: {integrity: sha512-1f2reW7lbrI0X0ozZMesS/WZxgPa4/wi56vFuJENBmed6mWq5KsheN/nxqnl/C23ioxpPO/PL6tXpiiFy5Bhjw==} + engines: {node: '>=v18'} + + '@commitlint/to-lines@19.5.0': + resolution: {integrity: sha512-R772oj3NHPkodOSRZ9bBVNq224DOxQtNef5Pl8l2M8ZnkkzQfeSTr4uxawV2Sd3ui05dUVzvLNnzenDBO1KBeQ==} + engines: {node: '>=v18'} + + '@commitlint/top-level@19.5.0': + resolution: {integrity: sha512-IP1YLmGAk0yWrImPRRc578I3dDUI5A2UBJx9FbSOjxe9sTlzFiwVJ+zeMLgAtHMtGZsC8LUnzmW1qRemkFU4ng==} + engines: {node: '>=v18'} + + '@commitlint/types@19.5.0': + resolution: {integrity: sha512-DSHae2obMSMkAtTBSOulg5X7/z+rGLxcXQIkg3OmWvY6wifojge5uVMydfhUvs7yQj+V7jNmRZ2Xzl8GJyqRgg==} + engines: {node: '>=v18'} + + '@cspell/cspell-bundled-dicts@8.17.1': + resolution: {integrity: sha512-HmkXS5uX4bk/XxsRS4Q+zRvhgRa81ddGiR2/Xfag9MIi5L5UnEJ4g21EpmIlXkMxYrTu2fp69SZFss5NfcFF9Q==} + engines: {node: '>=18'} + + '@cspell/cspell-json-reporter@8.17.1': + resolution: {integrity: sha512-EV9Xkh42Xw3aORvDZfxusICX91DDbqQpYdGKBdPGuhgxWOUYYZKpLXsHCmDkhruMPo2m5gDh++/OqjLRPZofKQ==} + engines: {node: '>=18'} + + '@cspell/cspell-pipe@8.17.1': + resolution: {integrity: sha512-uhC99Ox+OH3COSgShv4fpVHiotR70dNvAOSkzRvKVRzV6IGyFnxHjmyVVPEV0dsqzVLxltwYTqFhwI+UOwm45A==} + engines: {node: '>=18'} + + '@cspell/cspell-resolver@8.17.1': + resolution: {integrity: sha512-XEK2ymTdQNgsV3ny60VkKzWskbICl4zNXh/DbxsoRXHqIRg43MXFpTNkEJ7j873EqdX7BU4opQQ+5D4stWWuhQ==} + engines: {node: '>=18'} + + '@cspell/cspell-service-bus@8.17.1': + resolution: {integrity: sha512-2sFWQtMEWZ4tdz7bw0bAx4NaV1t0ynGfjpuKWdQppsJFKNb+ZPZZ6Ah1dC13AdRRMZaG194kDRFwzNvRaCgWkQ==} + engines: {node: '>=18'} + + '@cspell/cspell-types@8.17.1': + resolution: {integrity: sha512-NJbov7Jp57fh8addoxesjb8atg/APQfssCH5Q9uZuHBN06wEJDgs7fhfE48bU+RBViC9gltblsYZzZZQKzHYKg==} + engines: {node: '>=18'} + + '@cspell/dict-ada@4.0.5': + resolution: {integrity: sha512-6/RtZ/a+lhFVmrx/B7bfP7rzC4yjEYe8o74EybXcvu4Oue6J4Ey2WSYj96iuodloj1LWrkNCQyX5h4Pmcj0Iag==} + + '@cspell/dict-al@1.0.3': + resolution: {integrity: sha512-V1HClwlfU/qwSq2Kt+MkqRAsonNu3mxjSCDyGRecdLGIHmh7yeEeaxqRiO/VZ4KP+eVSiSIlbwrb5YNFfxYZbw==} + + '@cspell/dict-aws@4.0.7': + resolution: {integrity: sha512-PoaPpa2NXtSkhGIMIKhsJUXB6UbtTt6Ao3x9JdU9kn7fRZkwD4RjHDGqulucIOz7KeEX/dNRafap6oK9xHe4RA==} + + '@cspell/dict-bash@4.1.8': + resolution: {integrity: sha512-I2CM2pTNthQwW069lKcrVxchJGMVQBzru2ygsHCwgidXRnJL/NTjAPOFTxN58Jc1bf7THWghfEDyKX/oyfc0yg==} + + '@cspell/dict-companies@3.1.10': + resolution: {integrity: sha512-KpRLiVDCpTkF+IjWnuYc31B0gyHVh0TSf/MDrWPobl9oYNQRWFUMACAJO9FP+kHI0jzLjTyLC1KpKwqte/88iA==} + + '@cspell/dict-cpp@6.0.2': + resolution: {integrity: sha512-yw5eejWvY4bAnc6LUA44m4WsFwlmgPt2uMSnO7QViGMBDuoeopMma4z9XYvs4lSjTi8fIJs/A1YDfM9AVzb8eg==} + + '@cspell/dict-cryptocurrencies@5.0.3': + resolution: {integrity: sha512-bl5q+Mk+T3xOZ12+FG37dB30GDxStza49Rmoax95n37MTLksk9wBo1ICOlPJ6PnDUSyeuv4SIVKgRKMKkJJglA==} + + '@cspell/dict-csharp@4.0.5': + resolution: {integrity: sha512-c/sFnNgtRwRJxtC3JHKkyOm+U3/sUrltFeNwml9VsxKBHVmvlg4tk4ar58PdpW9/zTlGUkWi2i85//DN1EsUCA==} + + '@cspell/dict-css@4.0.16': + resolution: {integrity: sha512-70qu7L9z/JR6QLyJPk38fNTKitlIHnfunx0wjpWQUQ8/jGADIhMCrz6hInBjqPNdtGpYm8d1dNFyF8taEkOgrQ==} + + '@cspell/dict-dart@2.2.4': + resolution: {integrity: sha512-of/cVuUIZZK/+iqefGln8G3bVpfyN6ZtH+LyLkHMoR5tEj+2vtilGNk9ngwyR8L4lEqbKuzSkOxgfVjsXf5PsQ==} + + '@cspell/dict-data-science@2.0.5': + resolution: {integrity: sha512-nNSILXmhSJox9/QoXICPQgm8q5PbiSQP4afpbkBqPi/u/b3K9MbNH5HvOOa6230gxcGdbZ9Argl2hY/U8siBlg==} + + '@cspell/dict-django@4.1.3': + resolution: {integrity: sha512-yBspeL3roJlO0a1vKKNaWABURuHdHZ9b1L8d3AukX0AsBy9snSggc8xCavPmSzNfeMDXbH+1lgQiYBd3IW03fg==} + + '@cspell/dict-docker@1.1.11': + resolution: {integrity: sha512-s0Yhb16/R+UT1y727ekbR/itWQF3Qz275DR1ahOa66wYtPjHUXmhM3B/LT3aPaX+hD6AWmK23v57SuyfYHUjsw==} + + '@cspell/dict-dotnet@5.0.8': + resolution: {integrity: sha512-MD8CmMgMEdJAIPl2Py3iqrx3B708MbCIXAuOeZ0Mzzb8YmLmiisY7QEYSZPg08D7xuwARycP0Ki+bb0GAkFSqg==} + + '@cspell/dict-elixir@4.0.6': + resolution: {integrity: sha512-TfqSTxMHZ2jhiqnXlVKM0bUADtCvwKQv2XZL/DI0rx3doG8mEMS8SGPOmiyyGkHpR/pGOq18AFH3BEm4lViHIw==} + + '@cspell/dict-en-common-misspellings@2.0.7': + resolution: {integrity: sha512-qNFo3G4wyabcwnM+hDrMYKN9vNVg/k9QkhqSlSst6pULjdvPyPs1mqz1689xO/v9t8e6sR4IKc3CgUXDMTYOpA==} + + '@cspell/dict-en-gb@1.1.33': + resolution: {integrity: sha512-tKSSUf9BJEV+GJQAYGw5e+ouhEe2ZXE620S7BLKe3ZmpnjlNG9JqlnaBhkIMxKnNFkLY2BP/EARzw31AZnOv4g==} + + '@cspell/dict-en_us@4.3.28': + resolution: {integrity: sha512-BN1PME7cOl7DXRQJ92pEd1f0Xk5sqjcDfThDGkKcsgwbSOY7KnTc/czBW6Pr3WXIchIm6cT12KEfjNqx7U7Rrw==} + + '@cspell/dict-filetypes@3.0.9': + resolution: {integrity: sha512-U7ycC1cE32A5aEgwzp/iE0TVabonUFnVt+Ygbf6NsIWqEuFWZgZChC7gfztA4T1fpuj602nFdp7eOnTWKORsnQ==} + + '@cspell/dict-flutter@1.0.3': + resolution: {integrity: sha512-52C9aUEU22ptpgYh6gQyIdA4MP6NPwzbEqndfgPh3Sra191/kgs7CVqXiO1qbtZa9gnYHUoVApkoxRE7mrXHfg==} + + '@cspell/dict-fonts@4.0.3': + resolution: {integrity: sha512-sPd17kV5qgYXLteuHFPn5mbp/oCHKgitNfsZLFC3W2fWEgZlhg4hK+UGig3KzrYhhvQ8wBnmZrAQm0TFKCKzsA==} + + '@cspell/dict-fsharp@1.0.4': + resolution: {integrity: sha512-G5wk0o1qyHUNi9nVgdE1h5wl5ylq7pcBjX8vhjHcO4XBq20D5eMoXjwqMo/+szKAqzJ+WV3BgAL50akLKrT9Rw==} + + '@cspell/dict-fullstack@3.2.3': + resolution: {integrity: sha512-62PbndIyQPH11mAv0PyiyT0vbwD0AXEocPpHlCHzfb5v9SspzCCbzQ/LIBiFmyRa+q5LMW35CnSVu6OXdT+LKg==} + + '@cspell/dict-gaming-terms@1.0.9': + resolution: {integrity: sha512-AVIrZt3YiUnxsUzzGYTZ1XqgtkgwGEO0LWIlEf+SiDUEVLtv4CYmmyXFQ+WXDN0pyJ0wOwDazWrP0Cu7avYQmQ==} + + '@cspell/dict-git@3.0.3': + resolution: {integrity: sha512-LSxB+psZ0qoj83GkyjeEH/ZViyVsGEF/A6BAo8Nqc0w0HjD2qX/QR4sfA6JHUgQ3Yi/ccxdK7xNIo67L2ScW5A==} + + '@cspell/dict-golang@6.0.17': + resolution: {integrity: sha512-uDDLEJ/cHdLiqPw4+5BnmIo2i/TSR+uDvYd6JlBjTmjBKpOCyvUgYRztH7nv5e7virsN5WDiUWah4/ATQGz4Pw==} + + '@cspell/dict-google@1.0.4': + resolution: {integrity: sha512-JThUT9eiguCja1mHHLwYESgxkhk17Gv7P3b1S7ZJzXw86QyVHPrbpVoMpozHk0C9o+Ym764B7gZGKmw9uMGduQ==} + + '@cspell/dict-haskell@4.0.4': + resolution: {integrity: sha512-EwQsedEEnND/vY6tqRfg9y7tsnZdxNqOxLXSXTsFA6JRhUlr8Qs88iUUAfsUzWc4nNmmzQH2UbtT25ooG9x4nA==} + + '@cspell/dict-html-symbol-entities@4.0.3': + resolution: {integrity: sha512-aABXX7dMLNFdSE8aY844X4+hvfK7977sOWgZXo4MTGAmOzR8524fjbJPswIBK7GaD3+SgFZ2yP2o0CFvXDGF+A==} + + '@cspell/dict-html@4.0.10': + resolution: {integrity: sha512-I9uRAcdtHbh0wEtYZlgF0TTcgH0xaw1B54G2CW+tx4vHUwlde/+JBOfIzird4+WcMv4smZOfw+qHf7puFUbI5g==} + + '@cspell/dict-java@5.0.10': + resolution: {integrity: sha512-pVNcOnmoGiNL8GSVq4WbX/Vs2FGS0Nej+1aEeGuUY9CU14X8yAVCG+oih5ZoLt1jaR8YfR8byUF8wdp4qG4XIw==} + + '@cspell/dict-julia@1.0.4': + resolution: {integrity: sha512-bFVgNX35MD3kZRbXbJVzdnN7OuEqmQXGpdOi9jzB40TSgBTlJWA4nxeAKV4CPCZxNRUGnLH0p05T/AD7Aom9/w==} + + '@cspell/dict-k8s@1.0.9': + resolution: {integrity: sha512-Q7GELSQIzo+BERl2ya/nBEnZeQC+zJP19SN1pI6gqDYraM51uYJacbbcWLYYO2Y+5joDjNt/sd/lJtLaQwoSlA==} + + '@cspell/dict-latex@4.0.3': + resolution: {integrity: sha512-2KXBt9fSpymYHxHfvhUpjUFyzrmN4c4P8mwIzweLyvqntBT3k0YGZJSriOdjfUjwSygrfEwiuPI1EMrvgrOMJw==} + + '@cspell/dict-lorem-ipsum@4.0.3': + resolution: {integrity: sha512-WFpDi/PDYHXft6p0eCXuYnn7mzMEQLVeqpO+wHSUd+kz5ADusZ4cpslAA4wUZJstF1/1kMCQCZM6HLZic9bT8A==} + + '@cspell/dict-lua@4.0.6': + resolution: {integrity: sha512-Jwvh1jmAd9b+SP9e1GkS2ACbqKKRo9E1f9GdjF/ijmooZuHU0hPyqvnhZzUAxO1egbnNjxS/J2T6iUtjAUK2KQ==} + + '@cspell/dict-makefile@1.0.3': + resolution: {integrity: sha512-R3U0DSpvTs6qdqfyBATnePj9Q/pypkje0Nj26mQJ8TOBQutCRAJbr2ZFAeDjgRx5EAJU/+8txiyVF97fbVRViw==} + + '@cspell/dict-markdown@2.0.7': + resolution: {integrity: sha512-F9SGsSOokFn976DV4u/1eL4FtKQDSgJHSZ3+haPRU5ki6OEqojxKa8hhj4AUrtNFpmBaJx/WJ4YaEzWqG7hgqg==} + peerDependencies: + '@cspell/dict-css': ^4.0.16 + '@cspell/dict-html': ^4.0.10 + '@cspell/dict-html-symbol-entities': ^4.0.3 + '@cspell/dict-typescript': ^3.1.11 + + '@cspell/dict-monkeyc@1.0.9': + resolution: {integrity: sha512-Jvf6g5xlB4+za3ThvenYKREXTEgzx5gMUSzrAxIiPleVG4hmRb/GBSoSjtkGaibN3XxGx5x809gSTYCA/IHCpA==} + + '@cspell/dict-node@5.0.5': + resolution: {integrity: sha512-7NbCS2E8ZZRZwlLrh2sA0vAk9n1kcTUiRp/Nia8YvKaItGXLfxYqD2rMQ3HpB1kEutal6hQLVic3N2Yi1X7AaA==} + + '@cspell/dict-npm@5.1.20': + resolution: {integrity: sha512-vE9pFIifCDChsVhhUDuVtnwxygOdtHNluDm+8FkgC84M6LwiUVJr/CuSOI/SCR0oI9iiFp0VvMz194B6XwMv3g==} + + '@cspell/dict-php@4.0.13': + resolution: {integrity: sha512-P6sREMZkhElzz/HhXAjahnICYIqB/HSGp1EhZh+Y6IhvC15AzgtDP8B8VYCIsQof6rPF1SQrFwunxOv8H1e2eg==} + + '@cspell/dict-powershell@5.0.13': + resolution: {integrity: sha512-0qdj0XZIPmb77nRTynKidRJKTU0Fl+10jyLbAhFTuBWKMypVY06EaYFnwhsgsws/7nNX8MTEQuewbl9bWFAbsg==} + + '@cspell/dict-public-licenses@2.0.11': + resolution: {integrity: sha512-rR5KjRUSnVKdfs5G+gJ4oIvQvm8+NJ6cHWY2N+GE69/FSGWDOPHxulCzeGnQU/c6WWZMSimG9o49i9r//lUQyA==} + + '@cspell/dict-python@4.2.13': + resolution: {integrity: sha512-mZIcmo9qif8LkJ6N/lqTZawcOk2kVTcuWIUOSbMcjyomO0XZ7iWz15TfONyr03Ea/l7o5ULV+MZ4vx76bAUb7w==} + + '@cspell/dict-r@2.0.4': + resolution: {integrity: sha512-cBpRsE/U0d9BRhiNRMLMH1PpWgw+N+1A2jumgt1if9nBGmQw4MUpg2u9I0xlFVhstTIdzXiLXMxP45cABuiUeQ==} + + '@cspell/dict-ruby@5.0.7': + resolution: {integrity: sha512-4/d0hcoPzi5Alk0FmcyqlzFW9lQnZh9j07MJzPcyVO62nYJJAGKaPZL2o4qHeCS/od/ctJC5AHRdoUm0ktsw6Q==} + + '@cspell/dict-rust@4.0.10': + resolution: {integrity: sha512-6o5C8566VGTTctgcwfF3Iy7314W0oMlFFSQOadQ0OEdJ9Z9ERX/PDimrzP3LGuOrvhtEFoK8pj+BLnunNwRNrw==} + + '@cspell/dict-scala@5.0.6': + resolution: {integrity: sha512-tl0YWAfjUVb4LyyE4JIMVE8DlLzb1ecHRmIWc4eT6nkyDqQgHKzdHsnusxFEFMVLIQomgSg0Zz6hJ5S1E4W4ww==} + + '@cspell/dict-software-terms@4.2.0': + resolution: {integrity: sha512-cTLTNdP9RM6nruZ01FThEFKRi7C4TPN8ndc+FpvCqis9J8iSg4Cr4YQemT/DxXoXz0527NbBPCARunxA0qIgTA==} + + '@cspell/dict-sql@2.1.8': + resolution: {integrity: sha512-dJRE4JV1qmXTbbGm6WIcg1knmR6K5RXnQxF4XHs5HA3LAjc/zf77F95i5LC+guOGppVF6Hdl66S2UyxT+SAF3A==} + + '@cspell/dict-svelte@1.0.5': + resolution: {integrity: sha512-sseHlcXOqWE4Ner9sg8KsjxwSJ2yssoJNqFHR9liWVbDV+m7kBiUtn2EB690TihzVsEmDr/0Yxrbb5Bniz70mA==} + + '@cspell/dict-swift@2.0.4': + resolution: {integrity: sha512-CsFF0IFAbRtYNg0yZcdaYbADF5F3DsM8C4wHnZefQy8YcHP/qjAF/GdGfBFBLx+XSthYuBlo2b2XQVdz3cJZBw==} + + '@cspell/dict-terraform@1.0.7': + resolution: {integrity: sha512-Ip7tOlAt/qUVdWYyDMA7DlKMpQ6sjtrsXk4vcpqXoYpoJlzMoDce7pw+fPhHshtNOFBAZ4nOrszlLu6APuy+HQ==} + + '@cspell/dict-typescript@3.1.11': + resolution: {integrity: sha512-FwvK5sKbwrVpdw0e9+1lVTl8FPoHYvfHRuQRQz2Ql5XkC0gwPPkpoyD1zYImjIyZRoYXk3yp9j8ss4iz7A7zoQ==} + + '@cspell/dict-vue@3.0.3': + resolution: {integrity: sha512-akmYbrgAGumqk1xXALtDJcEcOMYBYMnkjpmGzH13Ozhq1mkPF4VgllFQlm1xYde+BUKNnzMgPEzxrL2qZllgYA==} + + '@cspell/dynamic-import@8.17.1': + resolution: {integrity: sha512-XQtr2olYOtqbg49E+8SISd6I5DzfxmsKINDn0ZgaTFeLalnNdF3ewDU4gOEbApIzGffRa1mW9t19MsiVrznSDw==} + engines: {node: '>=18.0'} + + '@cspell/eslint-plugin@8.17.1': + resolution: {integrity: sha512-S3+NKHqba0gsrWHPcQkFNs+yCGhyPbFyO5aY8l2sETKJJutL02Qy/qTVJdmA0TYnYUeu1SvDyLL9BJbWuzJ9tA==} + engines: {node: '>=18'} + peerDependencies: + eslint: ^7 || ^8 || ^9 + + '@cspell/filetypes@8.17.1': + resolution: {integrity: sha512-AxYw6j7EPYtDFAFjwybjFpMc9waXQzurfBXmEVfQ5RQRlbylujLZWwR6GnMqofeNg4oGDUpEjcAZFrgdkvMQlA==} + engines: {node: '>=18'} + + '@cspell/strong-weak-map@8.17.1': + resolution: {integrity: sha512-8cY3vLAKdt5gQEMM3Gr57BuQ8sun2NjYNh9qTdrctC1S9gNC7XzFghTYAfHSWR4VrOUcMFLO/izMdsc1KFvFOA==} + engines: {node: '>=18'} + + '@cspell/url@8.17.1': + resolution: {integrity: sha512-LMvReIndW1ckvemElfDgTt282fb2C3C/ZXfsm0pJsTV5ZmtdelCHwzmgSBmY5fDr7D66XDp8EurotSE0K6BTvw==} + engines: {node: '>=18.0'} + + '@es-joy/jsdoccomment@0.49.0': + resolution: {integrity: sha512-xjZTSFgECpb9Ohuk5yMX5RhUEbfeQcuOp8IF60e+wyzWEF0M5xeSgqsfLtvPEX8BIyOX9saZqzuGPmZ8oWc+5Q==} + engines: {node: '>=16'} + + '@eslint-community/eslint-utils@4.4.1': + resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + + '@eslint-community/regexpp@4.12.1': + resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + + '@eslint/compat@1.2.4': + resolution: {integrity: sha512-S8ZdQj/N69YAtuqFt7653jwcvuUj131+6qGLUyDqfDg1OIoBQ66OCuXC473YQfO2AaxITTutiRQiDwoo7ZLYyg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^9.10.0 + peerDependenciesMeta: + eslint: + optional: true + + '@eslint/config-array@0.19.1': + resolution: {integrity: sha512-fo6Mtm5mWyKjA/Chy1BYTdn5mGJoDNjC7C64ug20ADsRDGrA85bN3uK3MaKbeRkRuuIEAR5N33Jr1pbm411/PA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/core@0.9.1': + resolution: {integrity: sha512-GuUdqkyyzQI5RMIWkHhvTWLCyLo1jNK3vzkSyaExH5kHPDHcuL2VOpHjmMY+y3+NC69qAKToBqldTBgYeLSr9Q==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/eslintrc@2.1.4': + resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + '@eslint/eslintrc@3.2.0': + resolution: {integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/js@8.57.1': + resolution: {integrity: sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + '@eslint/js@9.17.0': + resolution: {integrity: sha512-Sxc4hqcs1kTu0iID3kcZDW3JHq2a77HO9P8CP6YEA/FpH3Ll8UXE2r/86Rz9YJLKme39S9vU5OWNjC6Xl0Cr3w==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/json@0.9.0': + resolution: {integrity: sha512-PTLD0Kp7+BKhTthodns+hFbuZZ+hjb3lc/iVAg7mtBAnW5hLJhkST9O4m21oMkxG94GR2+GGZQNNurG9KP8pNA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/markdown@6.2.1': + resolution: {integrity: sha512-cKVd110hG4ICHmWhIwZJfKmmJBvbiDWyrHODJknAtudKgZtlROGoLX9UEOA0o746zC0hCY4UV4vR+aOGW9S6JQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/object-schema@2.1.5': + resolution: {integrity: sha512-o0bhxnL89h5Bae5T318nFoFzGy+YE5i/gGkoPAgkmTVdRKTiv3p8JHevPiPaMwoloKfEiiaHlawCqaZMqRm+XQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/plugin-kit@0.2.4': + resolution: {integrity: sha512-zSkKow6H5Kdm0ZUQUB2kV5JIXqoG0+uH5YADhaEHswm664N9Db8dXSi0nMJpacpMf+MyyglF1vnZohpEg5yUtg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@humanfs/core@0.19.1': + resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==} + engines: {node: '>=18.18.0'} + + '@humanfs/node@0.16.6': + resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==} + engines: {node: '>=18.18.0'} + + '@humanwhocodes/config-array@0.13.0': + resolution: {integrity: sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==} + engines: {node: '>=10.10.0'} + deprecated: Use @eslint/config-array instead + + '@humanwhocodes/module-importer@1.0.1': + resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} + engines: {node: '>=12.22'} + + '@humanwhocodes/momoa@3.3.5': + resolution: {integrity: sha512-NI9codbQNjw9g4SS/cOizi8JDZ93B3oGVko8M3y0XF3gITaGDSQqea35V8fswWehnRQBLxPfZY5TJnuNhNCEzA==} + engines: {node: '>=18'} + + '@humanwhocodes/object-schema@2.0.3': + resolution: {integrity: sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==} + deprecated: Use @eslint/object-schema instead + + '@humanwhocodes/retry@0.3.1': + resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==} + engines: {node: '>=18.18'} + + '@humanwhocodes/retry@0.4.1': + resolution: {integrity: sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==} + engines: {node: '>=18.18'} + + '@isaacs/cliui@8.0.2': + resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} + engines: {node: '>=12'} + + '@kesills/eslint-config-airbnb-typescript@20.0.0': + resolution: {integrity: sha512-P3DBcIs5eQsEMz4mgwG9ZsOqwE42EGFJ+fI49IFp8ai8D2dHhByr7oUoTW6aDzGe4tVjFOfCjEjcAA1b8sVWTg==} + peerDependencies: + '@stylistic/eslint-plugin': ^2.6.1 + '@typescript-eslint/eslint-plugin': ^8.0.0 + '@typescript-eslint/parser': ^8.0.0 + eslint: ^8.57.0 + eslint-config-airbnb: ^19.0.0 + eslint-config-airbnb-base: ^15.0.0 + typescript: '*' + peerDependenciesMeta: + eslint-config-airbnb: + optional: true + typescript: + optional: true + + '@kurone-kito/commitlint-config@0.17.2': + resolution: {integrity: sha512-M6SyYwXd3u3jfzN7LR53tVahD0lJ4Kzrqqxw0m0h/rK1+QqP+l+Q5NoNDM+hOdcpV2GRYBDa8QcNcDogLWZg/g==} + engines: {node: ^18.20 || ^20.10 || >=22} + peerDependencies: + '@commitlint/config-conventional': '>=19.x.x' + peerDependenciesMeta: + '@commitlint/config-conventional': + optional: true + + '@kurone-kito/cspell-config@0.17.2': + resolution: {integrity: sha512-KcErrs8JQe1hZearacH4sJcWjrSm2R0TDOZi8BBvKIUmzPs5ICSUbQ9AKZ3UgGd1L7CYNUBmwDSkIU0NfDnciA==} + engines: {node: ^18.20 || ^20.10 || >=22} + peerDependencies: + cspell: '*' + peerDependenciesMeta: + cspell: + optional: true + + '@kurone-kito/eslint-config-base@0.17.2': + resolution: {integrity: sha512-vC2WD2RSujjx9u9WdYwp5tD6h3R8kvDBwp7X94ncrYmi89oNDA87vR1cG0qxlf5UlKmpEi01XnrEFlvZFefMCA==} + engines: {node: ^18.20 || ^20.10 || >=22} + peerDependencies: + eslint: '>=9.x.x' + peerDependenciesMeta: + eslint: + optional: true + + '@kurone-kito/lint-staged-config@0.17.2': + resolution: {integrity: sha512-j+IBw0wgNAS3CFZXsKNhAdT/tY2bKwgtVaLgOujb3vjaK8NCewwfHF/TgEfGlHtPkgon+kQoHxr+8FGxZCVd/g==} + engines: {node: ^18.20 || ^20.10 || >=22} + peerDependencies: + cspell: '>=5.7.x' + eslint: '>=9.x.x' + eslint-formatter-codeframe: '*' + lint-staged: '>=12.1.0' + prettier: '>=3.0.x' + peerDependenciesMeta: + cspell: + optional: true + eslint: + optional: true + eslint-formatter-codeframe: + optional: true + lint-staged: + optional: true + prettier: + optional: true + + '@kurone-kito/prettier-config@0.17.2': + resolution: {integrity: sha512-7nNXkvOFEYWrrIUB8mDbq+FhTC/O4eKov8PgL76OVrpmFVkV2xY25u8qnErPy0R1CWTWTrDBEMmi6CK7q0SSlA==} + engines: {node: ^18.20 || ^20.10 || >=22} + peerDependencies: + prettier: '>=3.x.x' + peerDependenciesMeta: + prettier: + optional: true + + '@kurone-kito/typescript-config@0.17.2': + resolution: {integrity: sha512-Y0/fqqL9TguiR0DXd2IiioflMZXDqXyOZ/tX0RKeU9hGFmDf+P8zsRyJHzJB1Me+CsSMjxlhBB+G2sp4DL9pLg==} + engines: {node: ^18.20 || ^20.10 || >=22} + peerDependencies: + '@typescript-eslint/parser': '>=8.x.x' + typescript: '>=5.x.x' + typescript-eslint-language-service: '>=5.x.x' + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + typescript: + optional: true + typescript-eslint-language-service: + optional: true + + '@nodelib/fs.scandir@2.1.5': + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} + + '@nodelib/fs.stat@2.0.5': + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} + + '@nodelib/fs.walk@1.2.8': + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} + + '@nolyfill/is-core-module@1.0.39': + resolution: {integrity: sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==} + engines: {node: '>=12.4.0'} + + '@one-ini/wasm@0.1.1': + resolution: {integrity: sha512-XuySG1E38YScSJoMlqovLru4KTUNSjgVTIjyh7qMX6aNN5HY5Ct5LhRJdxO79JtTzKfzV/bnWpz+zquYrISsvw==} + + '@oxlint/darwin-arm64@0.15.3': + resolution: {integrity: sha512-6isglmWrI3XxNR+V2KDURRg8bo3JpoTGUs1BqEuwZISz0tIEU5kVZ3Zba4vNz6Rp79lfA18ueYTB5NKonWaYOg==} + cpu: [arm64] + os: [darwin] + + '@oxlint/darwin-x64@0.15.3': + resolution: {integrity: sha512-wKn+eITIIpcXPU7hiWVHezAKONT/Vz6q9TUZFiYQFytF7sGAt0APZshe5tbjGTZ8XTR6wQ5wDETwdornHXCNFg==} + cpu: [x64] + os: [darwin] + + '@oxlint/linux-arm64-gnu@0.15.3': + resolution: {integrity: sha512-AZUOtb3OfK8xDZJfk60AwgTKEpa6zJdvjrwuk8Qqz4tPqLJpk4KSJmfNMzbYzy689m27ur+ix1p/7JAxwvckRg==} + cpu: [arm64] + os: [linux] + + '@oxlint/linux-arm64-musl@0.15.3': + resolution: {integrity: sha512-HIeyrgE11KFkSRpVjBRWOux78OITDqlOiC8plC2RDrLvSj205MaA1GYYyIMMv/FuyWdGMOAHOetn5vWbyJJctQ==} + cpu: [arm64] + os: [linux] + + '@oxlint/linux-x64-gnu@0.15.3': + resolution: {integrity: sha512-cDHQaDCpuqFFYTohM+xw4120hzBSWaOVIZqq0ROUEX/qi+nnR9XMKE/fJf8xiHJznFlV6ANsiMLY939uur8OKw==} + cpu: [x64] + os: [linux] + + '@oxlint/linux-x64-musl@0.15.3': + resolution: {integrity: sha512-6PVIi0XXhlpFoBh0k2fP9wioU8MiktkqnYHxOv7EM7HggjAzpRMJqQmgwWcww3RU5R7T4wnZNzrUPPqI7+Ejmw==} + cpu: [x64] + os: [linux] + + '@oxlint/win32-arm64@0.15.3': + resolution: {integrity: sha512-CAvFXTZ6pwHHMHTmRgev/QcS4vD2UeH4e68DxgslPrib6ivTGz2EvtVbrVuVsuS27WQuKTy06e9RW339dk4pHg==} + cpu: [arm64] + os: [win32] + + '@oxlint/win32-x64@0.15.3': + resolution: {integrity: sha512-sXBPSxDoOELlkUbjXfXqlfig3jw67ylrZn+URke/TZMknY1uNEsFTg9+89t8km65eC8SZSE9rnZVyjK8iaEJXA==} + cpu: [x64] + os: [win32] + + '@pkgjs/parseargs@0.11.0': + resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} + engines: {node: '>=14'} + + '@pkgr/core@0.1.1': + resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==} + engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} + + '@rtsao/scc@1.1.0': + resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==} + + '@sindresorhus/merge-streams@2.3.0': + resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==} + engines: {node: '>=18'} + + '@stylistic/eslint-plugin@2.12.1': + resolution: {integrity: sha512-fubZKIHSPuo07FgRTn6S4Nl0uXPRPYVNpyZzIDGfp7Fny6JjNus6kReLD7NI380JXi4HtUTSOZ34LBuNPO1XLQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: '>=8.40.0' + + '@types/conventional-commits-parser@5.0.1': + resolution: {integrity: sha512-7uz5EHdzz2TqoMfV7ee61Egf5y6NkcO4FB/1iCCQnbeiI1F3xzv3vK5dBCXUCLQgGYS+mUeigK1iKQzvED+QnQ==} + + '@types/debug@4.1.12': + resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} + + '@types/estree@1.0.6': + resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} + + '@types/json-schema@7.0.15': + resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} + + '@types/json5@0.0.29': + resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} + + '@types/mdast@4.0.4': + resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==} + + '@types/ms@0.7.34': + resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} + + '@types/node@22.10.2': + resolution: {integrity: sha512-Xxr6BBRCAOQixvonOye19wnzyDiUtTeqldOOmj3CkeblonbccA12PFwlufvRdrpjXxqnmUaeiU5EOA+7s5diUQ==} + + '@types/unist@3.0.3': + resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==} + + '@typescript-eslint/eslint-plugin@8.18.2': + resolution: {integrity: sha512-adig4SzPLjeQ0Tm+jvsozSGiCliI2ajeURDGHjZ2llnA+A67HihCQ+a3amtPhUakd1GlwHxSRvzOZktbEvhPPg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0 + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <5.8.0' + + '@typescript-eslint/parser@8.18.2': + resolution: {integrity: sha512-y7tcq4StgxQD4mDr9+Jb26dZ+HTZ/SkfqpXSiqeUXZHxOUyjWDKsmwKhJ0/tApR08DgOhrFAoAhyB80/p3ViuA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <5.8.0' + + '@typescript-eslint/scope-manager@8.18.2': + resolution: {integrity: sha512-YJFSfbd0CJjy14r/EvWapYgV4R5CHzptssoag2M7y3Ra7XNta6GPAJPPP5KGB9j14viYXyrzRO5GkX7CRfo8/g==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@typescript-eslint/type-utils@8.18.2': + resolution: {integrity: sha512-AB/Wr1Lz31bzHfGm/jgbFR0VB0SML/hd2P1yxzKDM48YmP7vbyJNHRExUE/wZsQj2wUCvbWH8poNHFuxLqCTnA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <5.8.0' + + '@typescript-eslint/types@8.18.2': + resolution: {integrity: sha512-Z/zblEPp8cIvmEn6+tPDIHUbRu/0z5lqZ+NvolL5SvXWT5rQy7+Nch83M0++XzO0XrWRFWECgOAyE8bsJTl1GQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@typescript-eslint/typescript-estree@8.18.2': + resolution: {integrity: sha512-WXAVt595HjpmlfH4crSdM/1bcsqh+1weFRWIa9XMTx/XHZ9TCKMcr725tLYqWOgzKdeDrqVHxFotrvWcEsk2Tg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <5.8.0' + + '@typescript-eslint/utils@8.18.2': + resolution: {integrity: sha512-Cr4A0H7DtVIPkauj4sTSXVl+VBWewE9/o40KcF3TV9aqDEOWoXF3/+oRXNby3DYzZeCATvbdksYsGZzplwnK/Q==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <5.8.0' + + '@typescript-eslint/visitor-keys@8.18.2': + resolution: {integrity: sha512-zORcwn4C3trOWiCqFQP1x6G3xTRyZ1LYydnj51cRnJ6hxBlr/cKPckk+PKPUw/fXmvfKTcw7bwY3w9izgx5jZw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@ungap/structured-clone@1.2.1': + resolution: {integrity: sha512-fEzPV3hSkSMltkw152tJKNARhOupqbH96MZWyRjNaYZOMIzbrTeQDG+MTc6Mr2pgzFQzFxAfmhGDNP5QK++2ZA==} + + JSONStream@1.3.5: + resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} + hasBin: true + + acorn-jsx@5.3.2: + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + + acorn@8.14.0: + resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==} + engines: {node: '>=0.4.0'} + hasBin: true + + ajv@6.12.6: + resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + + ajv@8.17.1: + resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==} + + ansi-escapes@7.0.0: + resolution: {integrity: sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==} + engines: {node: '>=18'} + + ansi-regex@5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} + + ansi-regex@6.1.0: + resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==} + engines: {node: '>=12'} + + ansi-styles@3.2.1: + resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} + engines: {node: '>=4'} + + ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + + ansi-styles@6.2.1: + resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} + engines: {node: '>=12'} + + are-docs-informative@0.0.2: + resolution: {integrity: sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==} + engines: {node: '>=14'} + + argparse@2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + + array-buffer-byte-length@1.0.2: + resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==} + engines: {node: '>= 0.4'} + + array-ify@1.0.0: + resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} + + array-includes@3.1.8: + resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==} + engines: {node: '>= 0.4'} + + array-timsort@1.0.3: + resolution: {integrity: sha512-/+3GRL7dDAGEfM6TseQk/U+mi18TU2Ms9I3UlLdUMhz2hbvGNTKdj9xniwXfUqgYhHxRx0+8UnKkvlNwVU+cWQ==} + + array.prototype.findlastindex@1.2.5: + resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==} + engines: {node: '>= 0.4'} + + array.prototype.flat@1.3.3: + resolution: {integrity: sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==} + engines: {node: '>= 0.4'} + + array.prototype.flatmap@1.3.3: + resolution: {integrity: sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==} + engines: {node: '>= 0.4'} + + arraybuffer.prototype.slice@1.0.4: + resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==} + engines: {node: '>= 0.4'} + + available-typed-arrays@1.0.7: + resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} + engines: {node: '>= 0.4'} + + balanced-match@1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + + brace-expansion@1.1.11: + resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + + brace-expansion@2.0.1: + resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + + braces@3.0.3: + resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} + engines: {node: '>=8'} + + call-bind-apply-helpers@1.0.1: + resolution: {integrity: sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==} + engines: {node: '>= 0.4'} + + call-bind@1.0.8: + resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==} + engines: {node: '>= 0.4'} + + call-bound@1.0.3: + resolution: {integrity: sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==} + engines: {node: '>= 0.4'} + + callsites@3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} + + ccount@2.0.1: + resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} + + chalk-template@1.1.0: + resolution: {integrity: sha512-T2VJbcDuZQ0Tb2EWwSotMPJjgpy1/tGee1BTpUNsGZ/qgNjV2t7Mvu+d4600U564nbLesN1x2dPL+xii174Ekg==} + engines: {node: '>=14.16'} + + chalk@2.4.2: + resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} + engines: {node: '>=4'} + + chalk@4.1.2: + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} + + chalk@5.3.0: + resolution: {integrity: sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==} + engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} + + chalk@5.4.1: + resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==} + engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} + + character-entities@2.0.2: + resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} + + clear-module@4.1.2: + resolution: {integrity: sha512-LWAxzHqdHsAZlPlEyJ2Poz6AIs384mPeqLVCru2p0BrP9G/kVGuhNyZYClLO6cXlnuJjzC8xtsJIuMjKqLXoAw==} + engines: {node: '>=8'} + + cli-cursor@5.0.0: + resolution: {integrity: sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==} + engines: {node: '>=18'} + + cli-truncate@4.0.0: + resolution: {integrity: sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==} + engines: {node: '>=18'} + + cli@1.0.1: + resolution: {integrity: sha512-41U72MB56TfUMGndAKK8vJ78eooOD4Z5NOL4xEfjc0c23s+6EYKXlXsmACBVclLP1yOfWCgEganVzddVrSNoTg==} + engines: {node: '>=0.2.5'} + + cliui@8.0.1: + resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} + engines: {node: '>=12'} + + color-convert@1.9.3: + resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + + color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + + color-name@1.1.3: + resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + + color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + + colorette@2.0.20: + resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} + + commander@10.0.1: + resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==} + engines: {node: '>=14'} + + commander@12.1.0: + resolution: {integrity: sha512-Vw8qHK3bZM9y/P10u3Vib8o/DdkvA2OtPtZvD871QKjy74Wj1WSKFILMPRPSdUSx5RFK1arlJzEtA4PkFgnbuA==} + engines: {node: '>=18'} + + comment-json@4.2.5: + resolution: {integrity: sha512-bKw/r35jR3HGt5PEPm1ljsQQGyCrR8sFGNiN5L+ykDHdpO8Smxkrkla9Yi6NkQyUrb8V54PGhfMs6NrIwtxtdw==} + engines: {node: '>= 6'} + + comment-parser@1.4.1: + resolution: {integrity: sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==} + engines: {node: '>= 12.0.0'} + + compare-func@2.0.0: + resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==} + + concat-map@0.0.1: + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + + confusing-browser-globals@1.0.11: + resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==} + + console-browserify@1.1.0: + resolution: {integrity: sha512-duS7VP5pvfsNLDvL1O4VOEbw37AI3A4ZUQYemvDlnpGrNu9tprR7BYWpDYwC0Xia0Zxz5ZupdiIrUp0GH1aXfg==} + + conventional-changelog-angular@7.0.0: + resolution: {integrity: sha512-ROjNchA9LgfNMTTFSIWPzebCwOGFdgkEq45EnvvrmSLvCtAw0HSmrCs7/ty+wAeYUZyNay0YMUNYFTRL72PkBQ==} + engines: {node: '>=16'} + + conventional-changelog-conventionalcommits@7.0.2: + resolution: {integrity: sha512-NKXYmMR/Hr1DevQegFB4MwfM5Vv0m4UIxKZTTYuD98lpTknaZlSRrDOG4X7wIXpGkfsYxZTghUN+Qq+T0YQI7w==} + engines: {node: '>=16'} + + conventional-commits-parser@5.0.0: + resolution: {integrity: sha512-ZPMl0ZJbw74iS9LuX9YIAiW8pfM5p3yh2o/NbXHbkFuZzY5jvdi5jFycEOkmBW5H5I7nA+D6f3UcsCLP2vvSEA==} + engines: {node: '>=16'} + hasBin: true + + core-util-is@1.0.3: + resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} + + cosmiconfig-typescript-loader@6.1.0: + resolution: {integrity: sha512-tJ1w35ZRUiM5FeTzT7DtYWAFFv37ZLqSRkGi2oeCK1gPhvaWjkAtfXvLmvE1pRfxxp9aQo6ba/Pvg1dKj05D4g==} + engines: {node: '>=v18'} + peerDependencies: + '@types/node': '*' + cosmiconfig: '>=9' + typescript: '>=5' + + cosmiconfig@9.0.0: + resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==} + engines: {node: '>=14'} + peerDependencies: + typescript: '>=4.9.5' + peerDependenciesMeta: + typescript: + optional: true + + cross-spawn@7.0.6: + resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} + engines: {node: '>= 8'} + + cspell-config-lib@8.17.1: + resolution: {integrity: sha512-x1S7QWprgUcwuwiJB1Ng0ZTBC4G50qP9qQyg/aroMkcdMsHfk26E8jUGRPNt4ftHFzS4YMhwtXuJQ9IgRUuNPA==} + engines: {node: '>=18'} + + cspell-dictionary@8.17.1: + resolution: {integrity: sha512-zSl9l3wii+x16yc2NVZl/+CMLeLBAiuEd5YoFkOYPcbTJnfPwdjMNcj71u7wBvNJ+qwbF+kGbutEt15yHW3NBw==} + engines: {node: '>=18'} + + cspell-gitignore@8.17.1: + resolution: {integrity: sha512-bk727Zf4FBCjm9Mwvyreyhgjwe+YhPQEW7PldkHiinKd+Irfez4s8GXLQb1EgV0UpvViqaqBqLmngjZdS30BTA==} + engines: {node: '>=18'} + hasBin: true + + cspell-glob@8.17.1: + resolution: {integrity: sha512-cUwM5auSt0RvLX7UkP2GEArJRWc85l51B1voArl+3ZIKeMZwcJpJgN3qvImtF8yRTZwYeYCs1sgsihb179q+mg==} + engines: {node: '>=18'} + + cspell-grammar@8.17.1: + resolution: {integrity: sha512-H5tLcBuW7aUj9L0rR+FSbnWPEsWb8lWppHVidtqw9Ll1CUHWOZC9HTB2RdrhJZrsz/8DJbM2yNbok0Xt0VAfdw==} + engines: {node: '>=18'} + hasBin: true + + cspell-io@8.17.1: + resolution: {integrity: sha512-liIOsblt7oVItifzRAbuxiYrwlgw1VOqKppMxVKtYoAn2VUuuEpjCj6jLWpoTqSszR/38o7ChsHY1LHakhJZmw==} + engines: {node: '>=18'} + + cspell-lib@8.17.1: + resolution: {integrity: sha512-66n83Q7bK5tnvkDH7869/pBY/65AKmZVfCOAlsbhJn3YMDbNHFCHR0d1oNMlqG+n65Aco89VGwYfXxImZY+/mA==} + engines: {node: '>=18'} + + cspell-trie-lib@8.17.1: + resolution: {integrity: sha512-13WNa5s75VwOjlGzWprmfNbBFIfXyA7tYYrbV+LugKkznyNZJeJPojHouEudcLq3SYb2Q6tJ7qyWcuT5bR9qPA==} + engines: {node: '>=18'} + + cspell@8.17.1: + resolution: {integrity: sha512-D0lw8XTXrTycNzOn5DkfPJNUT00X53OgvFDm+0SzhBr1r+na8LEh3CnQ6zKYVU0fL0x8vU82vs4jmGjDho9mPg==} + engines: {node: '>=18'} + hasBin: true + + dargs@8.1.0: + resolution: {integrity: sha512-wAV9QHOsNbwnWdNW2FYvE1P56wtgSbM+3SZcdGiWQILwVjACCXDCI3Ai8QlCjMDB8YK5zySiXZYBiwGmNY3lnw==} + engines: {node: '>=12'} + + data-view-buffer@1.0.2: + resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==} + engines: {node: '>= 0.4'} + + data-view-byte-length@1.0.2: + resolution: {integrity: sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==} + engines: {node: '>= 0.4'} + + data-view-byte-offset@1.0.1: + resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==} + engines: {node: '>= 0.4'} + + date-now@0.1.4: + resolution: {integrity: sha512-AsElvov3LoNB7tf5k37H2jYSB+ZZPMT5sG2QjJCcdlV5chIv6htBUBUui2IKRjgtKAKtCBN7Zbwa+MtwLjSeNw==} + + debug@3.2.7: + resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + debug@4.4.0: + resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + + decode-named-character-reference@1.0.2: + resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==} + + deep-is@0.1.4: + resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + + define-data-property@1.1.4: + resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} + engines: {node: '>= 0.4'} + + define-properties@1.2.1: + resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} + engines: {node: '>= 0.4'} + + dequal@2.0.3: + resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} + engines: {node: '>=6'} + + detect-indent@7.0.1: + resolution: {integrity: sha512-Mc7QhQ8s+cLrnUfU/Ji94vG/r8M26m8f++vyres4ZoojaRDpZ1eSIh/EpzLNwlWuvzSZ3UbDFspjFvTDXe6e/g==} + engines: {node: '>=12.20'} + + detect-newline@4.0.1: + resolution: {integrity: sha512-qE3Veg1YXzGHQhlA6jzebZN2qVf6NX+A7m7qlhCGG30dJixrAQhYOsJjsnBjJkCSmuOPpCk30145fr8FV0bzog==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + devlop@1.1.0: + resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} + + doctrine@2.1.0: + resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} + engines: {node: '>=0.10.0'} + + doctrine@3.0.0: + resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} + engines: {node: '>=6.0.0'} + + dom-serializer@0.2.2: + resolution: {integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==} + + domelementtype@1.3.1: + resolution: {integrity: sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==} + + domelementtype@2.3.0: + resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} + + domhandler@2.3.0: + resolution: {integrity: sha512-q9bUwjfp7Eif8jWxxxPSykdRZAb6GkguBGSgvvCrhI9wB71W2K/Kvv4E61CF/mcCfnVJDeDWx/Vb/uAqbDj6UQ==} + + domutils@1.5.1: + resolution: {integrity: sha512-gSu5Oi/I+3wDENBsOWBiRK1eoGxcywYSqg3rR960/+EfY0CF4EX1VPkgHOZ3WiS/Jg2DtliF6BhWcHlfpYUcGw==} + + dot-prop@5.3.0: + resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==} + engines: {node: '>=8'} + + dunder-proto@1.0.1: + resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} + engines: {node: '>= 0.4'} + + eastasianwidth@0.2.0: + resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} + + editorconfig@1.0.4: + resolution: {integrity: sha512-L9Qe08KWTlqYMVvMcTIvMAdl1cDUubzRNYL+WfA4bLDMHe4nemKkpmYzkznE1FwLKu0EEmy6obgQKzMJrg4x9Q==} + engines: {node: '>=14'} + hasBin: true + + emoji-regex@10.4.0: + resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==} + + emoji-regex@8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + + emoji-regex@9.2.2: + resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + + enhanced-resolve@5.18.0: + resolution: {integrity: sha512-0/r0MySGYG8YqlayBZ6MuCfECmHFdJ5qyPh8s8wa5Hnm6SaFLSK1VYCbj+NKp090Nm1caZhD+QTnmxO7esYGyQ==} + engines: {node: '>=10.13.0'} + + entities@1.0.0: + resolution: {integrity: sha512-LbLqfXgJMmy81t+7c14mnulFHJ170cM6E+0vMXR9k/ZiZwgX8i5pNgjTCX3SO4VeUsFLV+8InixoretwU+MjBQ==} + + entities@2.2.0: + resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} + + entities@4.5.0: + resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} + engines: {node: '>=0.12'} + + env-paths@2.2.1: + resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} + engines: {node: '>=6'} + + env-paths@3.0.0: + resolution: {integrity: sha512-dtJUTepzMW3Lm/NPxRf3wP4642UWhjL2sQxc+ym2YMj1m/H2zDNQOlezafzkHwn6sMstjHTwG6iQQsctDW/b1A==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + environment@1.1.0: + resolution: {integrity: sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==} + engines: {node: '>=18'} + + error-ex@1.3.2: + resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + + es-abstract@1.23.7: + resolution: {integrity: sha512-OygGC8kIcDhXX+6yAZRGLqwi2CmEXCbLQixeGUgYeR+Qwlppqmo7DIDr8XibtEBZp+fJcoYpoatp5qwLMEdcqQ==} + engines: {node: '>= 0.4'} + + es-define-property@1.0.1: + resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==} + engines: {node: '>= 0.4'} + + es-errors@1.3.0: + resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} + engines: {node: '>= 0.4'} + + es-module-lexer@1.5.4: + resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==} + + es-object-atoms@1.0.0: + resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==} + engines: {node: '>= 0.4'} + + es-set-tostringtag@2.0.3: + resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==} + engines: {node: '>= 0.4'} + + es-shim-unscopables@1.0.2: + resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==} + + es-to-primitive@1.3.0: + resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==} + engines: {node: '>= 0.4'} + + escalade@3.2.0: + resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} + engines: {node: '>=6'} + + escape-string-regexp@1.0.5: + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} + engines: {node: '>=0.8.0'} + + escape-string-regexp@4.0.0: + resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} + engines: {node: '>=10'} + + escape-string-regexp@5.0.0: + resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} + engines: {node: '>=12'} + + eslint-compat-utils@0.5.1: + resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==} + engines: {node: '>=12'} + peerDependencies: + eslint: '>=6.0.0' + + eslint-config-airbnb-base@15.0.0: + resolution: {integrity: sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig==} + engines: {node: ^10.12.0 || >=12.0.0} + peerDependencies: + eslint: ^7.32.0 || ^8.2.0 + eslint-plugin-import: ^2.25.2 + + eslint-config-prettier@9.1.0: + resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==} + hasBin: true + peerDependencies: + eslint: '>=7.0.0' + + eslint-formatter-codeframe@7.32.1: + resolution: {integrity: sha512-DK/3Q3+zVKq/7PdSYiCxPrsDF8H/TRMK5n8Hziwr4IMkMy+XiKSwbpj25AdajS63I/B61Snetq4uVvX9fOLyAg==} + engines: {node: ^10.12.0 || >=12.0.0} + + eslint-import-resolver-node@0.3.9: + resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} + + eslint-import-resolver-typescript@3.7.0: + resolution: {integrity: sha512-Vrwyi8HHxY97K5ebydMtffsWAn1SCR9eol49eCd5fJS4O1WV7PaAjbcjmbfJJSMz/t4Mal212Uz/fQZrOB8mow==} + engines: {node: ^14.18.0 || >=16.0.0} + peerDependencies: + eslint: '*' + eslint-plugin-import: '*' + eslint-plugin-import-x: '*' + peerDependenciesMeta: + eslint-plugin-import: + optional: true + eslint-plugin-import-x: + optional: true + + eslint-module-utils@2.12.0: + resolution: {integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==} + engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: '*' + eslint-import-resolver-node: '*' + eslint-import-resolver-typescript: '*' + eslint-import-resolver-webpack: '*' + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + eslint: + optional: true + eslint-import-resolver-node: + optional: true + eslint-import-resolver-typescript: + optional: true + eslint-import-resolver-webpack: + optional: true + + eslint-plugin-editorconfig@4.0.3: + resolution: {integrity: sha512-5YeDxm6mlv75DrTbRBK9Jw2ogqhjiz8ZCvv9bkuz/MXq0603q9FpQvQlamtas4bX1Gji4YcksY7dq7stPeGaLQ==} + engines: {node: '>=14', npm: '>=8'} + + eslint-plugin-es-x@7.8.0: + resolution: {integrity: sha512-7Ds8+wAAoV3T+LAKeu39Y5BzXCrGKrcISfgKEqTS4BDN8SFEDQd0S43jiQ8vIa3wUKD07qitZdfzlenSi8/0qQ==} + engines: {node: ^14.18.0 || >=16.0.0} + peerDependencies: + eslint: '>=8' + + eslint-plugin-import@2.31.0: + resolution: {integrity: sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==} + engines: {node: '>=4'} + peerDependencies: + '@typescript-eslint/parser': '*' + eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9 + peerDependenciesMeta: + '@typescript-eslint/parser': + optional: true + + eslint-plugin-jsdoc@50.6.1: + resolution: {integrity: sha512-UWyaYi6iURdSfdVVqvfOs2vdCVz0J40O/z/HTsv2sFjdjmdlUI/qlKLOTmwbPQ2tAfQnE5F9vqx+B+poF71DBQ==} + engines: {node: '>=18'} + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 + + eslint-plugin-markdownlint@0.6.0: + resolution: {integrity: sha512-idYAzR2k7tQ+zL6UC17I/zzkqM0t6/k50uGgO39tabryqVkJh8Qe57fhBhe7QN+17yqIVqFB9YJFzBCAOdSXjw==} + engines: {node: '>=10'} + peerDependencies: + eslint: '>=7.5.0' + + eslint-plugin-n@17.15.1: + resolution: {integrity: sha512-KFw7x02hZZkBdbZEFQduRGH4VkIH4MW97ClsbAM4Y4E6KguBJWGfWG1P4HEIpZk2bkoWf0bojpnjNAhYQP8beA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: '>=8.23.0' + + eslint-plugin-oxlint@0.15.2: + resolution: {integrity: sha512-/Ff9m+qVPRqqRJO9J0fqCnjPolY7Az2rKZMmc2gtTofvlHmYFhbBnwTGMMulM1eUUJ+/a7WbAc1V+Pho74pHfA==} + + eslint-plugin-yaml@1.0.3: + resolution: {integrity: sha512-PNA2P38xFIrIdb82W0k66UPtpn0UHbPs8LxwtmZqG03PUzV1RE6OYFUi0pxL4LsFndHjgOyNlLqK2N5lGdX8ew==} + engines: {node: '>=12'} + + eslint-scope@7.2.2: + resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + eslint-scope@8.2.0: + resolution: {integrity: sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + eslint-visitor-keys@3.4.3: + resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + eslint-visitor-keys@4.2.0: + resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + eslint@8.57.1: + resolution: {integrity: sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + deprecated: This version is no longer supported. Please see https://eslint.org/version-support for other options. + hasBin: true + + eslint@9.17.0: + resolution: {integrity: sha512-evtlNcpJg+cZLcnVKwsai8fExnqjGPicK7gnUtlNuzu+Fv9bI0aLpND5T44VLQtoMEnI57LoXO9XAkIXwohKrA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + hasBin: true + peerDependencies: + jiti: '*' + peerDependenciesMeta: + jiti: + optional: true + + espree@10.3.0: + resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + espree@9.6.1: + resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + + esprima@4.0.1: + resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} + engines: {node: '>=4'} + hasBin: true + + esquery@1.6.0: + resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==} + engines: {node: '>=0.10'} + + esrecurse@4.3.0: + resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} + engines: {node: '>=4.0'} + + estraverse@5.3.0: + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} + engines: {node: '>=4.0'} + + esutils@2.0.3: + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + engines: {node: '>=0.10.0'} + + eventemitter3@5.0.1: + resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} + + execa@8.0.1: + resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} + engines: {node: '>=16.17'} + + exit@0.1.2: + resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} + engines: {node: '>= 0.8.0'} + + fast-deep-equal@3.1.3: + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + + fast-equals@5.0.1: + resolution: {integrity: sha512-WF1Wi8PwwSY7/6Kx0vKXtw8RwuSGoM1bvDaJbu7MxDlR1vovZjIAKrnzyrThgAjm6JDTu0fVgWXDlMGspodfoQ==} + engines: {node: '>=6.0.0'} + + fast-glob@3.3.2: + resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} + engines: {node: '>=8.6.0'} + + fast-json-stable-stringify@2.1.0: + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + + fast-levenshtein@2.0.6: + resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + + fast-uri@3.0.3: + resolution: {integrity: sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw==} + + fastq@1.18.0: + resolution: {integrity: sha512-QKHXPW0hD8g4UET03SdOdunzSouc9N4AuHdsX8XNcTsuz+yYFILVNIX4l9yHABMhiEI9Db0JTTIpu0wB+Y1QQw==} + + fdir@6.4.2: + resolution: {integrity: sha512-KnhMXsKSPZlAhp7+IjUkRZKPb4fUyccpDrdFXbi4QL1qkmFh9kVY09Yox+n4MaOb3lHZ1Tv829C3oaaXoMYPDQ==} + peerDependencies: + picomatch: ^3 || ^4 + peerDependenciesMeta: + picomatch: + optional: true + + file-entry-cache@6.0.1: + resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} + engines: {node: ^10.12.0 || >=12.0.0} + + file-entry-cache@8.0.0: + resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} + engines: {node: '>=16.0.0'} + + file-entry-cache@9.1.0: + resolution: {integrity: sha512-/pqPFG+FdxWQj+/WSuzXSDaNzxgTLr/OrR1QuqfEZzDakpdYE70PwUxL7BPUa8hpjbvY1+qvCl8k+8Tq34xJgg==} + engines: {node: '>=18'} + + fill-range@7.1.1: + resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} + engines: {node: '>=8'} + + find-up-simple@1.0.0: + resolution: {integrity: sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==} + engines: {node: '>=18'} + + find-up@5.0.0: + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} + engines: {node: '>=10'} + + find-up@7.0.0: + resolution: {integrity: sha512-YyZM99iHrqLKjmt4LJDj58KI+fYyufRLBSYcqycxf//KpBk9FoewoGX0450m9nB44qrZnovzC2oeP5hUibxc/g==} + engines: {node: '>=18'} + + flat-cache@3.2.0: + resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} + engines: {node: ^10.12.0 || >=12.0.0} + + flat-cache@4.0.1: + resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} + engines: {node: '>=16'} + + flat-cache@5.0.0: + resolution: {integrity: sha512-JrqFmyUl2PnPi1OvLyTVHnQvwQ0S+e6lGSwu8OkAZlSaNIZciTY2H/cOOROxsBA1m/LZNHDsqAgDZt6akWcjsQ==} + engines: {node: '>=18'} + + flatted@3.3.2: + resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==} + + for-each@0.3.3: + resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} + + foreground-child@3.3.0: + resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==} + engines: {node: '>=14'} + + fs.realpath@1.0.0: + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + + function-bind@1.1.2: + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + + function.prototype.name@1.1.8: + resolution: {integrity: sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==} + engines: {node: '>= 0.4'} + + functions-have-names@1.2.3: + resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} + + gensequence@7.0.0: + resolution: {integrity: sha512-47Frx13aZh01afHJTB3zTtKIlFI6vWY+MYCN9Qpew6i52rfKjnhCF/l1YlC8UmEMvvntZZ6z4PiCcmyuedR2aQ==} + engines: {node: '>=18'} + + get-caller-file@2.0.5: + resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} + engines: {node: 6.* || 8.* || >= 10.*} + + get-east-asian-width@1.3.0: + resolution: {integrity: sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==} + engines: {node: '>=18'} + + get-intrinsic@1.2.6: + resolution: {integrity: sha512-qxsEs+9A+u85HhllWJJFicJfPDhRmjzoYdl64aMWW9yRIJmSyxdn8IEkuIM530/7T+lv0TIHd8L6Q/ra0tEoeA==} + engines: {node: '>= 0.4'} + + get-stdin@9.0.0: + resolution: {integrity: sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA==} + engines: {node: '>=12'} + + get-stream@8.0.1: + resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==} + engines: {node: '>=16'} + + get-symbol-description@1.1.0: + resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==} + engines: {node: '>= 0.4'} + + get-tsconfig@4.8.1: + resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==} + + git-hooks-list@3.1.0: + resolution: {integrity: sha512-LF8VeHeR7v+wAbXqfgRlTSX/1BJR9Q1vEMR8JAz1cEg6GX07+zyj3sAdDvYjj/xnlIfVuGgj4qBei1K3hKH+PA==} + + git-raw-commits@4.0.0: + resolution: {integrity: sha512-ICsMM1Wk8xSGMowkOmPrzo2Fgmfo4bMHLNX6ytHjajRJUqvHOw/TFapQ+QG75c3X/tTDDhOSRPGC52dDbNM8FQ==} + engines: {node: '>=16'} + hasBin: true + + glob-parent@5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} + + glob-parent@6.0.2: + resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} + engines: {node: '>=10.13.0'} + + glob@10.4.5: + resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==} + hasBin: true + + glob@7.2.3: + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + deprecated: Glob versions prior to v9 are no longer supported + + global-directory@4.0.1: + resolution: {integrity: sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==} + engines: {node: '>=18'} + + globals@13.24.0: + resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} + engines: {node: '>=8'} + + globals@14.0.0: + resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} + engines: {node: '>=18'} + + globals@15.14.0: + resolution: {integrity: sha512-OkToC372DtlQeje9/zHIo5CT8lRP/FUgEOKBEhU4e0abL7J7CD24fD9ohiLN5hagG/kWCYj4K5oaxxtj2Z0Dig==} + engines: {node: '>=18'} + + globalthis@1.0.4: + resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} + engines: {node: '>= 0.4'} + + globby@14.0.2: + resolution: {integrity: sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==} + engines: {node: '>=18'} + + gopd@1.2.0: + resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==} + engines: {node: '>= 0.4'} + + graceful-fs@4.2.11: + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + + graphemer@1.4.0: + resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} + + has-bigints@1.1.0: + resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==} + engines: {node: '>= 0.4'} + + has-flag@3.0.0: + resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} + engines: {node: '>=4'} + + has-flag@4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + + has-own-prop@2.0.0: + resolution: {integrity: sha512-Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ==} + engines: {node: '>=8'} + + has-property-descriptors@1.0.2: + resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} + + has-proto@1.2.0: + resolution: {integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==} + engines: {node: '>= 0.4'} + + has-symbols@1.1.0: + resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==} + engines: {node: '>= 0.4'} + + has-tostringtag@1.0.2: + resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} + engines: {node: '>= 0.4'} + + hasown@2.0.2: + resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} + engines: {node: '>= 0.4'} + + htmlparser2@3.8.3: + resolution: {integrity: sha512-hBxEg3CYXe+rPIua8ETe7tmG3XDn9B0edOE/e9wH2nLczxzgdu0m0aNHY+5wFZiviLWLdANPJTssa92dMcXQ5Q==} + + human-signals@5.0.0: + resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} + engines: {node: '>=16.17.0'} + + husky@9.1.7: + resolution: {integrity: sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA==} + engines: {node: '>=18'} + hasBin: true + + ignore@5.3.2: + resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} + engines: {node: '>= 4'} + + import-fresh@3.3.0: + resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} + engines: {node: '>=6'} + + import-meta-resolve@4.1.0: + resolution: {integrity: sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==} + + imurmurhash@0.1.4: + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} + + inflight@1.0.6: + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. + + inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + + ini@4.1.1: + resolution: {integrity: sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==} + engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} + + internal-slot@1.1.0: + resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==} + engines: {node: '>= 0.4'} + + is-array-buffer@3.0.5: + resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==} + engines: {node: '>= 0.4'} + + is-arrayish@0.2.1: + resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + + is-async-function@2.0.0: + resolution: {integrity: sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==} + engines: {node: '>= 0.4'} + + is-bigint@1.1.0: + resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==} + engines: {node: '>= 0.4'} + + is-boolean-object@1.2.1: + resolution: {integrity: sha512-l9qO6eFlUETHtuihLcYOaLKByJ1f+N4kthcU9YjHy3N+B3hWv0y/2Nd0mu/7lTFnRQHTrSdXF50HQ3bl5fEnng==} + engines: {node: '>= 0.4'} + + is-bun-module@1.3.0: + resolution: {integrity: sha512-DgXeu5UWI0IsMQundYb5UAOzm6G2eVnarJ0byP6Tm55iZNKceD59LNPA2L4VvsScTtHcw0yEkVwSf7PC+QoLSA==} + + is-callable@1.2.7: + resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} + engines: {node: '>= 0.4'} + + is-core-module@2.16.1: + resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==} + engines: {node: '>= 0.4'} + + is-data-view@1.0.2: + resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==} + engines: {node: '>= 0.4'} + + is-date-object@1.1.0: + resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==} + engines: {node: '>= 0.4'} + + is-extglob@2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} + + is-finalizationregistry@1.1.1: + resolution: {integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==} + engines: {node: '>= 0.4'} + + is-fullwidth-code-point@3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} + + is-fullwidth-code-point@4.0.0: + resolution: {integrity: sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==} + engines: {node: '>=12'} + + is-fullwidth-code-point@5.0.0: + resolution: {integrity: sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==} + engines: {node: '>=18'} + + is-generator-function@1.0.10: + resolution: {integrity: sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==} + engines: {node: '>= 0.4'} + + is-glob@4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} + + is-map@2.0.3: + resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==} + engines: {node: '>= 0.4'} + + is-number-object@1.1.1: + resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==} + engines: {node: '>= 0.4'} + + is-number@7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + + is-obj@2.0.0: + resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} + engines: {node: '>=8'} + + is-path-inside@3.0.3: + resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} + engines: {node: '>=8'} + + is-plain-obj@4.1.0: + resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} + engines: {node: '>=12'} + + is-regex@1.2.1: + resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==} + engines: {node: '>= 0.4'} + + is-set@2.0.3: + resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==} + engines: {node: '>= 0.4'} + + is-shared-array-buffer@1.0.4: + resolution: {integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==} + engines: {node: '>= 0.4'} + + is-stream@3.0.0: + resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + is-string@1.1.1: + resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==} + engines: {node: '>= 0.4'} + + is-symbol@1.1.1: + resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==} + engines: {node: '>= 0.4'} + + is-text-path@2.0.0: + resolution: {integrity: sha512-+oDTluR6WEjdXEJMnC2z6A4FRwFoYuvShVVEGsS7ewc0UTi2QtAKMDJuL4BDEVt+5T7MjFo12RP8ghOM75oKJw==} + engines: {node: '>=8'} + + is-typed-array@1.1.15: + resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==} + engines: {node: '>= 0.4'} + + is-weakmap@2.0.2: + resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==} + engines: {node: '>= 0.4'} + + is-weakref@1.1.0: + resolution: {integrity: sha512-SXM8Nwyys6nT5WP6pltOwKytLV7FqQ4UiibxVmW+EIosHcmCqkkjViTb5SNssDlkCiEYRP1/pdWUKVvZBmsR2Q==} + engines: {node: '>= 0.4'} + + is-weakset@2.0.4: + resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==} + engines: {node: '>= 0.4'} + + isarray@0.0.1: + resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==} + + isarray@2.0.5: + resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} + + isexe@2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + + jackspeak@3.4.3: + resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==} + + jiti@2.4.2: + resolution: {integrity: sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==} + hasBin: true + + js-tokens@4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + + js-yaml@4.1.0: + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + hasBin: true + + jsdoc-type-pratt-parser@4.1.0: + resolution: {integrity: sha512-Hicd6JK5Njt2QB6XYFS7ok9e37O8AYk3jTcppG4YVQnYjOemymvTcmc7OWsmq/Qqj5TdRFO5/x/tIPmBeRtGHg==} + engines: {node: '>=12.0.0'} + + jshint@2.13.6: + resolution: {integrity: sha512-IVdB4G0NTTeQZrBoM8C5JFVLjV2KtZ9APgybDA1MK73xb09qFs0jCXyQLnCOp1cSZZZbvhq/6mfXHUTaDkffuQ==} + hasBin: true + + json-buffer@3.0.1: + resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + + json-parse-even-better-errors@2.3.1: + resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} + + json-schema-traverse@0.4.1: + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + + json-schema-traverse@1.0.0: + resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} + + json-stable-stringify-without-jsonify@1.0.1: + resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} + + json5@1.0.2: + resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} + hasBin: true + + jsonc-parser@3.3.1: + resolution: {integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==} + + jsonparse@1.3.1: + resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} + engines: {'0': node >= 0.2.0} + + keyv@4.5.4: + resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + + klona@2.0.6: + resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==} + engines: {node: '>= 8'} + + levn@0.4.1: + resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} + engines: {node: '>= 0.8.0'} + + lilconfig@3.1.3: + resolution: {integrity: sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==} + engines: {node: '>=14'} + + lines-and-columns@1.2.4: + resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + + linkify-it@5.0.0: + resolution: {integrity: sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==} + + lint-staged@15.2.11: + resolution: {integrity: sha512-Ev6ivCTYRTGs9ychvpVw35m/bcNDuBN+mnTeObCL5h+boS5WzBEC6LHI4I9F/++sZm1m+J2LEiy0gxL/R9TBqQ==} + engines: {node: '>=18.12.0'} + hasBin: true + + listr2@8.2.5: + resolution: {integrity: sha512-iyAZCeyD+c1gPyE9qpFu8af0Y+MRtmKOncdGoA2S5EY8iFq99dmmvkNnHiWo+pj0s7yH7l3KPIgee77tKpXPWQ==} + engines: {node: '>=18.0.0'} + + locate-path@6.0.0: + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} + engines: {node: '>=10'} + + locate-path@7.2.0: + resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + lodash.camelcase@4.3.0: + resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==} + + lodash.isplainobject@4.0.6: + resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==} + + lodash.kebabcase@4.1.1: + resolution: {integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==} + + lodash.merge@4.6.2: + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + + lodash.mergewith@4.6.2: + resolution: {integrity: sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==} + + lodash.snakecase@4.1.1: + resolution: {integrity: sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==} + + lodash.startcase@4.4.0: + resolution: {integrity: sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==} + + lodash.uniq@4.5.0: + resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==} + + lodash.upperfirst@4.3.1: + resolution: {integrity: sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==} + + lodash@4.17.21: + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + + log-update@6.1.0: + resolution: {integrity: sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==} + engines: {node: '>=18'} + + longest-streak@3.1.0: + resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} + + lru-cache@10.4.3: + resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} + + markdown-it@14.1.0: + resolution: {integrity: sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==} + hasBin: true + + markdown-table@3.0.4: + resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==} + + markdownlint-cli2-formatter-default@0.0.5: + resolution: {integrity: sha512-4XKTwQ5m1+Txo2kuQ3Jgpo/KmnG+X90dWt4acufg6HVGadTUG5hzHF/wssp9b5MBYOMCnZ9RMPaU//uHsszF8Q==} + peerDependencies: + markdownlint-cli2: '>=0.0.4' + + markdownlint-cli2@0.16.0: + resolution: {integrity: sha512-oy5dJdOxGMKSwrlouxdEGf6N4O2Iz8oJ4/HO2Ix67o4vTK1AQNGjZUNwTIzfa5x+XbJ++dfgR1gLfILajsW+1Q==} + engines: {node: '>=18'} + hasBin: true + + markdownlint-micromark@0.1.12: + resolution: {integrity: sha512-RlB6EwMGgc0sxcIhOQ2+aq7Zw1V2fBnzbXKGgYK/mVWdT7cz34fteKSwfYeo4rL6+L/q2tyC9QtD/PgZbkdyJQ==} + engines: {node: '>=18'} + + markdownlint-micromark@0.1.9: + resolution: {integrity: sha512-5hVs/DzAFa8XqYosbEAEg6ok6MF2smDj89ztn9pKkCtdKHVdPQuGMH7frFfYL9mLkvfFe4pTyAMffLbjf3/EyA==} + engines: {node: '>=18'} + + markdownlint@0.34.0: + resolution: {integrity: sha512-qwGyuyKwjkEMOJ10XN6OTKNOVYvOIi35RNvDLNxTof5s8UmyGHlCdpngRHoRGNvQVGuxO3BJ7uNSgdeX166WXw==} + engines: {node: '>=18'} + + markdownlint@0.36.1: + resolution: {integrity: sha512-s73fU2CQN7WCgjhaQUQ8wYESQNzGRNOKDd+3xgVqu8kuTEhmwepd/mxOv1LR2oV046ONrTLBFsM7IoKWNvmy5g==} + engines: {node: '>=18'} + + math-intrinsics@1.1.0: + resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} + engines: {node: '>= 0.4'} + + mdast-util-find-and-replace@3.0.1: + resolution: {integrity: sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA==} + + mdast-util-from-markdown@2.0.2: + resolution: {integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==} + + mdast-util-gfm-autolink-literal@2.0.1: + resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==} + + mdast-util-gfm-footnote@2.0.0: + resolution: {integrity: sha512-5jOT2boTSVkMnQ7LTrd6n/18kqwjmuYqo7JUPe+tRCY6O7dAuTFMtTPauYYrMPpox9hlN0uOx/FL8XvEfG9/mQ==} + + mdast-util-gfm-strikethrough@2.0.0: + resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==} + + mdast-util-gfm-table@2.0.0: + resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==} + + mdast-util-gfm-task-list-item@2.0.0: + resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==} + + mdast-util-gfm@3.0.0: + resolution: {integrity: sha512-dgQEX5Amaq+DuUqf26jJqSK9qgixgd6rYDHAv4aTBuA92cTknZlKpPfa86Z/s8Dj8xsAQpFfBmPUHWJBWqS4Bw==} + + mdast-util-phrasing@4.1.0: + resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==} + + mdast-util-to-markdown@2.1.2: + resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==} + + mdast-util-to-string@4.0.0: + resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} + + mdast@3.0.0: + resolution: {integrity: sha512-xySmf8g4fPKMeC07jXGz971EkLbWAJ83s4US2Tj9lEdnZ142UP5grN73H1Xd3HzrdbU5o9GYYP/y8F9ZSwLE9g==} + deprecated: '`mdast` was renamed to `remark`' + + mdurl@2.0.0: + resolution: {integrity: sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==} + + meow@12.1.1: + resolution: {integrity: sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==} + engines: {node: '>=16.10'} + + merge-stream@2.0.0: + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + + merge2@1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} + + micromark-core-commonmark@2.0.2: + resolution: {integrity: sha512-FKjQKbxd1cibWMM1P9N+H8TwlgGgSkWZMmfuVucLCHaYqeSvJ0hFeHsIa65pA2nYbes0f8LDHPMrd9X7Ujxg9w==} + + micromark-extension-gfm-autolink-literal@2.1.0: + resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==} + + micromark-extension-gfm-footnote@2.1.0: + resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==} + + micromark-extension-gfm-strikethrough@2.1.0: + resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==} + + micromark-extension-gfm-table@2.1.0: + resolution: {integrity: sha512-Ub2ncQv+fwD70/l4ou27b4YzfNaCJOvyX4HxXU15m7mpYY+rjuWzsLIPZHJL253Z643RpbcP1oeIJlQ/SKW67g==} + + micromark-extension-gfm-tagfilter@2.0.0: + resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==} + + micromark-extension-gfm-task-list-item@2.1.0: + resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==} + + micromark-extension-gfm@3.0.0: + resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==} + + micromark-factory-destination@2.0.1: + resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==} + + micromark-factory-label@2.0.1: + resolution: {integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==} + + micromark-factory-space@2.0.1: + resolution: {integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==} + + micromark-factory-title@2.0.1: + resolution: {integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==} + + micromark-factory-whitespace@2.0.1: + resolution: {integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==} + + micromark-util-character@2.1.1: + resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==} + + micromark-util-chunked@2.0.1: + resolution: {integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==} + + micromark-util-classify-character@2.0.1: + resolution: {integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==} + + micromark-util-combine-extensions@2.0.1: + resolution: {integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==} + + micromark-util-decode-numeric-character-reference@2.0.2: + resolution: {integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==} + + micromark-util-decode-string@2.0.1: + resolution: {integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==} + + micromark-util-encode@2.0.1: + resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==} + + micromark-util-html-tag-name@2.0.1: + resolution: {integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==} + + micromark-util-normalize-identifier@2.0.1: + resolution: {integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==} + + micromark-util-resolve-all@2.0.1: + resolution: {integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==} + + micromark-util-sanitize-uri@2.0.1: + resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==} + + micromark-util-subtokenize@2.0.3: + resolution: {integrity: sha512-VXJJuNxYWSoYL6AJ6OQECCFGhIU2GGHMw8tahogePBrjkG8aCCas3ibkp7RnVOSTClg2is05/R7maAhF1XyQMg==} + + micromark-util-symbol@2.0.1: + resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==} + + micromark-util-types@2.0.1: + resolution: {integrity: sha512-534m2WhVTddrcKVepwmVEVnUAmtrx9bfIjNoQHRqfnvdaHQiFytEhJoTgpWJvDEXCO5gLTQh3wYC1PgOJA4NSQ==} + + micromark@4.0.1: + resolution: {integrity: sha512-eBPdkcoCNvYcxQOAKAlceo5SNdzZWfF+FcSupREAzdAh9rRmE239CEQAiTwIgblwnoM8zzj35sZ5ZwvSEOF6Kw==} + + micromatch@4.0.8: + resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} + engines: {node: '>=8.6'} + + mimic-fn@4.0.0: + resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} + engines: {node: '>=12'} + + mimic-function@5.0.1: + resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==} + engines: {node: '>=18'} + + minimatch@3.0.8: + resolution: {integrity: sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==} + + minimatch@3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + + minimatch@9.0.1: + resolution: {integrity: sha512-0jWhJpD/MdhPXwPuiRkCbfYfSKp2qnn2eOc279qI7f+osl/l+prKSrvhg157zSYvx/1nmgn2NqdT6k2Z7zSH9w==} + engines: {node: '>=16 || 14 >=14.17'} + + minimatch@9.0.5: + resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} + engines: {node: '>=16 || 14 >=14.17'} + + minimist@1.2.8: + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + + minipass@7.1.2: + resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} + engines: {node: '>=16 || 14 >=14.17'} + + ms@2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + + mvdan-sh@0.10.1: + resolution: {integrity: sha512-kMbrH0EObaKmK3nVRKUIIya1dpASHIEusM13S4V1ViHFuxuNxCo+arxoa6j/dbV22YBGjl7UKJm9QQKJ2Crzhg==} + + natural-compare@1.4.0: + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + + npm-run-path@5.3.0: + resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + object-inspect@1.13.3: + resolution: {integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==} + engines: {node: '>= 0.4'} + + object-keys@1.1.1: + resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} + engines: {node: '>= 0.4'} + + object.assign@4.1.7: + resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==} + engines: {node: '>= 0.4'} + + object.entries@1.1.8: + resolution: {integrity: sha512-cmopxi8VwRIAw/fkijJohSfpef5PdN0pMQJN6VC/ZKvn0LIknWD8KtgY6KlQdEc4tIjcQ3HxSMmnvtzIscdaYQ==} + engines: {node: '>= 0.4'} + + object.fromentries@2.0.8: + resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==} + engines: {node: '>= 0.4'} + + object.groupby@1.0.3: + resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==} + engines: {node: '>= 0.4'} + + object.values@1.2.1: + resolution: {integrity: sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==} + engines: {node: '>= 0.4'} + + once@1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + + onetime@6.0.0: + resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} + engines: {node: '>=12'} + + onetime@7.0.0: + resolution: {integrity: sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==} + engines: {node: '>=18'} + + optionator@0.9.4: + resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==} + engines: {node: '>= 0.8.0'} + + oxlint@0.15.3: + resolution: {integrity: sha512-kOAt0EC/oluYTcfRu6yg8+QkYMq6uibvEW+hx5nKsX320+VYEw1ChNBRcfSLCtJwA+k6X/CGxk2MN2Nddw70sQ==} + engines: {node: '>=14.*'} + hasBin: true + + p-limit@3.1.0: + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} + engines: {node: '>=10'} + + p-limit@4.0.0: + resolution: {integrity: sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + p-locate@5.0.0: + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} + engines: {node: '>=10'} + + p-locate@6.0.0: + resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + package-json-from-dist@1.0.1: + resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} + + parent-module@1.0.1: + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} + + parent-module@2.0.0: + resolution: {integrity: sha512-uo0Z9JJeWzv8BG+tRcapBKNJ0dro9cLyczGzulS6EfeyAdeC9sbojtW6XwvYxJkEne9En+J2XEl4zyglVeIwFg==} + engines: {node: '>=8'} + + parse-imports@2.2.1: + resolution: {integrity: sha512-OL/zLggRp8mFhKL0rNORUTR4yBYujK/uU+xZL+/0Rgm2QE4nLO9v8PzEweSJEbMGKmDRjJE4R3IMJlL2di4JeQ==} + engines: {node: '>= 18'} + + parse-json@5.2.0: + resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} + engines: {node: '>=8'} + + path-exists@4.0.0: + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} + + path-exists@5.0.0: + resolution: {integrity: sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + path-is-absolute@1.0.1: + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} + engines: {node: '>=0.10.0'} + + path-key@3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} + + path-key@4.0.0: + resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} + engines: {node: '>=12'} + + path-parse@1.0.7: + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + + path-scurry@1.11.1: + resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} + engines: {node: '>=16 || 14 >=14.18'} + + path-type@5.0.0: + resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==} + engines: {node: '>=12'} + + picocolors@1.1.1: + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} + + picomatch@2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + + picomatch@4.0.2: + resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} + engines: {node: '>=12'} + + pidtree@0.6.0: + resolution: {integrity: sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==} + engines: {node: '>=0.10'} + hasBin: true + + possible-typed-array-names@1.0.0: + resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} + engines: {node: '>= 0.4'} + + prelude-ls@1.2.1: + resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} + engines: {node: '>= 0.8.0'} + + prettier-plugin-packagejson@2.5.6: + resolution: {integrity: sha512-TY7KiLtyt6Tlf53BEbXUWkN0+TRdHKgIMmtXtDCyHH6yWnZ50Lwq6Vb6lyjapZrhDTXooC4EtlY5iLe1sCgi5w==} + peerDependencies: + prettier: '>= 1.16.0' + peerDependenciesMeta: + prettier: + optional: true + + prettier-plugin-sh@0.14.0: + resolution: {integrity: sha512-hfXulj5+zEl/ulrO5kMuuTPKmXvOg0bnLHY1hKFNN/N+/903iZbNp8NyZBTsgI8dtkSgFfAEIQq0IQTyP1ZVFQ==} + engines: {node: '>=16.0.0'} + peerDependencies: + prettier: ^3.0.3 + + prettier-plugin-sort-json@4.0.0: + resolution: {integrity: sha512-zV5g+bWFD2zAqyQ8gCkwUTC49o9FxslaUdirwivt5GZHcf57hCocavykuyYqbExoEsuBOg8IU36OY7zmVEMOWA==} + engines: {node: '>=18.0.0'} + peerDependencies: + prettier: ^3.0.0 + + prettier@3.4.2: + resolution: {integrity: sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==} + engines: {node: '>=14'} + hasBin: true + + punycode.js@2.3.1: + resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==} + engines: {node: '>=6'} + + punycode@2.3.1: + resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} + engines: {node: '>=6'} + + queue-microtask@1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + + readable-stream@1.1.14: + resolution: {integrity: sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==} + + reflect.getprototypeof@1.0.9: + resolution: {integrity: sha512-r0Ay04Snci87djAsI4U+WNRcSw5S4pOH7qFjd/veA5gC7TbqESR3tcj28ia95L/fYUDw11JKP7uqUKUAfVvV5Q==} + engines: {node: '>= 0.4'} + + regexp.prototype.flags@1.5.3: + resolution: {integrity: sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==} + engines: {node: '>= 0.4'} + + repeat-string@1.6.1: + resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} + engines: {node: '>=0.10'} + + require-directory@2.1.1: + resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} + engines: {node: '>=0.10.0'} + + require-from-string@2.0.2: + resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} + engines: {node: '>=0.10.0'} + + resolve-from@4.0.0: + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} + + resolve-from@5.0.0: + resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} + engines: {node: '>=8'} + + resolve-pkg-maps@1.0.0: + resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} + + resolve@1.22.10: + resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==} + engines: {node: '>= 0.4'} + hasBin: true + + restore-cursor@5.1.0: + resolution: {integrity: sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==} + engines: {node: '>=18'} + + reusify@1.0.4: + resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + + rfdc@1.4.1: + resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} + + rimraf@3.0.2: + resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} + deprecated: Rimraf versions prior to v4 are no longer supported + hasBin: true + + rimraf@5.0.10: + resolution: {integrity: sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==} + hasBin: true + + run-parallel@1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + + safe-array-concat@1.1.3: + resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==} + engines: {node: '>=0.4'} + + safe-regex-test@1.1.0: + resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==} + engines: {node: '>= 0.4'} + + semver@6.3.1: + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} + hasBin: true + + semver@7.6.3: + resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} + engines: {node: '>=10'} + hasBin: true + + set-function-length@1.2.2: + resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} + engines: {node: '>= 0.4'} + + set-function-name@2.0.2: + resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==} + engines: {node: '>= 0.4'} + + sh-syntax@0.4.2: + resolution: {integrity: sha512-/l2UZ5fhGZLVZa16XQM9/Vq/hezGGbdHeVEA01uWjOL1+7Ek/gt6FquW0iKKws4a9AYPYvlz6RyVvjh3JxOteg==} + engines: {node: '>=16.0.0'} + + shebang-command@2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} + + shebang-regex@3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} + + side-channel-list@1.0.0: + resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==} + engines: {node: '>= 0.4'} + + side-channel-map@1.0.1: + resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==} + engines: {node: '>= 0.4'} + + side-channel-weakmap@1.0.2: + resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==} + engines: {node: '>= 0.4'} + + side-channel@1.1.0: + resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==} + engines: {node: '>= 0.4'} + + signal-exit@4.1.0: + resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} + engines: {node: '>=14'} + + slash@5.1.0: + resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==} + engines: {node: '>=14.16'} + + slashes@3.0.12: + resolution: {integrity: sha512-Q9VME8WyGkc7pJf6QEkj3wE+2CnvZMI+XJhwdTPR8Z/kWQRXi7boAWLDibRPyHRTUTPx5FaU7MsyrjI3yLB4HA==} + + slice-ansi@5.0.0: + resolution: {integrity: sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==} + engines: {node: '>=12'} + + slice-ansi@7.1.0: + resolution: {integrity: sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==} + engines: {node: '>=18'} + + sort-object-keys@1.1.3: + resolution: {integrity: sha512-855pvK+VkU7PaKYPc+Jjnmt4EzejQHyhhF33q31qG8x7maDzkeFhAAThdCYay11CISO+qAMwjOBP+fPZe0IPyg==} + + sort-package-json@2.12.0: + resolution: {integrity: sha512-/HrPQAeeLaa+vbAH/znjuhwUluuiM/zL5XX9kop8UpDgjtyWKt43hGDk2vd/TBdDpzIyzIHVUgmYofzYrAQjew==} + hasBin: true + + spdx-exceptions@2.5.0: + resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==} + + spdx-expression-parse@4.0.0: + resolution: {integrity: sha512-Clya5JIij/7C6bRR22+tnGXbc4VKlibKSVj2iHvVeX5iMW7s1SIQlqu699JkODJJIhh/pUu8L0/VLh8xflD+LQ==} + + spdx-license-ids@3.0.20: + resolution: {integrity: sha512-jg25NiDV/1fLtSgEgyvVyDunvaNHbuwF9lfNV17gSmPFAlYzdfNBlLtLzXTevwkPj7DhGbmN9VnmJIgLnhvaBw==} + + split2@4.2.0: + resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==} + engines: {node: '>= 10.x'} + + stable-hash@0.0.4: + resolution: {integrity: sha512-LjdcbuBeLcdETCrPn9i8AYAZ1eCtu4ECAWtP7UleOiZ9LzVxRzzUZEoZ8zB24nhkQnDWyET0I+3sWokSDS3E7g==} + + string-argv@0.3.2: + resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==} + engines: {node: '>=0.6.19'} + + string-width@4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} + + string-width@5.1.2: + resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} + engines: {node: '>=12'} + + string-width@7.2.0: + resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==} + engines: {node: '>=18'} + + string.prototype.trim@1.2.10: + resolution: {integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==} + engines: {node: '>= 0.4'} + + string.prototype.trimend@1.0.9: + resolution: {integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==} + engines: {node: '>= 0.4'} + + string.prototype.trimstart@1.0.8: + resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==} + engines: {node: '>= 0.4'} + + string_decoder@0.10.31: + resolution: {integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==} + + strip-ansi@6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} + + strip-ansi@7.1.0: + resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} + engines: {node: '>=12'} + + strip-bom@3.0.0: + resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} + engines: {node: '>=4'} + + strip-final-newline@3.0.0: + resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} + engines: {node: '>=12'} + + strip-json-comments@1.0.4: + resolution: {integrity: sha512-AOPG8EBc5wAikaG1/7uFCNFJwnKOuQwFTpYBdTW6OvWHeZBQBrAA/amefHGrEiOnCPcLFZK6FUPtWVKpQVIRgg==} + engines: {node: '>=0.8.0'} + hasBin: true + + strip-json-comments@3.1.1: + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} + + supports-color@5.5.0: + resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} + engines: {node: '>=4'} + + supports-color@7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + + supports-preserve-symlinks-flag@1.0.0: + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} + + synckit@0.9.2: + resolution: {integrity: sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw==} + engines: {node: ^14.18.0 || >=16.0.0} + + tapable@2.2.1: + resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} + engines: {node: '>=6'} + + text-extensions@2.4.0: + resolution: {integrity: sha512-te/NtwBwfiNRLf9Ijqx3T0nlqZiQ2XrrtBvu+cLL8ZRrGkO0NHTug8MYFKyoSrv/sHTaSKfilUkizV6XhxMJ3g==} + engines: {node: '>=8'} + + text-table@0.2.0: + resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} + + through@2.3.8: + resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + + tinyexec@0.3.1: + resolution: {integrity: sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ==} + + tinyglobby@0.2.10: + resolution: {integrity: sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==} + engines: {node: '>=12.0.0'} + + to-regex-range@5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + + ts-api-utils@1.4.3: + resolution: {integrity: sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==} + engines: {node: '>=16'} + peerDependencies: + typescript: '>=4.2.0' + + tsconfig-paths@3.15.0: + resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} + + tslib@2.8.1: + resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} + + type-check@0.4.0: + resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} + engines: {node: '>= 0.8.0'} + + type-fest@0.20.2: + resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} + engines: {node: '>=10'} + + typed-array-buffer@1.0.3: + resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==} + engines: {node: '>= 0.4'} + + typed-array-byte-length@1.0.3: + resolution: {integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==} + engines: {node: '>= 0.4'} + + typed-array-byte-offset@1.0.4: + resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==} + engines: {node: '>= 0.4'} + + typed-array-length@1.0.7: + resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==} + engines: {node: '>= 0.4'} + + typescript-eslint-language-service@5.0.5: + resolution: {integrity: sha512-b7gWXpwSTqMVKpPX3WttNZEyVAMKs/2jsHKF79H+qaD6mjzCyU5jboJe/lOZgLJD+QRsXCr0GjIVxvl5kI1NMw==} + peerDependencies: + '@typescript-eslint/parser': '>= 5.0.0' + eslint: '>= 8.0.0' + typescript: '>= 4.0.0' + + typescript-eslint@8.18.2: + resolution: {integrity: sha512-KuXezG6jHkvC3MvizeXgupZzaG5wjhU3yE8E7e6viOvAvD9xAWYp8/vy0WULTGe9DYDWcQu7aW03YIV3mSitrQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <5.8.0' + + typescript@5.7.2: + resolution: {integrity: sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==} + engines: {node: '>=14.17'} + hasBin: true + + uc.micro@2.1.0: + resolution: {integrity: sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==} + + unbox-primitive@1.1.0: + resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==} + engines: {node: '>= 0.4'} + + undici-types@6.20.0: + resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==} + + unicorn-magic@0.1.0: + resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==} + engines: {node: '>=18'} + + unist-util-is@6.0.0: + resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==} + + unist-util-stringify-position@4.0.0: + resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} + + unist-util-visit-parents@6.0.1: + resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==} + + unist-util-visit@5.0.0: + resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} + + uri-js@4.4.1: + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + + vscode-languageserver-textdocument@1.0.12: + resolution: {integrity: sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==} + + vscode-uri@3.0.8: + resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==} + + which-boxed-primitive@1.1.1: + resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==} + engines: {node: '>= 0.4'} + + which-builtin-type@1.2.1: + resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==} + engines: {node: '>= 0.4'} + + which-collection@1.0.2: + resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==} + engines: {node: '>= 0.4'} + + which-typed-array@1.1.18: + resolution: {integrity: sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==} + engines: {node: '>= 0.4'} + + which@2.0.2: + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} + hasBin: true + + word-wrap@1.2.5: + resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} + engines: {node: '>=0.10.0'} + + wrap-ansi@7.0.0: + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + engines: {node: '>=10'} + + wrap-ansi@8.1.0: + resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} + engines: {node: '>=12'} + + wrap-ansi@9.0.0: + resolution: {integrity: sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==} + engines: {node: '>=18'} + + wrappy@1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + + xdg-basedir@5.1.0: + resolution: {integrity: sha512-GCPAHLvrIH13+c0SuacwvRYj2SxJXQ4kaVTT5xgL3kPrz56XxkF21IGhjSE1+W0aw7gpBWRGXLCPnPby6lSpmQ==} + engines: {node: '>=12'} + + y18n@5.0.8: + resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} + engines: {node: '>=10'} + + yaml@2.6.1: + resolution: {integrity: sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==} + engines: {node: '>= 14'} + hasBin: true + + yargs-parser@21.1.1: + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} + engines: {node: '>=12'} + + yargs@17.7.2: + resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} + engines: {node: '>=12'} + + yocto-queue@0.1.0: + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} + engines: {node: '>=10'} + + yocto-queue@1.1.1: + resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==} + engines: {node: '>=12.20'} + + zwitch@2.0.4: + resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} + +snapshots: + + '@babel/code-frame@7.12.11': + dependencies: + '@babel/highlight': 7.25.9 + + '@babel/code-frame@7.26.2': + dependencies: + '@babel/helper-validator-identifier': 7.25.9 + js-tokens: 4.0.0 + picocolors: 1.1.1 + + '@babel/helper-validator-identifier@7.25.9': {} + + '@babel/highlight@7.25.9': + dependencies: + '@babel/helper-validator-identifier': 7.25.9 + chalk: 2.4.2 + js-tokens: 4.0.0 + picocolors: 1.1.1 + + '@commitlint/cli@19.6.1(@types/node@22.10.2)(typescript@5.7.2)': + dependencies: + '@commitlint/format': 19.5.0 + '@commitlint/lint': 19.6.0 + '@commitlint/load': 19.6.1(@types/node@22.10.2)(typescript@5.7.2) + '@commitlint/read': 19.5.0 + '@commitlint/types': 19.5.0 + tinyexec: 0.3.1 + yargs: 17.7.2 + transitivePeerDependencies: + - '@types/node' + - typescript + + '@commitlint/config-conventional@19.6.0': + dependencies: + '@commitlint/types': 19.5.0 + conventional-changelog-conventionalcommits: 7.0.2 + + '@commitlint/config-validator@19.5.0': + dependencies: + '@commitlint/types': 19.5.0 + ajv: 8.17.1 + + '@commitlint/ensure@19.5.0': + dependencies: + '@commitlint/types': 19.5.0 + lodash.camelcase: 4.3.0 + lodash.kebabcase: 4.1.1 + lodash.snakecase: 4.1.1 + lodash.startcase: 4.4.0 + lodash.upperfirst: 4.3.1 + + '@commitlint/execute-rule@19.5.0': {} + + '@commitlint/format@19.5.0': + dependencies: + '@commitlint/types': 19.5.0 + chalk: 5.4.1 + + '@commitlint/is-ignored@19.6.0': + dependencies: + '@commitlint/types': 19.5.0 + semver: 7.6.3 + + '@commitlint/lint@19.6.0': + dependencies: + '@commitlint/is-ignored': 19.6.0 + '@commitlint/parse': 19.5.0 + '@commitlint/rules': 19.6.0 + '@commitlint/types': 19.5.0 + + '@commitlint/load@19.6.1(@types/node@22.10.2)(typescript@5.7.2)': + dependencies: + '@commitlint/config-validator': 19.5.0 + '@commitlint/execute-rule': 19.5.0 + '@commitlint/resolve-extends': 19.5.0 + '@commitlint/types': 19.5.0 + chalk: 5.4.1 + cosmiconfig: 9.0.0(typescript@5.7.2) + cosmiconfig-typescript-loader: 6.1.0(@types/node@22.10.2)(cosmiconfig@9.0.0(typescript@5.7.2))(typescript@5.7.2) + lodash.isplainobject: 4.0.6 + lodash.merge: 4.6.2 + lodash.uniq: 4.5.0 + transitivePeerDependencies: + - '@types/node' + - typescript + + '@commitlint/message@19.5.0': {} + + '@commitlint/parse@19.5.0': + dependencies: + '@commitlint/types': 19.5.0 + conventional-changelog-angular: 7.0.0 + conventional-commits-parser: 5.0.0 + + '@commitlint/read@19.5.0': + dependencies: + '@commitlint/top-level': 19.5.0 + '@commitlint/types': 19.5.0 + git-raw-commits: 4.0.0 + minimist: 1.2.8 + tinyexec: 0.3.1 + + '@commitlint/resolve-extends@19.5.0': + dependencies: + '@commitlint/config-validator': 19.5.0 + '@commitlint/types': 19.5.0 + global-directory: 4.0.1 + import-meta-resolve: 4.1.0 + lodash.mergewith: 4.6.2 + resolve-from: 5.0.0 + + '@commitlint/rules@19.6.0': + dependencies: + '@commitlint/ensure': 19.5.0 + '@commitlint/message': 19.5.0 + '@commitlint/to-lines': 19.5.0 + '@commitlint/types': 19.5.0 + + '@commitlint/to-lines@19.5.0': {} + + '@commitlint/top-level@19.5.0': + dependencies: + find-up: 7.0.0 + + '@commitlint/types@19.5.0': + dependencies: + '@types/conventional-commits-parser': 5.0.1 + chalk: 5.4.1 + + '@cspell/cspell-bundled-dicts@8.17.1': + dependencies: + '@cspell/dict-ada': 4.0.5 + '@cspell/dict-al': 1.0.3 + '@cspell/dict-aws': 4.0.7 + '@cspell/dict-bash': 4.1.8 + '@cspell/dict-companies': 3.1.10 + '@cspell/dict-cpp': 6.0.2 + '@cspell/dict-cryptocurrencies': 5.0.3 + '@cspell/dict-csharp': 4.0.5 + '@cspell/dict-css': 4.0.16 + '@cspell/dict-dart': 2.2.4 + '@cspell/dict-django': 4.1.3 + '@cspell/dict-docker': 1.1.11 + '@cspell/dict-dotnet': 5.0.8 + '@cspell/dict-elixir': 4.0.6 + '@cspell/dict-en-common-misspellings': 2.0.7 + '@cspell/dict-en-gb': 1.1.33 + '@cspell/dict-en_us': 4.3.28 + '@cspell/dict-filetypes': 3.0.9 + '@cspell/dict-flutter': 1.0.3 + '@cspell/dict-fonts': 4.0.3 + '@cspell/dict-fsharp': 1.0.4 + '@cspell/dict-fullstack': 3.2.3 + '@cspell/dict-gaming-terms': 1.0.9 + '@cspell/dict-git': 3.0.3 + '@cspell/dict-golang': 6.0.17 + '@cspell/dict-google': 1.0.4 + '@cspell/dict-haskell': 4.0.4 + '@cspell/dict-html': 4.0.10 + '@cspell/dict-html-symbol-entities': 4.0.3 + '@cspell/dict-java': 5.0.10 + '@cspell/dict-julia': 1.0.4 + '@cspell/dict-k8s': 1.0.9 + '@cspell/dict-latex': 4.0.3 + '@cspell/dict-lorem-ipsum': 4.0.3 + '@cspell/dict-lua': 4.0.6 + '@cspell/dict-makefile': 1.0.3 + '@cspell/dict-markdown': 2.0.7(@cspell/dict-css@4.0.16)(@cspell/dict-html-symbol-entities@4.0.3)(@cspell/dict-html@4.0.10)(@cspell/dict-typescript@3.1.11) + '@cspell/dict-monkeyc': 1.0.9 + '@cspell/dict-node': 5.0.5 + '@cspell/dict-npm': 5.1.20 + '@cspell/dict-php': 4.0.13 + '@cspell/dict-powershell': 5.0.13 + '@cspell/dict-public-licenses': 2.0.11 + '@cspell/dict-python': 4.2.13 + '@cspell/dict-r': 2.0.4 + '@cspell/dict-ruby': 5.0.7 + '@cspell/dict-rust': 4.0.10 + '@cspell/dict-scala': 5.0.6 + '@cspell/dict-software-terms': 4.2.0 + '@cspell/dict-sql': 2.1.8 + '@cspell/dict-svelte': 1.0.5 + '@cspell/dict-swift': 2.0.4 + '@cspell/dict-terraform': 1.0.7 + '@cspell/dict-typescript': 3.1.11 + '@cspell/dict-vue': 3.0.3 + + '@cspell/cspell-json-reporter@8.17.1': + dependencies: + '@cspell/cspell-types': 8.17.1 + + '@cspell/cspell-pipe@8.17.1': {} + + '@cspell/cspell-resolver@8.17.1': + dependencies: + global-directory: 4.0.1 + + '@cspell/cspell-service-bus@8.17.1': {} + + '@cspell/cspell-types@8.17.1': {} + + '@cspell/dict-ada@4.0.5': {} + + '@cspell/dict-al@1.0.3': {} + + '@cspell/dict-aws@4.0.7': {} + + '@cspell/dict-bash@4.1.8': {} + + '@cspell/dict-companies@3.1.10': {} + + '@cspell/dict-cpp@6.0.2': {} + + '@cspell/dict-cryptocurrencies@5.0.3': {} + + '@cspell/dict-csharp@4.0.5': {} + + '@cspell/dict-css@4.0.16': {} + + '@cspell/dict-dart@2.2.4': {} + + '@cspell/dict-data-science@2.0.5': {} + + '@cspell/dict-django@4.1.3': {} + + '@cspell/dict-docker@1.1.11': {} + + '@cspell/dict-dotnet@5.0.8': {} + + '@cspell/dict-elixir@4.0.6': {} + + '@cspell/dict-en-common-misspellings@2.0.7': {} + + '@cspell/dict-en-gb@1.1.33': {} + + '@cspell/dict-en_us@4.3.28': {} + + '@cspell/dict-filetypes@3.0.9': {} + + '@cspell/dict-flutter@1.0.3': {} + + '@cspell/dict-fonts@4.0.3': {} + + '@cspell/dict-fsharp@1.0.4': {} + + '@cspell/dict-fullstack@3.2.3': {} + + '@cspell/dict-gaming-terms@1.0.9': {} + + '@cspell/dict-git@3.0.3': {} + + '@cspell/dict-golang@6.0.17': {} + + '@cspell/dict-google@1.0.4': {} + + '@cspell/dict-haskell@4.0.4': {} + + '@cspell/dict-html-symbol-entities@4.0.3': {} + + '@cspell/dict-html@4.0.10': {} + + '@cspell/dict-java@5.0.10': {} + + '@cspell/dict-julia@1.0.4': {} + + '@cspell/dict-k8s@1.0.9': {} + + '@cspell/dict-latex@4.0.3': {} + + '@cspell/dict-lorem-ipsum@4.0.3': {} + + '@cspell/dict-lua@4.0.6': {} + + '@cspell/dict-makefile@1.0.3': {} + + '@cspell/dict-markdown@2.0.7(@cspell/dict-css@4.0.16)(@cspell/dict-html-symbol-entities@4.0.3)(@cspell/dict-html@4.0.10)(@cspell/dict-typescript@3.1.11)': + dependencies: + '@cspell/dict-css': 4.0.16 + '@cspell/dict-html': 4.0.10 + '@cspell/dict-html-symbol-entities': 4.0.3 + '@cspell/dict-typescript': 3.1.11 + + '@cspell/dict-monkeyc@1.0.9': {} + + '@cspell/dict-node@5.0.5': {} + + '@cspell/dict-npm@5.1.20': {} + + '@cspell/dict-php@4.0.13': {} + + '@cspell/dict-powershell@5.0.13': {} + + '@cspell/dict-public-licenses@2.0.11': {} + + '@cspell/dict-python@4.2.13': + dependencies: + '@cspell/dict-data-science': 2.0.5 + + '@cspell/dict-r@2.0.4': {} + + '@cspell/dict-ruby@5.0.7': {} + + '@cspell/dict-rust@4.0.10': {} + + '@cspell/dict-scala@5.0.6': {} + + '@cspell/dict-software-terms@4.2.0': {} + + '@cspell/dict-sql@2.1.8': {} + + '@cspell/dict-svelte@1.0.5': {} + + '@cspell/dict-swift@2.0.4': {} + + '@cspell/dict-terraform@1.0.7': {} + + '@cspell/dict-typescript@3.1.11': {} + + '@cspell/dict-vue@3.0.3': {} + + '@cspell/dynamic-import@8.17.1': + dependencies: + '@cspell/url': 8.17.1 + import-meta-resolve: 4.1.0 + + '@cspell/eslint-plugin@8.17.1(eslint@9.17.0(jiti@2.4.2))': + dependencies: + '@cspell/cspell-types': 8.17.1 + '@cspell/url': 8.17.1 + cspell-lib: 8.17.1 + eslint: 9.17.0(jiti@2.4.2) + synckit: 0.9.2 + + '@cspell/filetypes@8.17.1': {} + + '@cspell/strong-weak-map@8.17.1': {} + + '@cspell/url@8.17.1': {} + + '@es-joy/jsdoccomment@0.49.0': + dependencies: + comment-parser: 1.4.1 + esquery: 1.6.0 + jsdoc-type-pratt-parser: 4.1.0 + + '@eslint-community/eslint-utils@4.4.1(eslint@8.57.1)': + dependencies: + eslint: 8.57.1 + eslint-visitor-keys: 3.4.3 + + '@eslint-community/eslint-utils@4.4.1(eslint@9.17.0(jiti@2.4.2))': + dependencies: + eslint: 9.17.0(jiti@2.4.2) + eslint-visitor-keys: 3.4.3 + + '@eslint-community/regexpp@4.12.1': {} + + '@eslint/compat@1.2.4(eslint@9.17.0(jiti@2.4.2))': + optionalDependencies: + eslint: 9.17.0(jiti@2.4.2) + + '@eslint/config-array@0.19.1': + dependencies: + '@eslint/object-schema': 2.1.5 + debug: 4.4.0 + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + + '@eslint/core@0.9.1': + dependencies: + '@types/json-schema': 7.0.15 + + '@eslint/eslintrc@2.1.4': + dependencies: + ajv: 6.12.6 + debug: 4.4.0 + espree: 9.6.1 + globals: 13.24.0 + ignore: 5.3.2 + import-fresh: 3.3.0 + js-yaml: 4.1.0 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + + '@eslint/eslintrc@3.2.0': + dependencies: + ajv: 6.12.6 + debug: 4.4.0 + espree: 10.3.0 + globals: 14.0.0 + ignore: 5.3.2 + import-fresh: 3.3.0 + js-yaml: 4.1.0 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + + '@eslint/js@8.57.1': {} + + '@eslint/js@9.17.0': {} + + '@eslint/json@0.9.0': + dependencies: + '@eslint/plugin-kit': 0.2.4 + '@humanwhocodes/momoa': 3.3.5 + + '@eslint/markdown@6.2.1': + dependencies: + '@eslint/plugin-kit': 0.2.4 + mdast-util-from-markdown: 2.0.2 + mdast-util-gfm: 3.0.0 + micromark-extension-gfm: 3.0.0 + transitivePeerDependencies: + - supports-color + + '@eslint/object-schema@2.1.5': {} + + '@eslint/plugin-kit@0.2.4': + dependencies: + levn: 0.4.1 + + '@humanfs/core@0.19.1': {} + + '@humanfs/node@0.16.6': + dependencies: + '@humanfs/core': 0.19.1 + '@humanwhocodes/retry': 0.3.1 + + '@humanwhocodes/config-array@0.13.0': + dependencies: + '@humanwhocodes/object-schema': 2.0.3 + debug: 4.4.0 + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + + '@humanwhocodes/module-importer@1.0.1': {} + + '@humanwhocodes/momoa@3.3.5': {} + + '@humanwhocodes/object-schema@2.0.3': {} + + '@humanwhocodes/retry@0.3.1': {} + + '@humanwhocodes/retry@0.4.1': {} + + '@isaacs/cliui@8.0.2': + dependencies: + string-width: 5.1.2 + string-width-cjs: string-width@4.2.3 + strip-ansi: 7.1.0 + strip-ansi-cjs: strip-ansi@6.0.1 + wrap-ansi: 8.1.0 + wrap-ansi-cjs: wrap-ansi@7.0.0 + + '@kesills/eslint-config-airbnb-typescript@20.0.0(@stylistic/eslint-plugin@2.12.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(@typescript-eslint/eslint-plugin@8.18.2(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint-config-airbnb-base@15.0.0(eslint-plugin-import@2.31.0)(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)': + dependencies: + '@stylistic/eslint-plugin': 2.12.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) + '@typescript-eslint/eslint-plugin': 8.18.2(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) + '@typescript-eslint/parser': 8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) + eslint: 9.17.0(jiti@2.4.2) + eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.31.0)(eslint@9.17.0(jiti@2.4.2)) + optionalDependencies: + typescript: 5.7.2 + + '@kurone-kito/commitlint-config@0.17.2(@commitlint/config-conventional@19.6.0)': + optionalDependencies: + '@commitlint/config-conventional': 19.6.0 + + '@kurone-kito/cspell-config@0.17.2(cspell@8.17.1)': + optionalDependencies: + cspell: 8.17.1 + + '@kurone-kito/eslint-config-base@0.17.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)': + dependencies: + '@cspell/eslint-plugin': 8.17.1(eslint@9.17.0(jiti@2.4.2)) + '@eslint/compat': 1.2.4(eslint@9.17.0(jiti@2.4.2)) + '@eslint/eslintrc': 3.2.0 + '@eslint/js': 9.17.0 + '@eslint/json': 0.9.0 + '@eslint/markdown': 6.2.1 + '@kesills/eslint-config-airbnb-typescript': 20.0.0(@stylistic/eslint-plugin@2.12.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(@typescript-eslint/eslint-plugin@8.18.2(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint-config-airbnb-base@15.0.0(eslint-plugin-import@2.31.0)(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) + '@stylistic/eslint-plugin': 2.12.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) + '@typescript-eslint/eslint-plugin': 8.18.2(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) + '@typescript-eslint/parser': 8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) + eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.31.0)(eslint@9.17.0(jiti@2.4.2)) + eslint-config-prettier: 9.1.0(eslint@9.17.0(jiti@2.4.2)) + eslint-import-resolver-node: 0.3.9 + eslint-import-resolver-typescript: 3.7.0(eslint-plugin-import@2.31.0)(eslint@9.17.0(jiti@2.4.2)) + eslint-plugin-editorconfig: 4.0.3 + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint-import-resolver-typescript@3.7.0)(eslint@9.17.0(jiti@2.4.2)) + eslint-plugin-jsdoc: 50.6.1(eslint@9.17.0(jiti@2.4.2)) + eslint-plugin-markdownlint: 0.6.0(eslint@9.17.0(jiti@2.4.2)) + eslint-plugin-n: 17.15.1(eslint@9.17.0(jiti@2.4.2)) + eslint-plugin-oxlint: 0.15.2 + eslint-plugin-yaml: 1.0.3 + globals: 15.14.0 + mdast: 3.0.0 + typescript-eslint: 8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) + optionalDependencies: + eslint: 9.17.0(jiti@2.4.2) + transitivePeerDependencies: + - eslint-config-airbnb + - eslint-import-resolver-webpack + - eslint-plugin-import-x + - supports-color + - typescript + + '@kurone-kito/lint-staged-config@0.17.2(cspell@8.17.1)(eslint-formatter-codeframe@7.32.1)(eslint@9.17.0(jiti@2.4.2))(lint-staged@15.2.11)(prettier@3.4.2)': + optionalDependencies: + cspell: 8.17.1 + eslint: 9.17.0(jiti@2.4.2) + eslint-formatter-codeframe: 7.32.1 + lint-staged: 15.2.11 + prettier: 3.4.2 + + '@kurone-kito/prettier-config@0.17.2(prettier@3.4.2)': + optionalDependencies: + prettier: 3.4.2 + + '@kurone-kito/typescript-config@0.17.2(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(typescript-eslint-language-service@5.0.5(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(typescript@5.7.2)': + optionalDependencies: + '@typescript-eslint/parser': 8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) + typescript: 5.7.2 + typescript-eslint-language-service: 5.0.5(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) + + '@nodelib/fs.scandir@2.1.5': + dependencies: + '@nodelib/fs.stat': 2.0.5 + run-parallel: 1.2.0 + + '@nodelib/fs.stat@2.0.5': {} + + '@nodelib/fs.walk@1.2.8': + dependencies: + '@nodelib/fs.scandir': 2.1.5 + fastq: 1.18.0 + + '@nolyfill/is-core-module@1.0.39': {} + + '@one-ini/wasm@0.1.1': {} + + '@oxlint/darwin-arm64@0.15.3': + optional: true + + '@oxlint/darwin-x64@0.15.3': + optional: true + + '@oxlint/linux-arm64-gnu@0.15.3': + optional: true + + '@oxlint/linux-arm64-musl@0.15.3': + optional: true + + '@oxlint/linux-x64-gnu@0.15.3': + optional: true + + '@oxlint/linux-x64-musl@0.15.3': + optional: true + + '@oxlint/win32-arm64@0.15.3': + optional: true + + '@oxlint/win32-x64@0.15.3': + optional: true + + '@pkgjs/parseargs@0.11.0': + optional: true + + '@pkgr/core@0.1.1': {} + + '@rtsao/scc@1.1.0': {} + + '@sindresorhus/merge-streams@2.3.0': {} + + '@stylistic/eslint-plugin@2.12.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)': + dependencies: + '@typescript-eslint/utils': 8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) + eslint: 9.17.0(jiti@2.4.2) + eslint-visitor-keys: 4.2.0 + espree: 10.3.0 + estraverse: 5.3.0 + picomatch: 4.0.2 + transitivePeerDependencies: + - supports-color + - typescript + + '@types/conventional-commits-parser@5.0.1': + dependencies: + '@types/node': 22.10.2 + + '@types/debug@4.1.12': + dependencies: + '@types/ms': 0.7.34 + + '@types/estree@1.0.6': {} + + '@types/json-schema@7.0.15': {} + + '@types/json5@0.0.29': {} + + '@types/mdast@4.0.4': + dependencies: + '@types/unist': 3.0.3 + + '@types/ms@0.7.34': {} + + '@types/node@22.10.2': + dependencies: + undici-types: 6.20.0 + + '@types/unist@3.0.3': {} + + '@typescript-eslint/eslint-plugin@8.18.2(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)': + dependencies: + '@eslint-community/regexpp': 4.12.1 + '@typescript-eslint/parser': 8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) + '@typescript-eslint/scope-manager': 8.18.2 + '@typescript-eslint/type-utils': 8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) + '@typescript-eslint/utils': 8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) + '@typescript-eslint/visitor-keys': 8.18.2 + eslint: 9.17.0(jiti@2.4.2) + graphemer: 1.4.0 + ignore: 5.3.2 + natural-compare: 1.4.0 + ts-api-utils: 1.4.3(typescript@5.7.2) + typescript: 5.7.2 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)': + dependencies: + '@typescript-eslint/scope-manager': 8.18.2 + '@typescript-eslint/types': 8.18.2 + '@typescript-eslint/typescript-estree': 8.18.2(typescript@5.7.2) + '@typescript-eslint/visitor-keys': 8.18.2 + debug: 4.4.0 + eslint: 9.17.0(jiti@2.4.2) + typescript: 5.7.2 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/scope-manager@8.18.2': + dependencies: + '@typescript-eslint/types': 8.18.2 + '@typescript-eslint/visitor-keys': 8.18.2 + + '@typescript-eslint/type-utils@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)': + dependencies: + '@typescript-eslint/typescript-estree': 8.18.2(typescript@5.7.2) + '@typescript-eslint/utils': 8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) + debug: 4.4.0 + eslint: 9.17.0(jiti@2.4.2) + ts-api-utils: 1.4.3(typescript@5.7.2) + typescript: 5.7.2 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/types@8.18.2': {} + + '@typescript-eslint/typescript-estree@8.18.2(typescript@5.7.2)': + dependencies: + '@typescript-eslint/types': 8.18.2 + '@typescript-eslint/visitor-keys': 8.18.2 + debug: 4.4.0 + fast-glob: 3.3.2 + is-glob: 4.0.3 + minimatch: 9.0.5 + semver: 7.6.3 + ts-api-utils: 1.4.3(typescript@5.7.2) + typescript: 5.7.2 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/utils@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)': + dependencies: + '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2)) + '@typescript-eslint/scope-manager': 8.18.2 + '@typescript-eslint/types': 8.18.2 + '@typescript-eslint/typescript-estree': 8.18.2(typescript@5.7.2) + eslint: 9.17.0(jiti@2.4.2) + typescript: 5.7.2 + transitivePeerDependencies: + - supports-color + + '@typescript-eslint/visitor-keys@8.18.2': + dependencies: + '@typescript-eslint/types': 8.18.2 + eslint-visitor-keys: 4.2.0 + + '@ungap/structured-clone@1.2.1': {} + + JSONStream@1.3.5: + dependencies: + jsonparse: 1.3.1 + through: 2.3.8 + + acorn-jsx@5.3.2(acorn@8.14.0): + dependencies: + acorn: 8.14.0 + + acorn@8.14.0: {} + + ajv@6.12.6: + dependencies: + fast-deep-equal: 3.1.3 + fast-json-stable-stringify: 2.1.0 + json-schema-traverse: 0.4.1 + uri-js: 4.4.1 + + ajv@8.17.1: + dependencies: + fast-deep-equal: 3.1.3 + fast-uri: 3.0.3 + json-schema-traverse: 1.0.0 + require-from-string: 2.0.2 + + ansi-escapes@7.0.0: + dependencies: + environment: 1.1.0 + + ansi-regex@5.0.1: {} + + ansi-regex@6.1.0: {} + + ansi-styles@3.2.1: + dependencies: + color-convert: 1.9.3 + + ansi-styles@4.3.0: + dependencies: + color-convert: 2.0.1 + + ansi-styles@6.2.1: {} + + are-docs-informative@0.0.2: {} + + argparse@2.0.1: {} + + array-buffer-byte-length@1.0.2: + dependencies: + call-bound: 1.0.3 + is-array-buffer: 3.0.5 + + array-ify@1.0.0: {} + + array-includes@3.1.8: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.23.7 + es-object-atoms: 1.0.0 + get-intrinsic: 1.2.6 + is-string: 1.1.1 + + array-timsort@1.0.3: {} + + array.prototype.findlastindex@1.2.5: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.23.7 + es-errors: 1.3.0 + es-object-atoms: 1.0.0 + es-shim-unscopables: 1.0.2 + + array.prototype.flat@1.3.3: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.23.7 + es-shim-unscopables: 1.0.2 + + array.prototype.flatmap@1.3.3: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.23.7 + es-shim-unscopables: 1.0.2 + + arraybuffer.prototype.slice@1.0.4: + dependencies: + array-buffer-byte-length: 1.0.2 + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.23.7 + es-errors: 1.3.0 + get-intrinsic: 1.2.6 + is-array-buffer: 3.0.5 + + available-typed-arrays@1.0.7: + dependencies: + possible-typed-array-names: 1.0.0 + + balanced-match@1.0.2: {} + + brace-expansion@1.1.11: + dependencies: + balanced-match: 1.0.2 + concat-map: 0.0.1 + + brace-expansion@2.0.1: + dependencies: + balanced-match: 1.0.2 + + braces@3.0.3: + dependencies: + fill-range: 7.1.1 + + call-bind-apply-helpers@1.0.1: + dependencies: + es-errors: 1.3.0 + function-bind: 1.1.2 + + call-bind@1.0.8: + dependencies: + call-bind-apply-helpers: 1.0.1 + es-define-property: 1.0.1 + get-intrinsic: 1.2.6 + set-function-length: 1.2.2 + + call-bound@1.0.3: + dependencies: + call-bind-apply-helpers: 1.0.1 + get-intrinsic: 1.2.6 + + callsites@3.1.0: {} + + ccount@2.0.1: {} + + chalk-template@1.1.0: + dependencies: + chalk: 5.4.1 + + chalk@2.4.2: + dependencies: + ansi-styles: 3.2.1 + escape-string-regexp: 1.0.5 + supports-color: 5.5.0 + + chalk@4.1.2: + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + + chalk@5.3.0: {} + + chalk@5.4.1: {} + + character-entities@2.0.2: {} + + clear-module@4.1.2: + dependencies: + parent-module: 2.0.0 + resolve-from: 5.0.0 + + cli-cursor@5.0.0: + dependencies: + restore-cursor: 5.1.0 + + cli-truncate@4.0.0: + dependencies: + slice-ansi: 5.0.0 + string-width: 7.2.0 + + cli@1.0.1: + dependencies: + exit: 0.1.2 + glob: 7.2.3 + + cliui@8.0.1: + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 7.0.0 + + color-convert@1.9.3: + dependencies: + color-name: 1.1.3 + + color-convert@2.0.1: + dependencies: + color-name: 1.1.4 + + color-name@1.1.3: {} + + color-name@1.1.4: {} + + colorette@2.0.20: {} + + commander@10.0.1: {} + + commander@12.1.0: {} + + comment-json@4.2.5: + dependencies: + array-timsort: 1.0.3 + core-util-is: 1.0.3 + esprima: 4.0.1 + has-own-prop: 2.0.0 + repeat-string: 1.6.1 + + comment-parser@1.4.1: {} + + compare-func@2.0.0: + dependencies: + array-ify: 1.0.0 + dot-prop: 5.3.0 + + concat-map@0.0.1: {} + + confusing-browser-globals@1.0.11: {} + + console-browserify@1.1.0: + dependencies: + date-now: 0.1.4 + + conventional-changelog-angular@7.0.0: + dependencies: + compare-func: 2.0.0 + + conventional-changelog-conventionalcommits@7.0.2: + dependencies: + compare-func: 2.0.0 + + conventional-commits-parser@5.0.0: + dependencies: + JSONStream: 1.3.5 + is-text-path: 2.0.0 + meow: 12.1.1 + split2: 4.2.0 + + core-util-is@1.0.3: {} + + cosmiconfig-typescript-loader@6.1.0(@types/node@22.10.2)(cosmiconfig@9.0.0(typescript@5.7.2))(typescript@5.7.2): + dependencies: + '@types/node': 22.10.2 + cosmiconfig: 9.0.0(typescript@5.7.2) + jiti: 2.4.2 + typescript: 5.7.2 + + cosmiconfig@9.0.0(typescript@5.7.2): + dependencies: + env-paths: 2.2.1 + import-fresh: 3.3.0 + js-yaml: 4.1.0 + parse-json: 5.2.0 + optionalDependencies: + typescript: 5.7.2 + + cross-spawn@7.0.6: + dependencies: + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 + + cspell-config-lib@8.17.1: + dependencies: + '@cspell/cspell-types': 8.17.1 + comment-json: 4.2.5 + yaml: 2.6.1 + + cspell-dictionary@8.17.1: + dependencies: + '@cspell/cspell-pipe': 8.17.1 + '@cspell/cspell-types': 8.17.1 + cspell-trie-lib: 8.17.1 + fast-equals: 5.0.1 + + cspell-gitignore@8.17.1: + dependencies: + '@cspell/url': 8.17.1 + cspell-glob: 8.17.1 + cspell-io: 8.17.1 + find-up-simple: 1.0.0 + + cspell-glob@8.17.1: + dependencies: + '@cspell/url': 8.17.1 + micromatch: 4.0.8 + + cspell-grammar@8.17.1: + dependencies: + '@cspell/cspell-pipe': 8.17.1 + '@cspell/cspell-types': 8.17.1 + + cspell-io@8.17.1: + dependencies: + '@cspell/cspell-service-bus': 8.17.1 + '@cspell/url': 8.17.1 + + cspell-lib@8.17.1: + dependencies: + '@cspell/cspell-bundled-dicts': 8.17.1 + '@cspell/cspell-pipe': 8.17.1 + '@cspell/cspell-resolver': 8.17.1 + '@cspell/cspell-types': 8.17.1 + '@cspell/dynamic-import': 8.17.1 + '@cspell/filetypes': 8.17.1 + '@cspell/strong-weak-map': 8.17.1 + '@cspell/url': 8.17.1 + clear-module: 4.1.2 + comment-json: 4.2.5 + cspell-config-lib: 8.17.1 + cspell-dictionary: 8.17.1 + cspell-glob: 8.17.1 + cspell-grammar: 8.17.1 + cspell-io: 8.17.1 + cspell-trie-lib: 8.17.1 + env-paths: 3.0.0 + fast-equals: 5.0.1 + gensequence: 7.0.0 + import-fresh: 3.3.0 + resolve-from: 5.0.0 + vscode-languageserver-textdocument: 1.0.12 + vscode-uri: 3.0.8 + xdg-basedir: 5.1.0 + + cspell-trie-lib@8.17.1: + dependencies: + '@cspell/cspell-pipe': 8.17.1 + '@cspell/cspell-types': 8.17.1 + gensequence: 7.0.0 + + cspell@8.17.1: + dependencies: + '@cspell/cspell-json-reporter': 8.17.1 + '@cspell/cspell-pipe': 8.17.1 + '@cspell/cspell-types': 8.17.1 + '@cspell/dynamic-import': 8.17.1 + '@cspell/url': 8.17.1 + chalk: 5.4.1 + chalk-template: 1.1.0 + commander: 12.1.0 + cspell-dictionary: 8.17.1 + cspell-gitignore: 8.17.1 + cspell-glob: 8.17.1 + cspell-io: 8.17.1 + cspell-lib: 8.17.1 + fast-json-stable-stringify: 2.1.0 + file-entry-cache: 9.1.0 + get-stdin: 9.0.0 + semver: 7.6.3 + tinyglobby: 0.2.10 + + dargs@8.1.0: {} + + data-view-buffer@1.0.2: + dependencies: + call-bound: 1.0.3 + es-errors: 1.3.0 + is-data-view: 1.0.2 + + data-view-byte-length@1.0.2: + dependencies: + call-bound: 1.0.3 + es-errors: 1.3.0 + is-data-view: 1.0.2 + + data-view-byte-offset@1.0.1: + dependencies: + call-bound: 1.0.3 + es-errors: 1.3.0 + is-data-view: 1.0.2 + + date-now@0.1.4: {} + + debug@3.2.7: + dependencies: + ms: 2.1.3 + + debug@4.4.0: + dependencies: + ms: 2.1.3 + + decode-named-character-reference@1.0.2: + dependencies: + character-entities: 2.0.2 + + deep-is@0.1.4: {} + + define-data-property@1.1.4: + dependencies: + es-define-property: 1.0.1 + es-errors: 1.3.0 + gopd: 1.2.0 + + define-properties@1.2.1: + dependencies: + define-data-property: 1.1.4 + has-property-descriptors: 1.0.2 + object-keys: 1.1.1 + + dequal@2.0.3: {} + + detect-indent@7.0.1: {} + + detect-newline@4.0.1: {} + + devlop@1.1.0: + dependencies: + dequal: 2.0.3 + + doctrine@2.1.0: + dependencies: + esutils: 2.0.3 + + doctrine@3.0.0: + dependencies: + esutils: 2.0.3 + + dom-serializer@0.2.2: + dependencies: + domelementtype: 2.3.0 + entities: 2.2.0 + + domelementtype@1.3.1: {} + + domelementtype@2.3.0: {} + + domhandler@2.3.0: + dependencies: + domelementtype: 1.3.1 + + domutils@1.5.1: + dependencies: + dom-serializer: 0.2.2 + domelementtype: 1.3.1 + + dot-prop@5.3.0: + dependencies: + is-obj: 2.0.0 + + dunder-proto@1.0.1: + dependencies: + call-bind-apply-helpers: 1.0.1 + es-errors: 1.3.0 + gopd: 1.2.0 + + eastasianwidth@0.2.0: {} + + editorconfig@1.0.4: + dependencies: + '@one-ini/wasm': 0.1.1 + commander: 10.0.1 + minimatch: 9.0.1 + semver: 7.6.3 + + emoji-regex@10.4.0: {} + + emoji-regex@8.0.0: {} + + emoji-regex@9.2.2: {} + + enhanced-resolve@5.18.0: + dependencies: + graceful-fs: 4.2.11 + tapable: 2.2.1 + + entities@1.0.0: {} + + entities@2.2.0: {} + + entities@4.5.0: {} + + env-paths@2.2.1: {} + + env-paths@3.0.0: {} + + environment@1.1.0: {} + + error-ex@1.3.2: + dependencies: + is-arrayish: 0.2.1 + + es-abstract@1.23.7: + dependencies: + array-buffer-byte-length: 1.0.2 + arraybuffer.prototype.slice: 1.0.4 + available-typed-arrays: 1.0.7 + call-bind: 1.0.8 + call-bound: 1.0.3 + data-view-buffer: 1.0.2 + data-view-byte-length: 1.0.2 + data-view-byte-offset: 1.0.1 + es-define-property: 1.0.1 + es-errors: 1.3.0 + es-object-atoms: 1.0.0 + es-set-tostringtag: 2.0.3 + es-to-primitive: 1.3.0 + function.prototype.name: 1.1.8 + get-intrinsic: 1.2.6 + get-symbol-description: 1.1.0 + globalthis: 1.0.4 + gopd: 1.2.0 + has-property-descriptors: 1.0.2 + has-proto: 1.2.0 + has-symbols: 1.1.0 + hasown: 2.0.2 + internal-slot: 1.1.0 + is-array-buffer: 3.0.5 + is-callable: 1.2.7 + is-data-view: 1.0.2 + is-regex: 1.2.1 + is-shared-array-buffer: 1.0.4 + is-string: 1.1.1 + is-typed-array: 1.1.15 + is-weakref: 1.1.0 + math-intrinsics: 1.1.0 + object-inspect: 1.13.3 + object-keys: 1.1.1 + object.assign: 4.1.7 + regexp.prototype.flags: 1.5.3 + safe-array-concat: 1.1.3 + safe-regex-test: 1.1.0 + string.prototype.trim: 1.2.10 + string.prototype.trimend: 1.0.9 + string.prototype.trimstart: 1.0.8 + typed-array-buffer: 1.0.3 + typed-array-byte-length: 1.0.3 + typed-array-byte-offset: 1.0.4 + typed-array-length: 1.0.7 + unbox-primitive: 1.1.0 + which-typed-array: 1.1.18 + + es-define-property@1.0.1: {} + + es-errors@1.3.0: {} + + es-module-lexer@1.5.4: {} + + es-object-atoms@1.0.0: + dependencies: + es-errors: 1.3.0 + + es-set-tostringtag@2.0.3: + dependencies: + get-intrinsic: 1.2.6 + has-tostringtag: 1.0.2 + hasown: 2.0.2 + + es-shim-unscopables@1.0.2: + dependencies: + hasown: 2.0.2 + + es-to-primitive@1.3.0: + dependencies: + is-callable: 1.2.7 + is-date-object: 1.1.0 + is-symbol: 1.1.1 + + escalade@3.2.0: {} + + escape-string-regexp@1.0.5: {} + + escape-string-regexp@4.0.0: {} + + escape-string-regexp@5.0.0: {} + + eslint-compat-utils@0.5.1(eslint@9.17.0(jiti@2.4.2)): + dependencies: + eslint: 9.17.0(jiti@2.4.2) + semver: 7.6.3 + + eslint-config-airbnb-base@15.0.0(eslint-plugin-import@2.31.0)(eslint@9.17.0(jiti@2.4.2)): + dependencies: + confusing-browser-globals: 1.0.11 + eslint: 9.17.0(jiti@2.4.2) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint-import-resolver-typescript@3.7.0)(eslint@9.17.0(jiti@2.4.2)) + object.assign: 4.1.7 + object.entries: 1.1.8 + semver: 6.3.1 + + eslint-config-prettier@9.1.0(eslint@9.17.0(jiti@2.4.2)): + dependencies: + eslint: 9.17.0(jiti@2.4.2) + + eslint-formatter-codeframe@7.32.1: + dependencies: + '@babel/code-frame': 7.12.11 + chalk: 4.1.2 + + eslint-import-resolver-node@0.3.9: + dependencies: + debug: 3.2.7 + is-core-module: 2.16.1 + resolve: 1.22.10 + transitivePeerDependencies: + - supports-color + + eslint-import-resolver-typescript@3.7.0(eslint-plugin-import@2.31.0)(eslint@9.17.0(jiti@2.4.2)): + dependencies: + '@nolyfill/is-core-module': 1.0.39 + debug: 4.4.0 + enhanced-resolve: 5.18.0 + eslint: 9.17.0(jiti@2.4.2) + fast-glob: 3.3.2 + get-tsconfig: 4.8.1 + is-bun-module: 1.3.0 + is-glob: 4.0.3 + stable-hash: 0.0.4 + optionalDependencies: + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint-import-resolver-typescript@3.7.0)(eslint@9.17.0(jiti@2.4.2)) + transitivePeerDependencies: + - supports-color + + eslint-module-utils@2.12.0(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.7.0)(eslint@9.17.0(jiti@2.4.2)): + dependencies: + debug: 3.2.7 + optionalDependencies: + '@typescript-eslint/parser': 8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) + eslint: 9.17.0(jiti@2.4.2) + eslint-import-resolver-node: 0.3.9 + eslint-import-resolver-typescript: 3.7.0(eslint-plugin-import@2.31.0)(eslint@9.17.0(jiti@2.4.2)) + transitivePeerDependencies: + - supports-color + + eslint-plugin-editorconfig@4.0.3: + dependencies: + editorconfig: 1.0.4 + eslint: 8.57.1 + klona: 2.0.6 + transitivePeerDependencies: + - supports-color + + eslint-plugin-es-x@7.8.0(eslint@9.17.0(jiti@2.4.2)): + dependencies: + '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2)) + '@eslint-community/regexpp': 4.12.1 + eslint: 9.17.0(jiti@2.4.2) + eslint-compat-utils: 0.5.1(eslint@9.17.0(jiti@2.4.2)) + + eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint-import-resolver-typescript@3.7.0)(eslint@9.17.0(jiti@2.4.2)): + dependencies: + '@rtsao/scc': 1.1.0 + array-includes: 3.1.8 + array.prototype.findlastindex: 1.2.5 + array.prototype.flat: 1.3.3 + array.prototype.flatmap: 1.3.3 + debug: 3.2.7 + doctrine: 2.1.0 + eslint: 9.17.0(jiti@2.4.2) + eslint-import-resolver-node: 0.3.9 + eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.7.0)(eslint@9.17.0(jiti@2.4.2)) + hasown: 2.0.2 + is-core-module: 2.16.1 + is-glob: 4.0.3 + minimatch: 3.1.2 + object.fromentries: 2.0.8 + object.groupby: 1.0.3 + object.values: 1.2.1 + semver: 6.3.1 + string.prototype.trimend: 1.0.9 + tsconfig-paths: 3.15.0 + optionalDependencies: + '@typescript-eslint/parser': 8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) + transitivePeerDependencies: + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - supports-color + + eslint-plugin-jsdoc@50.6.1(eslint@9.17.0(jiti@2.4.2)): + dependencies: + '@es-joy/jsdoccomment': 0.49.0 + are-docs-informative: 0.0.2 + comment-parser: 1.4.1 + debug: 4.4.0 + escape-string-regexp: 4.0.0 + eslint: 9.17.0(jiti@2.4.2) + espree: 10.3.0 + esquery: 1.6.0 + parse-imports: 2.2.1 + semver: 7.6.3 + spdx-expression-parse: 4.0.0 + synckit: 0.9.2 + transitivePeerDependencies: + - supports-color + + eslint-plugin-markdownlint@0.6.0(eslint@9.17.0(jiti@2.4.2)): + dependencies: + eslint: 9.17.0(jiti@2.4.2) + markdownlint: 0.34.0 + + eslint-plugin-n@17.15.1(eslint@9.17.0(jiti@2.4.2)): + dependencies: + '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2)) + enhanced-resolve: 5.18.0 + eslint: 9.17.0(jiti@2.4.2) + eslint-plugin-es-x: 7.8.0(eslint@9.17.0(jiti@2.4.2)) + get-tsconfig: 4.8.1 + globals: 15.14.0 + ignore: 5.3.2 + minimatch: 9.0.5 + semver: 7.6.3 + + eslint-plugin-oxlint@0.15.2: + dependencies: + jsonc-parser: 3.3.1 + + eslint-plugin-yaml@1.0.3: + dependencies: + js-yaml: 4.1.0 + jshint: 2.13.6 + + eslint-scope@7.2.2: + dependencies: + esrecurse: 4.3.0 + estraverse: 5.3.0 + + eslint-scope@8.2.0: + dependencies: + esrecurse: 4.3.0 + estraverse: 5.3.0 + + eslint-visitor-keys@3.4.3: {} + + eslint-visitor-keys@4.2.0: {} + + eslint@8.57.1: + dependencies: + '@eslint-community/eslint-utils': 4.4.1(eslint@8.57.1) + '@eslint-community/regexpp': 4.12.1 + '@eslint/eslintrc': 2.1.4 + '@eslint/js': 8.57.1 + '@humanwhocodes/config-array': 0.13.0 + '@humanwhocodes/module-importer': 1.0.1 + '@nodelib/fs.walk': 1.2.8 + '@ungap/structured-clone': 1.2.1 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.6 + debug: 4.4.0 + doctrine: 3.0.0 + escape-string-regexp: 4.0.0 + eslint-scope: 7.2.2 + eslint-visitor-keys: 3.4.3 + espree: 9.6.1 + esquery: 1.6.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 6.0.1 + find-up: 5.0.0 + glob-parent: 6.0.2 + globals: 13.24.0 + graphemer: 1.4.0 + ignore: 5.3.2 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + is-path-inside: 3.0.3 + js-yaml: 4.1.0 + json-stable-stringify-without-jsonify: 1.0.1 + levn: 0.4.1 + lodash.merge: 4.6.2 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.4 + strip-ansi: 6.0.1 + text-table: 0.2.0 + transitivePeerDependencies: + - supports-color + + eslint@9.17.0(jiti@2.4.2): + dependencies: + '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2)) + '@eslint-community/regexpp': 4.12.1 + '@eslint/config-array': 0.19.1 + '@eslint/core': 0.9.1 + '@eslint/eslintrc': 3.2.0 + '@eslint/js': 9.17.0 + '@eslint/plugin-kit': 0.2.4 + '@humanfs/node': 0.16.6 + '@humanwhocodes/module-importer': 1.0.1 + '@humanwhocodes/retry': 0.4.1 + '@types/estree': 1.0.6 + '@types/json-schema': 7.0.15 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.6 + debug: 4.4.0 + escape-string-regexp: 4.0.0 + eslint-scope: 8.2.0 + eslint-visitor-keys: 4.2.0 + espree: 10.3.0 + esquery: 1.6.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 8.0.0 + find-up: 5.0.0 + glob-parent: 6.0.2 + ignore: 5.3.2 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + json-stable-stringify-without-jsonify: 1.0.1 + lodash.merge: 4.6.2 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.4 + optionalDependencies: + jiti: 2.4.2 + transitivePeerDependencies: + - supports-color + + espree@10.3.0: + dependencies: + acorn: 8.14.0 + acorn-jsx: 5.3.2(acorn@8.14.0) + eslint-visitor-keys: 4.2.0 + + espree@9.6.1: + dependencies: + acorn: 8.14.0 + acorn-jsx: 5.3.2(acorn@8.14.0) + eslint-visitor-keys: 3.4.3 + + esprima@4.0.1: {} + + esquery@1.6.0: + dependencies: + estraverse: 5.3.0 + + esrecurse@4.3.0: + dependencies: + estraverse: 5.3.0 + + estraverse@5.3.0: {} + + esutils@2.0.3: {} + + eventemitter3@5.0.1: {} + + execa@8.0.1: + dependencies: + cross-spawn: 7.0.6 + get-stream: 8.0.1 + human-signals: 5.0.0 + is-stream: 3.0.0 + merge-stream: 2.0.0 + npm-run-path: 5.3.0 + onetime: 6.0.0 + signal-exit: 4.1.0 + strip-final-newline: 3.0.0 + + exit@0.1.2: {} + + fast-deep-equal@3.1.3: {} + + fast-equals@5.0.1: {} + + fast-glob@3.3.2: + dependencies: + '@nodelib/fs.stat': 2.0.5 + '@nodelib/fs.walk': 1.2.8 + glob-parent: 5.1.2 + merge2: 1.4.1 + micromatch: 4.0.8 + + fast-json-stable-stringify@2.1.0: {} + + fast-levenshtein@2.0.6: {} + + fast-uri@3.0.3: {} + + fastq@1.18.0: + dependencies: + reusify: 1.0.4 + + fdir@6.4.2(picomatch@4.0.2): + optionalDependencies: + picomatch: 4.0.2 + + file-entry-cache@6.0.1: + dependencies: + flat-cache: 3.2.0 + + file-entry-cache@8.0.0: + dependencies: + flat-cache: 4.0.1 + + file-entry-cache@9.1.0: + dependencies: + flat-cache: 5.0.0 + + fill-range@7.1.1: + dependencies: + to-regex-range: 5.0.1 + + find-up-simple@1.0.0: {} + + find-up@5.0.0: + dependencies: + locate-path: 6.0.0 + path-exists: 4.0.0 + + find-up@7.0.0: + dependencies: + locate-path: 7.2.0 + path-exists: 5.0.0 + unicorn-magic: 0.1.0 + + flat-cache@3.2.0: + dependencies: + flatted: 3.3.2 + keyv: 4.5.4 + rimraf: 3.0.2 + + flat-cache@4.0.1: + dependencies: + flatted: 3.3.2 + keyv: 4.5.4 + + flat-cache@5.0.0: + dependencies: + flatted: 3.3.2 + keyv: 4.5.4 + + flatted@3.3.2: {} + + for-each@0.3.3: + dependencies: + is-callable: 1.2.7 + + foreground-child@3.3.0: + dependencies: + cross-spawn: 7.0.6 + signal-exit: 4.1.0 + + fs.realpath@1.0.0: {} + + function-bind@1.1.2: {} + + function.prototype.name@1.1.8: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.3 + define-properties: 1.2.1 + functions-have-names: 1.2.3 + hasown: 2.0.2 + is-callable: 1.2.7 + + functions-have-names@1.2.3: {} + + gensequence@7.0.0: {} + + get-caller-file@2.0.5: {} + + get-east-asian-width@1.3.0: {} + + get-intrinsic@1.2.6: + dependencies: + call-bind-apply-helpers: 1.0.1 + dunder-proto: 1.0.1 + es-define-property: 1.0.1 + es-errors: 1.3.0 + es-object-atoms: 1.0.0 + function-bind: 1.1.2 + gopd: 1.2.0 + has-symbols: 1.1.0 + hasown: 2.0.2 + math-intrinsics: 1.1.0 + + get-stdin@9.0.0: {} + + get-stream@8.0.1: {} + + get-symbol-description@1.1.0: + dependencies: + call-bound: 1.0.3 + es-errors: 1.3.0 + get-intrinsic: 1.2.6 + + get-tsconfig@4.8.1: + dependencies: + resolve-pkg-maps: 1.0.0 + + git-hooks-list@3.1.0: {} + + git-raw-commits@4.0.0: + dependencies: + dargs: 8.1.0 + meow: 12.1.1 + split2: 4.2.0 + + glob-parent@5.1.2: + dependencies: + is-glob: 4.0.3 + + glob-parent@6.0.2: + dependencies: + is-glob: 4.0.3 + + glob@10.4.5: + dependencies: + foreground-child: 3.3.0 + jackspeak: 3.4.3 + minimatch: 9.0.5 + minipass: 7.1.2 + package-json-from-dist: 1.0.1 + path-scurry: 1.11.1 + + glob@7.2.3: + dependencies: + fs.realpath: 1.0.0 + inflight: 1.0.6 + inherits: 2.0.4 + minimatch: 3.1.2 + once: 1.4.0 + path-is-absolute: 1.0.1 + + global-directory@4.0.1: + dependencies: + ini: 4.1.1 + + globals@13.24.0: + dependencies: + type-fest: 0.20.2 + + globals@14.0.0: {} + + globals@15.14.0: {} + + globalthis@1.0.4: + dependencies: + define-properties: 1.2.1 + gopd: 1.2.0 + + globby@14.0.2: + dependencies: + '@sindresorhus/merge-streams': 2.3.0 + fast-glob: 3.3.2 + ignore: 5.3.2 + path-type: 5.0.0 + slash: 5.1.0 + unicorn-magic: 0.1.0 + + gopd@1.2.0: {} + + graceful-fs@4.2.11: {} + + graphemer@1.4.0: {} + + has-bigints@1.1.0: {} + + has-flag@3.0.0: {} + + has-flag@4.0.0: {} + + has-own-prop@2.0.0: {} + + has-property-descriptors@1.0.2: + dependencies: + es-define-property: 1.0.1 + + has-proto@1.2.0: + dependencies: + dunder-proto: 1.0.1 + + has-symbols@1.1.0: {} + + has-tostringtag@1.0.2: + dependencies: + has-symbols: 1.1.0 + + hasown@2.0.2: + dependencies: + function-bind: 1.1.2 + + htmlparser2@3.8.3: + dependencies: + domelementtype: 1.3.1 + domhandler: 2.3.0 + domutils: 1.5.1 + entities: 1.0.0 + readable-stream: 1.1.14 + + human-signals@5.0.0: {} + + husky@9.1.7: {} + + ignore@5.3.2: {} + + import-fresh@3.3.0: + dependencies: + parent-module: 1.0.1 + resolve-from: 4.0.0 + + import-meta-resolve@4.1.0: {} + + imurmurhash@0.1.4: {} + + inflight@1.0.6: + dependencies: + once: 1.4.0 + wrappy: 1.0.2 + + inherits@2.0.4: {} + + ini@4.1.1: {} + + internal-slot@1.1.0: + dependencies: + es-errors: 1.3.0 + hasown: 2.0.2 + side-channel: 1.1.0 + + is-array-buffer@3.0.5: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.3 + get-intrinsic: 1.2.6 + + is-arrayish@0.2.1: {} + + is-async-function@2.0.0: + dependencies: + has-tostringtag: 1.0.2 + + is-bigint@1.1.0: + dependencies: + has-bigints: 1.1.0 + + is-boolean-object@1.2.1: + dependencies: + call-bound: 1.0.3 + has-tostringtag: 1.0.2 + + is-bun-module@1.3.0: + dependencies: + semver: 7.6.3 + + is-callable@1.2.7: {} + + is-core-module@2.16.1: + dependencies: + hasown: 2.0.2 + + is-data-view@1.0.2: + dependencies: + call-bound: 1.0.3 + get-intrinsic: 1.2.6 + is-typed-array: 1.1.15 + + is-date-object@1.1.0: + dependencies: + call-bound: 1.0.3 + has-tostringtag: 1.0.2 + + is-extglob@2.1.1: {} + + is-finalizationregistry@1.1.1: + dependencies: + call-bound: 1.0.3 + + is-fullwidth-code-point@3.0.0: {} + + is-fullwidth-code-point@4.0.0: {} + + is-fullwidth-code-point@5.0.0: + dependencies: + get-east-asian-width: 1.3.0 + + is-generator-function@1.0.10: + dependencies: + has-tostringtag: 1.0.2 + + is-glob@4.0.3: + dependencies: + is-extglob: 2.1.1 + + is-map@2.0.3: {} + + is-number-object@1.1.1: + dependencies: + call-bound: 1.0.3 + has-tostringtag: 1.0.2 + + is-number@7.0.0: {} + + is-obj@2.0.0: {} + + is-path-inside@3.0.3: {} + + is-plain-obj@4.1.0: {} + + is-regex@1.2.1: + dependencies: + call-bound: 1.0.3 + gopd: 1.2.0 + has-tostringtag: 1.0.2 + hasown: 2.0.2 + + is-set@2.0.3: {} + + is-shared-array-buffer@1.0.4: + dependencies: + call-bound: 1.0.3 + + is-stream@3.0.0: {} + + is-string@1.1.1: + dependencies: + call-bound: 1.0.3 + has-tostringtag: 1.0.2 + + is-symbol@1.1.1: + dependencies: + call-bound: 1.0.3 + has-symbols: 1.1.0 + safe-regex-test: 1.1.0 + + is-text-path@2.0.0: + dependencies: + text-extensions: 2.4.0 + + is-typed-array@1.1.15: + dependencies: + which-typed-array: 1.1.18 + + is-weakmap@2.0.2: {} + + is-weakref@1.1.0: + dependencies: + call-bound: 1.0.3 + + is-weakset@2.0.4: + dependencies: + call-bound: 1.0.3 + get-intrinsic: 1.2.6 + + isarray@0.0.1: {} + + isarray@2.0.5: {} + + isexe@2.0.0: {} + + jackspeak@3.4.3: + dependencies: + '@isaacs/cliui': 8.0.2 + optionalDependencies: + '@pkgjs/parseargs': 0.11.0 + + jiti@2.4.2: {} + + js-tokens@4.0.0: {} + + js-yaml@4.1.0: + dependencies: + argparse: 2.0.1 + + jsdoc-type-pratt-parser@4.1.0: {} + + jshint@2.13.6: + dependencies: + cli: 1.0.1 + console-browserify: 1.1.0 + exit: 0.1.2 + htmlparser2: 3.8.3 + lodash: 4.17.21 + minimatch: 3.0.8 + strip-json-comments: 1.0.4 + + json-buffer@3.0.1: {} + + json-parse-even-better-errors@2.3.1: {} + + json-schema-traverse@0.4.1: {} + + json-schema-traverse@1.0.0: {} + + json-stable-stringify-without-jsonify@1.0.1: {} + + json5@1.0.2: + dependencies: + minimist: 1.2.8 + + jsonc-parser@3.3.1: {} + + jsonparse@1.3.1: {} + + keyv@4.5.4: + dependencies: + json-buffer: 3.0.1 + + klona@2.0.6: {} + + levn@0.4.1: + dependencies: + prelude-ls: 1.2.1 + type-check: 0.4.0 + + lilconfig@3.1.3: {} + + lines-and-columns@1.2.4: {} + + linkify-it@5.0.0: + dependencies: + uc.micro: 2.1.0 + + lint-staged@15.2.11: + dependencies: + chalk: 5.3.0 + commander: 12.1.0 + debug: 4.4.0 + execa: 8.0.1 + lilconfig: 3.1.3 + listr2: 8.2.5 + micromatch: 4.0.8 + pidtree: 0.6.0 + string-argv: 0.3.2 + yaml: 2.6.1 + transitivePeerDependencies: + - supports-color + + listr2@8.2.5: + dependencies: + cli-truncate: 4.0.0 + colorette: 2.0.20 + eventemitter3: 5.0.1 + log-update: 6.1.0 + rfdc: 1.4.1 + wrap-ansi: 9.0.0 + + locate-path@6.0.0: + dependencies: + p-locate: 5.0.0 + + locate-path@7.2.0: + dependencies: + p-locate: 6.0.0 + + lodash.camelcase@4.3.0: {} + + lodash.isplainobject@4.0.6: {} + + lodash.kebabcase@4.1.1: {} + + lodash.merge@4.6.2: {} + + lodash.mergewith@4.6.2: {} + + lodash.snakecase@4.1.1: {} + + lodash.startcase@4.4.0: {} + + lodash.uniq@4.5.0: {} + + lodash.upperfirst@4.3.1: {} + + lodash@4.17.21: {} + + log-update@6.1.0: + dependencies: + ansi-escapes: 7.0.0 + cli-cursor: 5.0.0 + slice-ansi: 7.1.0 + strip-ansi: 7.1.0 + wrap-ansi: 9.0.0 + + longest-streak@3.1.0: {} + + lru-cache@10.4.3: {} + + markdown-it@14.1.0: + dependencies: + argparse: 2.0.1 + entities: 4.5.0 + linkify-it: 5.0.0 + mdurl: 2.0.0 + punycode.js: 2.3.1 + uc.micro: 2.1.0 + + markdown-table@3.0.4: {} + + markdownlint-cli2-formatter-default@0.0.5(markdownlint-cli2@0.16.0): + dependencies: + markdownlint-cli2: 0.16.0 + + markdownlint-cli2@0.16.0: + dependencies: + globby: 14.0.2 + js-yaml: 4.1.0 + jsonc-parser: 3.3.1 + markdownlint: 0.36.1 + markdownlint-cli2-formatter-default: 0.0.5(markdownlint-cli2@0.16.0) + micromatch: 4.0.8 + + markdownlint-micromark@0.1.12: {} + + markdownlint-micromark@0.1.9: {} + + markdownlint@0.34.0: + dependencies: + markdown-it: 14.1.0 + markdownlint-micromark: 0.1.9 + + markdownlint@0.36.1: + dependencies: + markdown-it: 14.1.0 + markdownlint-micromark: 0.1.12 + + math-intrinsics@1.1.0: {} + + mdast-util-find-and-replace@3.0.1: + dependencies: + '@types/mdast': 4.0.4 + escape-string-regexp: 5.0.0 + unist-util-is: 6.0.0 + unist-util-visit-parents: 6.0.1 + + mdast-util-from-markdown@2.0.2: + dependencies: + '@types/mdast': 4.0.4 + '@types/unist': 3.0.3 + decode-named-character-reference: 1.0.2 + devlop: 1.1.0 + mdast-util-to-string: 4.0.0 + micromark: 4.0.1 + micromark-util-decode-numeric-character-reference: 2.0.2 + micromark-util-decode-string: 2.0.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.1 + unist-util-stringify-position: 4.0.0 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm-autolink-literal@2.0.1: + dependencies: + '@types/mdast': 4.0.4 + ccount: 2.0.1 + devlop: 1.1.0 + mdast-util-find-and-replace: 3.0.1 + micromark-util-character: 2.1.1 + + mdast-util-gfm-footnote@2.0.0: + dependencies: + '@types/mdast': 4.0.4 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + micromark-util-normalize-identifier: 2.0.1 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm-strikethrough@2.0.0: + dependencies: + '@types/mdast': 4.0.4 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm-table@2.0.0: + dependencies: + '@types/mdast': 4.0.4 + devlop: 1.1.0 + markdown-table: 3.0.4 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm-task-list-item@2.0.0: + dependencies: + '@types/mdast': 4.0.4 + devlop: 1.1.0 + mdast-util-from-markdown: 2.0.2 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-gfm@3.0.0: + dependencies: + mdast-util-from-markdown: 2.0.2 + mdast-util-gfm-autolink-literal: 2.0.1 + mdast-util-gfm-footnote: 2.0.0 + mdast-util-gfm-strikethrough: 2.0.0 + mdast-util-gfm-table: 2.0.0 + mdast-util-gfm-task-list-item: 2.0.0 + mdast-util-to-markdown: 2.1.2 + transitivePeerDependencies: + - supports-color + + mdast-util-phrasing@4.1.0: + dependencies: + '@types/mdast': 4.0.4 + unist-util-is: 6.0.0 + + mdast-util-to-markdown@2.1.2: + dependencies: + '@types/mdast': 4.0.4 + '@types/unist': 3.0.3 + longest-streak: 3.1.0 + mdast-util-phrasing: 4.1.0 + mdast-util-to-string: 4.0.0 + micromark-util-classify-character: 2.0.1 + micromark-util-decode-string: 2.0.1 + unist-util-visit: 5.0.0 + zwitch: 2.0.4 + + mdast-util-to-string@4.0.0: + dependencies: + '@types/mdast': 4.0.4 + + mdast@3.0.0: {} + + mdurl@2.0.0: {} + + meow@12.1.1: {} + + merge-stream@2.0.0: {} + + merge2@1.4.1: {} + + micromark-core-commonmark@2.0.2: + dependencies: + decode-named-character-reference: 1.0.2 + devlop: 1.1.0 + micromark-factory-destination: 2.0.1 + micromark-factory-label: 2.0.1 + micromark-factory-space: 2.0.1 + micromark-factory-title: 2.0.1 + micromark-factory-whitespace: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-chunked: 2.0.1 + micromark-util-classify-character: 2.0.1 + micromark-util-html-tag-name: 2.0.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-resolve-all: 2.0.1 + micromark-util-subtokenize: 2.0.3 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.1 + + micromark-extension-gfm-autolink-literal@2.1.0: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-sanitize-uri: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.1 + + micromark-extension-gfm-footnote@2.1.0: + dependencies: + devlop: 1.1.0 + micromark-core-commonmark: 2.0.2 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-sanitize-uri: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.1 + + micromark-extension-gfm-strikethrough@2.1.0: + dependencies: + devlop: 1.1.0 + micromark-util-chunked: 2.0.1 + micromark-util-classify-character: 2.0.1 + micromark-util-resolve-all: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.1 + + micromark-extension-gfm-table@2.1.0: + dependencies: + devlop: 1.1.0 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.1 + + micromark-extension-gfm-tagfilter@2.0.0: + dependencies: + micromark-util-types: 2.0.1 + + micromark-extension-gfm-task-list-item@2.1.0: + dependencies: + devlop: 1.1.0 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.1 + + micromark-extension-gfm@3.0.0: + dependencies: + micromark-extension-gfm-autolink-literal: 2.1.0 + micromark-extension-gfm-footnote: 2.1.0 + micromark-extension-gfm-strikethrough: 2.1.0 + micromark-extension-gfm-table: 2.1.0 + micromark-extension-gfm-tagfilter: 2.0.0 + micromark-extension-gfm-task-list-item: 2.1.0 + micromark-util-combine-extensions: 2.0.1 + micromark-util-types: 2.0.1 + + micromark-factory-destination@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.1 + + micromark-factory-label@2.0.1: + dependencies: + devlop: 1.1.0 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.1 + + micromark-factory-space@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-types: 2.0.1 + + micromark-factory-title@2.0.1: + dependencies: + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.1 + + micromark-factory-whitespace@2.0.1: + dependencies: + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.1 + + micromark-util-character@2.1.1: + dependencies: + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.1 + + micromark-util-chunked@2.0.1: + dependencies: + micromark-util-symbol: 2.0.1 + + micromark-util-classify-character@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.1 + + micromark-util-combine-extensions@2.0.1: + dependencies: + micromark-util-chunked: 2.0.1 + micromark-util-types: 2.0.1 + + micromark-util-decode-numeric-character-reference@2.0.2: + dependencies: + micromark-util-symbol: 2.0.1 + + micromark-util-decode-string@2.0.1: + dependencies: + decode-named-character-reference: 1.0.2 + micromark-util-character: 2.1.1 + micromark-util-decode-numeric-character-reference: 2.0.2 + micromark-util-symbol: 2.0.1 + + micromark-util-encode@2.0.1: {} + + micromark-util-html-tag-name@2.0.1: {} + + micromark-util-normalize-identifier@2.0.1: + dependencies: + micromark-util-symbol: 2.0.1 + + micromark-util-resolve-all@2.0.1: + dependencies: + micromark-util-types: 2.0.1 + + micromark-util-sanitize-uri@2.0.1: + dependencies: + micromark-util-character: 2.1.1 + micromark-util-encode: 2.0.1 + micromark-util-symbol: 2.0.1 + + micromark-util-subtokenize@2.0.3: + dependencies: + devlop: 1.1.0 + micromark-util-chunked: 2.0.1 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.1 + + micromark-util-symbol@2.0.1: {} + + micromark-util-types@2.0.1: {} + + micromark@4.0.1: + dependencies: + '@types/debug': 4.1.12 + debug: 4.4.0 + decode-named-character-reference: 1.0.2 + devlop: 1.1.0 + micromark-core-commonmark: 2.0.2 + micromark-factory-space: 2.0.1 + micromark-util-character: 2.1.1 + micromark-util-chunked: 2.0.1 + micromark-util-combine-extensions: 2.0.1 + micromark-util-decode-numeric-character-reference: 2.0.2 + micromark-util-encode: 2.0.1 + micromark-util-normalize-identifier: 2.0.1 + micromark-util-resolve-all: 2.0.1 + micromark-util-sanitize-uri: 2.0.1 + micromark-util-subtokenize: 2.0.3 + micromark-util-symbol: 2.0.1 + micromark-util-types: 2.0.1 + transitivePeerDependencies: + - supports-color + + micromatch@4.0.8: + dependencies: + braces: 3.0.3 + picomatch: 2.3.1 + + mimic-fn@4.0.0: {} + + mimic-function@5.0.1: {} + + minimatch@3.0.8: + dependencies: + brace-expansion: 1.1.11 + + minimatch@3.1.2: + dependencies: + brace-expansion: 1.1.11 + + minimatch@9.0.1: + dependencies: + brace-expansion: 2.0.1 + + minimatch@9.0.5: + dependencies: + brace-expansion: 2.0.1 + + minimist@1.2.8: {} + + minipass@7.1.2: {} + + ms@2.1.3: {} + + mvdan-sh@0.10.1: {} + + natural-compare@1.4.0: {} + + npm-run-path@5.3.0: + dependencies: + path-key: 4.0.0 + + object-inspect@1.13.3: {} + + object-keys@1.1.1: {} + + object.assign@4.1.7: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.3 + define-properties: 1.2.1 + es-object-atoms: 1.0.0 + has-symbols: 1.1.0 + object-keys: 1.1.1 + + object.entries@1.1.8: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-object-atoms: 1.0.0 + + object.fromentries@2.0.8: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.23.7 + es-object-atoms: 1.0.0 + + object.groupby@1.0.3: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-abstract: 1.23.7 + + object.values@1.2.1: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.3 + define-properties: 1.2.1 + es-object-atoms: 1.0.0 + + once@1.4.0: + dependencies: + wrappy: 1.0.2 + + onetime@6.0.0: + dependencies: + mimic-fn: 4.0.0 + + onetime@7.0.0: + dependencies: + mimic-function: 5.0.1 + + optionator@0.9.4: + dependencies: + deep-is: 0.1.4 + fast-levenshtein: 2.0.6 + levn: 0.4.1 + prelude-ls: 1.2.1 + type-check: 0.4.0 + word-wrap: 1.2.5 + + oxlint@0.15.3: + optionalDependencies: + '@oxlint/darwin-arm64': 0.15.3 + '@oxlint/darwin-x64': 0.15.3 + '@oxlint/linux-arm64-gnu': 0.15.3 + '@oxlint/linux-arm64-musl': 0.15.3 + '@oxlint/linux-x64-gnu': 0.15.3 + '@oxlint/linux-x64-musl': 0.15.3 + '@oxlint/win32-arm64': 0.15.3 + '@oxlint/win32-x64': 0.15.3 + + p-limit@3.1.0: + dependencies: + yocto-queue: 0.1.0 + + p-limit@4.0.0: + dependencies: + yocto-queue: 1.1.1 + + p-locate@5.0.0: + dependencies: + p-limit: 3.1.0 + + p-locate@6.0.0: + dependencies: + p-limit: 4.0.0 + + package-json-from-dist@1.0.1: {} + + parent-module@1.0.1: + dependencies: + callsites: 3.1.0 + + parent-module@2.0.0: + dependencies: + callsites: 3.1.0 + + parse-imports@2.2.1: + dependencies: + es-module-lexer: 1.5.4 + slashes: 3.0.12 + + parse-json@5.2.0: + dependencies: + '@babel/code-frame': 7.26.2 + error-ex: 1.3.2 + json-parse-even-better-errors: 2.3.1 + lines-and-columns: 1.2.4 + + path-exists@4.0.0: {} + + path-exists@5.0.0: {} + + path-is-absolute@1.0.1: {} + + path-key@3.1.1: {} + + path-key@4.0.0: {} + + path-parse@1.0.7: {} + + path-scurry@1.11.1: + dependencies: + lru-cache: 10.4.3 + minipass: 7.1.2 + + path-type@5.0.0: {} + + picocolors@1.1.1: {} + + picomatch@2.3.1: {} + + picomatch@4.0.2: {} + + pidtree@0.6.0: {} + + possible-typed-array-names@1.0.0: {} + + prelude-ls@1.2.1: {} + + prettier-plugin-packagejson@2.5.6(prettier@3.4.2): + dependencies: + sort-package-json: 2.12.0 + synckit: 0.9.2 + optionalDependencies: + prettier: 3.4.2 + + prettier-plugin-sh@0.14.0(prettier@3.4.2): + dependencies: + mvdan-sh: 0.10.1 + prettier: 3.4.2 + sh-syntax: 0.4.2 + + prettier-plugin-sort-json@4.0.0(prettier@3.4.2): + dependencies: + prettier: 3.4.2 + + prettier@3.4.2: {} + + punycode.js@2.3.1: {} + + punycode@2.3.1: {} + + queue-microtask@1.2.3: {} + + readable-stream@1.1.14: + dependencies: + core-util-is: 1.0.3 + inherits: 2.0.4 + isarray: 0.0.1 + string_decoder: 0.10.31 + + reflect.getprototypeof@1.0.9: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + dunder-proto: 1.0.1 + es-abstract: 1.23.7 + es-errors: 1.3.0 + get-intrinsic: 1.2.6 + gopd: 1.2.0 + which-builtin-type: 1.2.1 + + regexp.prototype.flags@1.5.3: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-errors: 1.3.0 + set-function-name: 2.0.2 + + repeat-string@1.6.1: {} + + require-directory@2.1.1: {} + + require-from-string@2.0.2: {} + + resolve-from@4.0.0: {} + + resolve-from@5.0.0: {} + + resolve-pkg-maps@1.0.0: {} + + resolve@1.22.10: + dependencies: + is-core-module: 2.16.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + + restore-cursor@5.1.0: + dependencies: + onetime: 7.0.0 + signal-exit: 4.1.0 + + reusify@1.0.4: {} + + rfdc@1.4.1: {} + + rimraf@3.0.2: + dependencies: + glob: 7.2.3 + + rimraf@5.0.10: + dependencies: + glob: 10.4.5 + + run-parallel@1.2.0: + dependencies: + queue-microtask: 1.2.3 + + safe-array-concat@1.1.3: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.3 + get-intrinsic: 1.2.6 + has-symbols: 1.1.0 + isarray: 2.0.5 + + safe-regex-test@1.1.0: + dependencies: + call-bound: 1.0.3 + es-errors: 1.3.0 + is-regex: 1.2.1 + + semver@6.3.1: {} + + semver@7.6.3: {} + + set-function-length@1.2.2: + dependencies: + define-data-property: 1.1.4 + es-errors: 1.3.0 + function-bind: 1.1.2 + get-intrinsic: 1.2.6 + gopd: 1.2.0 + has-property-descriptors: 1.0.2 + + set-function-name@2.0.2: + dependencies: + define-data-property: 1.1.4 + es-errors: 1.3.0 + functions-have-names: 1.2.3 + has-property-descriptors: 1.0.2 + + sh-syntax@0.4.2: + dependencies: + tslib: 2.8.1 + + shebang-command@2.0.0: + dependencies: + shebang-regex: 3.0.0 + + shebang-regex@3.0.0: {} + + side-channel-list@1.0.0: + dependencies: + es-errors: 1.3.0 + object-inspect: 1.13.3 + + side-channel-map@1.0.1: + dependencies: + call-bound: 1.0.3 + es-errors: 1.3.0 + get-intrinsic: 1.2.6 + object-inspect: 1.13.3 + + side-channel-weakmap@1.0.2: + dependencies: + call-bound: 1.0.3 + es-errors: 1.3.0 + get-intrinsic: 1.2.6 + object-inspect: 1.13.3 + side-channel-map: 1.0.1 + + side-channel@1.1.0: + dependencies: + es-errors: 1.3.0 + object-inspect: 1.13.3 + side-channel-list: 1.0.0 + side-channel-map: 1.0.1 + side-channel-weakmap: 1.0.2 + + signal-exit@4.1.0: {} + + slash@5.1.0: {} + + slashes@3.0.12: {} + + slice-ansi@5.0.0: + dependencies: + ansi-styles: 6.2.1 + is-fullwidth-code-point: 4.0.0 + + slice-ansi@7.1.0: + dependencies: + ansi-styles: 6.2.1 + is-fullwidth-code-point: 5.0.0 + + sort-object-keys@1.1.3: {} + + sort-package-json@2.12.0: + dependencies: + detect-indent: 7.0.1 + detect-newline: 4.0.1 + get-stdin: 9.0.0 + git-hooks-list: 3.1.0 + is-plain-obj: 4.1.0 + semver: 7.6.3 + sort-object-keys: 1.1.3 + tinyglobby: 0.2.10 + + spdx-exceptions@2.5.0: {} + + spdx-expression-parse@4.0.0: + dependencies: + spdx-exceptions: 2.5.0 + spdx-license-ids: 3.0.20 + + spdx-license-ids@3.0.20: {} + + split2@4.2.0: {} + + stable-hash@0.0.4: {} + + string-argv@0.3.2: {} + + string-width@4.2.3: + dependencies: + emoji-regex: 8.0.0 + is-fullwidth-code-point: 3.0.0 + strip-ansi: 6.0.1 + + string-width@5.1.2: + dependencies: + eastasianwidth: 0.2.0 + emoji-regex: 9.2.2 + strip-ansi: 7.1.0 + + string-width@7.2.0: + dependencies: + emoji-regex: 10.4.0 + get-east-asian-width: 1.3.0 + strip-ansi: 7.1.0 + + string.prototype.trim@1.2.10: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.3 + define-data-property: 1.1.4 + define-properties: 1.2.1 + es-abstract: 1.23.7 + es-object-atoms: 1.0.0 + has-property-descriptors: 1.0.2 + + string.prototype.trimend@1.0.9: + dependencies: + call-bind: 1.0.8 + call-bound: 1.0.3 + define-properties: 1.2.1 + es-object-atoms: 1.0.0 + + string.prototype.trimstart@1.0.8: + dependencies: + call-bind: 1.0.8 + define-properties: 1.2.1 + es-object-atoms: 1.0.0 + + string_decoder@0.10.31: {} + + strip-ansi@6.0.1: + dependencies: + ansi-regex: 5.0.1 + + strip-ansi@7.1.0: + dependencies: + ansi-regex: 6.1.0 + + strip-bom@3.0.0: {} + + strip-final-newline@3.0.0: {} + + strip-json-comments@1.0.4: {} + + strip-json-comments@3.1.1: {} + + supports-color@5.5.0: + dependencies: + has-flag: 3.0.0 + + supports-color@7.2.0: + dependencies: + has-flag: 4.0.0 + + supports-preserve-symlinks-flag@1.0.0: {} + + synckit@0.9.2: + dependencies: + '@pkgr/core': 0.1.1 + tslib: 2.8.1 + + tapable@2.2.1: {} + + text-extensions@2.4.0: {} + + text-table@0.2.0: {} + + through@2.3.8: {} + + tinyexec@0.3.1: {} + + tinyglobby@0.2.10: + dependencies: + fdir: 6.4.2(picomatch@4.0.2) + picomatch: 4.0.2 + + to-regex-range@5.0.1: + dependencies: + is-number: 7.0.0 + + ts-api-utils@1.4.3(typescript@5.7.2): + dependencies: + typescript: 5.7.2 + + tsconfig-paths@3.15.0: + dependencies: + '@types/json5': 0.0.29 + json5: 1.0.2 + minimist: 1.2.8 + strip-bom: 3.0.0 + + tslib@2.8.1: {} + + type-check@0.4.0: + dependencies: + prelude-ls: 1.2.1 + + type-fest@0.20.2: {} + + typed-array-buffer@1.0.3: + dependencies: + call-bound: 1.0.3 + es-errors: 1.3.0 + is-typed-array: 1.1.15 + + typed-array-byte-length@1.0.3: + dependencies: + call-bind: 1.0.8 + for-each: 0.3.3 + gopd: 1.2.0 + has-proto: 1.2.0 + is-typed-array: 1.1.15 + + typed-array-byte-offset@1.0.4: + dependencies: + available-typed-arrays: 1.0.7 + call-bind: 1.0.8 + for-each: 0.3.3 + gopd: 1.2.0 + has-proto: 1.2.0 + is-typed-array: 1.1.15 + reflect.getprototypeof: 1.0.9 + + typed-array-length@1.0.7: + dependencies: + call-bind: 1.0.8 + for-each: 0.3.3 + gopd: 1.2.0 + is-typed-array: 1.1.15 + possible-typed-array-names: 1.0.0 + reflect.getprototypeof: 1.0.9 + + typescript-eslint-language-service@5.0.5(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2): + dependencies: + '@typescript-eslint/parser': 8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) + eslint: 9.17.0(jiti@2.4.2) + typescript: 5.7.2 + + typescript-eslint@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2): + dependencies: + '@typescript-eslint/eslint-plugin': 8.18.2(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) + '@typescript-eslint/parser': 8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) + '@typescript-eslint/utils': 8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) + eslint: 9.17.0(jiti@2.4.2) + typescript: 5.7.2 + transitivePeerDependencies: + - supports-color + + typescript@5.7.2: {} + + uc.micro@2.1.0: {} + + unbox-primitive@1.1.0: + dependencies: + call-bound: 1.0.3 + has-bigints: 1.1.0 + has-symbols: 1.1.0 + which-boxed-primitive: 1.1.1 + + undici-types@6.20.0: {} + + unicorn-magic@0.1.0: {} + + unist-util-is@6.0.0: + dependencies: + '@types/unist': 3.0.3 + + unist-util-stringify-position@4.0.0: + dependencies: + '@types/unist': 3.0.3 + + unist-util-visit-parents@6.0.1: + dependencies: + '@types/unist': 3.0.3 + unist-util-is: 6.0.0 + + unist-util-visit@5.0.0: + dependencies: + '@types/unist': 3.0.3 + unist-util-is: 6.0.0 + unist-util-visit-parents: 6.0.1 + + uri-js@4.4.1: + dependencies: + punycode: 2.3.1 + + vscode-languageserver-textdocument@1.0.12: {} + + vscode-uri@3.0.8: {} + + which-boxed-primitive@1.1.1: + dependencies: + is-bigint: 1.1.0 + is-boolean-object: 1.2.1 + is-number-object: 1.1.1 + is-string: 1.1.1 + is-symbol: 1.1.1 + + which-builtin-type@1.2.1: + dependencies: + call-bound: 1.0.3 + function.prototype.name: 1.1.8 + has-tostringtag: 1.0.2 + is-async-function: 2.0.0 + is-date-object: 1.1.0 + is-finalizationregistry: 1.1.1 + is-generator-function: 1.0.10 + is-regex: 1.2.1 + is-weakref: 1.1.0 + isarray: 2.0.5 + which-boxed-primitive: 1.1.1 + which-collection: 1.0.2 + which-typed-array: 1.1.18 + + which-collection@1.0.2: + dependencies: + is-map: 2.0.3 + is-set: 2.0.3 + is-weakmap: 2.0.2 + is-weakset: 2.0.4 + + which-typed-array@1.1.18: + dependencies: + available-typed-arrays: 1.0.7 + call-bind: 1.0.8 + call-bound: 1.0.3 + for-each: 0.3.3 + gopd: 1.2.0 + has-tostringtag: 1.0.2 + + which@2.0.2: + dependencies: + isexe: 2.0.0 + + word-wrap@1.2.5: {} + + wrap-ansi@7.0.0: + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + + wrap-ansi@8.1.0: + dependencies: + ansi-styles: 6.2.1 + string-width: 5.1.2 + strip-ansi: 7.1.0 + + wrap-ansi@9.0.0: + dependencies: + ansi-styles: 6.2.1 + string-width: 7.2.0 + strip-ansi: 7.1.0 + + wrappy@1.0.2: {} + + xdg-basedir@5.1.0: {} + + y18n@5.0.8: {} + + yaml@2.6.1: {} + + yargs-parser@21.1.1: {} + + yargs@17.7.2: + dependencies: + cliui: 8.0.1 + escalade: 3.2.0 + get-caller-file: 2.0.5 + require-directory: 2.1.1 + string-width: 4.2.3 + y18n: 5.0.8 + yargs-parser: 21.1.1 + + yocto-queue@0.1.0: {} + + yocto-queue@1.1.1: {} + + zwitch@2.0.4: {} diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml new file mode 100644 index 00000000..d05a7e7d --- /dev/null +++ b/pnpm-workspace.yaml @@ -0,0 +1,2 @@ +packages: + - . diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 00000000..211045c3 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,3 @@ +{ + "extends": "@kurone-kito/typescript-config/tsconfig.json" +} From 39bc09d86bee1efb8a9d5ea5d81714cb2445e176 Mon Sep 17 00:00:00 2001 From: kurone-kito Date: Mon, 23 Dec 2024 07:39:17 +0900 Subject: [PATCH 03/13] style: linted --- .github/workflows/push.yml | 2 +- .../Runtime/_Meta.json | 36 +++++++++---------- 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index ec0eb8bd..9b155c5b 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -20,7 +20,7 @@ jobs: uses: actions/checkout@v4 - name: Zip the Package for testing run: zip -r "${{ github.workspace }}/${{ env.zipFile }}" . - working-directory: "${{ env.packagePath }}" + working-directory: '${{ env.packagePath }}' - name: Build a list of .meta files for future use run: find "${{ env.packagePath }}/" -name '*.meta' -type f >> metaList - name: Make a UnityPackage version of the Package for release diff --git a/Packages/black.kit.launchpadicons/Runtime/_Meta.json b/Packages/black.kit.launchpadicons/Runtime/_Meta.json index eee44371..697a1370 100644 --- a/Packages/black.kit.launchpadicons/Runtime/_Meta.json +++ b/Packages/black.kit.launchpadicons/Runtime/_Meta.json @@ -1,22 +1,4 @@ { - "newIcons": [ - "Caution", - "CircleHandle", - "CircleMinus", - "CirclePlus", - "CircleStar", - "Document", - "InfoBlock", - "Mic", - "MoveCircle", - "MoveSquare", - "NextTriThin", - "Portraits", - "PreviousTriThin", - "PreviousTriW", - "Pulse", - "Tip" - ], "coloredIcons": [ "CircleHandle", "Cursor", @@ -39,5 +21,23 @@ "VennMonoPcQ", "VennMonoQ", "VRC" + ], + "newIcons": [ + "Caution", + "CircleHandle", + "CircleMinus", + "CirclePlus", + "CircleStar", + "Document", + "InfoBlock", + "Mic", + "MoveCircle", + "MoveSquare", + "NextTriThin", + "Portraits", + "PreviousTriThin", + "PreviousTriW", + "Pulse", + "Tip" ] } From f002071805194188ddcd3bdc59d0338bec94d900 Mon Sep 17 00:00:00 2001 From: kurone-kito Date: Mon, 23 Dec 2024 21:15:18 +0900 Subject: [PATCH 04/13] chore(node:root): customized the project --- .github/workflows/build-listing.yml | 19 +++++++++++++++++++ .github/workflows/push.yml | 12 ++++-------- package.json | 19 ++++++++++--------- tsconfig.json | 3 +++ 4 files changed, 36 insertions(+), 17 deletions(-) diff --git a/.github/workflows/build-listing.yml b/.github/workflows/build-listing.yml index 6632a655..38675b7a 100644 --- a/.github/workflows/build-listing.yml +++ b/.github/workflows/build-listing.yml @@ -39,6 +39,10 @@ jobs: url: ${{ steps.deployment.outputs.page_url }} runs-on: ubuntu-latest steps: + - name: Set git to use LF + run: | + git config --global core.autocrlf false + git config --global core.eol lf - name: Checkout Local Repository uses: actions/checkout@v4 - name: Checkout Automation Repository without removing prior checkouts @@ -47,6 +51,21 @@ jobs: repository: vrchat-community/package-list-action path: ${{ env.pathToCi }} clean: false + - name: Pre-prepare the Node.js environment + uses: actions/setup-node@v4 + with: + node-version-file: .node-version + - name: Enable the corepack because of the pnpm + run: corepack enable + - name: Post-prepare the Node.js environment + uses: actions/setup-node@v4 + with: + cache: ${{ !env.ACT && 'pnpm' || '' }} + node-version-file: .node-version + - env: + HUSKY: 0 + name: Install the dependencies + run: corepack up - name: Deploy the global.json file run: cp "${{ github.workspace }}/global.json" "${{ env.pathToCi }}/" - name: Load cached data from previous runs diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 9b155c5b..ea7a56e2 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -60,17 +60,17 @@ jobs: git config --global core.eol lf - name: Stages the pushed branch uses: actions/checkout@v4 - - name: Pre-prepare the Node.js version ${{ matrix.node-version }} environment + - name: Pre-prepare the Node.js environment uses: actions/setup-node@v4 with: - node-version: ${{ matrix.node-version }} + node-version-file: .node-version - name: Enable the corepack because of the pnpm run: corepack enable - - name: Post-prepare the Node.js version ${{ matrix.node-version }} environment + - name: Post-prepare the Node.js environment uses: actions/setup-node@v4 with: cache: ${{ !env.ACT && 'pnpm' || '' }} - node-version: ${{ matrix.node-version }} + node-version-file: .node-version - env: HUSKY: 0 name: Install the dependencies @@ -79,10 +79,6 @@ jobs: run: pnpm run test strategy: matrix: - node-version: - - 18.x - - 20.x - - 21.x platform: - os: ubuntu-latest shell: bash diff --git a/package.json b/package.json index f66f1bc2..37dc32c5 100644 --- a/package.json +++ b/package.json @@ -1,16 +1,17 @@ { - "name": "@kurone-kito/yarn-project-boilerplate", + "name": "@kurone-kito/launchpad-icons", "version": "0.1.0", "private": true, - "description": "The boilerplate project of the Node.js / Yarn", + "description": "the icons VPM asset like the VRChat LaunchPad for the VRChat and Web", "keywords": [ - "boilerplate", - "template" + "Icons", + "LaunchPad", + "VRChat" ], - "homepage": "https://github.com/kurone-kito/yarn-project-boilerplate#readme", - "bugs": "https://github.com/kurone-kito/yarn-project-boilerplate/issues", - "repository": "github:kurone-kito/yarn-project-boilerplate", - "license": "MIT", + "homepage": "https://github.com/kurone-kito/launchpad-icons#readme", + "bugs": "https://github.com/kurone-kito/launchpad-icons/issues", + "repository": "github:kurone-kito/launchpad-icons", + "license": "CC-BY-NC-4.0", "author": "kurone-kito (https://kit.black/)", "type": "module", "files": [], @@ -59,7 +60,7 @@ }, "packageManager": "pnpm@9.15.1+sha512.1acb565e6193efbebda772702950469150cf12bcc764262e7587e71d19dc98a423dff9536e57ea44c49bdf790ff694e83c27be5faa23d67e0c033b583be4bfcf", "engines": { - "node": ">=18.20" + "node": "^18.20 || ^20.10 || >=22" }, "publishConfig": { "access": "public" diff --git a/tsconfig.json b/tsconfig.json index 211045c3..bff331f5 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,3 +1,6 @@ { + "compilerOptions": { + "noEmit": true + }, "extends": "@kurone-kito/typescript-config/tsconfig.json" } From 659301321a359fa9acc3d41e5293735162b64932 Mon Sep 17 00:00:00 2001 From: kurone-kito Date: Mon, 23 Dec 2024 21:51:11 +0900 Subject: [PATCH 05/13] chore(node:ALL): added the workspaces --- .github/workflows/build-listing.yml | 2 ++ .github/workflows/push.yml | 2 ++ .npmrc | 2 ++ nodePackages/builder/README.md | 7 +++++ nodePackages/builder/package.json | 31 +++++++++++++++++++++ nodePackages/react/README.md | 11 ++++++++ nodePackages/react/package.json | 34 +++++++++++++++++++++++ nodePackages/solid/README.md | 11 ++++++++ nodePackages/solid/package.json | 35 ++++++++++++++++++++++++ nodePackages/web/README.md | 5 ++++ nodePackages/web/package.json | 42 +++++++++++++++++++++++++++++ package.json | 21 ++++++++++++--- pnpm-lock.yaml | 20 ++++++++++++++ pnpm-workspace.yaml | 2 +- 14 files changed, 220 insertions(+), 5 deletions(-) create mode 100644 nodePackages/builder/README.md create mode 100644 nodePackages/builder/package.json create mode 100644 nodePackages/react/README.md create mode 100644 nodePackages/react/package.json create mode 100644 nodePackages/solid/README.md create mode 100644 nodePackages/solid/package.json create mode 100644 nodePackages/web/README.md create mode 100644 nodePackages/web/package.json diff --git a/.github/workflows/build-listing.yml b/.github/workflows/build-listing.yml index 38675b7a..8aca15ec 100644 --- a/.github/workflows/build-listing.yml +++ b/.github/workflows/build-listing.yml @@ -66,6 +66,8 @@ jobs: HUSKY: 0 name: Install the dependencies run: corepack up + - name: Run the build to generate the website + run: pnpm run build - name: Deploy the global.json file run: cp "${{ github.workspace }}/global.json" "${{ env.pathToCi }}/" - name: Load cached data from previous runs diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index ea7a56e2..f0810fe9 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -75,6 +75,8 @@ jobs: HUSKY: 0 name: Install the dependencies run: pnpm install --prefer-frozen-lockfile + - name: Run the build + run: pnpm run build - name: Run the tests run: pnpm run test strategy: diff --git a/.npmrc b/.npmrc index ae90f705..03d613bf 100644 --- a/.npmrc +++ b/.npmrc @@ -1 +1,3 @@ +git-checks=false ignore-workspace-root-check=true +link-workspace-packages=true diff --git a/nodePackages/builder/README.md b/nodePackages/builder/README.md new file mode 100644 index 00000000..c9b2042a --- /dev/null +++ b/nodePackages/builder/README.md @@ -0,0 +1,7 @@ +# 🚀 Builder for LaunchPad Icons + +LIB: _LunchPad Icons Builder_ + +## License + +This repository is licensed under the [CC-BY-NC 4.0](LICENSE). diff --git a/nodePackages/builder/package.json b/nodePackages/builder/package.json new file mode 100644 index 00000000..80ab0542 --- /dev/null +++ b/nodePackages/builder/package.json @@ -0,0 +1,31 @@ +{ + "name": "@kurone-kito/launchpad-icons-builder", + "version": "0.8.0-alpha.1", + "private": true, + "description": "the builder for the LaunchPad icons NPM packages", + "keywords": [ + "Icons", + "LaunchPad", + "SVG", + "VRChat" + ], + "homepage": "https://github.com/kurone-kito/launchpad-icons#readme", + "bugs": "https://github.com/kurone-kito/launchpad-icons/issues", + "repository": { + "type": "git", + "url": "https://github.com/kurone-kito/launchpad-icons.git", + "directory": "nodePackages/builder" + }, + "license": "CC-BY-NC-4.0", + "author": "kurone-kito (https://kit.black/)", + "type": "module", + "files": [], + "scripts": {}, + "devDependencies": {}, + "engines": { + "node": "^18.20 || ^20.10 || >=22" + }, + "publishConfig": { + "access": "public" + } +} diff --git a/nodePackages/react/README.md b/nodePackages/react/README.md new file mode 100644 index 00000000..5281286f --- /dev/null +++ b/nodePackages/react/README.md @@ -0,0 +1,11 @@ +# 🚀 LaunchPad Icons for React + +## Usage + +```sh +npm install @kurone-kito/launchpad-icons-react +``` + +## License + +This repository is licensed under the [CC-BY-NC 4.0](LICENSE). diff --git a/nodePackages/react/package.json b/nodePackages/react/package.json new file mode 100644 index 00000000..4c9a8e8b --- /dev/null +++ b/nodePackages/react/package.json @@ -0,0 +1,34 @@ +{ + "name": "@kurone-kito/launchpad-icons-react", + "version": "0.8.0-alpha.1", + "description": "the icons like the VRChat for Node.js ecosystem with the React", + "keywords": [ + "components", + "icons", + "LaunchPad", + "React", + "SVG", + "VRChat" + ], + "homepage": "https://github.com/kurone-kito/launchpad-icons#readme", + "bugs": "https://github.com/kurone-kito/launchpad-icons/issues", + "repository": { + "type": "git", + "url": "https://github.com/kurone-kito/launchpad-icons.git", + "directory": "nodePackages/react" + }, + "license": "CC-BY-NC-4.0", + "author": "kurone-kito (https://kit.black/)", + "type": "module", + "files": [], + "scripts": {}, + "devDependencies": { + "@kurone-kito/launchpad-icons-builder": "workspace:^" + }, + "engines": { + "node": "^18.20 || ^20.10 || >=22" + }, + "publishConfig": { + "access": "public" + } +} diff --git a/nodePackages/solid/README.md b/nodePackages/solid/README.md new file mode 100644 index 00000000..ff116c50 --- /dev/null +++ b/nodePackages/solid/README.md @@ -0,0 +1,11 @@ +# 🚀 LaunchPad Icons for Solid + +## Usage + +```sh +npm install @kurone-kito/launchpad-icons-solid +``` + +## License + +This repository is licensed under the [CC-BY-NC 4.0](LICENSE). diff --git a/nodePackages/solid/package.json b/nodePackages/solid/package.json new file mode 100644 index 00000000..47414a12 --- /dev/null +++ b/nodePackages/solid/package.json @@ -0,0 +1,35 @@ +{ + "name": "@kurone-kito/launchpad-icons-solid", + "version": "0.8.0-alpha.1", + "description": "the icons like the VRChat for Node.js ecosystem with the Solid.js", + "keywords": [ + "components", + "icons", + "LaunchPad", + "solid", + "Solid.js", + "SVG", + "VRChat" + ], + "homepage": "https://github.com/kurone-kito/launchpad-icons#readme", + "bugs": "https://github.com/kurone-kito/launchpad-icons/issues", + "repository": { + "type": "git", + "url": "https://github.com/kurone-kito/launchpad-icons.git", + "directory": "nodePackages/solid" + }, + "license": "CC-BY-NC-4.0", + "author": "kurone-kito (https://kit.black/)", + "type": "module", + "files": [], + "scripts": {}, + "devDependencies": { + "@kurone-kito/launchpad-icons-builder": "workspace:^" + }, + "engines": { + "node": "^18.20 || ^20.10 || >=22" + }, + "publishConfig": { + "access": "public" + } +} diff --git a/nodePackages/web/README.md b/nodePackages/web/README.md new file mode 100644 index 00000000..3904e3f9 --- /dev/null +++ b/nodePackages/web/README.md @@ -0,0 +1,5 @@ +# 🚀 Website for LaunchPad Icons + +## License + +This repository is licensed under the [CC-BY-NC 4.0](LICENSE). diff --git a/nodePackages/web/package.json b/nodePackages/web/package.json new file mode 100644 index 00000000..50a11cec --- /dev/null +++ b/nodePackages/web/package.json @@ -0,0 +1,42 @@ +{ + "name": "@kurone-kito/launchpad-icons-web", + "version": "0.8.0-alpha.1", + "private": true, + "description": "the official website of the Launchpad Icons", + "keywords": [ + "components", + "Icons", + "LaunchPad", + "solid", + "Solid.js", + "SVG", + "Unity", + "Unity3D", + "VCC", + "VPM", + "VRChat", + "website" + ], + "homepage": "https://github.com/kurone-kito/launchpad-icons#readme", + "bugs": "https://github.com/kurone-kito/launchpad-icons/issues", + "repository": { + "type": "git", + "url": "https://github.com/kurone-kito/launchpad-icons.git", + "directory": "nodePackages/web" + }, + "license": "CC-BY-NC-4.0", + "author": "kurone-kito (https://kit.black/)", + "type": "module", + "files": [], + "scripts": {}, + "dependencies": { + "@kurone-kito/launchpad-icons-solid": "workspace:^" + }, + "devDependencies": {}, + "engines": { + "node": "^18.20 || ^20.10 || >=22" + }, + "publishConfig": { + "access": "public" + } +} diff --git a/package.json b/package.json index 37dc32c5..671c4038 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { - "name": "@kurone-kito/launchpad-icons", - "version": "0.1.0", + "name": "@kurone-kito/launchpad-icons-root", + "version": "0.8.0-alpha.1", "private": true, "description": "the icons VPM asset like the VRChat LaunchPad for the VRChat and Web", "keywords": [ @@ -15,8 +15,17 @@ "author": "kurone-kito (https://kit.black/)", "type": "module", "files": [], + "workspaces": { + "packages": [ + "./nodePackages/*" + ] + }, "scripts": { - "clean": "rimraf -g .eslintcache \"*.tgz\" \"*.tsbuildinfo\" \"node_modules/.cache/**/*\"", + "build": "pnpm run -r build", + "build:min": "pnpm --filter \"@kurone-kito/launchpad-icons-web^...\" run build", + "clean": "pnpm run --no-bail \"/^clean:.+/\"", + "clean:root": "rimraf -g .eslintcache \"*.tgz\" \"*.tsbuildinfo\" node_modules/.cache", + "clean:sub": "pnpm run -r clean", "lint": "pnpm run \"/lint:.+:check/\"", "lint:cspell:check": "cspell lint --no-progress --show-suggestions -u \"./**/*\"", "lint:eslint:check": "eslint --cache --cache-location node_modules/.cache/eslint/ --cache-strategy=content -f codeframe \"./**/*\"", @@ -30,7 +39,11 @@ "lint:prettier:fix": "pnpm run prettier -uw", "prepare": "husky", "prettier": "prettier --cache --log-level=warn \"./**/*\"", - "test": "pnpm run lint" + "publish": "pnpm --filter '*builder' run build && pnpm -r publish", + "publish:next": "pnpm run publish --no-git-check --tag next", + "prestart": "pnpm --filter='!*web' run build", + "start": "pnpm run --parallel -r start", + "test": "pnpm run -r test" }, "devDependencies": { "@commitlint/cli": "^19.6.1", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 23df94f1..5c2ad298 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -81,6 +81,26 @@ importers: specifier: ^5.0.5 version: 5.0.5(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) + nodePackages/builder: {} + + nodePackages/react: + devDependencies: + '@kurone-kito/launchpad-icons-builder': + specifier: workspace:^ + version: link:../builder + + nodePackages/solid: + devDependencies: + '@kurone-kito/launchpad-icons-builder': + specifier: workspace:^ + version: link:../builder + + nodePackages/web: + dependencies: + '@kurone-kito/launchpad-icons-solid': + specifier: workspace:^ + version: link:../solid + packages: '@babel/code-frame@7.12.11': diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index d05a7e7d..5f240b31 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -1,2 +1,2 @@ packages: - - . + - nodePackages/* From 95b9251421a515ab598df88d2caf6eff2099c398 Mon Sep 17 00:00:00 2001 From: kurone-kito Date: Tue, 24 Dec 2024 01:54:48 +0900 Subject: [PATCH 06/13] ci(node): added the release scripts --- .github/workflows/release.yml | 32 +++++++++++++++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9981e55d..ed17c5cc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,6 +5,7 @@ on: jobs: config: + name: configuration runs-on: ubuntu-latest outputs: config_package: ${{ steps.config_package.outputs.configPackage }} @@ -18,7 +19,36 @@ jobs: echo "configPackage=false" >> $GITHUB_OUTPUT; fi - build: + build-npm: + name: build the NPM package + runs-on: ubuntu-latest + permissions: + contents: read + steps: + - name: Stages the pushed branch + uses: actions/checkout@v4 + - name: Pre-prepare the Node.js environment + uses: actions/setup-node@v4 + with: + node-version-file: .node-version + - name: Enable the corepack because of the pnpm + run: corepack enable + - name: Post-prepare the Node.js environment + uses: actions/setup-node@v4 + with: + cache: ${{ !env.ACT && 'pnpm' || '' }} + node-version-file: .node-version + - env: + HUSKY: 0 + name: Install the dependencies + run: pnpm install --prefer-frozen-lockfile + - env: + NPM_TOKEN: ${{ secrets.NPM_TOKEN }} + name: Publish the packages + run: pnpm run publish + + build-upm: + name: build the UPM package needs: config runs-on: ubuntu-latest permissions: From cfb0b63f9c14ded8e7648c5455e47b17cdb5beb4 Mon Sep 17 00:00:00 2001 From: kurone-kito Date: Tue, 24 Dec 2024 06:52:12 +0900 Subject: [PATCH 07/13] chore(node:ALL): implemented that deploys the license file --- .gitignore | 3 + nodePackages/builder/package.json | 11 +- nodePackages/react/package.json | 10 +- nodePackages/solid/package.json | 10 +- nodePackages/web/package.json | 11 +- pnpm-lock.yaml | 171 +++++++++++++++++++++++++++++- 6 files changed, 207 insertions(+), 9 deletions(-) diff --git a/.gitignore b/.gitignore index 527d1dc0..36128249 100644 --- a/.gitignore +++ b/.gitignore @@ -348,6 +348,9 @@ $RECYCLE.BIN/ ### THE PROJECT SPECIFIES ################################################# +### Node ### +nodePackages/*/LICENSE + ### Unity ### # Example scenes [Aa]ssets/Scenes* diff --git a/nodePackages/builder/package.json b/nodePackages/builder/package.json index 80ab0542..abecde12 100644 --- a/nodePackages/builder/package.json +++ b/nodePackages/builder/package.json @@ -20,8 +20,15 @@ "author": "kurone-kito (https://kit.black/)", "type": "module", "files": [], - "scripts": {}, - "devDependencies": {}, + "scripts": { + "build": "cpy --flat ../../LICENSE .", + "clean": "rimraf -g \"*.tgz\" LICENSE node_modules/.cache", + "prepack": "pnpm run clean && pnpm run build" + }, + "devDependencies": { + "cpy-cli": "^5.0.0", + "rimraf": "^5.0.10" + }, "engines": { "node": "^18.20 || ^20.10 || >=22" }, diff --git a/nodePackages/react/package.json b/nodePackages/react/package.json index 4c9a8e8b..1541b599 100644 --- a/nodePackages/react/package.json +++ b/nodePackages/react/package.json @@ -21,9 +21,15 @@ "author": "kurone-kito (https://kit.black/)", "type": "module", "files": [], - "scripts": {}, + "scripts": { + "build": "cpy --flat ../../LICENSE .", + "clean": "rimraf -g \"*.tgz\" LICENSE node_modules/.cache", + "prepack": "pnpm run clean && pnpm run build" + }, "devDependencies": { - "@kurone-kito/launchpad-icons-builder": "workspace:^" + "@kurone-kito/launchpad-icons-builder": "workspace:^", + "cpy-cli": "^5.0.0", + "rimraf": "^5.0.10" }, "engines": { "node": "^18.20 || ^20.10 || >=22" diff --git a/nodePackages/solid/package.json b/nodePackages/solid/package.json index 47414a12..c043462b 100644 --- a/nodePackages/solid/package.json +++ b/nodePackages/solid/package.json @@ -22,9 +22,15 @@ "author": "kurone-kito (https://kit.black/)", "type": "module", "files": [], - "scripts": {}, + "scripts": { + "build": "cpy --flat ../../LICENSE .", + "clean": "rimraf -g \"*.tgz\" LICENSE node_modules/.cache", + "prepack": "pnpm run clean && pnpm run build" + }, "devDependencies": { - "@kurone-kito/launchpad-icons-builder": "workspace:^" + "@kurone-kito/launchpad-icons-builder": "workspace:^", + "cpy-cli": "^5.0.0", + "rimraf": "^5.0.10" }, "engines": { "node": "^18.20 || ^20.10 || >=22" diff --git a/nodePackages/web/package.json b/nodePackages/web/package.json index 50a11cec..3fbfee92 100644 --- a/nodePackages/web/package.json +++ b/nodePackages/web/package.json @@ -28,11 +28,18 @@ "author": "kurone-kito (https://kit.black/)", "type": "module", "files": [], - "scripts": {}, + "scripts": { + "build": "cpy --flat ../../LICENSE .", + "clean": "rimraf -g \"*.tgz\" LICENSE node_modules/.cache", + "prepack": "pnpm run clean && pnpm run build" + }, "dependencies": { "@kurone-kito/launchpad-icons-solid": "workspace:^" }, - "devDependencies": {}, + "devDependencies": { + "cpy-cli": "^5.0.0", + "rimraf": "^5.0.10" + }, "engines": { "node": "^18.20 || ^20.10 || >=22" }, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 5c2ad298..5258c9a2 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -81,25 +81,51 @@ importers: specifier: ^5.0.5 version: 5.0.5(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) - nodePackages/builder: {} + nodePackages/builder: + devDependencies: + cpy-cli: + specifier: ^5.0.0 + version: 5.0.0 + rimraf: + specifier: ^5.0.10 + version: 5.0.10 nodePackages/react: devDependencies: '@kurone-kito/launchpad-icons-builder': specifier: workspace:^ version: link:../builder + cpy-cli: + specifier: ^5.0.0 + version: 5.0.0 + rimraf: + specifier: ^5.0.10 + version: 5.0.10 nodePackages/solid: devDependencies: '@kurone-kito/launchpad-icons-builder': specifier: workspace:^ version: link:../builder + cpy-cli: + specifier: ^5.0.0 + version: 5.0.0 + rimraf: + specifier: ^5.0.10 + version: 5.0.10 nodePackages/web: dependencies: '@kurone-kito/launchpad-icons-solid': specifier: workspace:^ version: link:../solid + devDependencies: + cpy-cli: + specifier: ^5.0.0 + version: 5.0.0 + rimraf: + specifier: ^5.0.10 + version: 5.0.10 packages: @@ -765,6 +791,10 @@ packages: engines: {node: '>=0.4.0'} hasBin: true + aggregate-error@4.0.1: + resolution: {integrity: sha512-0poP0T7el6Vq3rstR8Mn4V/IQrpBLO6POkUSrN7RhyY+GF/InCFShQzsQ39T25gkHhLgSLByyAz+Kjb+c2L98w==} + engines: {node: '>=12'} + ajv@6.12.6: resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} @@ -832,6 +862,10 @@ packages: resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==} engines: {node: '>= 0.4'} + arrify@3.0.0: + resolution: {integrity: sha512-tLkvA81vQG/XqE2mjDkGQHoOINtMHtysSnemrmoGe6PydDPMRbVugqyk4A6V/WDWEfm3l+0d8anA9r8cv/5Jaw==} + engines: {node: '>=12'} + available-typed-arrays@1.0.7: resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} engines: {node: '>= 0.4'} @@ -891,6 +925,10 @@ packages: character-entities@2.0.2: resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} + clean-stack@4.2.0: + resolution: {integrity: sha512-LYv6XPxoyODi36Dp976riBtSY27VmFo+MKqEU9QCCWyTrdEPDog+RWA7xQWHi6Vbp61j5c4cdzzX1NidnwtUWg==} + engines: {node: '>=12'} + clear-module@4.1.2: resolution: {integrity: sha512-LWAxzHqdHsAZlPlEyJ2Poz6AIs384mPeqLVCru2p0BrP9G/kVGuhNyZYClLO6cXlnuJjzC8xtsJIuMjKqLXoAw==} engines: {node: '>=8'} @@ -988,6 +1026,19 @@ packages: typescript: optional: true + cp-file@10.0.0: + resolution: {integrity: sha512-vy2Vi1r2epK5WqxOLnskeKeZkdZvTKfFZQCplE3XWsP+SUJyd5XAUFC9lFgTjjXJF2GMne/UML14iEmkAaDfFg==} + engines: {node: '>=14.16'} + + cpy-cli@5.0.0: + resolution: {integrity: sha512-fb+DZYbL9KHc0BC4NYqGRrDIJZPXUmjjtqdw4XRRg8iV8dIfghUX/WiL+q4/B/KFTy3sK6jsbUhBaz0/Hxg7IQ==} + engines: {node: '>=16'} + hasBin: true + + cpy@10.1.0: + resolution: {integrity: sha512-VC2Gs20JcTyeQob6UViBLnyP0bYHkBh6EiKzot9vi2DmeGlFT9Wd7VG3NBrkNx/jYvFBeyDOMMHdHQhbtKLgHQ==} + engines: {node: '>=16'} + cross-spawn@7.0.6: resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} engines: {node: '>= 8'} @@ -1096,6 +1147,10 @@ packages: devlop@1.1.0: resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} + dir-glob@3.0.1: + resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} + engines: {node: '>=8'} + doctrine@2.1.0: resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==} engines: {node: '>=0.10.0'} @@ -1565,6 +1620,10 @@ packages: resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==} engines: {node: '>= 0.4'} + globby@13.2.2: + resolution: {integrity: sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + globby@14.0.2: resolution: {integrity: sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==} engines: {node: '>=18'} @@ -1641,6 +1700,10 @@ packages: resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} engines: {node: '>=0.8.19'} + indent-string@5.0.0: + resolution: {integrity: sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==} + engines: {node: '>=12'} + inflight@1.0.6: resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful. @@ -1847,6 +1910,10 @@ packages: resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} engines: {'0': node >= 0.2.0} + junk@4.0.1: + resolution: {integrity: sha512-Qush0uP+G8ZScpGMZvHUiRfI0YBWuB3gVBYlI0v0vvOJt5FLicco+IkP0a50LqTTQhmts/m6tP5SWE+USyIvcQ==} + engines: {node: '>=12.20'} + keyv@4.5.4: resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} @@ -2139,6 +2206,9 @@ packages: natural-compare@1.4.0: resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + nested-error-stacks@2.1.1: + resolution: {integrity: sha512-9iN1ka/9zmX1ZvLV9ewJYEk9h7RyRRtqdK0woXcqohu8EWIerfPUjYJPg0ULy0UqP7cslmdGc8xKDJcojlKiaw==} + npm-run-path@5.3.0: resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} @@ -2191,6 +2261,14 @@ packages: engines: {node: '>=14.*'} hasBin: true + p-event@5.0.1: + resolution: {integrity: sha512-dd589iCQ7m1L0bmC5NLlVYfy3TbBEsMUfWx9PyAgPeIcFZ/E2yaTZ4Rz4MiBmmJShviiftHVXOqfnfzJ6kyMrQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + + p-filter@3.0.0: + resolution: {integrity: sha512-QtoWLjXAW++uTX67HZQz1dbTpqBfiidsB6VtQUC9iR85S120+s0T5sO6s+B5MLzFcZkrEd/DGMmCjR+f2Qpxwg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + p-limit@3.1.0: resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} engines: {node: '>=10'} @@ -2207,6 +2285,18 @@ packages: resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + p-map@5.5.0: + resolution: {integrity: sha512-VFqfGDHlx87K66yZrNdI4YGtD70IRyd+zSvgks6mzHPRNkoKy+9EKP4SFC77/vTTQYmRmti7dvqC+m5jBrBAcg==} + engines: {node: '>=12'} + + p-map@6.0.0: + resolution: {integrity: sha512-T8BatKGY+k5rU+Q/GTYgrEf2r4xRMevAN5mtXc2aPc4rS1j3s+vWTaO2Wag94neXuCAUAs8cxBL9EeB5EA6diw==} + engines: {node: '>=16'} + + p-timeout@5.1.0: + resolution: {integrity: sha512-auFDyzzzGZZZdHz3BtET9VEz0SE/uMEAx7uWfGPucfzEwwe/xH0iVeZibQmANYE/hp9T2+UUZT5m+BKyrDp3Ew==} + engines: {node: '>=12'} + package-json-from-dist@1.0.1: resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==} @@ -2253,6 +2343,10 @@ packages: resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==} engines: {node: '>=16 || 14 >=14.18'} + path-type@4.0.0: + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} + engines: {node: '>=8'} + path-type@5.0.0: resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==} engines: {node: '>=12'} @@ -2436,6 +2530,10 @@ packages: resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} engines: {node: '>=14'} + slash@4.0.0: + resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==} + engines: {node: '>=12'} + slash@5.1.0: resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==} engines: {node: '>=14.16'} @@ -3442,6 +3540,11 @@ snapshots: acorn@8.14.0: {} + aggregate-error@4.0.1: + dependencies: + clean-stack: 4.2.0 + indent-string: 5.0.0 + ajv@6.12.6: dependencies: fast-deep-equal: 3.1.3 @@ -3529,6 +3632,8 @@ snapshots: get-intrinsic: 1.2.6 is-array-buffer: 3.0.5 + arrify@3.0.0: {} + available-typed-arrays@1.0.7: dependencies: possible-typed-array-names: 1.0.0 @@ -3590,6 +3695,10 @@ snapshots: character-entities@2.0.2: {} + clean-stack@4.2.0: + dependencies: + escape-string-regexp: 5.0.0 + clear-module@4.1.2: dependencies: parent-module: 2.0.0 @@ -3689,6 +3798,28 @@ snapshots: optionalDependencies: typescript: 5.7.2 + cp-file@10.0.0: + dependencies: + graceful-fs: 4.2.11 + nested-error-stacks: 2.1.1 + p-event: 5.0.1 + + cpy-cli@5.0.0: + dependencies: + cpy: 10.1.0 + meow: 12.1.1 + + cpy@10.1.0: + dependencies: + arrify: 3.0.0 + cp-file: 10.0.0 + globby: 13.2.2 + junk: 4.0.1 + micromatch: 4.0.8 + nested-error-stacks: 2.1.1 + p-filter: 3.0.0 + p-map: 6.0.0 + cross-spawn@7.0.6: dependencies: path-key: 3.1.1 @@ -3842,6 +3973,10 @@ snapshots: dependencies: dequal: 2.0.3 + dir-glob@3.0.1: + dependencies: + path-type: 4.0.0 + doctrine@2.1.0: dependencies: esutils: 2.0.3 @@ -4464,6 +4599,14 @@ snapshots: define-properties: 1.2.1 gopd: 1.2.0 + globby@13.2.2: + dependencies: + dir-glob: 3.0.1 + fast-glob: 3.3.2 + ignore: 5.3.2 + merge2: 1.4.1 + slash: 4.0.0 + globby@14.0.2: dependencies: '@sindresorhus/merge-streams': 2.3.0 @@ -4528,6 +4671,8 @@ snapshots: imurmurhash@0.1.4: {} + indent-string@5.0.0: {} + inflight@1.0.6: dependencies: once: 1.4.0 @@ -4717,6 +4862,8 @@ snapshots: jsonparse@1.3.1: {} + junk@4.0.1: {} + keyv@4.5.4: dependencies: json-buffer: 3.0.1 @@ -5178,6 +5325,8 @@ snapshots: natural-compare@1.4.0: {} + nested-error-stacks@2.1.1: {} + npm-run-path@5.3.0: dependencies: path-key: 4.0.0 @@ -5253,6 +5402,14 @@ snapshots: '@oxlint/win32-arm64': 0.15.3 '@oxlint/win32-x64': 0.15.3 + p-event@5.0.1: + dependencies: + p-timeout: 5.1.0 + + p-filter@3.0.0: + dependencies: + p-map: 5.5.0 + p-limit@3.1.0: dependencies: yocto-queue: 0.1.0 @@ -5269,6 +5426,14 @@ snapshots: dependencies: p-limit: 4.0.0 + p-map@5.5.0: + dependencies: + aggregate-error: 4.0.1 + + p-map@6.0.0: {} + + p-timeout@5.1.0: {} + package-json-from-dist@1.0.1: {} parent-module@1.0.1: @@ -5308,6 +5473,8 @@ snapshots: lru-cache: 10.4.3 minipass: 7.1.2 + path-type@4.0.0: {} + path-type@5.0.0: {} picocolors@1.1.1: {} @@ -5485,6 +5652,8 @@ snapshots: signal-exit@4.1.0: {} + slash@4.0.0: {} + slash@5.1.0: {} slashes@3.0.12: {} From 98aee00ce99bd9504789d183528204bd6d8ae25f Mon Sep 17 00:00:00 2001 From: kurone-kito Date: Tue, 24 Dec 2024 07:49:23 +0900 Subject: [PATCH 08/13] feat(node:builder,react,root,solid): added the entry points --- nodePackages/builder/package.json | 21 ++++++++++++++++----- nodePackages/builder/src/index.mts | 1 + nodePackages/builder/tsconfig.json | 11 +++++++++++ nodePackages/react/package.json | 18 +++++++++++++----- nodePackages/react/src/index.mts | 1 + nodePackages/react/tsconfig.json | 8 ++++++++ nodePackages/solid/package.json | 18 +++++++++++++----- nodePackages/solid/src/index.mts | 1 + nodePackages/solid/tsconfig.json | 8 ++++++++ pnpm-lock.yaml | 18 ++++++++++++++++++ 10 files changed, 90 insertions(+), 15 deletions(-) create mode 100644 nodePackages/builder/src/index.mts create mode 100644 nodePackages/builder/tsconfig.json create mode 100644 nodePackages/react/src/index.mts create mode 100644 nodePackages/react/tsconfig.json create mode 100644 nodePackages/solid/src/index.mts create mode 100644 nodePackages/solid/tsconfig.json diff --git a/nodePackages/builder/package.json b/nodePackages/builder/package.json index abecde12..10180fb7 100644 --- a/nodePackages/builder/package.json +++ b/nodePackages/builder/package.json @@ -19,15 +19,26 @@ "license": "CC-BY-NC-4.0", "author": "kurone-kito (https://kit.black/)", "type": "module", - "files": [], + "bin": { + "liBuilder": "./dist/index.mjs" + }, + "files": [ + "dist" + ], "scripts": { - "build": "cpy --flat ../../LICENSE .", - "clean": "rimraf -g \"*.tgz\" LICENSE node_modules/.cache", - "prepack": "pnpm run clean && pnpm run build" + "prebuild": "cpy --flat ../../LICENSE .", + "build": "tsc", + "clean": "rimraf -g \"*.tgz\" \"*.tsbuildinfo\" dist LICENSE node_modules/.cache", + "preinstall": "pnpm dlx mkdirp dist && pnpm dlx touch dist/index.mjs", + "liBuilder": "node dist/index.mjs", + "prepack": "pnpm run clean && pnpm run build", + "start": "tsc -w" }, "devDependencies": { + "@kurone-kito/typescript-config": "^0.17.2", "cpy-cli": "^5.0.0", - "rimraf": "^5.0.10" + "rimraf": "^5.0.10", + "typescript": "~5.7.2" }, "engines": { "node": "^18.20 || ^20.10 || >=22" diff --git a/nodePackages/builder/src/index.mts b/nodePackages/builder/src/index.mts new file mode 100644 index 00000000..e9fe0090 --- /dev/null +++ b/nodePackages/builder/src/index.mts @@ -0,0 +1 @@ +console.log('Hello, world!'); diff --git a/nodePackages/builder/tsconfig.json b/nodePackages/builder/tsconfig.json new file mode 100644 index 00000000..8aa7187b --- /dev/null +++ b/nodePackages/builder/tsconfig.json @@ -0,0 +1,11 @@ +{ + "compilerOptions": { + "composite": false, + "declaration": false, + "declarationMap": false, + "outDir": "dist", + "sourceRoot": "src" + }, + "exclude": ["dist", "node_modules"], + "extends": "@kurone-kito/typescript-config/tsconfig.json" +} diff --git a/nodePackages/react/package.json b/nodePackages/react/package.json index 1541b599..ac1daa0f 100644 --- a/nodePackages/react/package.json +++ b/nodePackages/react/package.json @@ -20,16 +20,24 @@ "license": "CC-BY-NC-4.0", "author": "kurone-kito (https://kit.black/)", "type": "module", - "files": [], + "main": "dist/index.mjs", + "types": "dist/index.d.mts", + "files": [ + "dist" + ], "scripts": { - "build": "cpy --flat ../../LICENSE .", - "clean": "rimraf -g \"*.tgz\" LICENSE node_modules/.cache", - "prepack": "pnpm run clean && pnpm run build" + "prebuild": "cpy --flat ../../LICENSE .", + "build": "tsc", + "clean": "rimraf -g \"*.tgz\" \"*.tsbuildinfo\" dist LICENSE node_modules/.cache", + "prepack": "pnpm run clean && pnpm run build", + "start": "tsc -w" }, "devDependencies": { "@kurone-kito/launchpad-icons-builder": "workspace:^", + "@kurone-kito/typescript-config": "^0.17.2", "cpy-cli": "^5.0.0", - "rimraf": "^5.0.10" + "rimraf": "^5.0.10", + "typescript": "~5.7.2" }, "engines": { "node": "^18.20 || ^20.10 || >=22" diff --git a/nodePackages/react/src/index.mts b/nodePackages/react/src/index.mts new file mode 100644 index 00000000..e9fe0090 --- /dev/null +++ b/nodePackages/react/src/index.mts @@ -0,0 +1 @@ +console.log('Hello, world!'); diff --git a/nodePackages/react/tsconfig.json b/nodePackages/react/tsconfig.json new file mode 100644 index 00000000..2d081773 --- /dev/null +++ b/nodePackages/react/tsconfig.json @@ -0,0 +1,8 @@ +{ + "compilerOptions": { + "outDir": "dist", + "rootDir": "src" + }, + "exclude": ["dist", "node_modules"], + "extends": "@kurone-kito/typescript-config/tsconfig.json" +} diff --git a/nodePackages/solid/package.json b/nodePackages/solid/package.json index c043462b..57f6258d 100644 --- a/nodePackages/solid/package.json +++ b/nodePackages/solid/package.json @@ -21,16 +21,24 @@ "license": "CC-BY-NC-4.0", "author": "kurone-kito (https://kit.black/)", "type": "module", - "files": [], + "main": "dist/index.mjs", + "types": "dist/index.d.mts", + "files": [ + "dist" + ], "scripts": { - "build": "cpy --flat ../../LICENSE .", - "clean": "rimraf -g \"*.tgz\" LICENSE node_modules/.cache", - "prepack": "pnpm run clean && pnpm run build" + "prebuild": "cpy --flat ../../LICENSE .", + "build": "tsc", + "clean": "rimraf -g \"*.tgz\" \"*.tsbuildinfo\" dist LICENSE node_modules/.cache", + "prepack": "pnpm run clean && pnpm run build", + "start": "tsc -w" }, "devDependencies": { "@kurone-kito/launchpad-icons-builder": "workspace:^", + "@kurone-kito/typescript-config": "^0.17.2", "cpy-cli": "^5.0.0", - "rimraf": "^5.0.10" + "rimraf": "^5.0.10", + "typescript": "~5.7.2" }, "engines": { "node": "^18.20 || ^20.10 || >=22" diff --git a/nodePackages/solid/src/index.mts b/nodePackages/solid/src/index.mts new file mode 100644 index 00000000..e9fe0090 --- /dev/null +++ b/nodePackages/solid/src/index.mts @@ -0,0 +1 @@ +console.log('Hello, world!'); diff --git a/nodePackages/solid/tsconfig.json b/nodePackages/solid/tsconfig.json new file mode 100644 index 00000000..2d081773 --- /dev/null +++ b/nodePackages/solid/tsconfig.json @@ -0,0 +1,8 @@ +{ + "compilerOptions": { + "outDir": "dist", + "rootDir": "src" + }, + "exclude": ["dist", "node_modules"], + "extends": "@kurone-kito/typescript-config/tsconfig.json" +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 5258c9a2..77eef441 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -83,36 +83,54 @@ importers: nodePackages/builder: devDependencies: + '@kurone-kito/typescript-config': + specifier: ^0.17.2 + version: 0.17.2(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(typescript-eslint-language-service@5.0.5(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(typescript@5.7.2) cpy-cli: specifier: ^5.0.0 version: 5.0.0 rimraf: specifier: ^5.0.10 version: 5.0.10 + typescript: + specifier: ~5.7.2 + version: 5.7.2 nodePackages/react: devDependencies: '@kurone-kito/launchpad-icons-builder': specifier: workspace:^ version: link:../builder + '@kurone-kito/typescript-config': + specifier: ^0.17.2 + version: 0.17.2(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(typescript-eslint-language-service@5.0.5(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(typescript@5.7.2) cpy-cli: specifier: ^5.0.0 version: 5.0.0 rimraf: specifier: ^5.0.10 version: 5.0.10 + typescript: + specifier: ~5.7.2 + version: 5.7.2 nodePackages/solid: devDependencies: '@kurone-kito/launchpad-icons-builder': specifier: workspace:^ version: link:../builder + '@kurone-kito/typescript-config': + specifier: ^0.17.2 + version: 0.17.2(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(typescript-eslint-language-service@5.0.5(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(typescript@5.7.2) cpy-cli: specifier: ^5.0.0 version: 5.0.0 rimraf: specifier: ^5.0.10 version: 5.0.10 + typescript: + specifier: ~5.7.2 + version: 5.7.2 nodePackages/web: dependencies: From 06369e0fd5de411c9c6a1696049d76a23d56733b Mon Sep 17 00:00:00 2001 From: kurone-kito Date: Tue, 24 Dec 2024 22:26:39 +0900 Subject: [PATCH 09/13] test(node:builder,react,root,solid): implemented the test environments --- nodePackages/builder/package.json | 6 +- nodePackages/builder/src/index.test.mts | 3 + nodePackages/react/package.json | 6 +- nodePackages/react/src/index.test.mts | 3 + nodePackages/solid/package.json | 6 +- nodePackages/solid/src/index.test.mts | 3 + pnpm-lock.yaml | 777 ++++++++++++++++++++++++ 7 files changed, 798 insertions(+), 6 deletions(-) create mode 100644 nodePackages/builder/src/index.test.mts create mode 100644 nodePackages/react/src/index.test.mts create mode 100644 nodePackages/solid/src/index.test.mts diff --git a/nodePackages/builder/package.json b/nodePackages/builder/package.json index 10180fb7..2ecae172 100644 --- a/nodePackages/builder/package.json +++ b/nodePackages/builder/package.json @@ -32,13 +32,15 @@ "preinstall": "pnpm dlx mkdirp dist && pnpm dlx touch dist/index.mjs", "liBuilder": "node dist/index.mjs", "prepack": "pnpm run clean && pnpm run build", - "start": "tsc -w" + "start": "tsc -w", + "test": "vitest run" }, "devDependencies": { "@kurone-kito/typescript-config": "^0.17.2", "cpy-cli": "^5.0.0", "rimraf": "^5.0.10", - "typescript": "~5.7.2" + "typescript": "~5.7.2", + "vitest": "^2.1.8" }, "engines": { "node": "^18.20 || ^20.10 || >=22" diff --git a/nodePackages/builder/src/index.test.mts b/nodePackages/builder/src/index.test.mts new file mode 100644 index 00000000..4237f76c --- /dev/null +++ b/nodePackages/builder/src/index.test.mts @@ -0,0 +1,3 @@ +import { expect, it } from 'vitest'; + +it('hello, world', () => expect(true).toBeTruthy()); diff --git a/nodePackages/react/package.json b/nodePackages/react/package.json index ac1daa0f..6ae0f057 100644 --- a/nodePackages/react/package.json +++ b/nodePackages/react/package.json @@ -30,14 +30,16 @@ "build": "tsc", "clean": "rimraf -g \"*.tgz\" \"*.tsbuildinfo\" dist LICENSE node_modules/.cache", "prepack": "pnpm run clean && pnpm run build", - "start": "tsc -w" + "start": "tsc -w", + "test": "vitest run" }, "devDependencies": { "@kurone-kito/launchpad-icons-builder": "workspace:^", "@kurone-kito/typescript-config": "^0.17.2", "cpy-cli": "^5.0.0", "rimraf": "^5.0.10", - "typescript": "~5.7.2" + "typescript": "~5.7.2", + "vitest": "^2.1.8" }, "engines": { "node": "^18.20 || ^20.10 || >=22" diff --git a/nodePackages/react/src/index.test.mts b/nodePackages/react/src/index.test.mts new file mode 100644 index 00000000..4237f76c --- /dev/null +++ b/nodePackages/react/src/index.test.mts @@ -0,0 +1,3 @@ +import { expect, it } from 'vitest'; + +it('hello, world', () => expect(true).toBeTruthy()); diff --git a/nodePackages/solid/package.json b/nodePackages/solid/package.json index 57f6258d..599fdda1 100644 --- a/nodePackages/solid/package.json +++ b/nodePackages/solid/package.json @@ -31,14 +31,16 @@ "build": "tsc", "clean": "rimraf -g \"*.tgz\" \"*.tsbuildinfo\" dist LICENSE node_modules/.cache", "prepack": "pnpm run clean && pnpm run build", - "start": "tsc -w" + "start": "tsc -w", + "test": "vitest run" }, "devDependencies": { "@kurone-kito/launchpad-icons-builder": "workspace:^", "@kurone-kito/typescript-config": "^0.17.2", "cpy-cli": "^5.0.0", "rimraf": "^5.0.10", - "typescript": "~5.7.2" + "typescript": "~5.7.2", + "vitest": "^2.1.8" }, "engines": { "node": "^18.20 || ^20.10 || >=22" diff --git a/nodePackages/solid/src/index.test.mts b/nodePackages/solid/src/index.test.mts new file mode 100644 index 00000000..4237f76c --- /dev/null +++ b/nodePackages/solid/src/index.test.mts @@ -0,0 +1,3 @@ +import { expect, it } from 'vitest'; + +it('hello, world', () => expect(true).toBeTruthy()); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 77eef441..ad98d596 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -95,6 +95,9 @@ importers: typescript: specifier: ~5.7.2 version: 5.7.2 + vitest: + specifier: ^2.1.8 + version: 2.1.8(@types/node@22.10.2) nodePackages/react: devDependencies: @@ -113,6 +116,9 @@ importers: typescript: specifier: ~5.7.2 version: 5.7.2 + vitest: + specifier: ^2.1.8 + version: 2.1.8(@types/node@22.10.2) nodePackages/solid: devDependencies: @@ -131,6 +137,9 @@ importers: typescript: specifier: ~5.7.2 version: 5.7.2 + vitest: + specifier: ^2.1.8 + version: 2.1.8(@types/node@22.10.2) nodePackages/web: dependencies: @@ -454,6 +463,144 @@ packages: resolution: {integrity: sha512-xjZTSFgECpb9Ohuk5yMX5RhUEbfeQcuOp8IF60e+wyzWEF0M5xeSgqsfLtvPEX8BIyOX9saZqzuGPmZ8oWc+5Q==} engines: {node: '>=16'} + '@esbuild/aix-ppc64@0.21.5': + resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [aix] + + '@esbuild/android-arm64@0.21.5': + resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + + '@esbuild/android-arm@0.21.5': + resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] + + '@esbuild/android-x64@0.21.5': + resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + + '@esbuild/darwin-arm64@0.21.5': + resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + + '@esbuild/darwin-x64@0.21.5': + resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + + '@esbuild/freebsd-arm64@0.21.5': + resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + + '@esbuild/freebsd-x64@0.21.5': + resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + + '@esbuild/linux-arm64@0.21.5': + resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + + '@esbuild/linux-arm@0.21.5': + resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + + '@esbuild/linux-ia32@0.21.5': + resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + + '@esbuild/linux-loong64@0.21.5': + resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + + '@esbuild/linux-mips64el@0.21.5': + resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + + '@esbuild/linux-ppc64@0.21.5': + resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + + '@esbuild/linux-riscv64@0.21.5': + resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + + '@esbuild/linux-s390x@0.21.5': + resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + + '@esbuild/linux-x64@0.21.5': + resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + + '@esbuild/netbsd-x64@0.21.5': + resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + + '@esbuild/openbsd-x64@0.21.5': + resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + + '@esbuild/sunos-x64@0.21.5': + resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + + '@esbuild/win32-arm64@0.21.5': + resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + + '@esbuild/win32-ia32@0.21.5': + resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + + '@esbuild/win32-x64@0.21.5': + resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + '@eslint-community/eslint-utils@4.4.1': resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -550,6 +697,9 @@ packages: resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} engines: {node: '>=12'} + '@jridgewell/sourcemap-codec@1.5.0': + resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} + '@kesills/eslint-config-airbnb-typescript@20.0.0': resolution: {integrity: sha512-P3DBcIs5eQsEMz4mgwG9ZsOqwE42EGFJ+fI49IFp8ai8D2dHhByr7oUoTW6aDzGe4tVjFOfCjEjcAA1b8sVWTg==} peerDependencies: @@ -705,6 +855,101 @@ packages: resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==} engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} + '@rollup/rollup-android-arm-eabi@4.29.1': + resolution: {integrity: sha512-ssKhA8RNltTZLpG6/QNkCSge+7mBQGUqJRisZ2MDQcEGaK93QESEgWK2iOpIDZ7k9zPVkG5AS3ksvD5ZWxmItw==} + cpu: [arm] + os: [android] + + '@rollup/rollup-android-arm64@4.29.1': + resolution: {integrity: sha512-CaRfrV0cd+NIIcVVN/jx+hVLN+VRqnuzLRmfmlzpOzB87ajixsN/+9L5xNmkaUUvEbI5BmIKS+XTwXsHEb65Ew==} + cpu: [arm64] + os: [android] + + '@rollup/rollup-darwin-arm64@4.29.1': + resolution: {integrity: sha512-2ORr7T31Y0Mnk6qNuwtyNmy14MunTAMx06VAPI6/Ju52W10zk1i7i5U3vlDRWjhOI5quBcrvhkCHyF76bI7kEw==} + cpu: [arm64] + os: [darwin] + + '@rollup/rollup-darwin-x64@4.29.1': + resolution: {integrity: sha512-j/Ej1oanzPjmN0tirRd5K2/nncAhS9W6ICzgxV+9Y5ZsP0hiGhHJXZ2JQ53iSSjj8m6cRY6oB1GMzNn2EUt6Ng==} + cpu: [x64] + os: [darwin] + + '@rollup/rollup-freebsd-arm64@4.29.1': + resolution: {integrity: sha512-91C//G6Dm/cv724tpt7nTyP+JdN12iqeXGFM1SqnljCmi5yTXriH7B1r8AD9dAZByHpKAumqP1Qy2vVNIdLZqw==} + cpu: [arm64] + os: [freebsd] + + '@rollup/rollup-freebsd-x64@4.29.1': + resolution: {integrity: sha512-hEioiEQ9Dec2nIRoeHUP6hr1PSkXzQaCUyqBDQ9I9ik4gCXQZjJMIVzoNLBRGet+hIUb3CISMh9KXuCcWVW/8w==} + cpu: [x64] + os: [freebsd] + + '@rollup/rollup-linux-arm-gnueabihf@4.29.1': + resolution: {integrity: sha512-Py5vFd5HWYN9zxBv3WMrLAXY3yYJ6Q/aVERoeUFwiDGiMOWsMs7FokXihSOaT/PMWUty/Pj60XDQndK3eAfE6A==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm-musleabihf@4.29.1': + resolution: {integrity: sha512-RiWpGgbayf7LUcuSNIbahr0ys2YnEERD4gYdISA06wa0i8RALrnzflh9Wxii7zQJEB2/Eh74dX4y/sHKLWp5uQ==} + cpu: [arm] + os: [linux] + + '@rollup/rollup-linux-arm64-gnu@4.29.1': + resolution: {integrity: sha512-Z80O+taYxTQITWMjm/YqNoe9d10OX6kDh8X5/rFCMuPqsKsSyDilvfg+vd3iXIqtfmp+cnfL1UrYirkaF8SBZA==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-arm64-musl@4.29.1': + resolution: {integrity: sha512-fOHRtF9gahwJk3QVp01a/GqS4hBEZCV1oKglVVq13kcK3NeVlS4BwIFzOHDbmKzt3i0OuHG4zfRP0YoG5OF/rA==} + cpu: [arm64] + os: [linux] + + '@rollup/rollup-linux-loongarch64-gnu@4.29.1': + resolution: {integrity: sha512-5a7q3tnlbcg0OodyxcAdrrCxFi0DgXJSoOuidFUzHZ2GixZXQs6Tc3CHmlvqKAmOs5eRde+JJxeIf9DonkmYkw==} + cpu: [loong64] + os: [linux] + + '@rollup/rollup-linux-powerpc64le-gnu@4.29.1': + resolution: {integrity: sha512-9b4Mg5Yfz6mRnlSPIdROcfw1BU22FQxmfjlp/CShWwO3LilKQuMISMTtAu/bxmmrE6A902W2cZJuzx8+gJ8e9w==} + cpu: [ppc64] + os: [linux] + + '@rollup/rollup-linux-riscv64-gnu@4.29.1': + resolution: {integrity: sha512-G5pn0NChlbRM8OJWpJFMX4/i8OEU538uiSv0P6roZcbpe/WfhEO+AT8SHVKfp8qhDQzaz7Q+1/ixMy7hBRidnQ==} + cpu: [riscv64] + os: [linux] + + '@rollup/rollup-linux-s390x-gnu@4.29.1': + resolution: {integrity: sha512-WM9lIkNdkhVwiArmLxFXpWndFGuOka4oJOZh8EP3Vb8q5lzdSCBuhjavJsw68Q9AKDGeOOIHYzYm4ZFvmWez5g==} + cpu: [s390x] + os: [linux] + + '@rollup/rollup-linux-x64-gnu@4.29.1': + resolution: {integrity: sha512-87xYCwb0cPGZFoGiErT1eDcssByaLX4fc0z2nRM6eMtV9njAfEE6OW3UniAoDhX4Iq5xQVpE6qO9aJbCFumKYQ==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-linux-x64-musl@4.29.1': + resolution: {integrity: sha512-xufkSNppNOdVRCEC4WKvlR1FBDyqCSCpQeMMgv9ZyXqqtKBfkw1yfGMTUTs9Qsl6WQbJnsGboWCp7pJGkeMhKA==} + cpu: [x64] + os: [linux] + + '@rollup/rollup-win32-arm64-msvc@4.29.1': + resolution: {integrity: sha512-F2OiJ42m77lSkizZQLuC+jiZ2cgueWQL5YC9tjo3AgaEw+KJmVxHGSyQfDUoYR9cci0lAywv2Clmckzulcq6ig==} + cpu: [arm64] + os: [win32] + + '@rollup/rollup-win32-ia32-msvc@4.29.1': + resolution: {integrity: sha512-rYRe5S0FcjlOBZQHgbTKNrqxCBUmgDJem/VQTCcTnA2KCabYSWQDrytOzX7avb79cAAweNmMUb/Zw18RNd4mng==} + cpu: [ia32] + os: [win32] + + '@rollup/rollup-win32-x64-msvc@4.29.1': + resolution: {integrity: sha512-+10CMg9vt1MoHj6x1pxyjPSMjHTIlqs8/tBztXvPAx24SKs9jwVnKqHJumlH/IzhaPUaj3T6T6wfZr8okdXaIg==} + cpu: [x64] + os: [win32] + '@rtsao/scc@1.1.0': resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==} @@ -795,6 +1040,35 @@ packages: '@ungap/structured-clone@1.2.1': resolution: {integrity: sha512-fEzPV3hSkSMltkw152tJKNARhOupqbH96MZWyRjNaYZOMIzbrTeQDG+MTc6Mr2pgzFQzFxAfmhGDNP5QK++2ZA==} + '@vitest/expect@2.1.8': + resolution: {integrity: sha512-8ytZ/fFHq2g4PJVAtDX57mayemKgDR6X3Oa2Foro+EygiOJHUXhCqBAAKQYYajZpFoIfvBCF1j6R6IYRSIUFuw==} + + '@vitest/mocker@2.1.8': + resolution: {integrity: sha512-7guJ/47I6uqfttp33mgo6ga5Gr1VnL58rcqYKyShoRK9ebu8T5Rs6HN3s1NABiBeVTdWNrwUMcHH54uXZBN4zA==} + peerDependencies: + msw: ^2.4.9 + vite: ^5.0.0 + peerDependenciesMeta: + msw: + optional: true + vite: + optional: true + + '@vitest/pretty-format@2.1.8': + resolution: {integrity: sha512-9HiSZ9zpqNLKlbIDRWOnAWqgcA7xu+8YxXSekhr0Ykab7PAYFkhkwoqVArPOtJhPmYeE2YHgKZlj3CP36z2AJQ==} + + '@vitest/runner@2.1.8': + resolution: {integrity: sha512-17ub8vQstRnRlIU5k50bG+QOMLHRhYPAna5tw8tYbj+jzjcspnwnwtPtiOlkuKC4+ixDPTuLZiqiWWQ2PSXHVg==} + + '@vitest/snapshot@2.1.8': + resolution: {integrity: sha512-20T7xRFbmnkfcmgVEz+z3AU/3b0cEzZOt/zmnvZEctg64/QZbSDJEVm9fLnnlSi74KibmRsO9/Qabi+t0vCRPg==} + + '@vitest/spy@2.1.8': + resolution: {integrity: sha512-5swjf2q95gXeYPevtW0BLk6H8+bPlMb4Vw/9Em4hFxDcaOxS+e0LOX4yqNxoHzMR2akEB2xfpnWUzkZokmgWDg==} + + '@vitest/utils@2.1.8': + resolution: {integrity: sha512-dwSoui6djdwbfFmIgbIjX2ZhIoG7Ex/+xpxyiEgIGzjliY8xGkcpITKTlp6B4MgtGkF2ilvm97cPM96XZaAgcA==} + JSONStream@1.3.5: resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} hasBin: true @@ -884,6 +1158,10 @@ packages: resolution: {integrity: sha512-tLkvA81vQG/XqE2mjDkGQHoOINtMHtysSnemrmoGe6PydDPMRbVugqyk4A6V/WDWEfm3l+0d8anA9r8cv/5Jaw==} engines: {node: '>=12'} + assertion-error@2.0.1: + resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} + engines: {node: '>=12'} + available-typed-arrays@1.0.7: resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} engines: {node: '>= 0.4'} @@ -901,6 +1179,10 @@ packages: resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} engines: {node: '>=8'} + cac@6.7.14: + resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} + engines: {node: '>=8'} + call-bind-apply-helpers@1.0.1: resolution: {integrity: sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==} engines: {node: '>= 0.4'} @@ -920,6 +1202,10 @@ packages: ccount@2.0.1: resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} + chai@5.1.2: + resolution: {integrity: sha512-aGtmf24DW6MLHHG5gCx4zaI3uBq3KRtxeVs0DjFH6Z0rDNbsvTxFASFvdj79pxjxZ8/5u3PIiN3IwEIQkiiuPw==} + engines: {node: '>=12'} + chalk-template@1.1.0: resolution: {integrity: sha512-T2VJbcDuZQ0Tb2EWwSotMPJjgpy1/tGee1BTpUNsGZ/qgNjV2t7Mvu+d4600U564nbLesN1x2dPL+xii174Ekg==} engines: {node: '>=14.16'} @@ -943,6 +1229,10 @@ packages: character-entities@2.0.2: resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} + check-error@2.1.1: + resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==} + engines: {node: '>= 16'} + clean-stack@4.2.0: resolution: {integrity: sha512-LYv6XPxoyODi36Dp976riBtSY27VmFo+MKqEU9QCCWyTrdEPDog+RWA7xQWHi6Vbp61j5c4cdzzX1NidnwtUWg==} engines: {node: '>=12'} @@ -1139,6 +1429,10 @@ packages: decode-named-character-reference@1.0.2: resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==} + deep-eql@5.0.2: + resolution: {integrity: sha512-h5k/5U50IJJFpzfL6nO9jaaumfjO/f2NjK/oYB2Djzm4p9L+3T9qWpZqZ2hAbLPuuYq9wrU08WQyBTL5GbPk5Q==} + engines: {node: '>=6'} + deep-is@0.1.4: resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} @@ -1276,6 +1570,11 @@ packages: resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==} engines: {node: '>= 0.4'} + esbuild@0.21.5: + resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==} + engines: {node: '>=12'} + hasBin: true + escalade@3.2.0: resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} engines: {node: '>=6'} @@ -1454,6 +1753,9 @@ packages: resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} engines: {node: '>=4.0'} + estree-walker@3.0.3: + resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} + esutils@2.0.3: resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} engines: {node: '>=0.10.0'} @@ -1469,6 +1771,10 @@ packages: resolution: {integrity: sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==} engines: {node: '>= 0.8.0'} + expect-type@1.1.0: + resolution: {integrity: sha512-bFi65yM+xZgk+u/KRIpekdSYkTB5W1pEf0Lt8Q8Msh7b+eQ7LXVtIB1Bkm4fvclDEL1b2CZkMhv2mOeF8tMdkA==} + engines: {node: '>=12.0.0'} + fast-deep-equal@3.1.3: resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} @@ -1553,6 +1859,11 @@ packages: fs.realpath@1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + function-bind@1.1.2: resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} @@ -2007,9 +2318,15 @@ packages: longest-streak@3.1.0: resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} + loupe@3.1.2: + resolution: {integrity: sha512-23I4pFZHmAemUnz8WZXbYRSKYj801VDaNv9ETuMh7IrMc7VuVVSo+Z9iLE3ni30+U48iDWfi30d3twAXBYmnCg==} + lru-cache@10.4.3: resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} + magic-string@0.30.17: + resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==} + markdown-it@14.1.0: resolution: {integrity: sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==} hasBin: true @@ -2221,6 +2538,11 @@ packages: mvdan-sh@0.10.1: resolution: {integrity: sha512-kMbrH0EObaKmK3nVRKUIIya1dpASHIEusM13S4V1ViHFuxuNxCo+arxoa6j/dbV22YBGjl7UKJm9QQKJ2Crzhg==} + nanoid@3.3.8: + resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + natural-compare@1.4.0: resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} @@ -2369,6 +2691,13 @@ packages: resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==} engines: {node: '>=12'} + pathe@1.1.2: + resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} + + pathval@2.0.0: + resolution: {integrity: sha512-vE7JKRyES09KiunauX7nd2Q9/L7lhok4smP9RZTDeD4MVs72Dp2qNFVz39Nz5a0FVEW0BJR6C0DYrq6unoziZA==} + engines: {node: '>= 14.16'} + picocolors@1.1.1: resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} @@ -2389,6 +2718,10 @@ packages: resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==} engines: {node: '>= 0.4'} + postcss@8.4.49: + resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==} + engines: {node: ^10 || ^12 || >=14} + prelude-ls@1.2.1: resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} engines: {node: '>= 0.8.0'} @@ -2488,6 +2821,11 @@ packages: resolution: {integrity: sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==} hasBin: true + rollup@4.29.1: + resolution: {integrity: sha512-RaJ45M/kmJUzSWDs1Nnd5DdV4eerC98idtUOVr6FfKcgxqvjwHmxc5upLF9qZU9EpsVzzhleFahrT3shLuJzIw==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} + hasBin: true + run-parallel@1.2.0: resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} @@ -2544,6 +2882,9 @@ packages: resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==} engines: {node: '>= 0.4'} + siginfo@2.0.0: + resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==} + signal-exit@4.1.0: resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} engines: {node: '>=14'} @@ -2574,6 +2915,10 @@ packages: resolution: {integrity: sha512-/HrPQAeeLaa+vbAH/znjuhwUluuiM/zL5XX9kop8UpDgjtyWKt43hGDk2vd/TBdDpzIyzIHVUgmYofzYrAQjew==} hasBin: true + source-map-js@1.2.1: + resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} + engines: {node: '>=0.10.0'} + spdx-exceptions@2.5.0: resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==} @@ -2590,6 +2935,12 @@ packages: stable-hash@0.0.4: resolution: {integrity: sha512-LjdcbuBeLcdETCrPn9i8AYAZ1eCtu4ECAWtP7UleOiZ9LzVxRzzUZEoZ8zB24nhkQnDWyET0I+3sWokSDS3E7g==} + stackback@0.0.2: + resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} + + std-env@3.8.0: + resolution: {integrity: sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w==} + string-argv@0.3.2: resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==} engines: {node: '>=0.6.19'} @@ -2676,6 +3027,9 @@ packages: through@2.3.8: resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + tinybench@2.9.0: + resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} + tinyexec@0.3.1: resolution: {integrity: sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ==} @@ -2683,6 +3037,18 @@ packages: resolution: {integrity: sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==} engines: {node: '>=12.0.0'} + tinypool@1.0.2: + resolution: {integrity: sha512-al6n+QEANGFOMf/dmUMsuS5/r9B06uwlyNjZZql/zv8J7ybHCgoihBNORZCY2mzUuAnomQa2JdhyHKzZxPCrFA==} + engines: {node: ^18.0.0 || >=20.0.0} + + tinyrainbow@1.2.0: + resolution: {integrity: sha512-weEDEq7Z5eTHPDh4xjX789+fHfF+P8boiFB+0vbWzpbnbsEr/GRaohi/uMKxg8RZMXnl1ItAi/IUHWMsjDV7kQ==} + engines: {node: '>=14.0.0'} + + tinyspy@3.0.2: + resolution: {integrity: sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==} + engines: {node: '>=14.0.0'} + to-regex-range@5.0.1: resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} engines: {node: '>=8.0'} @@ -2771,6 +3137,67 @@ packages: uri-js@4.4.1: resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + vite-node@2.1.8: + resolution: {integrity: sha512-uPAwSr57kYjAUux+8E2j0q0Fxpn8M9VoyfGiRI8Kfktz9NcYMCenwY5RnZxnF1WTu3TGiYipirIzacLL3VVGFg==} + engines: {node: ^18.0.0 || >=20.0.0} + hasBin: true + + vite@5.4.11: + resolution: {integrity: sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q==} + engines: {node: ^18.0.0 || >=20.0.0} + hasBin: true + peerDependencies: + '@types/node': ^18.0.0 || >=20.0.0 + less: '*' + lightningcss: ^1.21.0 + sass: '*' + sass-embedded: '*' + stylus: '*' + sugarss: '*' + terser: ^5.4.0 + peerDependenciesMeta: + '@types/node': + optional: true + less: + optional: true + lightningcss: + optional: true + sass: + optional: true + sass-embedded: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + + vitest@2.1.8: + resolution: {integrity: sha512-1vBKTZskHw/aosXqQUlVWWlGUxSJR8YtiyZDJAFeW2kPAeX6S3Sool0mjspO+kXLuxVWlEDDowBAeqeAQefqLQ==} + engines: {node: ^18.0.0 || >=20.0.0} + hasBin: true + peerDependencies: + '@edge-runtime/vm': '*' + '@types/node': ^18.0.0 || >=20.0.0 + '@vitest/browser': 2.1.8 + '@vitest/ui': 2.1.8 + happy-dom: '*' + jsdom: '*' + peerDependenciesMeta: + '@edge-runtime/vm': + optional: true + '@types/node': + optional: true + '@vitest/browser': + optional: true + '@vitest/ui': + optional: true + happy-dom: + optional: true + jsdom: + optional: true + vscode-languageserver-textdocument@1.0.12: resolution: {integrity: sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==} @@ -2798,6 +3225,11 @@ packages: engines: {node: '>= 8'} hasBin: true + why-is-node-running@2.3.0: + resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==} + engines: {node: '>=8'} + hasBin: true + word-wrap@1.2.5: resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==} engines: {node: '>=0.10.0'} @@ -3196,6 +3628,75 @@ snapshots: esquery: 1.6.0 jsdoc-type-pratt-parser: 4.1.0 + '@esbuild/aix-ppc64@0.21.5': + optional: true + + '@esbuild/android-arm64@0.21.5': + optional: true + + '@esbuild/android-arm@0.21.5': + optional: true + + '@esbuild/android-x64@0.21.5': + optional: true + + '@esbuild/darwin-arm64@0.21.5': + optional: true + + '@esbuild/darwin-x64@0.21.5': + optional: true + + '@esbuild/freebsd-arm64@0.21.5': + optional: true + + '@esbuild/freebsd-x64@0.21.5': + optional: true + + '@esbuild/linux-arm64@0.21.5': + optional: true + + '@esbuild/linux-arm@0.21.5': + optional: true + + '@esbuild/linux-ia32@0.21.5': + optional: true + + '@esbuild/linux-loong64@0.21.5': + optional: true + + '@esbuild/linux-mips64el@0.21.5': + optional: true + + '@esbuild/linux-ppc64@0.21.5': + optional: true + + '@esbuild/linux-riscv64@0.21.5': + optional: true + + '@esbuild/linux-s390x@0.21.5': + optional: true + + '@esbuild/linux-x64@0.21.5': + optional: true + + '@esbuild/netbsd-x64@0.21.5': + optional: true + + '@esbuild/openbsd-x64@0.21.5': + optional: true + + '@esbuild/sunos-x64@0.21.5': + optional: true + + '@esbuild/win32-arm64@0.21.5': + optional: true + + '@esbuild/win32-ia32@0.21.5': + optional: true + + '@esbuild/win32-x64@0.21.5': + optional: true + '@eslint-community/eslint-utils@4.4.1(eslint@8.57.1)': dependencies: eslint: 8.57.1 @@ -3310,6 +3811,8 @@ snapshots: wrap-ansi: 8.1.0 wrap-ansi-cjs: wrap-ansi@7.0.0 + '@jridgewell/sourcemap-codec@1.5.0': {} + '@kesills/eslint-config-airbnb-typescript@20.0.0(@stylistic/eslint-plugin@2.12.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(@typescript-eslint/eslint-plugin@8.18.2(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint-config-airbnb-base@15.0.0(eslint-plugin-import@2.31.0)(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)': dependencies: '@stylistic/eslint-plugin': 2.12.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) @@ -3426,6 +3929,63 @@ snapshots: '@pkgr/core@0.1.1': {} + '@rollup/rollup-android-arm-eabi@4.29.1': + optional: true + + '@rollup/rollup-android-arm64@4.29.1': + optional: true + + '@rollup/rollup-darwin-arm64@4.29.1': + optional: true + + '@rollup/rollup-darwin-x64@4.29.1': + optional: true + + '@rollup/rollup-freebsd-arm64@4.29.1': + optional: true + + '@rollup/rollup-freebsd-x64@4.29.1': + optional: true + + '@rollup/rollup-linux-arm-gnueabihf@4.29.1': + optional: true + + '@rollup/rollup-linux-arm-musleabihf@4.29.1': + optional: true + + '@rollup/rollup-linux-arm64-gnu@4.29.1': + optional: true + + '@rollup/rollup-linux-arm64-musl@4.29.1': + optional: true + + '@rollup/rollup-linux-loongarch64-gnu@4.29.1': + optional: true + + '@rollup/rollup-linux-powerpc64le-gnu@4.29.1': + optional: true + + '@rollup/rollup-linux-riscv64-gnu@4.29.1': + optional: true + + '@rollup/rollup-linux-s390x-gnu@4.29.1': + optional: true + + '@rollup/rollup-linux-x64-gnu@4.29.1': + optional: true + + '@rollup/rollup-linux-x64-musl@4.29.1': + optional: true + + '@rollup/rollup-win32-arm64-msvc@4.29.1': + optional: true + + '@rollup/rollup-win32-ia32-msvc@4.29.1': + optional: true + + '@rollup/rollup-win32-x64-msvc@4.29.1': + optional: true + '@rtsao/scc@1.1.0': {} '@sindresorhus/merge-streams@2.3.0': {} @@ -3547,6 +4107,46 @@ snapshots: '@ungap/structured-clone@1.2.1': {} + '@vitest/expect@2.1.8': + dependencies: + '@vitest/spy': 2.1.8 + '@vitest/utils': 2.1.8 + chai: 5.1.2 + tinyrainbow: 1.2.0 + + '@vitest/mocker@2.1.8(vite@5.4.11(@types/node@22.10.2))': + dependencies: + '@vitest/spy': 2.1.8 + estree-walker: 3.0.3 + magic-string: 0.30.17 + optionalDependencies: + vite: 5.4.11(@types/node@22.10.2) + + '@vitest/pretty-format@2.1.8': + dependencies: + tinyrainbow: 1.2.0 + + '@vitest/runner@2.1.8': + dependencies: + '@vitest/utils': 2.1.8 + pathe: 1.1.2 + + '@vitest/snapshot@2.1.8': + dependencies: + '@vitest/pretty-format': 2.1.8 + magic-string: 0.30.17 + pathe: 1.1.2 + + '@vitest/spy@2.1.8': + dependencies: + tinyspy: 3.0.2 + + '@vitest/utils@2.1.8': + dependencies: + '@vitest/pretty-format': 2.1.8 + loupe: 3.1.2 + tinyrainbow: 1.2.0 + JSONStream@1.3.5: dependencies: jsonparse: 1.3.1 @@ -3652,6 +4252,8 @@ snapshots: arrify@3.0.0: {} + assertion-error@2.0.1: {} + available-typed-arrays@1.0.7: dependencies: possible-typed-array-names: 1.0.0 @@ -3671,6 +4273,8 @@ snapshots: dependencies: fill-range: 7.1.1 + cac@6.7.14: {} + call-bind-apply-helpers@1.0.1: dependencies: es-errors: 1.3.0 @@ -3692,6 +4296,14 @@ snapshots: ccount@2.0.1: {} + chai@5.1.2: + dependencies: + assertion-error: 2.0.1 + check-error: 2.1.1 + deep-eql: 5.0.2 + loupe: 3.1.2 + pathval: 2.0.0 + chalk-template@1.1.0: dependencies: chalk: 5.4.1 @@ -3713,6 +4325,8 @@ snapshots: character-entities@2.0.2: {} + check-error@2.1.1: {} + clean-stack@4.2.0: dependencies: escape-string-regexp: 5.0.0 @@ -3967,6 +4581,8 @@ snapshots: dependencies: character-entities: 2.0.2 + deep-eql@5.0.2: {} + deep-is@0.1.4: {} define-data-property@1.1.4: @@ -4143,6 +4759,32 @@ snapshots: is-date-object: 1.1.0 is-symbol: 1.1.1 + esbuild@0.21.5: + optionalDependencies: + '@esbuild/aix-ppc64': 0.21.5 + '@esbuild/android-arm': 0.21.5 + '@esbuild/android-arm64': 0.21.5 + '@esbuild/android-x64': 0.21.5 + '@esbuild/darwin-arm64': 0.21.5 + '@esbuild/darwin-x64': 0.21.5 + '@esbuild/freebsd-arm64': 0.21.5 + '@esbuild/freebsd-x64': 0.21.5 + '@esbuild/linux-arm': 0.21.5 + '@esbuild/linux-arm64': 0.21.5 + '@esbuild/linux-ia32': 0.21.5 + '@esbuild/linux-loong64': 0.21.5 + '@esbuild/linux-mips64el': 0.21.5 + '@esbuild/linux-ppc64': 0.21.5 + '@esbuild/linux-riscv64': 0.21.5 + '@esbuild/linux-s390x': 0.21.5 + '@esbuild/linux-x64': 0.21.5 + '@esbuild/netbsd-x64': 0.21.5 + '@esbuild/openbsd-x64': 0.21.5 + '@esbuild/sunos-x64': 0.21.5 + '@esbuild/win32-arm64': 0.21.5 + '@esbuild/win32-ia32': 0.21.5 + '@esbuild/win32-x64': 0.21.5 + escalade@3.2.0: {} escape-string-regexp@1.0.5: {} @@ -4418,6 +5060,10 @@ snapshots: estraverse@5.3.0: {} + estree-walker@3.0.3: + dependencies: + '@types/estree': 1.0.6 + esutils@2.0.3: {} eventemitter3@5.0.1: {} @@ -4436,6 +5082,8 @@ snapshots: exit@0.1.2: {} + expect-type@1.1.0: {} + fast-deep-equal@3.1.3: {} fast-equals@5.0.1: {} @@ -4520,6 +5168,9 @@ snapshots: fs.realpath@1.0.0: {} + fsevents@2.3.3: + optional: true + function-bind@1.1.2: {} function.prototype.name@1.1.8: @@ -4963,8 +5614,14 @@ snapshots: longest-streak@3.1.0: {} + loupe@3.1.2: {} + lru-cache@10.4.3: {} + magic-string@0.30.17: + dependencies: + '@jridgewell/sourcemap-codec': 1.5.0 + markdown-it@14.1.0: dependencies: argparse: 2.0.1 @@ -5341,6 +5998,8 @@ snapshots: mvdan-sh@0.10.1: {} + nanoid@3.3.8: {} + natural-compare@1.4.0: {} nested-error-stacks@2.1.1: {} @@ -5495,6 +6154,10 @@ snapshots: path-type@5.0.0: {} + pathe@1.1.2: {} + + pathval@2.0.0: {} + picocolors@1.1.1: {} picomatch@2.3.1: {} @@ -5505,6 +6168,12 @@ snapshots: possible-typed-array-names@1.0.0: {} + postcss@8.4.49: + dependencies: + nanoid: 3.3.8 + picocolors: 1.1.1 + source-map-js: 1.2.1 + prelude-ls@1.2.1: {} prettier-plugin-packagejson@2.5.6(prettier@3.4.2): @@ -5592,6 +6261,31 @@ snapshots: dependencies: glob: 10.4.5 + rollup@4.29.1: + dependencies: + '@types/estree': 1.0.6 + optionalDependencies: + '@rollup/rollup-android-arm-eabi': 4.29.1 + '@rollup/rollup-android-arm64': 4.29.1 + '@rollup/rollup-darwin-arm64': 4.29.1 + '@rollup/rollup-darwin-x64': 4.29.1 + '@rollup/rollup-freebsd-arm64': 4.29.1 + '@rollup/rollup-freebsd-x64': 4.29.1 + '@rollup/rollup-linux-arm-gnueabihf': 4.29.1 + '@rollup/rollup-linux-arm-musleabihf': 4.29.1 + '@rollup/rollup-linux-arm64-gnu': 4.29.1 + '@rollup/rollup-linux-arm64-musl': 4.29.1 + '@rollup/rollup-linux-loongarch64-gnu': 4.29.1 + '@rollup/rollup-linux-powerpc64le-gnu': 4.29.1 + '@rollup/rollup-linux-riscv64-gnu': 4.29.1 + '@rollup/rollup-linux-s390x-gnu': 4.29.1 + '@rollup/rollup-linux-x64-gnu': 4.29.1 + '@rollup/rollup-linux-x64-musl': 4.29.1 + '@rollup/rollup-win32-arm64-msvc': 4.29.1 + '@rollup/rollup-win32-ia32-msvc': 4.29.1 + '@rollup/rollup-win32-x64-msvc': 4.29.1 + fsevents: 2.3.3 + run-parallel@1.2.0: dependencies: queue-microtask: 1.2.3 @@ -5668,6 +6362,8 @@ snapshots: side-channel-map: 1.0.1 side-channel-weakmap: 1.0.2 + siginfo@2.0.0: {} + signal-exit@4.1.0: {} slash@4.0.0: {} @@ -5699,6 +6395,8 @@ snapshots: sort-object-keys: 1.1.3 tinyglobby: 0.2.10 + source-map-js@1.2.1: {} + spdx-exceptions@2.5.0: {} spdx-expression-parse@4.0.0: @@ -5712,6 +6410,10 @@ snapshots: stable-hash@0.0.4: {} + stackback@0.0.2: {} + + std-env@3.8.0: {} + string-argv@0.3.2: {} string-width@4.2.3: @@ -5796,6 +6498,8 @@ snapshots: through@2.3.8: {} + tinybench@2.9.0: {} + tinyexec@0.3.1: {} tinyglobby@0.2.10: @@ -5803,6 +6507,12 @@ snapshots: fdir: 6.4.2(picomatch@4.0.2) picomatch: 4.0.2 + tinypool@1.0.2: {} + + tinyrainbow@1.2.0: {} + + tinyspy@3.0.2: {} + to-regex-range@5.0.1: dependencies: is-number: 7.0.0 @@ -5913,6 +6623,68 @@ snapshots: dependencies: punycode: 2.3.1 + vite-node@2.1.8(@types/node@22.10.2): + dependencies: + cac: 6.7.14 + debug: 4.4.0 + es-module-lexer: 1.5.4 + pathe: 1.1.2 + vite: 5.4.11(@types/node@22.10.2) + transitivePeerDependencies: + - '@types/node' + - less + - lightningcss + - sass + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + + vite@5.4.11(@types/node@22.10.2): + dependencies: + esbuild: 0.21.5 + postcss: 8.4.49 + rollup: 4.29.1 + optionalDependencies: + '@types/node': 22.10.2 + fsevents: 2.3.3 + + vitest@2.1.8(@types/node@22.10.2): + dependencies: + '@vitest/expect': 2.1.8 + '@vitest/mocker': 2.1.8(vite@5.4.11(@types/node@22.10.2)) + '@vitest/pretty-format': 2.1.8 + '@vitest/runner': 2.1.8 + '@vitest/snapshot': 2.1.8 + '@vitest/spy': 2.1.8 + '@vitest/utils': 2.1.8 + chai: 5.1.2 + debug: 4.4.0 + expect-type: 1.1.0 + magic-string: 0.30.17 + pathe: 1.1.2 + std-env: 3.8.0 + tinybench: 2.9.0 + tinyexec: 0.3.1 + tinypool: 1.0.2 + tinyrainbow: 1.2.0 + vite: 5.4.11(@types/node@22.10.2) + vite-node: 2.1.8(@types/node@22.10.2) + why-is-node-running: 2.3.0 + optionalDependencies: + '@types/node': 22.10.2 + transitivePeerDependencies: + - less + - lightningcss + - msw + - sass + - sass-embedded + - stylus + - sugarss + - supports-color + - terser + vscode-languageserver-textdocument@1.0.12: {} vscode-uri@3.0.8: {} @@ -5961,6 +6733,11 @@ snapshots: dependencies: isexe: 2.0.0 + why-is-node-running@2.3.0: + dependencies: + siginfo: 2.0.0 + stackback: 0.0.2 + word-wrap@1.2.5: {} wrap-ansi@7.0.0: From ccdd1b2fee2fbfe905388a584eaddcbd8aa6141f Mon Sep 17 00:00:00 2001 From: kurone-kito Date: Wed, 25 Dec 2024 21:02:53 +0900 Subject: [PATCH 10/13] feat(node:builder,root): implemented the code builder --- .gitignore | 2 + .vscode/settings.json | 1 + nodePackages/builder/README.md | 12 ++++ nodePackages/builder/package.json | 12 +++- nodePackages/builder/src/getIconsList.mts | 57 +++++++++++++++ nodePackages/builder/src/index.mts | 30 +++++++- nodePackages/builder/src/parseArguments.mts | 45 ++++++++++++ nodePackages/builder/src/svgToContent.mts | 77 ++++++++++++++++++++ nodePackages/builder/src/writeToSource.mts | 78 +++++++++++++++++++++ nodePackages/builder/tsconfig.json | 3 +- pnpm-lock.yaml | 77 ++++++++++++++++++++ 11 files changed, 390 insertions(+), 4 deletions(-) create mode 100644 nodePackages/builder/src/getIconsList.mts create mode 100644 nodePackages/builder/src/parseArguments.mts create mode 100644 nodePackages/builder/src/svgToContent.mts create mode 100644 nodePackages/builder/src/writeToSource.mts diff --git a/.gitignore b/.gitignore index 36128249..7701ea3a 100644 --- a/.gitignore +++ b/.gitignore @@ -350,6 +350,8 @@ $RECYCLE.BIN/ ### Node ### nodePackages/*/LICENSE +nodePackages/builder/assets +nodePackages/*/generated-src ### Unity ### # Example scenes diff --git a/.vscode/settings.json b/.vscode/settings.json index 8f3332f7..b543f67c 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -7,6 +7,7 @@ "*.db": "${capture}.db.st", "*.dll": "${capture}.pdb", "*.md": "${capture}.*.md", + "*.mjs": "${capture}.*", "*.png": "${capture}@*.png", "*.sln": "*.csproj", "*.xml": "${capture}.dll", diff --git a/nodePackages/builder/README.md b/nodePackages/builder/README.md index c9b2042a..f7be9c7b 100644 --- a/nodePackages/builder/README.md +++ b/nodePackages/builder/README.md @@ -2,6 +2,18 @@ LIB: _LunchPad Icons Builder_ +## Usage + +```sh +liBuilder react +``` + +or + +```sh +liBuilder solid-js +``` + ## License This repository is licensed under the [CC-BY-NC 4.0](LICENSE). diff --git a/nodePackages/builder/package.json b/nodePackages/builder/package.json index 2ecae172..05552c98 100644 --- a/nodePackages/builder/package.json +++ b/nodePackages/builder/package.json @@ -26,19 +26,27 @@ "dist" ], "scripts": { - "prebuild": "cpy --flat ../../LICENSE .", + "prebuild": "pnpm run \"/^prebuild:.+/\"", "build": "tsc", - "clean": "rimraf -g \"*.tgz\" \"*.tsbuildinfo\" dist LICENSE node_modules/.cache", + "clean": "rimraf -g \"*.tgz\" \"*.tsbuildinfo\" assets dist LICENSE node_modules/.cache", "preinstall": "pnpm dlx mkdirp dist && pnpm dlx touch dist/index.mjs", "liBuilder": "node dist/index.mjs", "prepack": "pnpm run clean && pnpm run build", + "prebuild:icons": "symlink-dir ../../Packages/black.kit.launchpadicons/Runtime assets", + "prebuild:license": "cpy --flat ../../LICENSE .", "start": "tsc -w", "test": "vitest run" }, + "dependencies": { + "chalk": "^5.4.1", + "prettier": "^3.3.3" + }, "devDependencies": { "@kurone-kito/typescript-config": "^0.17.2", + "@types/node": "^22.10.2", "cpy-cli": "^5.0.0", "rimraf": "^5.0.10", + "symlink-dir": "^6.0.3", "typescript": "~5.7.2", "vitest": "^2.1.8" }, diff --git a/nodePackages/builder/src/getIconsList.mts b/nodePackages/builder/src/getIconsList.mts new file mode 100644 index 00000000..021dbb64 --- /dev/null +++ b/nodePackages/builder/src/getIconsList.mts @@ -0,0 +1,57 @@ +import type { Dirent } from 'node:fs'; +import { readdir } from 'node:fs/promises'; +import { fileURLToPath } from 'node:url'; +import { basename, dirname, join, resolve } from 'node:path'; + +/** + * Get the path to the assets directory. + * @returns the path to the assets directory + */ +export const getAssetsDir = () => + resolve(dirname(fileURLToPath(import.meta.url)), '..', 'assets'); + +/** + * Determine whether a dirent is an SVG file. + * @param dirent the dirent to check + * @returns whether the dirent is an SVG file + */ +export const isSvg = (dirent: Dirent) => + dirent.isFile() && dirent.name.endsWith('.svg'); + +/** + * Get the SVG name from an SVG path. + * @param name the SVG path + * @returns the SVG name + */ +export const getSvgName = (name: string) => basename(name, '.svg'); + +/** + * Get the SVG names from a list of SVG pathes. + * @param list the list of SVG pathes + * @returns the SVG names + */ +export const getSvgNames = (list: readonly string[]) => { + const set = new Set(list.map(getSvgName)); + return [...set].sort(); +}; + +/** + * Get all SVG pathes from a parent path. + * @param path the path to the folder containing the SVG files + * @returns a promise that resolves to an array of SVG names + */ +export const getSvgPathes = async ( + path: string, +): Promise => { + const rec = async (p = path): Promise => + (await readdir(p, { withFileTypes: true })).reduce( + (acc, dirent) => + acc.then(async (a) => [ + ...a, + ...(isSvg(dirent) ? [join(p, dirent.name)] : []), + ...(dirent.isDirectory() ? await rec(join(p, dirent.name)) : []), + ]), + Promise.resolve([]), + ); + return [...(await rec())].sort(); +}; diff --git a/nodePackages/builder/src/index.mts b/nodePackages/builder/src/index.mts index e9fe0090..103d370a 100644 --- a/nodePackages/builder/src/index.mts +++ b/nodePackages/builder/src/index.mts @@ -1 +1,29 @@ -console.log('Hello, world!'); +import chalk from 'chalk'; +import { ParsedArguments, usage } from './parseArguments.mjs'; +import { getAssetsDir, getSvgNames, getSvgPathes } from './getIconsList.mjs'; +import { svgToContentStream } from './svgToContent.mjs'; +import { + initializeSourceDir, + writeNamesList, + writeToIndex, + writeToSourceStream, +} from './writeToSource.mjs'; + +const { help, target } = ParsedArguments(); +if (help) { + console.warn(usage); + process.exit(0); +} + +if (!target) { + console.error(chalk.redBright('Missing target framework.')); + console.warn(usage); + process.exit(1); +} + +const src = await initializeSourceDir(); +const icons = await getSvgPathes(getAssetsDir()); +const names = getSvgNames(icons); +await writeNamesList(src, names); +await svgToContentStream(target, icons).pipeTo(writeToSourceStream(src)); +await writeToIndex(src, names, target); diff --git a/nodePackages/builder/src/parseArguments.mts b/nodePackages/builder/src/parseArguments.mts new file mode 100644 index 00000000..f88244ec --- /dev/null +++ b/nodePackages/builder/src/parseArguments.mts @@ -0,0 +1,45 @@ +import { parseArgs } from 'node:util'; +import chalk from 'chalk'; + +/** The supported frameworks. */ +const supportedFrameworks = ['react', 'solid-js'] as const; + +/** type definition that represents the supported frameworks */ +export type SupportedFrameworks = (typeof supportedFrameworks)[number]; + +/** type definition that represents the parsed arguments */ +export interface ParsedArguments { + /** + * If `true`, the help message should be displayed. + * + * @default false + */ + readonly help: boolean; + + /** the target framework */ + readonly target?: (typeof supportedFrameworks)[number] | undefined; +} + +/** The usage message that should be displayed when the user requests help. */ +export const usage = `${chalk.bold('Usage:')} liBuilder [options] + +${chalk.bold('Arguments:')} + the target framework + +${chalk.bold('Options:')} + -h, --help display this help message`; + +/** + * Parses the command-line arguments and returns the result. + * @returns The parsed arguments. + */ +export const ParsedArguments = (): ParsedArguments => { + const { positionals, values } = parseArgs({ + allowPositionals: true, + options: { help: { type: 'boolean', short: 'h' } }, + }); + const [argTarget] = positionals; + const { help = false } = values; + const target = supportedFrameworks.find((fw) => fw === argTarget); + return { help, target }; +}; diff --git a/nodePackages/builder/src/svgToContent.mts b/nodePackages/builder/src/svgToContent.mts new file mode 100644 index 00000000..a6793a98 --- /dev/null +++ b/nodePackages/builder/src/svgToContent.mts @@ -0,0 +1,77 @@ +import { readFile } from 'node:fs/promises'; +import { ReadableStream } from 'node:stream/web'; +import { format } from 'prettier'; +import { getSvgName } from './getIconsList.mjs'; +import type { SupportedFrameworks } from './parseArguments.mjs'; + +/** Type definition for the parameters of the framework. */ +type FrameworkParams = readonly [ + component: string, + imports: readonly string[], + svgProps: string, +]; + +/** Type definition for the stream content. */ +export type StreamContent = readonly [name: string, content: string]; + +/** Object with the parameters for each supported framework. */ +const paramsByFrameworks: Readonly< + Record +> = { + react: ['FC', ['FC', 'SVGProps'], 'SVGProps'], + 'solid-js': ['Component', ['Component', 'JSX'], 'JSX.SvgSVGAttributes'], +}; + +/** + * Create a function that converts an SVG file into a component for the + * specified framework. + * @param framework The framework to use. + * @returns A function that converts an SVG file into a component. + */ +export const svgToContent = ( + framework: SupportedFrameworks, +): ((name: string, svgContent: string) => Promise) => { + const [component, imports, svgProps] = paramsByFrameworks[framework]; + const importsLine = `import type { ${imports.join(', ')} } from '${framework}';`; + return (name, svgContent) => { + const body = svgContent + .replaceAll('\n', '') + .replace(/') + .replace(/\.([a-m])/g, `.${name}-$1`) + .replace(/class="([a-m])"/g, `class="${name}-$1"`) + .replace(/]*)>/g, '') + .replaceAll(' class=', framework === 'react' ? ' className=' : ' class='); + const componentLine = `export const ${name}: ${component}<${svgProps}> = (props) => (${body});`; + const defaultExport = `export default ${name};`; + const raw = [importsLine, componentLine, defaultExport].join('\n\n'); + return format(raw, { parser: 'typescript' }); + }; +}; + +/** + * Create a stream that converts SVG files into components for the specified + * framework. + * @param framework The framework to use. + * @param pathes The pathes of the SVG files. + * @returns A stream that converts SVG files into components. + */ +export const svgToContentStream = ( + framework: SupportedFrameworks, + pathes: readonly string[], +): ReadableStream => { + const toContent = svgToContent(framework); + return new ReadableStream({ + start: async (controller) => { + await pathes.reduce( + (acc, path) => + acc.then(async () => { + const raw = readFile(path, 'utf-8'); + const name = getSvgName(path); + controller.enqueue([name, await toContent(name, await raw)]); + }), + Promise.resolve(), + ); + controller.close(); + }, + }); +}; diff --git a/nodePackages/builder/src/writeToSource.mts b/nodePackages/builder/src/writeToSource.mts new file mode 100644 index 00000000..2cf722d0 --- /dev/null +++ b/nodePackages/builder/src/writeToSource.mts @@ -0,0 +1,78 @@ +import { mkdir, writeFile } from 'node:fs/promises'; +import { join, resolve } from 'node:path'; +import { WritableStream } from 'node:stream/web'; +import { format } from 'prettier'; +import type { StreamContent } from './svgToContent.mjs'; +import type { SupportedFrameworks } from './parseArguments.mjs'; + +/** The filename containing the icons list. */ +export const ICON_NAMES = 'iconNames'; + +/** The filename containing the index file. */ +export const INDEX = 'index.mts'; + +/** The directory containing the generated source files. */ +export const OUTPUT_SRC_DIR = 'generated-src'; + +/** the extensions for each framework. */ +export const extensions = { + react: 'js', + 'solid-js': 'jsx', +} as const satisfies Readonly>; + +/** + * Initialize the source directory. + * @returns the path to the source directory + */ +export const initializeSourceDir = async () => { + const target = join(process.cwd(), OUTPUT_SRC_DIR); + await mkdir(target, { recursive: true }); + return target; +}; + +/** + * Write the icon names list to a file. + * @param srcDir The parent path of the file. + * @param iconsName The names of the SVG files. + */ +export const writeNamesList = async ( + srcDir: string, + iconsName: readonly string[], +) => { + const raw = JSON.stringify(iconsName, null, 2); + const codeline = `export const ${ICON_NAMES} = ${raw} as const;`; + const defaultExport = `export default ${ICON_NAMES};`; + const code = [codeline, defaultExport].join('\n'); + const body = await format(code, { parser: 'typescript' }); + await writeFile(join(srcDir, `${ICON_NAMES}.mts`), body); +}; + +/** + * Write the content to a file. + * @param srcDir The parent path of the file. + */ +export const writeToSourceStream = (srcDir: string) => + new WritableStream({ + write: ([name, content]) => + writeFile(resolve(srcDir, `${name}.tsx`), content), + }); + +/** + * Write the index file. + * @param srcDir The parent path of the file. + * @param names The names of the SVG files. + */ +export const writeToIndex = async ( + srcDir: string, + names: readonly string[], + framework: SupportedFrameworks, +) => { + const exportNames = `export { ${ICON_NAMES} } from './${ICON_NAMES}.mjs';`; + const ext = extensions[framework]; + const exports = names + .map((name) => `export { ${name} } from './${name}.${ext}';`) + .join('\n'); + const raw = `${exportNames}\n${exports}`; + const body = await format(raw, { parser: 'typescript' }); + await writeFile(resolve(srcDir, INDEX), body); +}; diff --git a/nodePackages/builder/tsconfig.json b/nodePackages/builder/tsconfig.json index 8aa7187b..78dc5e2c 100644 --- a/nodePackages/builder/tsconfig.json +++ b/nodePackages/builder/tsconfig.json @@ -4,7 +4,8 @@ "declaration": false, "declarationMap": false, "outDir": "dist", - "sourceRoot": "src" + "sourceRoot": "src", + "types": ["node"] }, "exclude": ["dist", "node_modules"], "extends": "@kurone-kito/typescript-config/tsconfig.json" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ad98d596..2c3cf80d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -82,16 +82,29 @@ importers: version: 5.0.5(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) nodePackages/builder: + dependencies: + chalk: + specifier: ^5.4.1 + version: 5.4.1 + prettier: + specifier: ^3.3.3 + version: 3.4.2 devDependencies: '@kurone-kito/typescript-config': specifier: ^0.17.2 version: 0.17.2(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(typescript-eslint-language-service@5.0.5(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(typescript@5.7.2) + '@types/node': + specifier: ^22.10.2 + version: 22.10.2 cpy-cli: specifier: ^5.0.0 version: 5.0.0 rimraf: specifier: ^5.0.10 version: 5.0.10 + symlink-dir: + specifier: ^6.0.3 + version: 6.0.3 typescript: specifier: ~5.7.2 version: 5.7.2 @@ -1069,6 +1082,10 @@ packages: '@vitest/utils@2.1.8': resolution: {integrity: sha512-dwSoui6djdwbfFmIgbIjX2ZhIoG7Ex/+xpxyiEgIGzjliY8xGkcpITKTlp6B4MgtGkF2ilvm97cPM96XZaAgcA==} + '@zkochan/rimraf@3.0.2': + resolution: {integrity: sha512-GBf4ua7ogWTr7fATnzk/JLowZDBnBJMm8RkMaC/KcvxZ9gxbMWix0/jImd815LmqKyIHZ7h7lADRddGMdGBuCA==} + engines: {node: '>=18.12'} + JSONStream@1.3.5: resolution: {integrity: sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==} hasBin: true @@ -1169,6 +1186,10 @@ packages: balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + better-path-resolve@1.0.0: + resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==} + engines: {node: '>=4'} + brace-expansion@1.1.11: resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} @@ -1856,6 +1877,10 @@ packages: resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==} engines: {node: '>=14'} + fs-extra@10.1.0: + resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} + engines: {node: '>=12'} + fs.realpath@1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} @@ -2182,6 +2207,10 @@ packages: resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==} engines: {node: '>= 0.4'} + is-windows@1.0.2: + resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} + engines: {node: '>=0.10.0'} + isarray@0.0.1: resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==} @@ -2235,6 +2264,9 @@ packages: jsonc-parser@3.3.1: resolution: {integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==} + jsonfile@6.1.0: + resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} + jsonparse@1.3.1: resolution: {integrity: sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==} engines: {'0': node >= 0.2.0} @@ -2773,6 +2805,10 @@ packages: resolution: {integrity: sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==} engines: {node: '>= 0.4'} + rename-overwrite@6.0.0: + resolution: {integrity: sha512-njyKyIyxYix8yklXAd5Jrp2otBFZdzD8069W/LaqhRpXqpdQpIb0ZEcheX25IdpX2LBpsGl3Qk+NRD/M7S27wg==} + engines: {node: '>=18'} + repeat-string@1.6.1: resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==} engines: {node: '>=0.10'} @@ -3009,6 +3045,11 @@ packages: resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} engines: {node: '>= 0.4'} + symlink-dir@6.0.3: + resolution: {integrity: sha512-tBGda3rNe8+p/p52203vV4EObpDgQJpbYLfcQhQOCTDcaCvDr5QhyKdar+U6/Y+u+TrqMxBFJ5xhutAaOu4HDw==} + engines: {node: '>=18.12'} + hasBin: true + synckit@0.9.2: resolution: {integrity: sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw==} engines: {node: ^14.18.0 || >=16.0.0} @@ -3134,6 +3175,10 @@ packages: unist-util-visit@5.0.0: resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} + universalify@2.0.1: + resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} + engines: {node: '>= 10.0.0'} + uri-js@4.4.1: resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} @@ -4147,6 +4192,8 @@ snapshots: loupe: 3.1.2 tinyrainbow: 1.2.0 + '@zkochan/rimraf@3.0.2': {} + JSONStream@1.3.5: dependencies: jsonparse: 1.3.1 @@ -4260,6 +4307,10 @@ snapshots: balanced-match@1.0.2: {} + better-path-resolve@1.0.0: + dependencies: + is-windows: 1.0.2 + brace-expansion@1.1.11: dependencies: balanced-match: 1.0.2 @@ -5166,6 +5217,12 @@ snapshots: cross-spawn: 7.0.6 signal-exit: 4.1.0 + fs-extra@10.1.0: + dependencies: + graceful-fs: 4.2.11 + jsonfile: 6.1.0 + universalify: 2.0.1 + fs.realpath@1.0.0: {} fsevents@2.3.3: @@ -5481,6 +5538,8 @@ snapshots: call-bound: 1.0.3 get-intrinsic: 1.2.6 + is-windows@1.0.2: {} + isarray@0.0.1: {} isarray@2.0.5: {} @@ -5529,6 +5588,12 @@ snapshots: jsonc-parser@3.3.1: {} + jsonfile@6.1.0: + dependencies: + universalify: 2.0.1 + optionalDependencies: + graceful-fs: 4.2.11 + jsonparse@1.3.1: {} junk@4.0.1: {} @@ -6226,6 +6291,11 @@ snapshots: es-errors: 1.3.0 set-function-name: 2.0.2 + rename-overwrite@6.0.0: + dependencies: + '@zkochan/rimraf': 3.0.2 + fs-extra: 10.1.0 + repeat-string@1.6.1: {} require-directory@2.1.1: {} @@ -6485,6 +6555,11 @@ snapshots: supports-preserve-symlinks-flag@1.0.0: {} + symlink-dir@6.0.3: + dependencies: + better-path-resolve: 1.0.0 + rename-overwrite: 6.0.0 + synckit@0.9.2: dependencies: '@pkgr/core': 0.1.1 @@ -6619,6 +6694,8 @@ snapshots: unist-util-is: 6.0.0 unist-util-visit-parents: 6.0.1 + universalify@2.0.1: {} + uri-js@4.4.1: dependencies: punycode: 2.3.1 From e068129b5e5ba58d2f9ea149f4f0b18639a444ad Mon Sep 17 00:00:00 2001 From: kurone-kito Date: Wed, 25 Dec 2024 21:07:56 +0900 Subject: [PATCH 11/13] feat(node:react,root,solid): implemented the component library --- .vscode/settings.json | 1 + nodePackages/react/README.md | 11 + nodePackages/react/package.json | 15 +- nodePackages/react/tests/iconNames.spec.tsx | 10 + nodePackages/react/tsconfig.json | 8 +- nodePackages/react/vitest.config.ts | 7 + nodePackages/solid/README.md | 11 + nodePackages/solid/package.json | 14 +- nodePackages/solid/tests/iconNames.spec.tsx | 10 + nodePackages/solid/tsconfig.json | 9 +- nodePackages/solid/vitest.config.ts | 7 + pnpm-lock.yaml | 949 +++++++++++++++++++- 12 files changed, 1038 insertions(+), 14 deletions(-) create mode 100644 nodePackages/react/tests/iconNames.spec.tsx create mode 100644 nodePackages/react/vitest.config.ts create mode 100644 nodePackages/solid/tests/iconNames.spec.tsx create mode 100644 nodePackages/solid/vitest.config.ts diff --git a/.vscode/settings.json b/.vscode/settings.json index b543f67c..e732dde5 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -6,6 +6,7 @@ "*": "${capture}.meta, ${capture}.md5, ${capture}-lock", "*.db": "${capture}.db.st", "*.dll": "${capture}.pdb", + "*.js": "${capture}.*", "*.md": "${capture}.*.md", "*.mjs": "${capture}.*", "*.png": "${capture}@*.png", diff --git a/nodePackages/react/README.md b/nodePackages/react/README.md index 5281286f..0e2d3c90 100644 --- a/nodePackages/react/README.md +++ b/nodePackages/react/README.md @@ -6,6 +6,17 @@ npm install @kurone-kito/launchpad-icons-react ``` +```tsx +import { Avatars } from '@kurone-kito/launchpad-icons-react/Avatars'; +import type { FC } from 'react'; + +export const App: FC = () => ( +
+ +
+); +``` + ## License This repository is licensed under the [CC-BY-NC 4.0](LICENSE). diff --git a/nodePackages/react/package.json b/nodePackages/react/package.json index 6ae0f057..a71eac3d 100644 --- a/nodePackages/react/package.json +++ b/nodePackages/react/package.json @@ -26,21 +26,32 @@ "dist" ], "scripts": { - "prebuild": "cpy --flat ../../LICENSE .", + "prebuild": "pnpm run \"/^prebuild:.+/\"", "build": "tsc", - "clean": "rimraf -g \"*.tgz\" \"*.tsbuildinfo\" dist LICENSE node_modules/.cache", + "clean": "rimraf -g \"*.tgz\" \"*.tsbuildinfo\" dist generated-src LICENSE node_modules/.cache", "prepack": "pnpm run clean && pnpm run build", + "prebuild:code": "liBuilder react", + "prebuild:license": "cpy --flat ../../LICENSE .", + "prestart": "pnpm run prebuild", "start": "tsc -w", "test": "vitest run" }, "devDependencies": { "@kurone-kito/launchpad-icons-builder": "workspace:^", "@kurone-kito/typescript-config": "^0.17.2", + "@testing-library/react": "^16.1.0", + "@types/react": "^19.0.2", + "@vitejs/plugin-react": "^4.3.4", "cpy-cli": "^5.0.0", + "jsdom": "^25.0.1", + "react": "^19.0.0", "rimraf": "^5.0.10", "typescript": "~5.7.2", "vitest": "^2.1.8" }, + "peerDependencies": { + "react": ">=18.x.x" + }, "engines": { "node": "^18.20 || ^20.10 || >=22" }, diff --git a/nodePackages/react/tests/iconNames.spec.tsx b/nodePackages/react/tests/iconNames.spec.tsx new file mode 100644 index 00000000..21d29ab9 --- /dev/null +++ b/nodePackages/react/tests/iconNames.spec.tsx @@ -0,0 +1,10 @@ +import { render, screen } from '@testing-library/react'; +import { expect, it } from 'vitest'; + +import * as icons from '../dist/index.mjs'; + +it.each(icons.iconNames)('should render: %s', (iconName) => { + const Icon = icons[iconName]; + render(); + expect(screen.getByRole('img')).toBeTruthy(); +}); diff --git a/nodePackages/react/tsconfig.json b/nodePackages/react/tsconfig.json index 2d081773..e7f821fe 100644 --- a/nodePackages/react/tsconfig.json +++ b/nodePackages/react/tsconfig.json @@ -1,8 +1,10 @@ { "compilerOptions": { + "jsx": "react-jsx", "outDir": "dist", - "rootDir": "src" + "rootDir": "generated-src" }, - "exclude": ["dist", "node_modules"], - "extends": "@kurone-kito/typescript-config/tsconfig.json" + "exclude": ["dist", "node_modules", "**/*.spec.tsx"], + "extends": "@kurone-kito/typescript-config/tsconfig.json", + "include": ["generated-src/*.mts", "generated-src/*.tsx"] } diff --git a/nodePackages/react/vitest.config.ts b/nodePackages/react/vitest.config.ts new file mode 100644 index 00000000..5ec64dc3 --- /dev/null +++ b/nodePackages/react/vitest.config.ts @@ -0,0 +1,7 @@ +import react from '@vitejs/plugin-react'; +import { defineConfig } from 'vitest/config'; + +export default defineConfig({ + plugins: [react()], + test: { environment: 'jsdom', globals: true, include: ['tests/*.spec.tsx'] }, +}); diff --git a/nodePackages/solid/README.md b/nodePackages/solid/README.md index ff116c50..a039dfa8 100644 --- a/nodePackages/solid/README.md +++ b/nodePackages/solid/README.md @@ -6,6 +6,17 @@ npm install @kurone-kito/launchpad-icons-solid ``` +```tsx +import { Avatars } from '@kurone-kito/launchpad-icons-solid/dist/Avatars'; +import type { Component } from 'solid-js'; + +export const App: Component = () => ( +
+ +
+); +``` + ## License This repository is licensed under the [CC-BY-NC 4.0](LICENSE). diff --git a/nodePackages/solid/package.json b/nodePackages/solid/package.json index 599fdda1..f48dfac5 100644 --- a/nodePackages/solid/package.json +++ b/nodePackages/solid/package.json @@ -27,21 +27,31 @@ "dist" ], "scripts": { - "prebuild": "cpy --flat ../../LICENSE .", + "prebuild": "pnpm run \"/^prebuild:.+/\"", "build": "tsc", - "clean": "rimraf -g \"*.tgz\" \"*.tsbuildinfo\" dist LICENSE node_modules/.cache", + "clean": "rimraf -g \"*.tgz\" \"*.tsbuildinfo\" dist generated-src LICENSE node_modules/.cache", "prepack": "pnpm run clean && pnpm run build", + "prebuild:code": "liBuilder solid-js", + "prebuild:license": "cpy --flat ../../LICENSE .", + "prestart": "pnpm run prebuild", "start": "tsc -w", "test": "vitest run" }, "devDependencies": { "@kurone-kito/launchpad-icons-builder": "workspace:^", "@kurone-kito/typescript-config": "^0.17.2", + "@solidjs/testing-library": "^0.8.10", "cpy-cli": "^5.0.0", + "jsdom": "^25.0.1", "rimraf": "^5.0.10", + "solid-js": "^1.9.3", "typescript": "~5.7.2", + "vite-plugin-solid": "^2.11.0", "vitest": "^2.1.8" }, + "peerDependencies": { + "solid-js": ">=1.x.x" + }, "engines": { "node": "^18.20 || ^20.10 || >=22" }, diff --git a/nodePackages/solid/tests/iconNames.spec.tsx b/nodePackages/solid/tests/iconNames.spec.tsx new file mode 100644 index 00000000..52bd3010 --- /dev/null +++ b/nodePackages/solid/tests/iconNames.spec.tsx @@ -0,0 +1,10 @@ +import { render, screen } from '@solidjs/testing-library'; +import { expect, it } from 'vitest'; + +import * as icons from '../dist/index.mjs'; + +it.each(icons.iconNames)('should render: %s', (iconName) => { + const Icon = icons[iconName]; + render(); + expect(screen.getByRole('img')).toBeTruthy(); +}); diff --git a/nodePackages/solid/tsconfig.json b/nodePackages/solid/tsconfig.json index 2d081773..0448cf5d 100644 --- a/nodePackages/solid/tsconfig.json +++ b/nodePackages/solid/tsconfig.json @@ -1,8 +1,11 @@ { "compilerOptions": { + "jsx": "preserve", + "jsxImportSource": "solid-js", "outDir": "dist", - "rootDir": "src" + "rootDir": "generated-src" }, - "exclude": ["dist", "node_modules"], - "extends": "@kurone-kito/typescript-config/tsconfig.json" + "exclude": ["dist", "node_modules", "**/*.spec.tsx"], + "extends": "@kurone-kito/typescript-config/tsconfig.json", + "include": ["generated-src/*.mts", "generated-src/*.tsx"] } diff --git a/nodePackages/solid/vitest.config.ts b/nodePackages/solid/vitest.config.ts new file mode 100644 index 00000000..b1d38ae2 --- /dev/null +++ b/nodePackages/solid/vitest.config.ts @@ -0,0 +1,7 @@ +import solid from 'vite-plugin-solid'; +import { defineConfig } from 'vitest/config'; + +export default defineConfig({ + plugins: [solid()], + test: { environment: 'jsdom', globals: true, include: ['tests/*.spec.tsx'] }, +}); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 2c3cf80d..835ea845 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -110,7 +110,7 @@ importers: version: 5.7.2 vitest: specifier: ^2.1.8 - version: 2.1.8(@types/node@22.10.2) + version: 2.1.8(@types/node@22.10.2)(jsdom@25.0.1) nodePackages/react: devDependencies: @@ -120,9 +120,24 @@ importers: '@kurone-kito/typescript-config': specifier: ^0.17.2 version: 0.17.2(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(typescript-eslint-language-service@5.0.5(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(typescript@5.7.2) + '@testing-library/react': + specifier: ^16.1.0 + version: 16.1.0(@testing-library/dom@10.4.0)(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@types/react': + specifier: ^19.0.2 + version: 19.0.2 + '@vitejs/plugin-react': + specifier: ^4.3.4 + version: 4.3.4(vite@5.4.11(@types/node@22.10.2)) cpy-cli: specifier: ^5.0.0 version: 5.0.0 + jsdom: + specifier: ^25.0.1 + version: 25.0.1 + react: + specifier: ^19.0.0 + version: 19.0.0 rimraf: specifier: ^5.0.10 version: 5.0.10 @@ -131,7 +146,7 @@ importers: version: 5.7.2 vitest: specifier: ^2.1.8 - version: 2.1.8(@types/node@22.10.2) + version: 2.1.8(@types/node@22.10.2)(jsdom@25.0.1) nodePackages/solid: devDependencies: @@ -141,18 +156,30 @@ importers: '@kurone-kito/typescript-config': specifier: ^0.17.2 version: 0.17.2(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(typescript-eslint-language-service@5.0.5(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(typescript@5.7.2) + '@solidjs/testing-library': + specifier: ^0.8.10 + version: 0.8.10(solid-js@1.9.3) cpy-cli: specifier: ^5.0.0 version: 5.0.0 + jsdom: + specifier: ^25.0.1 + version: 25.0.1 rimraf: specifier: ^5.0.10 version: 5.0.10 + solid-js: + specifier: ^1.9.3 + version: 1.9.3 typescript: specifier: ~5.7.2 version: 5.7.2 + vite-plugin-solid: + specifier: ^2.11.0 + version: 2.11.0(solid-js@1.9.3)(vite@5.4.11(@types/node@22.10.2)) vitest: specifier: ^2.1.8 - version: 2.1.8(@types/node@22.10.2) + version: 2.1.8(@types/node@22.10.2)(jsdom@25.0.1) nodePackages/web: dependencies: @@ -169,6 +196,10 @@ importers: packages: + '@ampproject/remapping@2.3.0': + resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} + engines: {node: '>=6.0.0'} + '@babel/code-frame@7.12.11': resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==} @@ -176,14 +207,99 @@ packages: resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==} engines: {node: '>=6.9.0'} + '@babel/compat-data@7.26.3': + resolution: {integrity: sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g==} + engines: {node: '>=6.9.0'} + + '@babel/core@7.26.0': + resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==} + engines: {node: '>=6.9.0'} + + '@babel/generator@7.26.3': + resolution: {integrity: sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==} + engines: {node: '>=6.9.0'} + + '@babel/helper-compilation-targets@7.25.9': + resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==} + engines: {node: '>=6.9.0'} + + '@babel/helper-module-imports@7.18.6': + resolution: {integrity: sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==} + engines: {node: '>=6.9.0'} + + '@babel/helper-module-imports@7.25.9': + resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-module-transforms@7.26.0': + resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + + '@babel/helper-plugin-utils@7.25.9': + resolution: {integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==} + engines: {node: '>=6.9.0'} + + '@babel/helper-string-parser@7.25.9': + resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==} + engines: {node: '>=6.9.0'} + '@babel/helper-validator-identifier@7.25.9': resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==} engines: {node: '>=6.9.0'} + '@babel/helper-validator-option@7.25.9': + resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==} + engines: {node: '>=6.9.0'} + + '@babel/helpers@7.26.0': + resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==} + engines: {node: '>=6.9.0'} + '@babel/highlight@7.25.9': resolution: {integrity: sha512-llL88JShoCsth8fF8R4SJnIn+WLvR6ccFxu1H3FlMhDontdcmZWf2HgIZ7AIqV3Xcck1idlohrN4EUBQz6klbw==} engines: {node: '>=6.9.0'} + '@babel/parser@7.26.3': + resolution: {integrity: sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==} + engines: {node: '>=6.0.0'} + hasBin: true + + '@babel/plugin-syntax-jsx@7.25.9': + resolution: {integrity: sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-jsx-self@7.25.9': + resolution: {integrity: sha512-y8quW6p0WHkEhmErnfe58r7x0A70uKphQm8Sp8cV7tjNQwK56sNVK0M73LK3WuYmsuyrftut4xAkjjgU0twaMg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/plugin-transform-react-jsx-source@7.25.9': + resolution: {integrity: sha512-+iqjT8xmXhhYv4/uiYd8FNQsraMFZIfxVSqxxVSZP0WbbSAWvBXAul0m/zu+7Vv4O/3WtApy9pmaTMiumEZgfg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0-0 + + '@babel/runtime@7.26.0': + resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==} + engines: {node: '>=6.9.0'} + + '@babel/template@7.25.9': + resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==} + engines: {node: '>=6.9.0'} + + '@babel/traverse@7.26.4': + resolution: {integrity: sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w==} + engines: {node: '>=6.9.0'} + + '@babel/types@7.26.3': + resolution: {integrity: sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==} + engines: {node: '>=6.9.0'} + '@commitlint/cli@19.6.1': resolution: {integrity: sha512-8hcyA6ZoHwWXC76BoC8qVOSr8xHy00LZhZpauiD0iO0VYbVhMnED0da85lTfIULxl7Lj4c6vZgF0Wu/ed1+jlQ==} engines: {node: '>=v18'} @@ -710,9 +826,24 @@ packages: resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} engines: {node: '>=12'} + '@jridgewell/gen-mapping@0.3.8': + resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==} + engines: {node: '>=6.0.0'} + + '@jridgewell/resolve-uri@3.1.2': + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} + engines: {node: '>=6.0.0'} + + '@jridgewell/set-array@1.2.1': + resolution: {integrity: sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==} + engines: {node: '>=6.0.0'} + '@jridgewell/sourcemap-codec@1.5.0': resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==} + '@jridgewell/trace-mapping@0.3.25': + resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} + '@kesills/eslint-config-airbnb-typescript@20.0.0': resolution: {integrity: sha512-P3DBcIs5eQsEMz4mgwG9ZsOqwE42EGFJ+fI49IFp8ai8D2dHhByr7oUoTW6aDzGe4tVjFOfCjEjcAA1b8sVWTg==} peerDependencies: @@ -970,12 +1101,56 @@ packages: resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==} engines: {node: '>=18'} + '@solidjs/testing-library@0.8.10': + resolution: {integrity: sha512-qdeuIerwyq7oQTIrrKvV0aL9aFeuwTd86VYD3afdq5HYEwoox1OBTJy4y8A3TFZr8oAR0nujYgCzY/8wgHGfeQ==} + engines: {node: '>= 14'} + peerDependencies: + '@solidjs/router': '>=0.9.0' + solid-js: '>=1.0.0' + peerDependenciesMeta: + '@solidjs/router': + optional: true + '@stylistic/eslint-plugin@2.12.1': resolution: {integrity: sha512-fubZKIHSPuo07FgRTn6S4Nl0uXPRPYVNpyZzIDGfp7Fny6JjNus6kReLD7NI380JXi4HtUTSOZ34LBuNPO1XLQ==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} peerDependencies: eslint: '>=8.40.0' + '@testing-library/dom@10.4.0': + resolution: {integrity: sha512-pemlzrSESWbdAloYml3bAJMEfNh1Z7EduzqPKprCH5S341frlpYnUEW0H72dLxa6IsYr+mPno20GiSm+h9dEdQ==} + engines: {node: '>=18'} + + '@testing-library/react@16.1.0': + resolution: {integrity: sha512-Q2ToPvg0KsVL0ohND9A3zLJWcOXXcO8IDu3fj11KhNt0UlCWyFyvnCIBkd12tidB2lkiVRG8VFqdhcqhqnAQtg==} + engines: {node: '>=18'} + peerDependencies: + '@testing-library/dom': ^10.0.0 + '@types/react': ^18.0.0 || ^19.0.0 + '@types/react-dom': ^18.0.0 || ^19.0.0 + react: ^18.0.0 || ^19.0.0 + react-dom: ^18.0.0 || ^19.0.0 + peerDependenciesMeta: + '@types/react': + optional: true + '@types/react-dom': + optional: true + + '@types/aria-query@5.0.4': + resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==} + + '@types/babel__core@7.20.5': + resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} + + '@types/babel__generator@7.6.8': + resolution: {integrity: sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==} + + '@types/babel__template@7.4.4': + resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} + + '@types/babel__traverse@7.20.6': + resolution: {integrity: sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==} + '@types/conventional-commits-parser@5.0.1': resolution: {integrity: sha512-7uz5EHdzz2TqoMfV7ee61Egf5y6NkcO4FB/1iCCQnbeiI1F3xzv3vK5dBCXUCLQgGYS+mUeigK1iKQzvED+QnQ==} @@ -1000,6 +1175,9 @@ packages: '@types/node@22.10.2': resolution: {integrity: sha512-Xxr6BBRCAOQixvonOye19wnzyDiUtTeqldOOmj3CkeblonbccA12PFwlufvRdrpjXxqnmUaeiU5EOA+7s5diUQ==} + '@types/react@19.0.2': + resolution: {integrity: sha512-USU8ZI/xyKJwFTpjSVIrSeHBVAGagkHQKPNbxeWwql/vDmnTIBgx+TJnhFnj1NXgz8XfprU0egV2dROLGpsBEg==} + '@types/unist@3.0.3': resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==} @@ -1053,6 +1231,12 @@ packages: '@ungap/structured-clone@1.2.1': resolution: {integrity: sha512-fEzPV3hSkSMltkw152tJKNARhOupqbH96MZWyRjNaYZOMIzbrTeQDG+MTc6Mr2pgzFQzFxAfmhGDNP5QK++2ZA==} + '@vitejs/plugin-react@4.3.4': + resolution: {integrity: sha512-SCCPBJtYLdE8PX/7ZQAs1QAZ8Jqwih+0VBLum1EGqmCCQal+MIUqLCzj3ZUy8ufbC0cAM4LRlSTm7IQJwWT4ug==} + engines: {node: ^14.18.0 || >=16.0.0} + peerDependencies: + vite: ^4.2.0 || ^5.0.0 || ^6.0.0 + '@vitest/expect@2.1.8': resolution: {integrity: sha512-8ytZ/fFHq2g4PJVAtDX57mayemKgDR6X3Oa2Foro+EygiOJHUXhCqBAAKQYYajZpFoIfvBCF1j6R6IYRSIUFuw==} @@ -1100,6 +1284,10 @@ packages: engines: {node: '>=0.4.0'} hasBin: true + agent-base@7.1.3: + resolution: {integrity: sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==} + engines: {node: '>= 14'} + aggregate-error@4.0.1: resolution: {integrity: sha512-0poP0T7el6Vq3rstR8Mn4V/IQrpBLO6POkUSrN7RhyY+GF/InCFShQzsQ39T25gkHhLgSLByyAz+Kjb+c2L98w==} engines: {node: '>=12'} @@ -1130,6 +1318,10 @@ packages: resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} engines: {node: '>=8'} + ansi-styles@5.2.0: + resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} + engines: {node: '>=10'} + ansi-styles@6.2.1: resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} engines: {node: '>=12'} @@ -1141,6 +1333,9 @@ packages: argparse@2.0.1: resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + aria-query@5.3.0: + resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==} + array-buffer-byte-length@1.0.2: resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==} engines: {node: '>= 0.4'} @@ -1179,10 +1374,23 @@ packages: resolution: {integrity: sha512-Izi8RQcffqCeNVgFigKli1ssklIbpHnCYc6AknXGYoB6grJqyeby7jv12JUQgmTAnIDnbck1uxksT4dzN3PWBA==} engines: {node: '>=12'} + asynckit@0.4.0: + resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + available-typed-arrays@1.0.7: resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} engines: {node: '>= 0.4'} + babel-plugin-jsx-dom-expressions@0.39.3: + resolution: {integrity: sha512-6RzmSu21zYPlV2gNwzjGG9FgODtt9hIWnx7L//OIioIEuRcnpDZoY8Tr+I81Cy1SrH4qoDyKpwHHo6uAMAeyPA==} + peerDependencies: + '@babel/core': ^7.20.12 + + babel-preset-solid@1.9.3: + resolution: {integrity: sha512-jvlx5wDp8s+bEF9sGFw/84SInXOA51ttkUEroQziKMbxplXThVKt83qB6bDTa1HuLNatdU9FHpFOiQWs1tLQIg==} + peerDependencies: + '@babel/core': ^7.0.0 + balanced-match@1.0.2: resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} @@ -1200,6 +1408,11 @@ packages: resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} engines: {node: '>=8'} + browserslist@4.24.3: + resolution: {integrity: sha512-1CPmv8iobE2fyRMV97dAcMVegvvWKxmq94hkLiAkUGwKVTyDLw33K+ZxiFrREKmmps4rIw6grcCFCnTMSZ/YiA==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + cac@6.7.14: resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} engines: {node: '>=8'} @@ -1220,6 +1433,9 @@ packages: resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} engines: {node: '>=6'} + caniuse-lite@1.0.30001690: + resolution: {integrity: sha512-5ExiE3qQN6oF8Clf8ifIDcMRCRE/dMGcETG/XGMD8/XiXm6HXQgQTh1yZYLXXpSOsEUlJm1Xr7kGULZTuGtP/w==} + ccount@2.0.1: resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} @@ -1294,6 +1510,10 @@ packages: colorette@2.0.20: resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} + combined-stream@1.0.8: + resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} + engines: {node: '>= 0.8'} + commander@10.0.1: resolution: {integrity: sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==} engines: {node: '>=14'} @@ -1335,6 +1555,9 @@ packages: engines: {node: '>=16'} hasBin: true + convert-source-map@2.0.0: + resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} + core-util-is@1.0.3: resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} @@ -1411,10 +1634,21 @@ packages: engines: {node: '>=18'} hasBin: true + cssstyle@4.1.0: + resolution: {integrity: sha512-h66W1URKpBS5YMI/V8PyXvTMFT8SupJ1IzoIV8IeBC/ji8WVmrO8dGlTi+2dh6whmdk6BiKJLD/ZBkhWbcg6nA==} + engines: {node: '>=18'} + + csstype@3.1.3: + resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} + dargs@8.1.0: resolution: {integrity: sha512-wAV9QHOsNbwnWdNW2FYvE1P56wtgSbM+3SZcdGiWQILwVjACCXDCI3Ai8QlCjMDB8YK5zySiXZYBiwGmNY3lnw==} engines: {node: '>=12'} + data-urls@5.0.0: + resolution: {integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==} + engines: {node: '>=18'} + data-view-buffer@1.0.2: resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==} engines: {node: '>= 0.4'} @@ -1447,6 +1681,9 @@ packages: supports-color: optional: true + decimal.js@10.4.3: + resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==} + decode-named-character-reference@1.0.2: resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==} @@ -1465,6 +1702,10 @@ packages: resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} engines: {node: '>= 0.4'} + delayed-stream@1.0.0: + resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} + engines: {node: '>=0.4.0'} + dequal@2.0.3: resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} engines: {node: '>=6'} @@ -1492,6 +1733,9 @@ packages: resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} engines: {node: '>=6.0.0'} + dom-accessibility-api@0.5.16: + resolution: {integrity: sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==} + dom-serializer@0.2.2: resolution: {integrity: sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==} @@ -1523,6 +1767,9 @@ packages: engines: {node: '>=14'} hasBin: true + electron-to-chromium@1.5.76: + resolution: {integrity: sha512-CjVQyG7n7Sr+eBXE86HIulnL5N8xZY1sgmOPGuq/F0Rr0FJq63lg0kEtOIDfZBk44FnDLf6FUJ+dsJcuiUDdDQ==} + emoji-regex@10.4.0: resolution: {integrity: sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==} @@ -1877,6 +2124,10 @@ packages: resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==} engines: {node: '>=14'} + form-data@4.0.1: + resolution: {integrity: sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==} + engines: {node: '>= 6'} + fs-extra@10.1.0: resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==} engines: {node: '>=12'} @@ -1903,6 +2154,10 @@ packages: resolution: {integrity: sha512-47Frx13aZh01afHJTB3zTtKIlFI6vWY+MYCN9Qpew6i52rfKjnhCF/l1YlC8UmEMvvntZZ6z4PiCcmyuedR2aQ==} engines: {node: '>=18'} + gensync@1.0.0-beta.2: + resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} + engines: {node: '>=6.9.0'} + get-caller-file@2.0.5: resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} engines: {node: 6.* || 8.* || >= 10.*} @@ -1958,6 +2213,10 @@ packages: resolution: {integrity: sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==} engines: {node: '>=18'} + globals@11.12.0: + resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} + engines: {node: '>=4'} + globals@13.24.0: resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} engines: {node: '>=8'} @@ -2027,9 +2286,24 @@ packages: resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} engines: {node: '>= 0.4'} + html-encoding-sniffer@4.0.0: + resolution: {integrity: sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==} + engines: {node: '>=18'} + + html-entities@2.3.3: + resolution: {integrity: sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==} + htmlparser2@3.8.3: resolution: {integrity: sha512-hBxEg3CYXe+rPIua8ETe7tmG3XDn9B0edOE/e9wH2nLczxzgdu0m0aNHY+5wFZiviLWLdANPJTssa92dMcXQ5Q==} + http-proxy-agent@7.0.2: + resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==} + engines: {node: '>= 14'} + + https-proxy-agent@7.0.6: + resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==} + engines: {node: '>= 14'} + human-signals@5.0.0: resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} engines: {node: '>=16.17.0'} @@ -2039,6 +2313,10 @@ packages: engines: {node: '>=18'} hasBin: true + iconv-lite@0.6.3: + resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} + engines: {node: '>=0.10.0'} + ignore@5.3.2: resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} engines: {node: '>= 4'} @@ -2163,6 +2441,9 @@ packages: resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} engines: {node: '>=12'} + is-potential-custom-element-name@1.0.1: + resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==} + is-regex@1.2.1: resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==} engines: {node: '>= 0.4'} @@ -2207,6 +2488,10 @@ packages: resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==} engines: {node: '>= 0.4'} + is-what@4.1.16: + resolution: {integrity: sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==} + engines: {node: '>=12.13'} + is-windows@1.0.2: resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==} engines: {node: '>=0.10.0'} @@ -2238,6 +2523,20 @@ packages: resolution: {integrity: sha512-Hicd6JK5Njt2QB6XYFS7ok9e37O8AYk3jTcppG4YVQnYjOemymvTcmc7OWsmq/Qqj5TdRFO5/x/tIPmBeRtGHg==} engines: {node: '>=12.0.0'} + jsdom@25.0.1: + resolution: {integrity: sha512-8i7LzZj7BF8uplX+ZyOlIz86V6TAsSs+np6m1kpW9u0JWi4z/1t+FzcK1aek+ybTnAC4KhBL4uXCNT0wcUIeCw==} + engines: {node: '>=18'} + peerDependencies: + canvas: ^2.11.2 + peerDependenciesMeta: + canvas: + optional: true + + jsesc@3.1.0: + resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} + engines: {node: '>=6'} + hasBin: true + jshint@2.13.6: resolution: {integrity: sha512-IVdB4G0NTTeQZrBoM8C5JFVLjV2KtZ9APgybDA1MK73xb09qFs0jCXyQLnCOp1cSZZZbvhq/6mfXHUTaDkffuQ==} hasBin: true @@ -2261,6 +2560,11 @@ packages: resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==} hasBin: true + json5@2.2.3: + resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} + engines: {node: '>=6'} + hasBin: true + jsonc-parser@3.3.1: resolution: {integrity: sha512-HUgH65KyejrUFPvHFPbqOY0rsFip3Bo5wb4ngvdi1EpCYWUQDC5V+Y7mZws+DLkr4M//zQJoanu1SP+87Dv1oQ==} @@ -2356,6 +2660,13 @@ packages: lru-cache@10.4.3: resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} + lru-cache@5.1.1: + resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + + lz-string@1.5.0: + resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} + hasBin: true + magic-string@0.30.17: resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==} @@ -2440,6 +2751,10 @@ packages: resolution: {integrity: sha512-BhXM0Au22RwUneMPwSCnyhTOizdWoIEPU9sp0Aqa1PnDMR5Wv2FGXYDjuzJEIX+Eo2Rb8xuYe5jrnm5QowQFkw==} engines: {node: '>=16.10'} + merge-anything@5.1.7: + resolution: {integrity: sha512-eRtbOb1N5iyH0tkQDAoQ4Ipsp/5qSR79Dzrz8hEPxRX10RWWR/iQXdoKmBSRCThY1Fh5EhISDtpSc93fpxUniQ==} + engines: {node: '>=12.13'} + merge-stream@2.0.0: resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} @@ -2535,6 +2850,14 @@ packages: resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} engines: {node: '>=8.6'} + mime-db@1.52.0: + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} + + mime-types@2.1.35: + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} + mimic-fn@4.0.0: resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} engines: {node: '>=12'} @@ -2581,10 +2904,16 @@ packages: nested-error-stacks@2.1.1: resolution: {integrity: sha512-9iN1ka/9zmX1ZvLV9ewJYEk9h7RyRRtqdK0woXcqohu8EWIerfPUjYJPg0ULy0UqP7cslmdGc8xKDJcojlKiaw==} + node-releases@2.0.19: + resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==} + npm-run-path@5.3.0: resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + nwsapi@2.2.16: + resolution: {integrity: sha512-F1I/bimDpj3ncaNDhfyMWuFqmQDBwDB0Fogc2qpL3BWvkQteFD/8BzWuIRl83rq0DXfm8SGt/HFhLXZyljTXcQ==} + object-inspect@1.13.3: resolution: {integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==} engines: {node: '>= 0.4'} @@ -2688,6 +3017,9 @@ packages: resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} engines: {node: '>=8'} + parse5@7.2.1: + resolution: {integrity: sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==} + path-exists@4.0.0: resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} engines: {node: '>=8'} @@ -2783,6 +3115,10 @@ packages: engines: {node: '>=14'} hasBin: true + pretty-format@27.5.1: + resolution: {integrity: sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==} + engines: {node: ^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0} + punycode.js@2.3.1: resolution: {integrity: sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==} engines: {node: '>=6'} @@ -2794,6 +3130,22 @@ packages: queue-microtask@1.2.3: resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + react-dom@19.0.0: + resolution: {integrity: sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==} + peerDependencies: + react: ^19.0.0 + + react-is@17.0.2: + resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} + + react-refresh@0.14.2: + resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==} + engines: {node: '>=0.10.0'} + + react@19.0.0: + resolution: {integrity: sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==} + engines: {node: '>=0.10.0'} + readable-stream@1.1.14: resolution: {integrity: sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==} @@ -2801,6 +3153,9 @@ packages: resolution: {integrity: sha512-r0Ay04Snci87djAsI4U+WNRcSw5S4pOH7qFjd/veA5gC7TbqESR3tcj28ia95L/fYUDw11JKP7uqUKUAfVvV5Q==} engines: {node: '>= 0.4'} + regenerator-runtime@0.14.1: + resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==} + regexp.prototype.flags@1.5.3: resolution: {integrity: sha512-vqlC04+RQoFalODCbCumG2xIOvapzVMHwsyIGM/SIE8fRhFFsXeH8/QQ+s0T0kDAhKc4k30s73/0ydkHQz6HlQ==} engines: {node: '>= 0.4'} @@ -2862,6 +3217,9 @@ packages: engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true + rrweb-cssom@0.7.1: + resolution: {integrity: sha512-TrEMa7JGdVm0UThDJSx7ddw5nVm3UJS9o9CCIZ72B1vSyEZoziDqBYP3XIoi/12lKrJR8rE3jeFHMok2F/Mnsg==} + run-parallel@1.2.0: resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} @@ -2873,6 +3231,16 @@ packages: resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==} engines: {node: '>= 0.4'} + safer-buffer@2.1.2: + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} + + saxes@6.0.0: + resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==} + engines: {node: '>=v12.22.7'} + + scheduler@0.25.0: + resolution: {integrity: sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==} + semver@6.3.1: resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} hasBin: true @@ -2882,6 +3250,16 @@ packages: engines: {node: '>=10'} hasBin: true + seroval-plugins@1.1.1: + resolution: {integrity: sha512-qNSy1+nUj7hsCOon7AO4wdAIo9P0jrzAMp18XhiOzA6/uO5TKtP7ScozVJ8T293oRIvi5wyCHSM4TrJo/c/GJA==} + engines: {node: '>=10'} + peerDependencies: + seroval: ^1.0 + + seroval@1.1.1: + resolution: {integrity: sha512-rqEO6FZk8mv7Hyv4UCj3FD3b6Waqft605TLfsCe/BiaylRpyyMC0b+uA5TJKawX3KzMrdi3wsLbCaLplrQmBvQ==} + engines: {node: '>=10'} + set-function-length@1.2.2: resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} engines: {node: '>= 0.4'} @@ -2944,6 +3322,14 @@ packages: resolution: {integrity: sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==} engines: {node: '>=18'} + solid-js@1.9.3: + resolution: {integrity: sha512-5ba3taPoZGt9GY3YlsCB24kCg0Lv/rie/HTD4kG6h4daZZz7+yK02xn8Vx8dLYBc9i6Ps5JwAbEiqjmKaLB3Ag==} + + solid-refresh@0.6.3: + resolution: {integrity: sha512-F3aPsX6hVw9ttm5LYlth8Q15x6MlI/J3Dn+o3EQyRTtTxidepSTwAYdozt01/YA+7ObcciagGEyXIopGZzQtbA==} + peerDependencies: + solid-js: ^1.3 + sort-object-keys@1.1.3: resolution: {integrity: sha512-855pvK+VkU7PaKYPc+Jjnmt4EzejQHyhhF33q31qG8x7maDzkeFhAAThdCYay11CISO+qAMwjOBP+fPZe0IPyg==} @@ -3045,6 +3431,9 @@ packages: resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} engines: {node: '>= 0.4'} + symbol-tree@3.2.4: + resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==} + symlink-dir@6.0.3: resolution: {integrity: sha512-tBGda3rNe8+p/p52203vV4EObpDgQJpbYLfcQhQOCTDcaCvDr5QhyKdar+U6/Y+u+TrqMxBFJ5xhutAaOu4HDw==} engines: {node: '>=18.12'} @@ -3090,10 +3479,25 @@ packages: resolution: {integrity: sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==} engines: {node: '>=14.0.0'} + tldts-core@6.1.70: + resolution: {integrity: sha512-RNnIXDB1FD4T9cpQRErEqw6ZpjLlGdMOitdV+0xtbsnwr4YFka1zpc7D4KD+aAn8oSG5JyFrdasZTE04qDE9Yg==} + + tldts@6.1.70: + resolution: {integrity: sha512-/W1YVgYVJd9ZDjey5NXadNh0mJXkiUMUue9Zebd0vpdo1sU+H4zFFTaJ1RKD4N6KFoHfcXy6l+Vu7bh+bdWCzA==} + hasBin: true + to-regex-range@5.0.1: resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} engines: {node: '>=8.0'} + tough-cookie@5.0.0: + resolution: {integrity: sha512-FRKsF7cz96xIIeMZ82ehjC3xW2E+O2+v11udrDYewUbszngYhsGa8z6YUMMzO9QJZzzyd0nGGXnML/TReX6W8Q==} + engines: {node: '>=16'} + + tr46@5.0.0: + resolution: {integrity: sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==} + engines: {node: '>=18'} + ts-api-utils@1.4.3: resolution: {integrity: sha512-i3eMG77UTMD0hZhgRS562pv83RC6ukSAC2GMNWc+9dieh/+jDM5u5YG+NHX6VNDRHQcHwmsTHctP9LhbC3WxVw==} engines: {node: '>=16'} @@ -3179,14 +3583,33 @@ packages: resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==} engines: {node: '>= 10.0.0'} + update-browserslist-db@1.1.1: + resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + uri-js@4.4.1: resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + validate-html-nesting@1.2.2: + resolution: {integrity: sha512-hGdgQozCsQJMyfK5urgFcWEqsSSrK63Awe0t/IMR0bZ0QMtnuaiHzThW81guu3qx9abLi99NEuiaN6P9gVYsNg==} + vite-node@2.1.8: resolution: {integrity: sha512-uPAwSr57kYjAUux+8E2j0q0Fxpn8M9VoyfGiRI8Kfktz9NcYMCenwY5RnZxnF1WTu3TGiYipirIzacLL3VVGFg==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true + vite-plugin-solid@2.11.0: + resolution: {integrity: sha512-G+NiwDj4EAeUE0wt3Ur9f+Lt9oMUuLd0FIxYuqwJSqRacKQRteCwUFzNy8zMEt88xWokngQhiFjfJMhjc1fDXw==} + peerDependencies: + '@testing-library/jest-dom': ^5.16.6 || ^5.17.0 || ^6.* + solid-js: ^1.7.2 + vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 + peerDependenciesMeta: + '@testing-library/jest-dom': + optional: true + vite@5.4.11: resolution: {integrity: sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q==} engines: {node: ^18.0.0 || >=20.0.0} @@ -3218,6 +3641,14 @@ packages: terser: optional: true + vitefu@1.0.4: + resolution: {integrity: sha512-y6zEE3PQf6uu/Mt6DTJ9ih+kyJLr4XcSgHR2zUkM8SWDhuixEJxfJ6CZGMHh1Ec3vPLoEA0IHU5oWzVqw8ulow==} + peerDependencies: + vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 + peerDependenciesMeta: + vite: + optional: true + vitest@2.1.8: resolution: {integrity: sha512-1vBKTZskHw/aosXqQUlVWWlGUxSJR8YtiyZDJAFeW2kPAeX6S3Sool0mjspO+kXLuxVWlEDDowBAeqeAQefqLQ==} engines: {node: ^18.0.0 || >=20.0.0} @@ -3249,6 +3680,26 @@ packages: vscode-uri@3.0.8: resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==} + w3c-xmlserializer@5.0.0: + resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==} + engines: {node: '>=18'} + + webidl-conversions@7.0.0: + resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==} + engines: {node: '>=12'} + + whatwg-encoding@3.1.1: + resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==} + engines: {node: '>=18'} + + whatwg-mimetype@4.0.0: + resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==} + engines: {node: '>=18'} + + whatwg-url@14.1.0: + resolution: {integrity: sha512-jlf/foYIKywAt3x/XWKZ/3rz8OSJPiWktjmk891alJUEjiVxKX9LEO92qH3hv4aJ0mN3MWPvGMCy8jQi95xK4w==} + engines: {node: '>=18'} + which-boxed-primitive@1.1.1: resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==} engines: {node: '>= 0.4'} @@ -3294,14 +3745,36 @@ packages: wrappy@1.0.2: resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + ws@8.18.0: + resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + xdg-basedir@5.1.0: resolution: {integrity: sha512-GCPAHLvrIH13+c0SuacwvRYj2SxJXQ4kaVTT5xgL3kPrz56XxkF21IGhjSE1+W0aw7gpBWRGXLCPnPby6lSpmQ==} engines: {node: '>=12'} + xml-name-validator@5.0.0: + resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==} + engines: {node: '>=18'} + + xmlchars@2.2.0: + resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==} + y18n@5.0.8: resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} engines: {node: '>=10'} + yallist@3.1.1: + resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} + yaml@2.6.1: resolution: {integrity: sha512-7r0XPzioN/Q9kXBro/XPnA6kznR73DHq+GXh5ON7ZozRO6aMjbmiBuKste2wslTFkC5d1dw0GooOCepZXJ2SAg==} engines: {node: '>= 14'} @@ -3328,6 +3801,11 @@ packages: snapshots: + '@ampproject/remapping@2.3.0': + dependencies: + '@jridgewell/gen-mapping': 0.3.8 + '@jridgewell/trace-mapping': 0.3.25 + '@babel/code-frame@7.12.11': dependencies: '@babel/highlight': 7.25.9 @@ -3338,8 +3816,77 @@ snapshots: js-tokens: 4.0.0 picocolors: 1.1.1 + '@babel/compat-data@7.26.3': {} + + '@babel/core@7.26.0': + dependencies: + '@ampproject/remapping': 2.3.0 + '@babel/code-frame': 7.26.2 + '@babel/generator': 7.26.3 + '@babel/helper-compilation-targets': 7.25.9 + '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0) + '@babel/helpers': 7.26.0 + '@babel/parser': 7.26.3 + '@babel/template': 7.25.9 + '@babel/traverse': 7.26.4 + '@babel/types': 7.26.3 + convert-source-map: 2.0.0 + debug: 4.4.0 + gensync: 1.0.0-beta.2 + json5: 2.2.3 + semver: 6.3.1 + transitivePeerDependencies: + - supports-color + + '@babel/generator@7.26.3': + dependencies: + '@babel/parser': 7.26.3 + '@babel/types': 7.26.3 + '@jridgewell/gen-mapping': 0.3.8 + '@jridgewell/trace-mapping': 0.3.25 + jsesc: 3.1.0 + + '@babel/helper-compilation-targets@7.25.9': + dependencies: + '@babel/compat-data': 7.26.3 + '@babel/helper-validator-option': 7.25.9 + browserslist: 4.24.3 + lru-cache: 5.1.1 + semver: 6.3.1 + + '@babel/helper-module-imports@7.18.6': + dependencies: + '@babel/types': 7.26.3 + + '@babel/helper-module-imports@7.25.9': + dependencies: + '@babel/traverse': 7.26.4 + '@babel/types': 7.26.3 + transitivePeerDependencies: + - supports-color + + '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)': + dependencies: + '@babel/core': 7.26.0 + '@babel/helper-module-imports': 7.25.9 + '@babel/helper-validator-identifier': 7.25.9 + '@babel/traverse': 7.26.4 + transitivePeerDependencies: + - supports-color + + '@babel/helper-plugin-utils@7.25.9': {} + + '@babel/helper-string-parser@7.25.9': {} + '@babel/helper-validator-identifier@7.25.9': {} + '@babel/helper-validator-option@7.25.9': {} + + '@babel/helpers@7.26.0': + dependencies: + '@babel/template': 7.25.9 + '@babel/types': 7.26.3 + '@babel/highlight@7.25.9': dependencies: '@babel/helper-validator-identifier': 7.25.9 @@ -3347,6 +3894,52 @@ snapshots: js-tokens: 4.0.0 picocolors: 1.1.1 + '@babel/parser@7.26.3': + dependencies: + '@babel/types': 7.26.3 + + '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.0)': + dependencies: + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 + + '@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.26.0)': + dependencies: + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 + + '@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.26.0)': + dependencies: + '@babel/core': 7.26.0 + '@babel/helper-plugin-utils': 7.25.9 + + '@babel/runtime@7.26.0': + dependencies: + regenerator-runtime: 0.14.1 + + '@babel/template@7.25.9': + dependencies: + '@babel/code-frame': 7.26.2 + '@babel/parser': 7.26.3 + '@babel/types': 7.26.3 + + '@babel/traverse@7.26.4': + dependencies: + '@babel/code-frame': 7.26.2 + '@babel/generator': 7.26.3 + '@babel/parser': 7.26.3 + '@babel/template': 7.25.9 + '@babel/types': 7.26.3 + debug: 4.4.0 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + + '@babel/types@7.26.3': + dependencies: + '@babel/helper-string-parser': 7.25.9 + '@babel/helper-validator-identifier': 7.25.9 + '@commitlint/cli@19.6.1(@types/node@22.10.2)(typescript@5.7.2)': dependencies: '@commitlint/format': 19.5.0 @@ -3856,8 +4449,23 @@ snapshots: wrap-ansi: 8.1.0 wrap-ansi-cjs: wrap-ansi@7.0.0 + '@jridgewell/gen-mapping@0.3.8': + dependencies: + '@jridgewell/set-array': 1.2.1 + '@jridgewell/sourcemap-codec': 1.5.0 + '@jridgewell/trace-mapping': 0.3.25 + + '@jridgewell/resolve-uri@3.1.2': {} + + '@jridgewell/set-array@1.2.1': {} + '@jridgewell/sourcemap-codec@1.5.0': {} + '@jridgewell/trace-mapping@0.3.25': + dependencies: + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.5.0 + '@kesills/eslint-config-airbnb-typescript@20.0.0(@stylistic/eslint-plugin@2.12.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(@typescript-eslint/eslint-plugin@8.18.2(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint-config-airbnb-base@15.0.0(eslint-plugin-import@2.31.0)(eslint@9.17.0(jiti@2.4.2)))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)': dependencies: '@stylistic/eslint-plugin': 2.12.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) @@ -4035,6 +4643,11 @@ snapshots: '@sindresorhus/merge-streams@2.3.0': {} + '@solidjs/testing-library@0.8.10(solid-js@1.9.3)': + dependencies: + '@testing-library/dom': 10.4.0 + solid-js: 1.9.3 + '@stylistic/eslint-plugin@2.12.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)': dependencies: '@typescript-eslint/utils': 8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) @@ -4047,6 +4660,49 @@ snapshots: - supports-color - typescript + '@testing-library/dom@10.4.0': + dependencies: + '@babel/code-frame': 7.26.2 + '@babel/runtime': 7.26.0 + '@types/aria-query': 5.0.4 + aria-query: 5.3.0 + chalk: 4.1.2 + dom-accessibility-api: 0.5.16 + lz-string: 1.5.0 + pretty-format: 27.5.1 + + '@testing-library/react@16.1.0(@testing-library/dom@10.4.0)(@types/react@19.0.2)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + dependencies: + '@babel/runtime': 7.26.0 + '@testing-library/dom': 10.4.0 + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + optionalDependencies: + '@types/react': 19.0.2 + + '@types/aria-query@5.0.4': {} + + '@types/babel__core@7.20.5': + dependencies: + '@babel/parser': 7.26.3 + '@babel/types': 7.26.3 + '@types/babel__generator': 7.6.8 + '@types/babel__template': 7.4.4 + '@types/babel__traverse': 7.20.6 + + '@types/babel__generator@7.6.8': + dependencies: + '@babel/types': 7.26.3 + + '@types/babel__template@7.4.4': + dependencies: + '@babel/parser': 7.26.3 + '@babel/types': 7.26.3 + + '@types/babel__traverse@7.20.6': + dependencies: + '@babel/types': 7.26.3 + '@types/conventional-commits-parser@5.0.1': dependencies: '@types/node': 22.10.2 @@ -4071,6 +4727,10 @@ snapshots: dependencies: undici-types: 6.20.0 + '@types/react@19.0.2': + dependencies: + csstype: 3.1.3 + '@types/unist@3.0.3': {} '@typescript-eslint/eslint-plugin@8.18.2(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)': @@ -4152,6 +4812,17 @@ snapshots: '@ungap/structured-clone@1.2.1': {} + '@vitejs/plugin-react@4.3.4(vite@5.4.11(@types/node@22.10.2))': + dependencies: + '@babel/core': 7.26.0 + '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.0) + '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.0) + '@types/babel__core': 7.20.5 + react-refresh: 0.14.2 + vite: 5.4.11(@types/node@22.10.2) + transitivePeerDependencies: + - supports-color + '@vitest/expect@2.1.8': dependencies: '@vitest/spy': 2.1.8 @@ -4205,6 +4876,8 @@ snapshots: acorn@8.14.0: {} + agent-base@7.1.3: {} + aggregate-error@4.0.1: dependencies: clean-stack: 4.2.0 @@ -4240,12 +4913,18 @@ snapshots: dependencies: color-convert: 2.0.1 + ansi-styles@5.2.0: {} + ansi-styles@6.2.1: {} are-docs-informative@0.0.2: {} argparse@2.0.1: {} + aria-query@5.3.0: + dependencies: + dequal: 2.0.3 + array-buffer-byte-length@1.0.2: dependencies: call-bound: 1.0.3 @@ -4301,10 +4980,27 @@ snapshots: assertion-error@2.0.1: {} + asynckit@0.4.0: {} + available-typed-arrays@1.0.7: dependencies: possible-typed-array-names: 1.0.0 + babel-plugin-jsx-dom-expressions@0.39.3(@babel/core@7.26.0): + dependencies: + '@babel/core': 7.26.0 + '@babel/helper-module-imports': 7.18.6 + '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0) + '@babel/types': 7.26.3 + html-entities: 2.3.3 + parse5: 7.2.1 + validate-html-nesting: 1.2.2 + + babel-preset-solid@1.9.3(@babel/core@7.26.0): + dependencies: + '@babel/core': 7.26.0 + babel-plugin-jsx-dom-expressions: 0.39.3(@babel/core@7.26.0) + balanced-match@1.0.2: {} better-path-resolve@1.0.0: @@ -4324,6 +5020,13 @@ snapshots: dependencies: fill-range: 7.1.1 + browserslist@4.24.3: + dependencies: + caniuse-lite: 1.0.30001690 + electron-to-chromium: 1.5.76 + node-releases: 2.0.19 + update-browserslist-db: 1.1.1(browserslist@4.24.3) + cac@6.7.14: {} call-bind-apply-helpers@1.0.1: @@ -4345,6 +5048,8 @@ snapshots: callsites@3.1.0: {} + caniuse-lite@1.0.30001690: {} + ccount@2.0.1: {} chai@5.1.2: @@ -4421,6 +5126,10 @@ snapshots: colorette@2.0.20: {} + combined-stream@1.0.8: + dependencies: + delayed-stream: 1.0.0 + commander@10.0.1: {} commander@12.1.0: {} @@ -4463,6 +5172,8 @@ snapshots: meow: 12.1.1 split2: 4.2.0 + convert-source-map@2.0.0: {} + core-util-is@1.0.3: {} cosmiconfig-typescript-loader@6.1.0(@types/node@22.10.2)(cosmiconfig@9.0.0(typescript@5.7.2))(typescript@5.7.2): @@ -4598,8 +5309,19 @@ snapshots: semver: 7.6.3 tinyglobby: 0.2.10 + cssstyle@4.1.0: + dependencies: + rrweb-cssom: 0.7.1 + + csstype@3.1.3: {} + dargs@8.1.0: {} + data-urls@5.0.0: + dependencies: + whatwg-mimetype: 4.0.0 + whatwg-url: 14.1.0 + data-view-buffer@1.0.2: dependencies: call-bound: 1.0.3 @@ -4628,6 +5350,8 @@ snapshots: dependencies: ms: 2.1.3 + decimal.js@10.4.3: {} + decode-named-character-reference@1.0.2: dependencies: character-entities: 2.0.2 @@ -4648,6 +5372,8 @@ snapshots: has-property-descriptors: 1.0.2 object-keys: 1.1.1 + delayed-stream@1.0.0: {} + dequal@2.0.3: {} detect-indent@7.0.1: {} @@ -4670,6 +5396,8 @@ snapshots: dependencies: esutils: 2.0.3 + dom-accessibility-api@0.5.16: {} + dom-serializer@0.2.2: dependencies: domelementtype: 2.3.0 @@ -4707,6 +5435,8 @@ snapshots: minimatch: 9.0.1 semver: 7.6.3 + electron-to-chromium@1.5.76: {} + emoji-regex@10.4.0: {} emoji-regex@8.0.0: {} @@ -5217,6 +5947,12 @@ snapshots: cross-spawn: 7.0.6 signal-exit: 4.1.0 + form-data@4.0.1: + dependencies: + asynckit: 0.4.0 + combined-stream: 1.0.8 + mime-types: 2.1.35 + fs-extra@10.1.0: dependencies: graceful-fs: 4.2.11 @@ -5243,6 +5979,8 @@ snapshots: gensequence@7.0.0: {} + gensync@1.0.0-beta.2: {} + get-caller-file@2.0.5: {} get-east-asian-width@1.3.0: {} @@ -5312,6 +6050,8 @@ snapshots: dependencies: ini: 4.1.1 + globals@11.12.0: {} + globals@13.24.0: dependencies: type-fest: 0.20.2 @@ -5374,6 +6114,12 @@ snapshots: dependencies: function-bind: 1.1.2 + html-encoding-sniffer@4.0.0: + dependencies: + whatwg-encoding: 3.1.1 + + html-entities@2.3.3: {} + htmlparser2@3.8.3: dependencies: domelementtype: 1.3.1 @@ -5382,10 +6128,28 @@ snapshots: entities: 1.0.0 readable-stream: 1.1.14 + http-proxy-agent@7.0.2: + dependencies: + agent-base: 7.1.3 + debug: 4.4.0 + transitivePeerDependencies: + - supports-color + + https-proxy-agent@7.0.6: + dependencies: + agent-base: 7.1.3 + debug: 4.4.0 + transitivePeerDependencies: + - supports-color + human-signals@5.0.0: {} husky@9.1.7: {} + iconv-lite@0.6.3: + dependencies: + safer-buffer: 2.1.2 + ignore@5.3.2: {} import-fresh@3.3.0: @@ -5493,6 +6257,8 @@ snapshots: is-plain-obj@4.1.0: {} + is-potential-custom-element-name@1.0.1: {} + is-regex@1.2.1: dependencies: call-bound: 1.0.3 @@ -5538,6 +6304,8 @@ snapshots: call-bound: 1.0.3 get-intrinsic: 1.2.6 + is-what@4.1.16: {} + is-windows@1.0.2: {} isarray@0.0.1: {} @@ -5562,6 +6330,36 @@ snapshots: jsdoc-type-pratt-parser@4.1.0: {} + jsdom@25.0.1: + dependencies: + cssstyle: 4.1.0 + data-urls: 5.0.0 + decimal.js: 10.4.3 + form-data: 4.0.1 + html-encoding-sniffer: 4.0.0 + http-proxy-agent: 7.0.2 + https-proxy-agent: 7.0.6 + is-potential-custom-element-name: 1.0.1 + nwsapi: 2.2.16 + parse5: 7.2.1 + rrweb-cssom: 0.7.1 + saxes: 6.0.0 + symbol-tree: 3.2.4 + tough-cookie: 5.0.0 + w3c-xmlserializer: 5.0.0 + webidl-conversions: 7.0.0 + whatwg-encoding: 3.1.1 + whatwg-mimetype: 4.0.0 + whatwg-url: 14.1.0 + ws: 8.18.0 + xml-name-validator: 5.0.0 + transitivePeerDependencies: + - bufferutil + - supports-color + - utf-8-validate + + jsesc@3.1.0: {} + jshint@2.13.6: dependencies: cli: 1.0.1 @@ -5586,6 +6384,8 @@ snapshots: dependencies: minimist: 1.2.8 + json5@2.2.3: {} + jsonc-parser@3.3.1: {} jsonfile@6.1.0: @@ -5683,6 +6483,12 @@ snapshots: lru-cache@10.4.3: {} + lru-cache@5.1.1: + dependencies: + yallist: 3.1.1 + + lz-string@1.5.0: {} + magic-string@0.30.17: dependencies: '@jridgewell/sourcemap-codec': 1.5.0 @@ -5835,6 +6641,10 @@ snapshots: meow@12.1.1: {} + merge-anything@5.1.7: + dependencies: + is-what: 4.1.16 + merge-stream@2.0.0: {} merge2@1.4.1: {} @@ -6035,6 +6845,12 @@ snapshots: braces: 3.0.3 picomatch: 2.3.1 + mime-db@1.52.0: {} + + mime-types@2.1.35: + dependencies: + mime-db: 1.52.0 + mimic-fn@4.0.0: {} mimic-function@5.0.1: {} @@ -6069,10 +6885,14 @@ snapshots: nested-error-stacks@2.1.1: {} + node-releases@2.0.19: {} + npm-run-path@5.3.0: dependencies: path-key: 4.0.0 + nwsapi@2.2.16: {} + object-inspect@1.13.3: {} object-keys@1.1.1: {} @@ -6198,6 +7018,10 @@ snapshots: json-parse-even-better-errors: 2.3.1 lines-and-columns: 1.2.4 + parse5@7.2.1: + dependencies: + entities: 4.5.0 + path-exists@4.0.0: {} path-exists@5.0.0: {} @@ -6260,12 +7084,29 @@ snapshots: prettier@3.4.2: {} + pretty-format@27.5.1: + dependencies: + ansi-regex: 5.0.1 + ansi-styles: 5.2.0 + react-is: 17.0.2 + punycode.js@2.3.1: {} punycode@2.3.1: {} queue-microtask@1.2.3: {} + react-dom@19.0.0(react@19.0.0): + dependencies: + react: 19.0.0 + scheduler: 0.25.0 + + react-is@17.0.2: {} + + react-refresh@0.14.2: {} + + react@19.0.0: {} + readable-stream@1.1.14: dependencies: core-util-is: 1.0.3 @@ -6284,6 +7125,8 @@ snapshots: gopd: 1.2.0 which-builtin-type: 1.2.1 + regenerator-runtime@0.14.1: {} + regexp.prototype.flags@1.5.3: dependencies: call-bind: 1.0.8 @@ -6356,6 +7199,8 @@ snapshots: '@rollup/rollup-win32-x64-msvc': 4.29.1 fsevents: 2.3.3 + rrweb-cssom@0.7.1: {} + run-parallel@1.2.0: dependencies: queue-microtask: 1.2.3 @@ -6374,10 +7219,24 @@ snapshots: es-errors: 1.3.0 is-regex: 1.2.1 + safer-buffer@2.1.2: {} + + saxes@6.0.0: + dependencies: + xmlchars: 2.2.0 + + scheduler@0.25.0: {} + semver@6.3.1: {} semver@7.6.3: {} + seroval-plugins@1.1.1(seroval@1.1.1): + dependencies: + seroval: 1.1.1 + + seroval@1.1.1: {} + set-function-length@1.2.2: dependencies: define-data-property: 1.1.4 @@ -6452,6 +7311,21 @@ snapshots: ansi-styles: 6.2.1 is-fullwidth-code-point: 5.0.0 + solid-js@1.9.3: + dependencies: + csstype: 3.1.3 + seroval: 1.1.1 + seroval-plugins: 1.1.1(seroval@1.1.1) + + solid-refresh@0.6.3(solid-js@1.9.3): + dependencies: + '@babel/generator': 7.26.3 + '@babel/helper-module-imports': 7.25.9 + '@babel/types': 7.26.3 + solid-js: 1.9.3 + transitivePeerDependencies: + - supports-color + sort-object-keys@1.1.3: {} sort-package-json@2.12.0: @@ -6555,6 +7429,8 @@ snapshots: supports-preserve-symlinks-flag@1.0.0: {} + symbol-tree@3.2.4: {} + symlink-dir@6.0.3: dependencies: better-path-resolve: 1.0.0 @@ -6588,10 +7464,24 @@ snapshots: tinyspy@3.0.2: {} + tldts-core@6.1.70: {} + + tldts@6.1.70: + dependencies: + tldts-core: 6.1.70 + to-regex-range@5.0.1: dependencies: is-number: 7.0.0 + tough-cookie@5.0.0: + dependencies: + tldts: 6.1.70 + + tr46@5.0.0: + dependencies: + punycode: 2.3.1 + ts-api-utils@1.4.3(typescript@5.7.2): dependencies: typescript: 5.7.2 @@ -6696,10 +7586,18 @@ snapshots: universalify@2.0.1: {} + update-browserslist-db@1.1.1(browserslist@4.24.3): + dependencies: + browserslist: 4.24.3 + escalade: 3.2.0 + picocolors: 1.1.1 + uri-js@4.4.1: dependencies: punycode: 2.3.1 + validate-html-nesting@1.2.2: {} + vite-node@2.1.8(@types/node@22.10.2): dependencies: cac: 6.7.14 @@ -6718,6 +7616,19 @@ snapshots: - supports-color - terser + vite-plugin-solid@2.11.0(solid-js@1.9.3)(vite@5.4.11(@types/node@22.10.2)): + dependencies: + '@babel/core': 7.26.0 + '@types/babel__core': 7.20.5 + babel-preset-solid: 1.9.3(@babel/core@7.26.0) + merge-anything: 5.1.7 + solid-js: 1.9.3 + solid-refresh: 0.6.3(solid-js@1.9.3) + vite: 5.4.11(@types/node@22.10.2) + vitefu: 1.0.4(vite@5.4.11(@types/node@22.10.2)) + transitivePeerDependencies: + - supports-color + vite@5.4.11(@types/node@22.10.2): dependencies: esbuild: 0.21.5 @@ -6727,7 +7638,11 @@ snapshots: '@types/node': 22.10.2 fsevents: 2.3.3 - vitest@2.1.8(@types/node@22.10.2): + vitefu@1.0.4(vite@5.4.11(@types/node@22.10.2)): + optionalDependencies: + vite: 5.4.11(@types/node@22.10.2) + + vitest@2.1.8(@types/node@22.10.2)(jsdom@25.0.1): dependencies: '@vitest/expect': 2.1.8 '@vitest/mocker': 2.1.8(vite@5.4.11(@types/node@22.10.2)) @@ -6751,6 +7666,7 @@ snapshots: why-is-node-running: 2.3.0 optionalDependencies: '@types/node': 22.10.2 + jsdom: 25.0.1 transitivePeerDependencies: - less - lightningcss @@ -6766,6 +7682,23 @@ snapshots: vscode-uri@3.0.8: {} + w3c-xmlserializer@5.0.0: + dependencies: + xml-name-validator: 5.0.0 + + webidl-conversions@7.0.0: {} + + whatwg-encoding@3.1.1: + dependencies: + iconv-lite: 0.6.3 + + whatwg-mimetype@4.0.0: {} + + whatwg-url@14.1.0: + dependencies: + tr46: 5.0.0 + webidl-conversions: 7.0.0 + which-boxed-primitive@1.1.1: dependencies: is-bigint: 1.1.0 @@ -6837,10 +7770,18 @@ snapshots: wrappy@1.0.2: {} + ws@8.18.0: {} + xdg-basedir@5.1.0: {} + xml-name-validator@5.0.0: {} + + xmlchars@2.2.0: {} + y18n@5.0.8: {} + yallist@3.1.1: {} + yaml@2.6.1: {} yargs-parser@21.1.1: {} From 3f186d188b3d4644b5bfc59d989b54787c44b6b3 Mon Sep 17 00:00:00 2001 From: kurone-kito Date: Wed, 25 Dec 2024 21:41:32 +0900 Subject: [PATCH 12/13] docs(react,root,solid): added the typedoc environment --- .markdownlint-cli2.yaml | 1 + .prettierignore | 1 + .vscode/settings.json | 1 + nodePackages/react/docs/README.md | 26 ++ nodePackages/react/docs/_media/LICENSE | 407 ++++++++++++++++++ nodePackages/react/docs/functions/Avatars.md | 19 + .../react/docs/functions/BackReturn.md | 19 + nodePackages/react/docs/functions/Bell.md | 19 + nodePackages/react/docs/functions/Bulb.md | 19 + nodePackages/react/docs/functions/Camera.md | 19 + .../react/docs/functions/CameraFlash.md | 19 + .../react/docs/functions/CameraReload.md | 19 + nodePackages/react/docs/functions/Caution.md | 19 + .../react/docs/functions/ChangeMic.md | 19 + nodePackages/react/docs/functions/Check.md | 19 + .../react/docs/functions/CheckCircle.md | 19 + .../react/docs/functions/CheckThin.md | 19 + .../react/docs/functions/CircleCircle.md | 19 + .../react/docs/functions/CircleCross.md | 19 + .../react/docs/functions/CircleHandle.md | 19 + .../react/docs/functions/CircleMinus.md | 19 + .../react/docs/functions/CirclePlus.md | 19 + .../react/docs/functions/CircleSquare.md | 19 + .../react/docs/functions/CircleStar.md | 19 + .../react/docs/functions/Circleless.md | 19 + nodePackages/react/docs/functions/Collapse.md | 19 + nodePackages/react/docs/functions/Copy.md | 19 + nodePackages/react/docs/functions/Create.md | 19 + nodePackages/react/docs/functions/Credits.md | 19 + nodePackages/react/docs/functions/Cross.md | 19 + .../react/docs/functions/CrossThin.md | 19 + nodePackages/react/docs/functions/Cursor.md | 19 + nodePackages/react/docs/functions/Document.md | 19 + nodePackages/react/docs/functions/Down.md | 19 + nodePackages/react/docs/functions/Edit.md | 19 + nodePackages/react/docs/functions/Envelope.md | 19 + .../react/docs/functions/EnvelopePlus.md | 19 + .../react/docs/functions/EnvelopeQ.md | 19 + nodePackages/react/docs/functions/Expand.md | 19 + .../react/docs/functions/Expandable.md | 19 + nodePackages/react/docs/functions/Eye.md | 19 + nodePackages/react/docs/functions/EyeMove.md | 19 + .../react/docs/functions/FaceMirror.md | 19 + nodePackages/react/docs/functions/Fire.md | 19 + nodePackages/react/docs/functions/Forbid.md | 19 + nodePackages/react/docs/functions/Friends.md | 19 + nodePackages/react/docs/functions/Gear.md | 19 + nodePackages/react/docs/functions/Graphics.md | 19 + nodePackages/react/docs/functions/Grid.md | 19 + nodePackages/react/docs/functions/Group.md | 19 + .../react/docs/functions/Hamburger.md | 19 + nodePackages/react/docs/functions/Help.md | 19 + nodePackages/react/docs/functions/History.md | 19 + nodePackages/react/docs/functions/Home.md | 19 + .../react/docs/functions/HomeReload.md | 19 + .../react/docs/functions/Hourgrass.md | 19 + nodePackages/react/docs/functions/IK.md | 19 + nodePackages/react/docs/functions/Images.md | 19 + nodePackages/react/docs/functions/Info.md | 19 + .../react/docs/functions/InfoBlock.md | 19 + nodePackages/react/docs/functions/InfoMono.md | 19 + nodePackages/react/docs/functions/Join.md | 19 + nodePackages/react/docs/functions/Keyboard.md | 19 + .../react/docs/functions/KeyboardThin.md | 19 + nodePackages/react/docs/functions/List.md | 19 + nodePackages/react/docs/functions/ListThin.md | 19 + nodePackages/react/docs/functions/Logout.md | 19 + nodePackages/react/docs/functions/Material.md | 19 + nodePackages/react/docs/functions/Mic.md | 19 + nodePackages/react/docs/functions/Mirror.md | 19 + nodePackages/react/docs/functions/Monitor.md | 19 + nodePackages/react/docs/functions/Move.md | 19 + .../react/docs/functions/MoveCircle.md | 19 + .../react/docs/functions/MoveSquare.md | 19 + nodePackages/react/docs/functions/Next.md | 19 + nodePackages/react/docs/functions/Next3.md | 19 + .../react/docs/functions/NextArrow.md | 19 + nodePackages/react/docs/functions/NextThin.md | 19 + nodePackages/react/docs/functions/NextTri.md | 19 + .../react/docs/functions/NextTriThin.md | 19 + nodePackages/react/docs/functions/NextTriW.md | 19 + nodePackages/react/docs/functions/Notice.md | 19 + nodePackages/react/docs/functions/OSC.md | 19 + nodePackages/react/docs/functions/Order.md | 19 + nodePackages/react/docs/functions/Pad.md | 19 + nodePackages/react/docs/functions/Pin.md | 19 + nodePackages/react/docs/functions/Plus.md | 19 + nodePackages/react/docs/functions/PlusThin.md | 19 + .../react/docs/functions/Portraits.md | 19 + nodePackages/react/docs/functions/Power.md | 19 + nodePackages/react/docs/functions/Previous.md | 19 + .../react/docs/functions/Previous3.md | 19 + .../react/docs/functions/PreviousArrow.md | 19 + .../react/docs/functions/PreviousThin.md | 19 + .../react/docs/functions/PreviousTri.md | 19 + .../react/docs/functions/PreviousTriThin.md | 19 + .../react/docs/functions/PreviousTriW.md | 19 + nodePackages/react/docs/functions/Pulse.md | 19 + .../react/docs/functions/RankExcellent.md | 19 + nodePackages/react/docs/functions/RankGood.md | 19 + .../react/docs/functions/RankMedium.md | 19 + nodePackages/react/docs/functions/RankPoor.md | 19 + .../react/docs/functions/RankVeryPoor.md | 19 + nodePackages/react/docs/functions/Reload.md | 19 + nodePackages/react/docs/functions/Reset.md | 19 + .../react/docs/functions/Resolution.md | 19 + nodePackages/react/docs/functions/Reticule.md | 19 + nodePackages/react/docs/functions/Return.md | 19 + .../react/docs/functions/ReturnReverse.md | 19 + nodePackages/react/docs/functions/Rocket.md | 19 + nodePackages/react/docs/functions/Saturn.md | 19 + .../docs/functions/SaturnWithSatellites.md | 19 + nodePackages/react/docs/functions/Shield.md | 19 + .../react/docs/functions/ShieldWithGear.md | 19 + .../react/docs/functions/ShieldWithStar.md | 19 + .../react/docs/functions/Shieldless.md | 19 + nodePackages/react/docs/functions/Speaker.md | 19 + nodePackages/react/docs/functions/Star.md | 19 + nodePackages/react/docs/functions/StarThin.md | 19 + nodePackages/react/docs/functions/Terminal.md | 19 + nodePackages/react/docs/functions/Tip.md | 19 + nodePackages/react/docs/functions/UI.md | 19 + nodePackages/react/docs/functions/Up.md | 19 + nodePackages/react/docs/functions/User.md | 19 + nodePackages/react/docs/functions/UserIcon.md | 19 + nodePackages/react/docs/functions/Users2.md | 19 + nodePackages/react/docs/functions/Users3.md | 19 + nodePackages/react/docs/functions/VCC.md | 19 + nodePackages/react/docs/functions/VRC.md | 19 + nodePackages/react/docs/functions/VRCPlus.md | 19 + nodePackages/react/docs/functions/Venn.md | 19 + .../react/docs/functions/VennColorMM.md | 19 + .../react/docs/functions/VennColorMPc.md | 19 + .../react/docs/functions/VennColorMPcM.md | 19 + .../react/docs/functions/VennColorOnlyM.md | 19 + .../react/docs/functions/VennColorOnlyPc.md | 19 + .../react/docs/functions/VennColorOnlyQ.md | 19 + .../react/docs/functions/VennColorQPc.md | 19 + .../react/docs/functions/VennColorQPcQ.md | 19 + .../react/docs/functions/VennColorQQ.md | 19 + .../react/docs/functions/VennMonoPc.md | 19 + .../react/docs/functions/VennMonoPcQ.md | 19 + .../react/docs/functions/VennMonoQ.md | 19 + nodePackages/react/docs/functions/Voice.md | 19 + .../react/docs/functions/Wallpaper.md | 19 + nodePackages/react/docs/functions/Warn.md | 19 + nodePackages/react/docs/functions/Wave.md | 19 + nodePackages/react/docs/functions/WingL.md | 19 + nodePackages/react/docs/functions/WingR.md | 19 + nodePackages/react/docs/globals.md | 156 +++++++ .../react/docs/variables/iconNames.md | 9 + nodePackages/react/package.json | 6 +- nodePackages/react/typedoc.json | 5 + nodePackages/solid/docs/README.md | 26 ++ nodePackages/solid/docs/_media/LICENSE | 407 ++++++++++++++++++ nodePackages/solid/docs/functions/Avatars.md | 19 + .../solid/docs/functions/BackReturn.md | 19 + nodePackages/solid/docs/functions/Bell.md | 19 + nodePackages/solid/docs/functions/Bulb.md | 19 + nodePackages/solid/docs/functions/Camera.md | 19 + .../solid/docs/functions/CameraFlash.md | 19 + .../solid/docs/functions/CameraReload.md | 19 + nodePackages/solid/docs/functions/Caution.md | 19 + .../solid/docs/functions/ChangeMic.md | 19 + nodePackages/solid/docs/functions/Check.md | 19 + .../solid/docs/functions/CheckCircle.md | 19 + .../solid/docs/functions/CheckThin.md | 19 + .../solid/docs/functions/CircleCircle.md | 19 + .../solid/docs/functions/CircleCross.md | 19 + .../solid/docs/functions/CircleHandle.md | 19 + .../solid/docs/functions/CircleMinus.md | 19 + .../solid/docs/functions/CirclePlus.md | 19 + .../solid/docs/functions/CircleSquare.md | 19 + .../solid/docs/functions/CircleStar.md | 19 + .../solid/docs/functions/Circleless.md | 19 + nodePackages/solid/docs/functions/Collapse.md | 19 + nodePackages/solid/docs/functions/Copy.md | 19 + nodePackages/solid/docs/functions/Create.md | 19 + nodePackages/solid/docs/functions/Credits.md | 19 + nodePackages/solid/docs/functions/Cross.md | 19 + .../solid/docs/functions/CrossThin.md | 19 + nodePackages/solid/docs/functions/Cursor.md | 19 + nodePackages/solid/docs/functions/Document.md | 19 + nodePackages/solid/docs/functions/Down.md | 19 + nodePackages/solid/docs/functions/Edit.md | 19 + nodePackages/solid/docs/functions/Envelope.md | 19 + .../solid/docs/functions/EnvelopePlus.md | 19 + .../solid/docs/functions/EnvelopeQ.md | 19 + nodePackages/solid/docs/functions/Expand.md | 19 + .../solid/docs/functions/Expandable.md | 19 + nodePackages/solid/docs/functions/Eye.md | 19 + nodePackages/solid/docs/functions/EyeMove.md | 19 + .../solid/docs/functions/FaceMirror.md | 19 + nodePackages/solid/docs/functions/Fire.md | 19 + nodePackages/solid/docs/functions/Forbid.md | 19 + nodePackages/solid/docs/functions/Friends.md | 19 + nodePackages/solid/docs/functions/Gear.md | 19 + nodePackages/solid/docs/functions/Graphics.md | 19 + nodePackages/solid/docs/functions/Grid.md | 19 + nodePackages/solid/docs/functions/Group.md | 19 + .../solid/docs/functions/Hamburger.md | 19 + nodePackages/solid/docs/functions/Help.md | 19 + nodePackages/solid/docs/functions/History.md | 19 + nodePackages/solid/docs/functions/Home.md | 19 + .../solid/docs/functions/HomeReload.md | 19 + .../solid/docs/functions/Hourgrass.md | 19 + nodePackages/solid/docs/functions/IK.md | 19 + nodePackages/solid/docs/functions/Images.md | 19 + nodePackages/solid/docs/functions/Info.md | 19 + .../solid/docs/functions/InfoBlock.md | 19 + nodePackages/solid/docs/functions/InfoMono.md | 19 + nodePackages/solid/docs/functions/Join.md | 19 + nodePackages/solid/docs/functions/Keyboard.md | 19 + .../solid/docs/functions/KeyboardThin.md | 19 + nodePackages/solid/docs/functions/List.md | 19 + nodePackages/solid/docs/functions/ListThin.md | 19 + nodePackages/solid/docs/functions/Logout.md | 19 + nodePackages/solid/docs/functions/Material.md | 19 + nodePackages/solid/docs/functions/Mic.md | 19 + nodePackages/solid/docs/functions/Mirror.md | 19 + nodePackages/solid/docs/functions/Monitor.md | 19 + nodePackages/solid/docs/functions/Move.md | 19 + .../solid/docs/functions/MoveCircle.md | 19 + .../solid/docs/functions/MoveSquare.md | 19 + nodePackages/solid/docs/functions/Next.md | 19 + nodePackages/solid/docs/functions/Next3.md | 19 + .../solid/docs/functions/NextArrow.md | 19 + nodePackages/solid/docs/functions/NextThin.md | 19 + nodePackages/solid/docs/functions/NextTri.md | 19 + .../solid/docs/functions/NextTriThin.md | 19 + nodePackages/solid/docs/functions/NextTriW.md | 19 + nodePackages/solid/docs/functions/Notice.md | 19 + nodePackages/solid/docs/functions/OSC.md | 19 + nodePackages/solid/docs/functions/Order.md | 19 + nodePackages/solid/docs/functions/Pad.md | 19 + nodePackages/solid/docs/functions/Pin.md | 19 + nodePackages/solid/docs/functions/Plus.md | 19 + nodePackages/solid/docs/functions/PlusThin.md | 19 + .../solid/docs/functions/Portraits.md | 19 + nodePackages/solid/docs/functions/Power.md | 19 + nodePackages/solid/docs/functions/Previous.md | 19 + .../solid/docs/functions/Previous3.md | 19 + .../solid/docs/functions/PreviousArrow.md | 19 + .../solid/docs/functions/PreviousThin.md | 19 + .../solid/docs/functions/PreviousTri.md | 19 + .../solid/docs/functions/PreviousTriThin.md | 19 + .../solid/docs/functions/PreviousTriW.md | 19 + nodePackages/solid/docs/functions/Pulse.md | 19 + .../solid/docs/functions/RankExcellent.md | 19 + nodePackages/solid/docs/functions/RankGood.md | 19 + .../solid/docs/functions/RankMedium.md | 19 + nodePackages/solid/docs/functions/RankPoor.md | 19 + .../solid/docs/functions/RankVeryPoor.md | 19 + nodePackages/solid/docs/functions/Reload.md | 19 + nodePackages/solid/docs/functions/Reset.md | 19 + .../solid/docs/functions/Resolution.md | 19 + nodePackages/solid/docs/functions/Reticule.md | 19 + nodePackages/solid/docs/functions/Return.md | 19 + .../solid/docs/functions/ReturnReverse.md | 19 + nodePackages/solid/docs/functions/Rocket.md | 19 + nodePackages/solid/docs/functions/Saturn.md | 19 + .../docs/functions/SaturnWithSatellites.md | 19 + nodePackages/solid/docs/functions/Shield.md | 19 + .../solid/docs/functions/ShieldWithGear.md | 19 + .../solid/docs/functions/ShieldWithStar.md | 19 + .../solid/docs/functions/Shieldless.md | 19 + nodePackages/solid/docs/functions/Speaker.md | 19 + nodePackages/solid/docs/functions/Star.md | 19 + nodePackages/solid/docs/functions/StarThin.md | 19 + nodePackages/solid/docs/functions/Terminal.md | 19 + nodePackages/solid/docs/functions/Tip.md | 19 + nodePackages/solid/docs/functions/UI.md | 19 + nodePackages/solid/docs/functions/Up.md | 19 + nodePackages/solid/docs/functions/User.md | 19 + nodePackages/solid/docs/functions/UserIcon.md | 19 + nodePackages/solid/docs/functions/Users2.md | 19 + nodePackages/solid/docs/functions/Users3.md | 19 + nodePackages/solid/docs/functions/VCC.md | 19 + nodePackages/solid/docs/functions/VRC.md | 19 + nodePackages/solid/docs/functions/VRCPlus.md | 19 + nodePackages/solid/docs/functions/Venn.md | 19 + .../solid/docs/functions/VennColorMM.md | 19 + .../solid/docs/functions/VennColorMPc.md | 19 + .../solid/docs/functions/VennColorMPcM.md | 19 + .../solid/docs/functions/VennColorOnlyM.md | 19 + .../solid/docs/functions/VennColorOnlyPc.md | 19 + .../solid/docs/functions/VennColorOnlyQ.md | 19 + .../solid/docs/functions/VennColorQPc.md | 19 + .../solid/docs/functions/VennColorQPcQ.md | 19 + .../solid/docs/functions/VennColorQQ.md | 19 + .../solid/docs/functions/VennMonoPc.md | 19 + .../solid/docs/functions/VennMonoPcQ.md | 19 + .../solid/docs/functions/VennMonoQ.md | 19 + nodePackages/solid/docs/functions/Voice.md | 19 + .../solid/docs/functions/Wallpaper.md | 19 + nodePackages/solid/docs/functions/Warn.md | 19 + nodePackages/solid/docs/functions/Wave.md | 19 + nodePackages/solid/docs/functions/WingL.md | 19 + nodePackages/solid/docs/functions/WingR.md | 19 + nodePackages/solid/docs/globals.md | 156 +++++++ .../solid/docs/variables/iconNames.md | 9 + nodePackages/solid/package.json | 6 +- nodePackages/solid/typedoc.json | 5 + pnpm-lock.yaml | 80 ++++ 304 files changed, 6771 insertions(+), 2 deletions(-) create mode 100644 nodePackages/react/docs/README.md create mode 100644 nodePackages/react/docs/_media/LICENSE create mode 100644 nodePackages/react/docs/functions/Avatars.md create mode 100644 nodePackages/react/docs/functions/BackReturn.md create mode 100644 nodePackages/react/docs/functions/Bell.md create mode 100644 nodePackages/react/docs/functions/Bulb.md create mode 100644 nodePackages/react/docs/functions/Camera.md create mode 100644 nodePackages/react/docs/functions/CameraFlash.md create mode 100644 nodePackages/react/docs/functions/CameraReload.md create mode 100644 nodePackages/react/docs/functions/Caution.md create mode 100644 nodePackages/react/docs/functions/ChangeMic.md create mode 100644 nodePackages/react/docs/functions/Check.md create mode 100644 nodePackages/react/docs/functions/CheckCircle.md create mode 100644 nodePackages/react/docs/functions/CheckThin.md create mode 100644 nodePackages/react/docs/functions/CircleCircle.md create mode 100644 nodePackages/react/docs/functions/CircleCross.md create mode 100644 nodePackages/react/docs/functions/CircleHandle.md create mode 100644 nodePackages/react/docs/functions/CircleMinus.md create mode 100644 nodePackages/react/docs/functions/CirclePlus.md create mode 100644 nodePackages/react/docs/functions/CircleSquare.md create mode 100644 nodePackages/react/docs/functions/CircleStar.md create mode 100644 nodePackages/react/docs/functions/Circleless.md create mode 100644 nodePackages/react/docs/functions/Collapse.md create mode 100644 nodePackages/react/docs/functions/Copy.md create mode 100644 nodePackages/react/docs/functions/Create.md create mode 100644 nodePackages/react/docs/functions/Credits.md create mode 100644 nodePackages/react/docs/functions/Cross.md create mode 100644 nodePackages/react/docs/functions/CrossThin.md create mode 100644 nodePackages/react/docs/functions/Cursor.md create mode 100644 nodePackages/react/docs/functions/Document.md create mode 100644 nodePackages/react/docs/functions/Down.md create mode 100644 nodePackages/react/docs/functions/Edit.md create mode 100644 nodePackages/react/docs/functions/Envelope.md create mode 100644 nodePackages/react/docs/functions/EnvelopePlus.md create mode 100644 nodePackages/react/docs/functions/EnvelopeQ.md create mode 100644 nodePackages/react/docs/functions/Expand.md create mode 100644 nodePackages/react/docs/functions/Expandable.md create mode 100644 nodePackages/react/docs/functions/Eye.md create mode 100644 nodePackages/react/docs/functions/EyeMove.md create mode 100644 nodePackages/react/docs/functions/FaceMirror.md create mode 100644 nodePackages/react/docs/functions/Fire.md create mode 100644 nodePackages/react/docs/functions/Forbid.md create mode 100644 nodePackages/react/docs/functions/Friends.md create mode 100644 nodePackages/react/docs/functions/Gear.md create mode 100644 nodePackages/react/docs/functions/Graphics.md create mode 100644 nodePackages/react/docs/functions/Grid.md create mode 100644 nodePackages/react/docs/functions/Group.md create mode 100644 nodePackages/react/docs/functions/Hamburger.md create mode 100644 nodePackages/react/docs/functions/Help.md create mode 100644 nodePackages/react/docs/functions/History.md create mode 100644 nodePackages/react/docs/functions/Home.md create mode 100644 nodePackages/react/docs/functions/HomeReload.md create mode 100644 nodePackages/react/docs/functions/Hourgrass.md create mode 100644 nodePackages/react/docs/functions/IK.md create mode 100644 nodePackages/react/docs/functions/Images.md create mode 100644 nodePackages/react/docs/functions/Info.md create mode 100644 nodePackages/react/docs/functions/InfoBlock.md create mode 100644 nodePackages/react/docs/functions/InfoMono.md create mode 100644 nodePackages/react/docs/functions/Join.md create mode 100644 nodePackages/react/docs/functions/Keyboard.md create mode 100644 nodePackages/react/docs/functions/KeyboardThin.md create mode 100644 nodePackages/react/docs/functions/List.md create mode 100644 nodePackages/react/docs/functions/ListThin.md create mode 100644 nodePackages/react/docs/functions/Logout.md create mode 100644 nodePackages/react/docs/functions/Material.md create mode 100644 nodePackages/react/docs/functions/Mic.md create mode 100644 nodePackages/react/docs/functions/Mirror.md create mode 100644 nodePackages/react/docs/functions/Monitor.md create mode 100644 nodePackages/react/docs/functions/Move.md create mode 100644 nodePackages/react/docs/functions/MoveCircle.md create mode 100644 nodePackages/react/docs/functions/MoveSquare.md create mode 100644 nodePackages/react/docs/functions/Next.md create mode 100644 nodePackages/react/docs/functions/Next3.md create mode 100644 nodePackages/react/docs/functions/NextArrow.md create mode 100644 nodePackages/react/docs/functions/NextThin.md create mode 100644 nodePackages/react/docs/functions/NextTri.md create mode 100644 nodePackages/react/docs/functions/NextTriThin.md create mode 100644 nodePackages/react/docs/functions/NextTriW.md create mode 100644 nodePackages/react/docs/functions/Notice.md create mode 100644 nodePackages/react/docs/functions/OSC.md create mode 100644 nodePackages/react/docs/functions/Order.md create mode 100644 nodePackages/react/docs/functions/Pad.md create mode 100644 nodePackages/react/docs/functions/Pin.md create mode 100644 nodePackages/react/docs/functions/Plus.md create mode 100644 nodePackages/react/docs/functions/PlusThin.md create mode 100644 nodePackages/react/docs/functions/Portraits.md create mode 100644 nodePackages/react/docs/functions/Power.md create mode 100644 nodePackages/react/docs/functions/Previous.md create mode 100644 nodePackages/react/docs/functions/Previous3.md create mode 100644 nodePackages/react/docs/functions/PreviousArrow.md create mode 100644 nodePackages/react/docs/functions/PreviousThin.md create mode 100644 nodePackages/react/docs/functions/PreviousTri.md create mode 100644 nodePackages/react/docs/functions/PreviousTriThin.md create mode 100644 nodePackages/react/docs/functions/PreviousTriW.md create mode 100644 nodePackages/react/docs/functions/Pulse.md create mode 100644 nodePackages/react/docs/functions/RankExcellent.md create mode 100644 nodePackages/react/docs/functions/RankGood.md create mode 100644 nodePackages/react/docs/functions/RankMedium.md create mode 100644 nodePackages/react/docs/functions/RankPoor.md create mode 100644 nodePackages/react/docs/functions/RankVeryPoor.md create mode 100644 nodePackages/react/docs/functions/Reload.md create mode 100644 nodePackages/react/docs/functions/Reset.md create mode 100644 nodePackages/react/docs/functions/Resolution.md create mode 100644 nodePackages/react/docs/functions/Reticule.md create mode 100644 nodePackages/react/docs/functions/Return.md create mode 100644 nodePackages/react/docs/functions/ReturnReverse.md create mode 100644 nodePackages/react/docs/functions/Rocket.md create mode 100644 nodePackages/react/docs/functions/Saturn.md create mode 100644 nodePackages/react/docs/functions/SaturnWithSatellites.md create mode 100644 nodePackages/react/docs/functions/Shield.md create mode 100644 nodePackages/react/docs/functions/ShieldWithGear.md create mode 100644 nodePackages/react/docs/functions/ShieldWithStar.md create mode 100644 nodePackages/react/docs/functions/Shieldless.md create mode 100644 nodePackages/react/docs/functions/Speaker.md create mode 100644 nodePackages/react/docs/functions/Star.md create mode 100644 nodePackages/react/docs/functions/StarThin.md create mode 100644 nodePackages/react/docs/functions/Terminal.md create mode 100644 nodePackages/react/docs/functions/Tip.md create mode 100644 nodePackages/react/docs/functions/UI.md create mode 100644 nodePackages/react/docs/functions/Up.md create mode 100644 nodePackages/react/docs/functions/User.md create mode 100644 nodePackages/react/docs/functions/UserIcon.md create mode 100644 nodePackages/react/docs/functions/Users2.md create mode 100644 nodePackages/react/docs/functions/Users3.md create mode 100644 nodePackages/react/docs/functions/VCC.md create mode 100644 nodePackages/react/docs/functions/VRC.md create mode 100644 nodePackages/react/docs/functions/VRCPlus.md create mode 100644 nodePackages/react/docs/functions/Venn.md create mode 100644 nodePackages/react/docs/functions/VennColorMM.md create mode 100644 nodePackages/react/docs/functions/VennColorMPc.md create mode 100644 nodePackages/react/docs/functions/VennColorMPcM.md create mode 100644 nodePackages/react/docs/functions/VennColorOnlyM.md create mode 100644 nodePackages/react/docs/functions/VennColorOnlyPc.md create mode 100644 nodePackages/react/docs/functions/VennColorOnlyQ.md create mode 100644 nodePackages/react/docs/functions/VennColorQPc.md create mode 100644 nodePackages/react/docs/functions/VennColorQPcQ.md create mode 100644 nodePackages/react/docs/functions/VennColorQQ.md create mode 100644 nodePackages/react/docs/functions/VennMonoPc.md create mode 100644 nodePackages/react/docs/functions/VennMonoPcQ.md create mode 100644 nodePackages/react/docs/functions/VennMonoQ.md create mode 100644 nodePackages/react/docs/functions/Voice.md create mode 100644 nodePackages/react/docs/functions/Wallpaper.md create mode 100644 nodePackages/react/docs/functions/Warn.md create mode 100644 nodePackages/react/docs/functions/Wave.md create mode 100644 nodePackages/react/docs/functions/WingL.md create mode 100644 nodePackages/react/docs/functions/WingR.md create mode 100644 nodePackages/react/docs/globals.md create mode 100644 nodePackages/react/docs/variables/iconNames.md create mode 100644 nodePackages/react/typedoc.json create mode 100644 nodePackages/solid/docs/README.md create mode 100644 nodePackages/solid/docs/_media/LICENSE create mode 100644 nodePackages/solid/docs/functions/Avatars.md create mode 100644 nodePackages/solid/docs/functions/BackReturn.md create mode 100644 nodePackages/solid/docs/functions/Bell.md create mode 100644 nodePackages/solid/docs/functions/Bulb.md create mode 100644 nodePackages/solid/docs/functions/Camera.md create mode 100644 nodePackages/solid/docs/functions/CameraFlash.md create mode 100644 nodePackages/solid/docs/functions/CameraReload.md create mode 100644 nodePackages/solid/docs/functions/Caution.md create mode 100644 nodePackages/solid/docs/functions/ChangeMic.md create mode 100644 nodePackages/solid/docs/functions/Check.md create mode 100644 nodePackages/solid/docs/functions/CheckCircle.md create mode 100644 nodePackages/solid/docs/functions/CheckThin.md create mode 100644 nodePackages/solid/docs/functions/CircleCircle.md create mode 100644 nodePackages/solid/docs/functions/CircleCross.md create mode 100644 nodePackages/solid/docs/functions/CircleHandle.md create mode 100644 nodePackages/solid/docs/functions/CircleMinus.md create mode 100644 nodePackages/solid/docs/functions/CirclePlus.md create mode 100644 nodePackages/solid/docs/functions/CircleSquare.md create mode 100644 nodePackages/solid/docs/functions/CircleStar.md create mode 100644 nodePackages/solid/docs/functions/Circleless.md create mode 100644 nodePackages/solid/docs/functions/Collapse.md create mode 100644 nodePackages/solid/docs/functions/Copy.md create mode 100644 nodePackages/solid/docs/functions/Create.md create mode 100644 nodePackages/solid/docs/functions/Credits.md create mode 100644 nodePackages/solid/docs/functions/Cross.md create mode 100644 nodePackages/solid/docs/functions/CrossThin.md create mode 100644 nodePackages/solid/docs/functions/Cursor.md create mode 100644 nodePackages/solid/docs/functions/Document.md create mode 100644 nodePackages/solid/docs/functions/Down.md create mode 100644 nodePackages/solid/docs/functions/Edit.md create mode 100644 nodePackages/solid/docs/functions/Envelope.md create mode 100644 nodePackages/solid/docs/functions/EnvelopePlus.md create mode 100644 nodePackages/solid/docs/functions/EnvelopeQ.md create mode 100644 nodePackages/solid/docs/functions/Expand.md create mode 100644 nodePackages/solid/docs/functions/Expandable.md create mode 100644 nodePackages/solid/docs/functions/Eye.md create mode 100644 nodePackages/solid/docs/functions/EyeMove.md create mode 100644 nodePackages/solid/docs/functions/FaceMirror.md create mode 100644 nodePackages/solid/docs/functions/Fire.md create mode 100644 nodePackages/solid/docs/functions/Forbid.md create mode 100644 nodePackages/solid/docs/functions/Friends.md create mode 100644 nodePackages/solid/docs/functions/Gear.md create mode 100644 nodePackages/solid/docs/functions/Graphics.md create mode 100644 nodePackages/solid/docs/functions/Grid.md create mode 100644 nodePackages/solid/docs/functions/Group.md create mode 100644 nodePackages/solid/docs/functions/Hamburger.md create mode 100644 nodePackages/solid/docs/functions/Help.md create mode 100644 nodePackages/solid/docs/functions/History.md create mode 100644 nodePackages/solid/docs/functions/Home.md create mode 100644 nodePackages/solid/docs/functions/HomeReload.md create mode 100644 nodePackages/solid/docs/functions/Hourgrass.md create mode 100644 nodePackages/solid/docs/functions/IK.md create mode 100644 nodePackages/solid/docs/functions/Images.md create mode 100644 nodePackages/solid/docs/functions/Info.md create mode 100644 nodePackages/solid/docs/functions/InfoBlock.md create mode 100644 nodePackages/solid/docs/functions/InfoMono.md create mode 100644 nodePackages/solid/docs/functions/Join.md create mode 100644 nodePackages/solid/docs/functions/Keyboard.md create mode 100644 nodePackages/solid/docs/functions/KeyboardThin.md create mode 100644 nodePackages/solid/docs/functions/List.md create mode 100644 nodePackages/solid/docs/functions/ListThin.md create mode 100644 nodePackages/solid/docs/functions/Logout.md create mode 100644 nodePackages/solid/docs/functions/Material.md create mode 100644 nodePackages/solid/docs/functions/Mic.md create mode 100644 nodePackages/solid/docs/functions/Mirror.md create mode 100644 nodePackages/solid/docs/functions/Monitor.md create mode 100644 nodePackages/solid/docs/functions/Move.md create mode 100644 nodePackages/solid/docs/functions/MoveCircle.md create mode 100644 nodePackages/solid/docs/functions/MoveSquare.md create mode 100644 nodePackages/solid/docs/functions/Next.md create mode 100644 nodePackages/solid/docs/functions/Next3.md create mode 100644 nodePackages/solid/docs/functions/NextArrow.md create mode 100644 nodePackages/solid/docs/functions/NextThin.md create mode 100644 nodePackages/solid/docs/functions/NextTri.md create mode 100644 nodePackages/solid/docs/functions/NextTriThin.md create mode 100644 nodePackages/solid/docs/functions/NextTriW.md create mode 100644 nodePackages/solid/docs/functions/Notice.md create mode 100644 nodePackages/solid/docs/functions/OSC.md create mode 100644 nodePackages/solid/docs/functions/Order.md create mode 100644 nodePackages/solid/docs/functions/Pad.md create mode 100644 nodePackages/solid/docs/functions/Pin.md create mode 100644 nodePackages/solid/docs/functions/Plus.md create mode 100644 nodePackages/solid/docs/functions/PlusThin.md create mode 100644 nodePackages/solid/docs/functions/Portraits.md create mode 100644 nodePackages/solid/docs/functions/Power.md create mode 100644 nodePackages/solid/docs/functions/Previous.md create mode 100644 nodePackages/solid/docs/functions/Previous3.md create mode 100644 nodePackages/solid/docs/functions/PreviousArrow.md create mode 100644 nodePackages/solid/docs/functions/PreviousThin.md create mode 100644 nodePackages/solid/docs/functions/PreviousTri.md create mode 100644 nodePackages/solid/docs/functions/PreviousTriThin.md create mode 100644 nodePackages/solid/docs/functions/PreviousTriW.md create mode 100644 nodePackages/solid/docs/functions/Pulse.md create mode 100644 nodePackages/solid/docs/functions/RankExcellent.md create mode 100644 nodePackages/solid/docs/functions/RankGood.md create mode 100644 nodePackages/solid/docs/functions/RankMedium.md create mode 100644 nodePackages/solid/docs/functions/RankPoor.md create mode 100644 nodePackages/solid/docs/functions/RankVeryPoor.md create mode 100644 nodePackages/solid/docs/functions/Reload.md create mode 100644 nodePackages/solid/docs/functions/Reset.md create mode 100644 nodePackages/solid/docs/functions/Resolution.md create mode 100644 nodePackages/solid/docs/functions/Reticule.md create mode 100644 nodePackages/solid/docs/functions/Return.md create mode 100644 nodePackages/solid/docs/functions/ReturnReverse.md create mode 100644 nodePackages/solid/docs/functions/Rocket.md create mode 100644 nodePackages/solid/docs/functions/Saturn.md create mode 100644 nodePackages/solid/docs/functions/SaturnWithSatellites.md create mode 100644 nodePackages/solid/docs/functions/Shield.md create mode 100644 nodePackages/solid/docs/functions/ShieldWithGear.md create mode 100644 nodePackages/solid/docs/functions/ShieldWithStar.md create mode 100644 nodePackages/solid/docs/functions/Shieldless.md create mode 100644 nodePackages/solid/docs/functions/Speaker.md create mode 100644 nodePackages/solid/docs/functions/Star.md create mode 100644 nodePackages/solid/docs/functions/StarThin.md create mode 100644 nodePackages/solid/docs/functions/Terminal.md create mode 100644 nodePackages/solid/docs/functions/Tip.md create mode 100644 nodePackages/solid/docs/functions/UI.md create mode 100644 nodePackages/solid/docs/functions/Up.md create mode 100644 nodePackages/solid/docs/functions/User.md create mode 100644 nodePackages/solid/docs/functions/UserIcon.md create mode 100644 nodePackages/solid/docs/functions/Users2.md create mode 100644 nodePackages/solid/docs/functions/Users3.md create mode 100644 nodePackages/solid/docs/functions/VCC.md create mode 100644 nodePackages/solid/docs/functions/VRC.md create mode 100644 nodePackages/solid/docs/functions/VRCPlus.md create mode 100644 nodePackages/solid/docs/functions/Venn.md create mode 100644 nodePackages/solid/docs/functions/VennColorMM.md create mode 100644 nodePackages/solid/docs/functions/VennColorMPc.md create mode 100644 nodePackages/solid/docs/functions/VennColorMPcM.md create mode 100644 nodePackages/solid/docs/functions/VennColorOnlyM.md create mode 100644 nodePackages/solid/docs/functions/VennColorOnlyPc.md create mode 100644 nodePackages/solid/docs/functions/VennColorOnlyQ.md create mode 100644 nodePackages/solid/docs/functions/VennColorQPc.md create mode 100644 nodePackages/solid/docs/functions/VennColorQPcQ.md create mode 100644 nodePackages/solid/docs/functions/VennColorQQ.md create mode 100644 nodePackages/solid/docs/functions/VennMonoPc.md create mode 100644 nodePackages/solid/docs/functions/VennMonoPcQ.md create mode 100644 nodePackages/solid/docs/functions/VennMonoQ.md create mode 100644 nodePackages/solid/docs/functions/Voice.md create mode 100644 nodePackages/solid/docs/functions/Wallpaper.md create mode 100644 nodePackages/solid/docs/functions/Warn.md create mode 100644 nodePackages/solid/docs/functions/Wave.md create mode 100644 nodePackages/solid/docs/functions/WingL.md create mode 100644 nodePackages/solid/docs/functions/WingR.md create mode 100644 nodePackages/solid/docs/globals.md create mode 100644 nodePackages/solid/docs/variables/iconNames.md create mode 100644 nodePackages/solid/typedoc.json diff --git a/.markdownlint-cli2.yaml b/.markdownlint-cli2.yaml index bc3dc962..a9b07692 100644 --- a/.markdownlint-cli2.yaml +++ b/.markdownlint-cli2.yaml @@ -5,6 +5,7 @@ ignores: - Library/** - Logs/** - node_modules/** + - nodePackages/**/docs/** - Packages/com.*/** - Packages/dev.*/** - ProjectSettings/** diff --git a/.prettierignore b/.prettierignore index ffae15e1..d754a6b5 100644 --- a/.prettierignore +++ b/.prettierignore @@ -34,5 +34,6 @@ pnpm-lock.yaml Packages/*.json ### Others ### +nodePackages/**/docs Website/app.js Website/index.html diff --git a/.vscode/settings.json b/.vscode/settings.json index e732dde5..ac7955a0 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -7,6 +7,7 @@ "*.db": "${capture}.db.st", "*.dll": "${capture}.pdb", "*.js": "${capture}.*", + "*.jsx": "${capture}.*", "*.md": "${capture}.*.md", "*.mjs": "${capture}.*", "*.png": "${capture}@*.png", diff --git a/nodePackages/react/docs/README.md b/nodePackages/react/docs/README.md new file mode 100644 index 00000000..aefde0f8 --- /dev/null +++ b/nodePackages/react/docs/README.md @@ -0,0 +1,26 @@ +**@kurone-kito/launchpad-icons-react** + +*** + +# 🚀 LaunchPad Icons for React + +## Usage + +```sh +npm install @kurone-kito/launchpad-icons-react +``` + +```tsx +import { Avatars } from '@kurone-kito/launchpad-icons-react/Avatars'; +import type { FC } from 'react'; + +export const App: FC = () => ( +
+ +
+); +``` + +## License + +This repository is licensed under the [CC-BY-NC 4.0](_media/LICENSE). diff --git a/nodePackages/react/docs/_media/LICENSE b/nodePackages/react/docs/_media/LICENSE new file mode 100644 index 00000000..c657cab4 --- /dev/null +++ b/nodePackages/react/docs/_media/LICENSE @@ -0,0 +1,407 @@ +Attribution-NonCommercial 4.0 International + +======================================================================= + +Creative Commons Corporation ("Creative Commons") is not a law firm and +does not provide legal services or legal advice. Distribution of +Creative Commons public licenses does not create a lawyer-client or +other relationship. Creative Commons makes its licenses and related +information available on an "as-is" basis. Creative Commons gives no +warranties regarding its licenses, any material licensed under their +terms and conditions, or any related information. Creative Commons +disclaims all liability for damages resulting from their use to the +fullest extent possible. + +Using Creative Commons Public Licenses + +Creative Commons public licenses provide a standard set of terms and +conditions that creators and other rights holders may use to share +original works of authorship and other material subject to copyright +and certain other rights specified in the public license below. The +following considerations are for informational purposes only, are not +exhaustive, and do not form part of our licenses. + + Considerations for licensors: Our public licenses are + intended for use by those authorized to give the public + permission to use material in ways otherwise restricted by + copyright and certain other rights. Our licenses are + irrevocable. Licensors should read and understand the terms + and conditions of the license they choose before applying it. + Licensors should also secure all rights necessary before + applying our licenses so that the public can reuse the + material as expected. Licensors should clearly mark any + material not subject to the license. This includes other CC- + licensed material, or material used under an exception or + limitation to copyright. More considerations for licensors: + wiki.creativecommons.org/Considerations_for_licensors + + Considerations for the public: By using one of our public + licenses, a licensor grants the public permission to use the + licensed material under specified terms and conditions. If + the licensor's permission is not necessary for any reason--for + example, because of any applicable exception or limitation to + copyright--then that use is not regulated by the license. Our + licenses grant only permissions under copyright and certain + other rights that a licensor has authority to grant. Use of + the licensed material may still be restricted for other + reasons, including because others have copyright or other + rights in the material. A licensor may make special requests, + such as asking that all changes be marked or described. + Although not required by our licenses, you are encouraged to + respect those requests where reasonable. More considerations + for the public: + wiki.creativecommons.org/Considerations_for_licensees + +======================================================================= + +Creative Commons Attribution-NonCommercial 4.0 International Public +License + +By exercising the Licensed Rights (defined below), You accept and agree +to be bound by the terms and conditions of this Creative Commons +Attribution-NonCommercial 4.0 International Public License ("Public +License"). To the extent this Public License may be interpreted as a +contract, You are granted the Licensed Rights in consideration of Your +acceptance of these terms and conditions, and the Licensor grants You +such rights in consideration of benefits the Licensor receives from +making the Licensed Material available under these terms and +conditions. + + +Section 1 -- Definitions. + + a. Adapted Material means material subject to Copyright and Similar + Rights that is derived from or based upon the Licensed Material + and in which the Licensed Material is translated, altered, + arranged, transformed, or otherwise modified in a manner requiring + permission under the Copyright and Similar Rights held by the + Licensor. For purposes of this Public License, where the Licensed + Material is a musical work, performance, or sound recording, + Adapted Material is always produced where the Licensed Material is + synched in timed relation with a moving image. + + b. Adapter's License means the license You apply to Your Copyright + and Similar Rights in Your contributions to Adapted Material in + accordance with the terms and conditions of this Public License. + + c. Copyright and Similar Rights means copyright and/or similar rights + closely related to copyright including, without limitation, + performance, broadcast, sound recording, and Sui Generis Database + Rights, without regard to how the rights are labeled or + categorized. For purposes of this Public License, the rights + specified in Section 2(b)(1)-(2) are not Copyright and Similar + Rights. + d. Effective Technological Measures means those measures that, in the + absence of proper authority, may not be circumvented under laws + fulfilling obligations under Article 11 of the WIPO Copyright + Treaty adopted on December 20, 1996, and/or similar international + agreements. + + e. Exceptions and Limitations means fair use, fair dealing, and/or + any other exception or limitation to Copyright and Similar Rights + that applies to Your use of the Licensed Material. + + f. Licensed Material means the artistic or literary work, database, + or other material to which the Licensor applied this Public + License. + + g. Licensed Rights means the rights granted to You subject to the + terms and conditions of this Public License, which are limited to + all Copyright and Similar Rights that apply to Your use of the + Licensed Material and that the Licensor has authority to license. + + h. Licensor means the individual(s) or entity(ies) granting rights + under this Public License. + + i. NonCommercial means not primarily intended for or directed towards + commercial advantage or monetary compensation. For purposes of + this Public License, the exchange of the Licensed Material for + other material subject to Copyright and Similar Rights by digital + file-sharing or similar means is NonCommercial provided there is + no payment of monetary compensation in connection with the + exchange. + + j. Share means to provide material to the public by any means or + process that requires permission under the Licensed Rights, such + as reproduction, public display, public performance, distribution, + dissemination, communication, or importation, and to make material + available to the public including in ways that members of the + public may access the material from a place and at a time + individually chosen by them. + + k. Sui Generis Database Rights means rights other than copyright + resulting from Directive 96/9/EC of the European Parliament and of + the Council of 11 March 1996 on the legal protection of databases, + as amended and/or succeeded, as well as other essentially + equivalent rights anywhere in the world. + + l. You means the individual or entity exercising the Licensed Rights + under this Public License. Your has a corresponding meaning. + + +Section 2 -- Scope. + + a. License grant. + + 1. Subject to the terms and conditions of this Public License, + the Licensor hereby grants You a worldwide, royalty-free, + non-sublicensable, non-exclusive, irrevocable license to + exercise the Licensed Rights in the Licensed Material to: + + a. reproduce and Share the Licensed Material, in whole or + in part, for NonCommercial purposes only; and + + b. produce, reproduce, and Share Adapted Material for + NonCommercial purposes only. + + 2. Exceptions and Limitations. For the avoidance of doubt, where + Exceptions and Limitations apply to Your use, this Public + License does not apply, and You do not need to comply with + its terms and conditions. + + 3. Term. The term of this Public License is specified in Section + 6(a). + + 4. Media and formats; technical modifications allowed. The + Licensor authorizes You to exercise the Licensed Rights in + all media and formats whether now known or hereafter created, + and to make technical modifications necessary to do so. The + Licensor waives and/or agrees not to assert any right or + authority to forbid You from making technical modifications + necessary to exercise the Licensed Rights, including + technical modifications necessary to circumvent Effective + Technological Measures. For purposes of this Public License, + simply making modifications authorized by this Section 2(a) + (4) never produces Adapted Material. + + 5. Downstream recipients. + + a. Offer from the Licensor -- Licensed Material. Every + recipient of the Licensed Material automatically + receives an offer from the Licensor to exercise the + Licensed Rights under the terms and conditions of this + Public License. + + b. No downstream restrictions. You may not offer or impose + any additional or different terms or conditions on, or + apply any Effective Technological Measures to, the + Licensed Material if doing so restricts exercise of the + Licensed Rights by any recipient of the Licensed + Material. + + 6. No endorsement. Nothing in this Public License constitutes or + may be construed as permission to assert or imply that You + are, or that Your use of the Licensed Material is, connected + with, or sponsored, endorsed, or granted official status by, + the Licensor or others designated to receive attribution as + provided in Section 3(a)(1)(A)(i). + + b. Other rights. + + 1. Moral rights, such as the right of integrity, are not + licensed under this Public License, nor are publicity, + privacy, and/or other similar personality rights; however, to + the extent possible, the Licensor waives and/or agrees not to + assert any such rights held by the Licensor to the limited + extent necessary to allow You to exercise the Licensed + Rights, but not otherwise. + + 2. Patent and trademark rights are not licensed under this + Public License. + + 3. To the extent possible, the Licensor waives any right to + collect royalties from You for the exercise of the Licensed + Rights, whether directly or through a collecting society + under any voluntary or waivable statutory or compulsory + licensing scheme. In all other cases the Licensor expressly + reserves any right to collect such royalties, including when + the Licensed Material is used other than for NonCommercial + purposes. + + +Section 3 -- License Conditions. + +Your exercise of the Licensed Rights is expressly made subject to the +following conditions. + + a. Attribution. + + 1. If You Share the Licensed Material (including in modified + form), You must: + + a. retain the following if it is supplied by the Licensor + with the Licensed Material: + + i. identification of the creator(s) of the Licensed + Material and any others designated to receive + attribution, in any reasonable manner requested by + the Licensor (including by pseudonym if + designated); + + ii. a copyright notice; + + iii. a notice that refers to this Public License; + + iv. a notice that refers to the disclaimer of + warranties; + + v. a URI or hyperlink to the Licensed Material to the + extent reasonably practicable; + + b. indicate if You modified the Licensed Material and + retain an indication of any previous modifications; and + + c. indicate the Licensed Material is licensed under this + Public License, and include the text of, or the URI or + hyperlink to, this Public License. + + 2. You may satisfy the conditions in Section 3(a)(1) in any + reasonable manner based on the medium, means, and context in + which You Share the Licensed Material. For example, it may be + reasonable to satisfy the conditions by providing a URI or + hyperlink to a resource that includes the required + information. + + 3. If requested by the Licensor, You must remove any of the + information required by Section 3(a)(1)(A) to the extent + reasonably practicable. + + 4. If You Share Adapted Material You produce, the Adapter's + License You apply must not prevent recipients of the Adapted + Material from complying with this Public License. + + +Section 4 -- Sui Generis Database Rights. + +Where the Licensed Rights include Sui Generis Database Rights that +apply to Your use of the Licensed Material: + + a. for the avoidance of doubt, Section 2(a)(1) grants You the right + to extract, reuse, reproduce, and Share all or a substantial + portion of the contents of the database for NonCommercial purposes + only; + + b. if You include all or a substantial portion of the database + contents in a database in which You have Sui Generis Database + Rights, then the database in which You have Sui Generis Database + Rights (but not its individual contents) is Adapted Material; and + + c. You must comply with the conditions in Section 3(a) if You Share + all or a substantial portion of the contents of the database. + +For the avoidance of doubt, this Section 4 supplements and does not +replace Your obligations under this Public License where the Licensed +Rights include other Copyright and Similar Rights. + + +Section 5 -- Disclaimer of Warranties and Limitation of Liability. + + a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE + EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS + AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF + ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, + IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, + WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, + ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT + KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT + ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. + + b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE + TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, + NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, + INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, + COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR + USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN + ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR + DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR + IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. + + c. The disclaimer of warranties and limitation of liability provided + above shall be interpreted in a manner that, to the extent + possible, most closely approximates an absolute disclaimer and + waiver of all liability. + + +Section 6 -- Term and Termination. + + a. This Public License applies for the term of the Copyright and + Similar Rights licensed here. However, if You fail to comply with + this Public License, then Your rights under this Public License + terminate automatically. + + b. Where Your right to use the Licensed Material has terminated under + Section 6(a), it reinstates: + + 1. automatically as of the date the violation is cured, provided + it is cured within 30 days of Your discovery of the + violation; or + + 2. upon express reinstatement by the Licensor. + + For the avoidance of doubt, this Section 6(b) does not affect any + right the Licensor may have to seek remedies for Your violations + of this Public License. + + c. For the avoidance of doubt, the Licensor may also offer the + Licensed Material under separate terms or conditions or stop + distributing the Licensed Material at any time; however, doing so + will not terminate this Public License. + + d. Sections 1, 5, 6, 7, and 8 survive termination of this Public + License. + + +Section 7 -- Other Terms and Conditions. + + a. The Licensor shall not be bound by any additional or different + terms or conditions communicated by You unless expressly agreed. + + b. Any arrangements, understandings, or agreements regarding the + Licensed Material not stated herein are separate from and + independent of the terms and conditions of this Public License. + + +Section 8 -- Interpretation. + + a. For the avoidance of doubt, this Public License does not, and + shall not be interpreted to, reduce, limit, restrict, or impose + conditions on any use of the Licensed Material that could lawfully + be made without permission under this Public License. + + b. To the extent possible, if any provision of this Public License is + deemed unenforceable, it shall be automatically reformed to the + minimum extent necessary to make it enforceable. If the provision + cannot be reformed, it shall be severed from this Public License + without affecting the enforceability of the remaining terms and + conditions. + + c. No term or condition of this Public License will be waived and no + failure to comply consented to unless expressly agreed to by the + Licensor. + + d. Nothing in this Public License constitutes or may be interpreted + as a limitation upon, or waiver of, any privileges and immunities + that apply to the Licensor or You, including from the legal + processes of any jurisdiction or authority. + +======================================================================= + +Creative Commons is not a party to its public +licenses. Notwithstanding, Creative Commons may elect to apply one of +its public licenses to material it publishes and in those instances +will be considered the “Licensor.” The text of the Creative Commons +public licenses is dedicated to the public domain under the CC0 Public +Domain Dedication. Except for the limited purpose of indicating that +material is shared under a Creative Commons public license or as +otherwise permitted by the Creative Commons policies published at +creativecommons.org/policies, Creative Commons does not authorize the +use of the trademark "Creative Commons" or any other trademark or logo +of Creative Commons without its prior written consent including, +without limitation, in connection with any unauthorized modifications +to any of its public licenses or any other arrangements, +understandings, or agreements concerning use of licensed material. For +the avoidance of doubt, this paragraph does not form part of the +public licenses. + +Creative Commons may be contacted at creativecommons.org. diff --git a/nodePackages/react/docs/functions/Avatars.md b/nodePackages/react/docs/functions/Avatars.md new file mode 100644 index 00000000..96d1e3b2 --- /dev/null +++ b/nodePackages/react/docs/functions/Avatars.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Avatars + +# Function: Avatars() + +> **Avatars**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/BackReturn.md b/nodePackages/react/docs/functions/BackReturn.md new file mode 100644 index 00000000..5d102b16 --- /dev/null +++ b/nodePackages/react/docs/functions/BackReturn.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / BackReturn + +# Function: BackReturn() + +> **BackReturn**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Bell.md b/nodePackages/react/docs/functions/Bell.md new file mode 100644 index 00000000..3288585a --- /dev/null +++ b/nodePackages/react/docs/functions/Bell.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Bell + +# Function: Bell() + +> **Bell**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Bulb.md b/nodePackages/react/docs/functions/Bulb.md new file mode 100644 index 00000000..2a57f3ad --- /dev/null +++ b/nodePackages/react/docs/functions/Bulb.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Bulb + +# Function: Bulb() + +> **Bulb**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Camera.md b/nodePackages/react/docs/functions/Camera.md new file mode 100644 index 00000000..095939a5 --- /dev/null +++ b/nodePackages/react/docs/functions/Camera.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Camera + +# Function: Camera() + +> **Camera**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/CameraFlash.md b/nodePackages/react/docs/functions/CameraFlash.md new file mode 100644 index 00000000..d655630c --- /dev/null +++ b/nodePackages/react/docs/functions/CameraFlash.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / CameraFlash + +# Function: CameraFlash() + +> **CameraFlash**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/CameraReload.md b/nodePackages/react/docs/functions/CameraReload.md new file mode 100644 index 00000000..268eef02 --- /dev/null +++ b/nodePackages/react/docs/functions/CameraReload.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / CameraReload + +# Function: CameraReload() + +> **CameraReload**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Caution.md b/nodePackages/react/docs/functions/Caution.md new file mode 100644 index 00000000..1afcbf81 --- /dev/null +++ b/nodePackages/react/docs/functions/Caution.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Caution + +# Function: Caution() + +> **Caution**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/ChangeMic.md b/nodePackages/react/docs/functions/ChangeMic.md new file mode 100644 index 00000000..2c3ef4a4 --- /dev/null +++ b/nodePackages/react/docs/functions/ChangeMic.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / ChangeMic + +# Function: ChangeMic() + +> **ChangeMic**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Check.md b/nodePackages/react/docs/functions/Check.md new file mode 100644 index 00000000..c375458c --- /dev/null +++ b/nodePackages/react/docs/functions/Check.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Check + +# Function: Check() + +> **Check**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/CheckCircle.md b/nodePackages/react/docs/functions/CheckCircle.md new file mode 100644 index 00000000..9818f354 --- /dev/null +++ b/nodePackages/react/docs/functions/CheckCircle.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / CheckCircle + +# Function: CheckCircle() + +> **CheckCircle**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/CheckThin.md b/nodePackages/react/docs/functions/CheckThin.md new file mode 100644 index 00000000..56f464a6 --- /dev/null +++ b/nodePackages/react/docs/functions/CheckThin.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / CheckThin + +# Function: CheckThin() + +> **CheckThin**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/CircleCircle.md b/nodePackages/react/docs/functions/CircleCircle.md new file mode 100644 index 00000000..f9a3ab9a --- /dev/null +++ b/nodePackages/react/docs/functions/CircleCircle.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / CircleCircle + +# Function: CircleCircle() + +> **CircleCircle**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/CircleCross.md b/nodePackages/react/docs/functions/CircleCross.md new file mode 100644 index 00000000..07c7bdd5 --- /dev/null +++ b/nodePackages/react/docs/functions/CircleCross.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / CircleCross + +# Function: CircleCross() + +> **CircleCross**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/CircleHandle.md b/nodePackages/react/docs/functions/CircleHandle.md new file mode 100644 index 00000000..8762d18a --- /dev/null +++ b/nodePackages/react/docs/functions/CircleHandle.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / CircleHandle + +# Function: CircleHandle() + +> **CircleHandle**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/CircleMinus.md b/nodePackages/react/docs/functions/CircleMinus.md new file mode 100644 index 00000000..675faafd --- /dev/null +++ b/nodePackages/react/docs/functions/CircleMinus.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / CircleMinus + +# Function: CircleMinus() + +> **CircleMinus**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/CirclePlus.md b/nodePackages/react/docs/functions/CirclePlus.md new file mode 100644 index 00000000..312e1788 --- /dev/null +++ b/nodePackages/react/docs/functions/CirclePlus.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / CirclePlus + +# Function: CirclePlus() + +> **CirclePlus**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/CircleSquare.md b/nodePackages/react/docs/functions/CircleSquare.md new file mode 100644 index 00000000..3f016fdb --- /dev/null +++ b/nodePackages/react/docs/functions/CircleSquare.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / CircleSquare + +# Function: CircleSquare() + +> **CircleSquare**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/CircleStar.md b/nodePackages/react/docs/functions/CircleStar.md new file mode 100644 index 00000000..e87ad349 --- /dev/null +++ b/nodePackages/react/docs/functions/CircleStar.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / CircleStar + +# Function: CircleStar() + +> **CircleStar**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Circleless.md b/nodePackages/react/docs/functions/Circleless.md new file mode 100644 index 00000000..5c0cba1a --- /dev/null +++ b/nodePackages/react/docs/functions/Circleless.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Circleless + +# Function: Circleless() + +> **Circleless**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Collapse.md b/nodePackages/react/docs/functions/Collapse.md new file mode 100644 index 00000000..579f54a2 --- /dev/null +++ b/nodePackages/react/docs/functions/Collapse.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Collapse + +# Function: Collapse() + +> **Collapse**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Copy.md b/nodePackages/react/docs/functions/Copy.md new file mode 100644 index 00000000..fe57b181 --- /dev/null +++ b/nodePackages/react/docs/functions/Copy.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Copy + +# Function: Copy() + +> **Copy**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Create.md b/nodePackages/react/docs/functions/Create.md new file mode 100644 index 00000000..6751953c --- /dev/null +++ b/nodePackages/react/docs/functions/Create.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Create + +# Function: Create() + +> **Create**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Credits.md b/nodePackages/react/docs/functions/Credits.md new file mode 100644 index 00000000..74724218 --- /dev/null +++ b/nodePackages/react/docs/functions/Credits.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Credits + +# Function: Credits() + +> **Credits**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Cross.md b/nodePackages/react/docs/functions/Cross.md new file mode 100644 index 00000000..68f8b6a6 --- /dev/null +++ b/nodePackages/react/docs/functions/Cross.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Cross + +# Function: Cross() + +> **Cross**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/CrossThin.md b/nodePackages/react/docs/functions/CrossThin.md new file mode 100644 index 00000000..7bb9ff49 --- /dev/null +++ b/nodePackages/react/docs/functions/CrossThin.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / CrossThin + +# Function: CrossThin() + +> **CrossThin**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Cursor.md b/nodePackages/react/docs/functions/Cursor.md new file mode 100644 index 00000000..0362e136 --- /dev/null +++ b/nodePackages/react/docs/functions/Cursor.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Cursor + +# Function: Cursor() + +> **Cursor**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Document.md b/nodePackages/react/docs/functions/Document.md new file mode 100644 index 00000000..f3687b84 --- /dev/null +++ b/nodePackages/react/docs/functions/Document.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Document + +# Function: Document() + +> **Document**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Down.md b/nodePackages/react/docs/functions/Down.md new file mode 100644 index 00000000..2a18d234 --- /dev/null +++ b/nodePackages/react/docs/functions/Down.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Down + +# Function: Down() + +> **Down**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Edit.md b/nodePackages/react/docs/functions/Edit.md new file mode 100644 index 00000000..ce42af7a --- /dev/null +++ b/nodePackages/react/docs/functions/Edit.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Edit + +# Function: Edit() + +> **Edit**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Envelope.md b/nodePackages/react/docs/functions/Envelope.md new file mode 100644 index 00000000..ee95e995 --- /dev/null +++ b/nodePackages/react/docs/functions/Envelope.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Envelope + +# Function: Envelope() + +> **Envelope**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/EnvelopePlus.md b/nodePackages/react/docs/functions/EnvelopePlus.md new file mode 100644 index 00000000..3e15bc4b --- /dev/null +++ b/nodePackages/react/docs/functions/EnvelopePlus.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / EnvelopePlus + +# Function: EnvelopePlus() + +> **EnvelopePlus**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/EnvelopeQ.md b/nodePackages/react/docs/functions/EnvelopeQ.md new file mode 100644 index 00000000..75585582 --- /dev/null +++ b/nodePackages/react/docs/functions/EnvelopeQ.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / EnvelopeQ + +# Function: EnvelopeQ() + +> **EnvelopeQ**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Expand.md b/nodePackages/react/docs/functions/Expand.md new file mode 100644 index 00000000..ea48ff55 --- /dev/null +++ b/nodePackages/react/docs/functions/Expand.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Expand + +# Function: Expand() + +> **Expand**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Expandable.md b/nodePackages/react/docs/functions/Expandable.md new file mode 100644 index 00000000..105731a3 --- /dev/null +++ b/nodePackages/react/docs/functions/Expandable.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Expandable + +# Function: Expandable() + +> **Expandable**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Eye.md b/nodePackages/react/docs/functions/Eye.md new file mode 100644 index 00000000..1689534f --- /dev/null +++ b/nodePackages/react/docs/functions/Eye.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Eye + +# Function: Eye() + +> **Eye**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/EyeMove.md b/nodePackages/react/docs/functions/EyeMove.md new file mode 100644 index 00000000..9bc8945b --- /dev/null +++ b/nodePackages/react/docs/functions/EyeMove.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / EyeMove + +# Function: EyeMove() + +> **EyeMove**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/FaceMirror.md b/nodePackages/react/docs/functions/FaceMirror.md new file mode 100644 index 00000000..b9182508 --- /dev/null +++ b/nodePackages/react/docs/functions/FaceMirror.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / FaceMirror + +# Function: FaceMirror() + +> **FaceMirror**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Fire.md b/nodePackages/react/docs/functions/Fire.md new file mode 100644 index 00000000..bc9c1ab7 --- /dev/null +++ b/nodePackages/react/docs/functions/Fire.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Fire + +# Function: Fire() + +> **Fire**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Forbid.md b/nodePackages/react/docs/functions/Forbid.md new file mode 100644 index 00000000..9aacc041 --- /dev/null +++ b/nodePackages/react/docs/functions/Forbid.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Forbid + +# Function: Forbid() + +> **Forbid**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Friends.md b/nodePackages/react/docs/functions/Friends.md new file mode 100644 index 00000000..c14886de --- /dev/null +++ b/nodePackages/react/docs/functions/Friends.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Friends + +# Function: Friends() + +> **Friends**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Gear.md b/nodePackages/react/docs/functions/Gear.md new file mode 100644 index 00000000..fc7ff5db --- /dev/null +++ b/nodePackages/react/docs/functions/Gear.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Gear + +# Function: Gear() + +> **Gear**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Graphics.md b/nodePackages/react/docs/functions/Graphics.md new file mode 100644 index 00000000..e6339518 --- /dev/null +++ b/nodePackages/react/docs/functions/Graphics.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Graphics + +# Function: Graphics() + +> **Graphics**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Grid.md b/nodePackages/react/docs/functions/Grid.md new file mode 100644 index 00000000..14ad7db3 --- /dev/null +++ b/nodePackages/react/docs/functions/Grid.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Grid + +# Function: Grid() + +> **Grid**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Group.md b/nodePackages/react/docs/functions/Group.md new file mode 100644 index 00000000..832892b4 --- /dev/null +++ b/nodePackages/react/docs/functions/Group.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Group + +# Function: Group() + +> **Group**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Hamburger.md b/nodePackages/react/docs/functions/Hamburger.md new file mode 100644 index 00000000..da880fcc --- /dev/null +++ b/nodePackages/react/docs/functions/Hamburger.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Hamburger + +# Function: Hamburger() + +> **Hamburger**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Help.md b/nodePackages/react/docs/functions/Help.md new file mode 100644 index 00000000..21335cba --- /dev/null +++ b/nodePackages/react/docs/functions/Help.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Help + +# Function: Help() + +> **Help**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/History.md b/nodePackages/react/docs/functions/History.md new file mode 100644 index 00000000..c014b3e7 --- /dev/null +++ b/nodePackages/react/docs/functions/History.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / History + +# Function: History() + +> **History**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Home.md b/nodePackages/react/docs/functions/Home.md new file mode 100644 index 00000000..0bf1cdf7 --- /dev/null +++ b/nodePackages/react/docs/functions/Home.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Home + +# Function: Home() + +> **Home**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/HomeReload.md b/nodePackages/react/docs/functions/HomeReload.md new file mode 100644 index 00000000..3a654c85 --- /dev/null +++ b/nodePackages/react/docs/functions/HomeReload.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / HomeReload + +# Function: HomeReload() + +> **HomeReload**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Hourgrass.md b/nodePackages/react/docs/functions/Hourgrass.md new file mode 100644 index 00000000..46e5dd85 --- /dev/null +++ b/nodePackages/react/docs/functions/Hourgrass.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Hourgrass + +# Function: Hourgrass() + +> **Hourgrass**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/IK.md b/nodePackages/react/docs/functions/IK.md new file mode 100644 index 00000000..6e564647 --- /dev/null +++ b/nodePackages/react/docs/functions/IK.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / IK + +# Function: IK() + +> **IK**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Images.md b/nodePackages/react/docs/functions/Images.md new file mode 100644 index 00000000..40617249 --- /dev/null +++ b/nodePackages/react/docs/functions/Images.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Images + +# Function: Images() + +> **Images**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Info.md b/nodePackages/react/docs/functions/Info.md new file mode 100644 index 00000000..23ccb687 --- /dev/null +++ b/nodePackages/react/docs/functions/Info.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Info + +# Function: Info() + +> **Info**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/InfoBlock.md b/nodePackages/react/docs/functions/InfoBlock.md new file mode 100644 index 00000000..7f40db35 --- /dev/null +++ b/nodePackages/react/docs/functions/InfoBlock.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / InfoBlock + +# Function: InfoBlock() + +> **InfoBlock**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/InfoMono.md b/nodePackages/react/docs/functions/InfoMono.md new file mode 100644 index 00000000..efde3a78 --- /dev/null +++ b/nodePackages/react/docs/functions/InfoMono.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / InfoMono + +# Function: InfoMono() + +> **InfoMono**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Join.md b/nodePackages/react/docs/functions/Join.md new file mode 100644 index 00000000..6d8f2752 --- /dev/null +++ b/nodePackages/react/docs/functions/Join.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Join + +# Function: Join() + +> **Join**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Keyboard.md b/nodePackages/react/docs/functions/Keyboard.md new file mode 100644 index 00000000..96d65452 --- /dev/null +++ b/nodePackages/react/docs/functions/Keyboard.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Keyboard + +# Function: Keyboard() + +> **Keyboard**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/KeyboardThin.md b/nodePackages/react/docs/functions/KeyboardThin.md new file mode 100644 index 00000000..4004e6ad --- /dev/null +++ b/nodePackages/react/docs/functions/KeyboardThin.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / KeyboardThin + +# Function: KeyboardThin() + +> **KeyboardThin**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/List.md b/nodePackages/react/docs/functions/List.md new file mode 100644 index 00000000..d9fe5832 --- /dev/null +++ b/nodePackages/react/docs/functions/List.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / List + +# Function: List() + +> **List**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/ListThin.md b/nodePackages/react/docs/functions/ListThin.md new file mode 100644 index 00000000..1a197f19 --- /dev/null +++ b/nodePackages/react/docs/functions/ListThin.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / ListThin + +# Function: ListThin() + +> **ListThin**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Logout.md b/nodePackages/react/docs/functions/Logout.md new file mode 100644 index 00000000..75ef7535 --- /dev/null +++ b/nodePackages/react/docs/functions/Logout.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Logout + +# Function: Logout() + +> **Logout**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Material.md b/nodePackages/react/docs/functions/Material.md new file mode 100644 index 00000000..3e8f70a1 --- /dev/null +++ b/nodePackages/react/docs/functions/Material.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Material + +# Function: Material() + +> **Material**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Mic.md b/nodePackages/react/docs/functions/Mic.md new file mode 100644 index 00000000..d0473397 --- /dev/null +++ b/nodePackages/react/docs/functions/Mic.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Mic + +# Function: Mic() + +> **Mic**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Mirror.md b/nodePackages/react/docs/functions/Mirror.md new file mode 100644 index 00000000..5c5753ec --- /dev/null +++ b/nodePackages/react/docs/functions/Mirror.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Mirror + +# Function: Mirror() + +> **Mirror**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Monitor.md b/nodePackages/react/docs/functions/Monitor.md new file mode 100644 index 00000000..262c5d7a --- /dev/null +++ b/nodePackages/react/docs/functions/Monitor.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Monitor + +# Function: Monitor() + +> **Monitor**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Move.md b/nodePackages/react/docs/functions/Move.md new file mode 100644 index 00000000..5ba4a438 --- /dev/null +++ b/nodePackages/react/docs/functions/Move.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Move + +# Function: Move() + +> **Move**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/MoveCircle.md b/nodePackages/react/docs/functions/MoveCircle.md new file mode 100644 index 00000000..72a7ac5c --- /dev/null +++ b/nodePackages/react/docs/functions/MoveCircle.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / MoveCircle + +# Function: MoveCircle() + +> **MoveCircle**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/MoveSquare.md b/nodePackages/react/docs/functions/MoveSquare.md new file mode 100644 index 00000000..56ca504c --- /dev/null +++ b/nodePackages/react/docs/functions/MoveSquare.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / MoveSquare + +# Function: MoveSquare() + +> **MoveSquare**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Next.md b/nodePackages/react/docs/functions/Next.md new file mode 100644 index 00000000..afa5f9ef --- /dev/null +++ b/nodePackages/react/docs/functions/Next.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Next + +# Function: Next() + +> **Next**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Next3.md b/nodePackages/react/docs/functions/Next3.md new file mode 100644 index 00000000..766d3965 --- /dev/null +++ b/nodePackages/react/docs/functions/Next3.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Next3 + +# Function: Next3() + +> **Next3**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/NextArrow.md b/nodePackages/react/docs/functions/NextArrow.md new file mode 100644 index 00000000..b815e313 --- /dev/null +++ b/nodePackages/react/docs/functions/NextArrow.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / NextArrow + +# Function: NextArrow() + +> **NextArrow**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/NextThin.md b/nodePackages/react/docs/functions/NextThin.md new file mode 100644 index 00000000..6a643761 --- /dev/null +++ b/nodePackages/react/docs/functions/NextThin.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / NextThin + +# Function: NextThin() + +> **NextThin**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/NextTri.md b/nodePackages/react/docs/functions/NextTri.md new file mode 100644 index 00000000..a6868c81 --- /dev/null +++ b/nodePackages/react/docs/functions/NextTri.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / NextTri + +# Function: NextTri() + +> **NextTri**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/NextTriThin.md b/nodePackages/react/docs/functions/NextTriThin.md new file mode 100644 index 00000000..a19d8aa1 --- /dev/null +++ b/nodePackages/react/docs/functions/NextTriThin.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / NextTriThin + +# Function: NextTriThin() + +> **NextTriThin**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/NextTriW.md b/nodePackages/react/docs/functions/NextTriW.md new file mode 100644 index 00000000..ac1ac2a5 --- /dev/null +++ b/nodePackages/react/docs/functions/NextTriW.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / NextTriW + +# Function: NextTriW() + +> **NextTriW**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Notice.md b/nodePackages/react/docs/functions/Notice.md new file mode 100644 index 00000000..1d33ff87 --- /dev/null +++ b/nodePackages/react/docs/functions/Notice.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Notice + +# Function: Notice() + +> **Notice**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/OSC.md b/nodePackages/react/docs/functions/OSC.md new file mode 100644 index 00000000..93cd8304 --- /dev/null +++ b/nodePackages/react/docs/functions/OSC.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / OSC + +# Function: OSC() + +> **OSC**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Order.md b/nodePackages/react/docs/functions/Order.md new file mode 100644 index 00000000..4e603c77 --- /dev/null +++ b/nodePackages/react/docs/functions/Order.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Order + +# Function: Order() + +> **Order**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Pad.md b/nodePackages/react/docs/functions/Pad.md new file mode 100644 index 00000000..42c58d53 --- /dev/null +++ b/nodePackages/react/docs/functions/Pad.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Pad + +# Function: Pad() + +> **Pad**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Pin.md b/nodePackages/react/docs/functions/Pin.md new file mode 100644 index 00000000..a02c0390 --- /dev/null +++ b/nodePackages/react/docs/functions/Pin.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Pin + +# Function: Pin() + +> **Pin**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Plus.md b/nodePackages/react/docs/functions/Plus.md new file mode 100644 index 00000000..deb31daf --- /dev/null +++ b/nodePackages/react/docs/functions/Plus.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Plus + +# Function: Plus() + +> **Plus**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/PlusThin.md b/nodePackages/react/docs/functions/PlusThin.md new file mode 100644 index 00000000..b0209d43 --- /dev/null +++ b/nodePackages/react/docs/functions/PlusThin.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / PlusThin + +# Function: PlusThin() + +> **PlusThin**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Portraits.md b/nodePackages/react/docs/functions/Portraits.md new file mode 100644 index 00000000..7987a234 --- /dev/null +++ b/nodePackages/react/docs/functions/Portraits.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Portraits + +# Function: Portraits() + +> **Portraits**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Power.md b/nodePackages/react/docs/functions/Power.md new file mode 100644 index 00000000..5be1c19b --- /dev/null +++ b/nodePackages/react/docs/functions/Power.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Power + +# Function: Power() + +> **Power**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Previous.md b/nodePackages/react/docs/functions/Previous.md new file mode 100644 index 00000000..2e5f2285 --- /dev/null +++ b/nodePackages/react/docs/functions/Previous.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Previous + +# Function: Previous() + +> **Previous**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Previous3.md b/nodePackages/react/docs/functions/Previous3.md new file mode 100644 index 00000000..a15e5488 --- /dev/null +++ b/nodePackages/react/docs/functions/Previous3.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Previous3 + +# Function: Previous3() + +> **Previous3**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/PreviousArrow.md b/nodePackages/react/docs/functions/PreviousArrow.md new file mode 100644 index 00000000..21f43d1e --- /dev/null +++ b/nodePackages/react/docs/functions/PreviousArrow.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / PreviousArrow + +# Function: PreviousArrow() + +> **PreviousArrow**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/PreviousThin.md b/nodePackages/react/docs/functions/PreviousThin.md new file mode 100644 index 00000000..8c7ff80e --- /dev/null +++ b/nodePackages/react/docs/functions/PreviousThin.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / PreviousThin + +# Function: PreviousThin() + +> **PreviousThin**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/PreviousTri.md b/nodePackages/react/docs/functions/PreviousTri.md new file mode 100644 index 00000000..9c570fe1 --- /dev/null +++ b/nodePackages/react/docs/functions/PreviousTri.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / PreviousTri + +# Function: PreviousTri() + +> **PreviousTri**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/PreviousTriThin.md b/nodePackages/react/docs/functions/PreviousTriThin.md new file mode 100644 index 00000000..b42f3f2a --- /dev/null +++ b/nodePackages/react/docs/functions/PreviousTriThin.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / PreviousTriThin + +# Function: PreviousTriThin() + +> **PreviousTriThin**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/PreviousTriW.md b/nodePackages/react/docs/functions/PreviousTriW.md new file mode 100644 index 00000000..ce071793 --- /dev/null +++ b/nodePackages/react/docs/functions/PreviousTriW.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / PreviousTriW + +# Function: PreviousTriW() + +> **PreviousTriW**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Pulse.md b/nodePackages/react/docs/functions/Pulse.md new file mode 100644 index 00000000..38b6d2ac --- /dev/null +++ b/nodePackages/react/docs/functions/Pulse.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Pulse + +# Function: Pulse() + +> **Pulse**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/RankExcellent.md b/nodePackages/react/docs/functions/RankExcellent.md new file mode 100644 index 00000000..f2f56d8b --- /dev/null +++ b/nodePackages/react/docs/functions/RankExcellent.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / RankExcellent + +# Function: RankExcellent() + +> **RankExcellent**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/RankGood.md b/nodePackages/react/docs/functions/RankGood.md new file mode 100644 index 00000000..ceaefcc0 --- /dev/null +++ b/nodePackages/react/docs/functions/RankGood.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / RankGood + +# Function: RankGood() + +> **RankGood**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/RankMedium.md b/nodePackages/react/docs/functions/RankMedium.md new file mode 100644 index 00000000..97c0a538 --- /dev/null +++ b/nodePackages/react/docs/functions/RankMedium.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / RankMedium + +# Function: RankMedium() + +> **RankMedium**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/RankPoor.md b/nodePackages/react/docs/functions/RankPoor.md new file mode 100644 index 00000000..703fcbe9 --- /dev/null +++ b/nodePackages/react/docs/functions/RankPoor.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / RankPoor + +# Function: RankPoor() + +> **RankPoor**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/RankVeryPoor.md b/nodePackages/react/docs/functions/RankVeryPoor.md new file mode 100644 index 00000000..c9f2a41b --- /dev/null +++ b/nodePackages/react/docs/functions/RankVeryPoor.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / RankVeryPoor + +# Function: RankVeryPoor() + +> **RankVeryPoor**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Reload.md b/nodePackages/react/docs/functions/Reload.md new file mode 100644 index 00000000..e4d0d0f2 --- /dev/null +++ b/nodePackages/react/docs/functions/Reload.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Reload + +# Function: Reload() + +> **Reload**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Reset.md b/nodePackages/react/docs/functions/Reset.md new file mode 100644 index 00000000..40cc56a2 --- /dev/null +++ b/nodePackages/react/docs/functions/Reset.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Reset + +# Function: Reset() + +> **Reset**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Resolution.md b/nodePackages/react/docs/functions/Resolution.md new file mode 100644 index 00000000..6f932d88 --- /dev/null +++ b/nodePackages/react/docs/functions/Resolution.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Resolution + +# Function: Resolution() + +> **Resolution**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Reticule.md b/nodePackages/react/docs/functions/Reticule.md new file mode 100644 index 00000000..be196edc --- /dev/null +++ b/nodePackages/react/docs/functions/Reticule.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Reticule + +# Function: Reticule() + +> **Reticule**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Return.md b/nodePackages/react/docs/functions/Return.md new file mode 100644 index 00000000..9339b974 --- /dev/null +++ b/nodePackages/react/docs/functions/Return.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Return + +# Function: Return() + +> **Return**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/ReturnReverse.md b/nodePackages/react/docs/functions/ReturnReverse.md new file mode 100644 index 00000000..66c0a8fb --- /dev/null +++ b/nodePackages/react/docs/functions/ReturnReverse.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / ReturnReverse + +# Function: ReturnReverse() + +> **ReturnReverse**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Rocket.md b/nodePackages/react/docs/functions/Rocket.md new file mode 100644 index 00000000..a7618ce0 --- /dev/null +++ b/nodePackages/react/docs/functions/Rocket.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Rocket + +# Function: Rocket() + +> **Rocket**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Saturn.md b/nodePackages/react/docs/functions/Saturn.md new file mode 100644 index 00000000..98aede74 --- /dev/null +++ b/nodePackages/react/docs/functions/Saturn.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Saturn + +# Function: Saturn() + +> **Saturn**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/SaturnWithSatellites.md b/nodePackages/react/docs/functions/SaturnWithSatellites.md new file mode 100644 index 00000000..c849c5ed --- /dev/null +++ b/nodePackages/react/docs/functions/SaturnWithSatellites.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / SaturnWithSatellites + +# Function: SaturnWithSatellites() + +> **SaturnWithSatellites**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Shield.md b/nodePackages/react/docs/functions/Shield.md new file mode 100644 index 00000000..074139bf --- /dev/null +++ b/nodePackages/react/docs/functions/Shield.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Shield + +# Function: Shield() + +> **Shield**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/ShieldWithGear.md b/nodePackages/react/docs/functions/ShieldWithGear.md new file mode 100644 index 00000000..164314fa --- /dev/null +++ b/nodePackages/react/docs/functions/ShieldWithGear.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / ShieldWithGear + +# Function: ShieldWithGear() + +> **ShieldWithGear**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/ShieldWithStar.md b/nodePackages/react/docs/functions/ShieldWithStar.md new file mode 100644 index 00000000..512c58f9 --- /dev/null +++ b/nodePackages/react/docs/functions/ShieldWithStar.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / ShieldWithStar + +# Function: ShieldWithStar() + +> **ShieldWithStar**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Shieldless.md b/nodePackages/react/docs/functions/Shieldless.md new file mode 100644 index 00000000..8f5e4aef --- /dev/null +++ b/nodePackages/react/docs/functions/Shieldless.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Shieldless + +# Function: Shieldless() + +> **Shieldless**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Speaker.md b/nodePackages/react/docs/functions/Speaker.md new file mode 100644 index 00000000..abe0ec86 --- /dev/null +++ b/nodePackages/react/docs/functions/Speaker.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Speaker + +# Function: Speaker() + +> **Speaker**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Star.md b/nodePackages/react/docs/functions/Star.md new file mode 100644 index 00000000..49762a15 --- /dev/null +++ b/nodePackages/react/docs/functions/Star.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Star + +# Function: Star() + +> **Star**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/StarThin.md b/nodePackages/react/docs/functions/StarThin.md new file mode 100644 index 00000000..d9360df6 --- /dev/null +++ b/nodePackages/react/docs/functions/StarThin.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / StarThin + +# Function: StarThin() + +> **StarThin**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Terminal.md b/nodePackages/react/docs/functions/Terminal.md new file mode 100644 index 00000000..fc56d2c2 --- /dev/null +++ b/nodePackages/react/docs/functions/Terminal.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Terminal + +# Function: Terminal() + +> **Terminal**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Tip.md b/nodePackages/react/docs/functions/Tip.md new file mode 100644 index 00000000..25a64550 --- /dev/null +++ b/nodePackages/react/docs/functions/Tip.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Tip + +# Function: Tip() + +> **Tip**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/UI.md b/nodePackages/react/docs/functions/UI.md new file mode 100644 index 00000000..2d5c3bec --- /dev/null +++ b/nodePackages/react/docs/functions/UI.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / UI + +# Function: UI() + +> **UI**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Up.md b/nodePackages/react/docs/functions/Up.md new file mode 100644 index 00000000..036f0897 --- /dev/null +++ b/nodePackages/react/docs/functions/Up.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Up + +# Function: Up() + +> **Up**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/User.md b/nodePackages/react/docs/functions/User.md new file mode 100644 index 00000000..42c62a39 --- /dev/null +++ b/nodePackages/react/docs/functions/User.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / User + +# Function: User() + +> **User**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/UserIcon.md b/nodePackages/react/docs/functions/UserIcon.md new file mode 100644 index 00000000..fa403cad --- /dev/null +++ b/nodePackages/react/docs/functions/UserIcon.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / UserIcon + +# Function: UserIcon() + +> **UserIcon**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Users2.md b/nodePackages/react/docs/functions/Users2.md new file mode 100644 index 00000000..7908edf4 --- /dev/null +++ b/nodePackages/react/docs/functions/Users2.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Users2 + +# Function: Users2() + +> **Users2**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Users3.md b/nodePackages/react/docs/functions/Users3.md new file mode 100644 index 00000000..60e0d61e --- /dev/null +++ b/nodePackages/react/docs/functions/Users3.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Users3 + +# Function: Users3() + +> **Users3**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/VCC.md b/nodePackages/react/docs/functions/VCC.md new file mode 100644 index 00000000..d32761a0 --- /dev/null +++ b/nodePackages/react/docs/functions/VCC.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / VCC + +# Function: VCC() + +> **VCC**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/VRC.md b/nodePackages/react/docs/functions/VRC.md new file mode 100644 index 00000000..e476f6ca --- /dev/null +++ b/nodePackages/react/docs/functions/VRC.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / VRC + +# Function: VRC() + +> **VRC**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/VRCPlus.md b/nodePackages/react/docs/functions/VRCPlus.md new file mode 100644 index 00000000..7d5ba875 --- /dev/null +++ b/nodePackages/react/docs/functions/VRCPlus.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / VRCPlus + +# Function: VRCPlus() + +> **VRCPlus**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Venn.md b/nodePackages/react/docs/functions/Venn.md new file mode 100644 index 00000000..7590a25d --- /dev/null +++ b/nodePackages/react/docs/functions/Venn.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Venn + +# Function: Venn() + +> **Venn**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/VennColorMM.md b/nodePackages/react/docs/functions/VennColorMM.md new file mode 100644 index 00000000..3d9850f8 --- /dev/null +++ b/nodePackages/react/docs/functions/VennColorMM.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / VennColorMM + +# Function: VennColorMM() + +> **VennColorMM**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/VennColorMPc.md b/nodePackages/react/docs/functions/VennColorMPc.md new file mode 100644 index 00000000..6977ccde --- /dev/null +++ b/nodePackages/react/docs/functions/VennColorMPc.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / VennColorMPc + +# Function: VennColorMPc() + +> **VennColorMPc**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/VennColorMPcM.md b/nodePackages/react/docs/functions/VennColorMPcM.md new file mode 100644 index 00000000..682cfdca --- /dev/null +++ b/nodePackages/react/docs/functions/VennColorMPcM.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / VennColorMPcM + +# Function: VennColorMPcM() + +> **VennColorMPcM**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/VennColorOnlyM.md b/nodePackages/react/docs/functions/VennColorOnlyM.md new file mode 100644 index 00000000..8cca04e9 --- /dev/null +++ b/nodePackages/react/docs/functions/VennColorOnlyM.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / VennColorOnlyM + +# Function: VennColorOnlyM() + +> **VennColorOnlyM**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/VennColorOnlyPc.md b/nodePackages/react/docs/functions/VennColorOnlyPc.md new file mode 100644 index 00000000..b66efff2 --- /dev/null +++ b/nodePackages/react/docs/functions/VennColorOnlyPc.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / VennColorOnlyPc + +# Function: VennColorOnlyPc() + +> **VennColorOnlyPc**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/VennColorOnlyQ.md b/nodePackages/react/docs/functions/VennColorOnlyQ.md new file mode 100644 index 00000000..cbbf1424 --- /dev/null +++ b/nodePackages/react/docs/functions/VennColorOnlyQ.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / VennColorOnlyQ + +# Function: VennColorOnlyQ() + +> **VennColorOnlyQ**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/VennColorQPc.md b/nodePackages/react/docs/functions/VennColorQPc.md new file mode 100644 index 00000000..f006eeda --- /dev/null +++ b/nodePackages/react/docs/functions/VennColorQPc.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / VennColorQPc + +# Function: VennColorQPc() + +> **VennColorQPc**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/VennColorQPcQ.md b/nodePackages/react/docs/functions/VennColorQPcQ.md new file mode 100644 index 00000000..f5656bae --- /dev/null +++ b/nodePackages/react/docs/functions/VennColorQPcQ.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / VennColorQPcQ + +# Function: VennColorQPcQ() + +> **VennColorQPcQ**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/VennColorQQ.md b/nodePackages/react/docs/functions/VennColorQQ.md new file mode 100644 index 00000000..dfe5dc75 --- /dev/null +++ b/nodePackages/react/docs/functions/VennColorQQ.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / VennColorQQ + +# Function: VennColorQQ() + +> **VennColorQQ**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/VennMonoPc.md b/nodePackages/react/docs/functions/VennMonoPc.md new file mode 100644 index 00000000..e0d86c34 --- /dev/null +++ b/nodePackages/react/docs/functions/VennMonoPc.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / VennMonoPc + +# Function: VennMonoPc() + +> **VennMonoPc**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/VennMonoPcQ.md b/nodePackages/react/docs/functions/VennMonoPcQ.md new file mode 100644 index 00000000..0709209a --- /dev/null +++ b/nodePackages/react/docs/functions/VennMonoPcQ.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / VennMonoPcQ + +# Function: VennMonoPcQ() + +> **VennMonoPcQ**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/VennMonoQ.md b/nodePackages/react/docs/functions/VennMonoQ.md new file mode 100644 index 00000000..f51d3cbd --- /dev/null +++ b/nodePackages/react/docs/functions/VennMonoQ.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / VennMonoQ + +# Function: VennMonoQ() + +> **VennMonoQ**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Voice.md b/nodePackages/react/docs/functions/Voice.md new file mode 100644 index 00000000..972caadb --- /dev/null +++ b/nodePackages/react/docs/functions/Voice.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Voice + +# Function: Voice() + +> **Voice**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Wallpaper.md b/nodePackages/react/docs/functions/Wallpaper.md new file mode 100644 index 00000000..8751b505 --- /dev/null +++ b/nodePackages/react/docs/functions/Wallpaper.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Wallpaper + +# Function: Wallpaper() + +> **Wallpaper**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Warn.md b/nodePackages/react/docs/functions/Warn.md new file mode 100644 index 00000000..d79cdae9 --- /dev/null +++ b/nodePackages/react/docs/functions/Warn.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Warn + +# Function: Warn() + +> **Warn**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/Wave.md b/nodePackages/react/docs/functions/Wave.md new file mode 100644 index 00000000..8952747d --- /dev/null +++ b/nodePackages/react/docs/functions/Wave.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / Wave + +# Function: Wave() + +> **Wave**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/WingL.md b/nodePackages/react/docs/functions/WingL.md new file mode 100644 index 00000000..c8a62e4d --- /dev/null +++ b/nodePackages/react/docs/functions/WingL.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / WingL + +# Function: WingL() + +> **WingL**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/functions/WingR.md b/nodePackages/react/docs/functions/WingR.md new file mode 100644 index 00000000..02beea0d --- /dev/null +++ b/nodePackages/react/docs/functions/WingR.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / WingR + +# Function: WingR() + +> **WingR**(`props`): `ReactNode` \| `Promise`\<`ReactNode`\> + +## Parameters + +### props + +`SVGProps`\<`SVGSVGElement`\> + +## Returns + +`ReactNode` \| `Promise`\<`ReactNode`\> diff --git a/nodePackages/react/docs/globals.md b/nodePackages/react/docs/globals.md new file mode 100644 index 00000000..88ba0c09 --- /dev/null +++ b/nodePackages/react/docs/globals.md @@ -0,0 +1,156 @@ +[**@kurone-kito/launchpad-icons-react**](README.md) + +*** + +# @kurone-kito/launchpad-icons-react + +## Variables + +- [iconNames](variables/iconNames.md) + +## Functions + +- [Avatars](functions/Avatars.md) +- [BackReturn](functions/BackReturn.md) +- [Bell](functions/Bell.md) +- [Bulb](functions/Bulb.md) +- [Camera](functions/Camera.md) +- [CameraFlash](functions/CameraFlash.md) +- [CameraReload](functions/CameraReload.md) +- [Caution](functions/Caution.md) +- [ChangeMic](functions/ChangeMic.md) +- [Check](functions/Check.md) +- [CheckCircle](functions/CheckCircle.md) +- [CheckThin](functions/CheckThin.md) +- [CircleCircle](functions/CircleCircle.md) +- [CircleCross](functions/CircleCross.md) +- [CircleHandle](functions/CircleHandle.md) +- [Circleless](functions/Circleless.md) +- [CircleMinus](functions/CircleMinus.md) +- [CirclePlus](functions/CirclePlus.md) +- [CircleSquare](functions/CircleSquare.md) +- [CircleStar](functions/CircleStar.md) +- [Collapse](functions/Collapse.md) +- [Copy](functions/Copy.md) +- [Create](functions/Create.md) +- [Credits](functions/Credits.md) +- [Cross](functions/Cross.md) +- [CrossThin](functions/CrossThin.md) +- [Cursor](functions/Cursor.md) +- [Document](functions/Document.md) +- [Down](functions/Down.md) +- [Edit](functions/Edit.md) +- [Envelope](functions/Envelope.md) +- [EnvelopePlus](functions/EnvelopePlus.md) +- [EnvelopeQ](functions/EnvelopeQ.md) +- [Expand](functions/Expand.md) +- [Expandable](functions/Expandable.md) +- [Eye](functions/Eye.md) +- [EyeMove](functions/EyeMove.md) +- [FaceMirror](functions/FaceMirror.md) +- [Fire](functions/Fire.md) +- [Forbid](functions/Forbid.md) +- [Friends](functions/Friends.md) +- [Gear](functions/Gear.md) +- [Graphics](functions/Graphics.md) +- [Grid](functions/Grid.md) +- [Group](functions/Group.md) +- [Hamburger](functions/Hamburger.md) +- [Help](functions/Help.md) +- [History](functions/History.md) +- [Home](functions/Home.md) +- [HomeReload](functions/HomeReload.md) +- [Hourgrass](functions/Hourgrass.md) +- [IK](functions/IK.md) +- [Images](functions/Images.md) +- [Info](functions/Info.md) +- [InfoBlock](functions/InfoBlock.md) +- [InfoMono](functions/InfoMono.md) +- [Join](functions/Join.md) +- [Keyboard](functions/Keyboard.md) +- [KeyboardThin](functions/KeyboardThin.md) +- [List](functions/List.md) +- [ListThin](functions/ListThin.md) +- [Logout](functions/Logout.md) +- [Material](functions/Material.md) +- [Mic](functions/Mic.md) +- [Mirror](functions/Mirror.md) +- [Monitor](functions/Monitor.md) +- [Move](functions/Move.md) +- [MoveCircle](functions/MoveCircle.md) +- [MoveSquare](functions/MoveSquare.md) +- [Next](functions/Next.md) +- [Next3](functions/Next3.md) +- [NextArrow](functions/NextArrow.md) +- [NextThin](functions/NextThin.md) +- [NextTri](functions/NextTri.md) +- [NextTriThin](functions/NextTriThin.md) +- [NextTriW](functions/NextTriW.md) +- [Notice](functions/Notice.md) +- [Order](functions/Order.md) +- [OSC](functions/OSC.md) +- [Pad](functions/Pad.md) +- [Pin](functions/Pin.md) +- [Plus](functions/Plus.md) +- [PlusThin](functions/PlusThin.md) +- [Portraits](functions/Portraits.md) +- [Power](functions/Power.md) +- [Previous](functions/Previous.md) +- [Previous3](functions/Previous3.md) +- [PreviousArrow](functions/PreviousArrow.md) +- [PreviousThin](functions/PreviousThin.md) +- [PreviousTri](functions/PreviousTri.md) +- [PreviousTriThin](functions/PreviousTriThin.md) +- [PreviousTriW](functions/PreviousTriW.md) +- [Pulse](functions/Pulse.md) +- [RankExcellent](functions/RankExcellent.md) +- [RankGood](functions/RankGood.md) +- [RankMedium](functions/RankMedium.md) +- [RankPoor](functions/RankPoor.md) +- [RankVeryPoor](functions/RankVeryPoor.md) +- [Reload](functions/Reload.md) +- [Reset](functions/Reset.md) +- [Resolution](functions/Resolution.md) +- [Reticule](functions/Reticule.md) +- [Return](functions/Return.md) +- [ReturnReverse](functions/ReturnReverse.md) +- [Rocket](functions/Rocket.md) +- [Saturn](functions/Saturn.md) +- [SaturnWithSatellites](functions/SaturnWithSatellites.md) +- [Shield](functions/Shield.md) +- [Shieldless](functions/Shieldless.md) +- [ShieldWithGear](functions/ShieldWithGear.md) +- [ShieldWithStar](functions/ShieldWithStar.md) +- [Speaker](functions/Speaker.md) +- [Star](functions/Star.md) +- [StarThin](functions/StarThin.md) +- [Terminal](functions/Terminal.md) +- [Tip](functions/Tip.md) +- [UI](functions/UI.md) +- [Up](functions/Up.md) +- [User](functions/User.md) +- [UserIcon](functions/UserIcon.md) +- [Users2](functions/Users2.md) +- [Users3](functions/Users3.md) +- [VCC](functions/VCC.md) +- [Venn](functions/Venn.md) +- [VennColorMM](functions/VennColorMM.md) +- [VennColorMPc](functions/VennColorMPc.md) +- [VennColorMPcM](functions/VennColorMPcM.md) +- [VennColorOnlyM](functions/VennColorOnlyM.md) +- [VennColorOnlyPc](functions/VennColorOnlyPc.md) +- [VennColorOnlyQ](functions/VennColorOnlyQ.md) +- [VennColorQPc](functions/VennColorQPc.md) +- [VennColorQPcQ](functions/VennColorQPcQ.md) +- [VennColorQQ](functions/VennColorQQ.md) +- [VennMonoPc](functions/VennMonoPc.md) +- [VennMonoPcQ](functions/VennMonoPcQ.md) +- [VennMonoQ](functions/VennMonoQ.md) +- [Voice](functions/Voice.md) +- [VRC](functions/VRC.md) +- [VRCPlus](functions/VRCPlus.md) +- [Wallpaper](functions/Wallpaper.md) +- [Warn](functions/Warn.md) +- [Wave](functions/Wave.md) +- [WingL](functions/WingL.md) +- [WingR](functions/WingR.md) diff --git a/nodePackages/react/docs/variables/iconNames.md b/nodePackages/react/docs/variables/iconNames.md new file mode 100644 index 00000000..7749fe45 --- /dev/null +++ b/nodePackages/react/docs/variables/iconNames.md @@ -0,0 +1,9 @@ +[**@kurone-kito/launchpad-icons-react**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-react](../globals.md) / iconNames + +# Variable: iconNames + +> `const` **iconNames**: readonly [`"Avatars"`, `"BackReturn"`, `"Bell"`, `"Bulb"`, `"Camera"`, `"CameraFlash"`, `"CameraReload"`, `"Caution"`, `"ChangeMic"`, `"Check"`, `"CheckCircle"`, `"CheckThin"`, `"CircleCircle"`, `"CircleCross"`, `"CircleHandle"`, `"CircleMinus"`, `"CirclePlus"`, `"CircleSquare"`, `"CircleStar"`, `"Circleless"`, `"Collapse"`, `"Copy"`, `"Create"`, `"Credits"`, `"Cross"`, `"CrossThin"`, `"Cursor"`, `"Document"`, `"Down"`, `"Edit"`, `"Envelope"`, `"EnvelopePlus"`, `"EnvelopeQ"`, `"Expand"`, `"Expandable"`, `"Eye"`, `"EyeMove"`, `"FaceMirror"`, `"Fire"`, `"Forbid"`, `"Friends"`, `"Gear"`, `"Graphics"`, `"Grid"`, `"Group"`, `"Hamburger"`, `"Help"`, `"History"`, `"Home"`, `"HomeReload"`, `"Hourgrass"`, `"IK"`, `"Images"`, `"Info"`, `"InfoBlock"`, `"InfoMono"`, `"Join"`, `"Keyboard"`, `"KeyboardThin"`, `"List"`, `"ListThin"`, `"Logout"`, `"Material"`, `"Mic"`, `"Mirror"`, `"Monitor"`, `"Move"`, `"MoveCircle"`, `"MoveSquare"`, `"Next"`, `"Next3"`, `"NextArrow"`, `"NextThin"`, `"NextTri"`, `"NextTriThin"`, `"NextTriW"`, `"Notice"`, `"OSC"`, `"Order"`, `"Pad"`, `"Pin"`, `"Plus"`, `"PlusThin"`, `"Portraits"`, `"Power"`, `"Previous"`, `"Previous3"`, `"PreviousArrow"`, `"PreviousThin"`, `"PreviousTri"`, `"PreviousTriThin"`, `"PreviousTriW"`, `"Pulse"`, `"RankExcellent"`, `"RankGood"`, `"RankMedium"`, `"RankPoor"`, `"RankVeryPoor"`, `"Reload"`, `"Reset"`, `"Resolution"`, `"Reticule"`, `"Return"`, `"ReturnReverse"`, `"Rocket"`, `"Saturn"`, `"SaturnWithSatellites"`, `"Shield"`, `"ShieldWithGear"`, `"ShieldWithStar"`, `"Shieldless"`, `"Speaker"`, `"Star"`, `"StarThin"`, `"Terminal"`, `"Tip"`, `"UI"`, `"Up"`, `"User"`, `"UserIcon"`, `"Users2"`, `"Users3"`, `"VCC"`, `"VRC"`, `"VRCPlus"`, `"Venn"`, `"VennColorMM"`, `"VennColorMPc"`, `"VennColorMPcM"`, `"VennColorOnlyM"`, `"VennColorOnlyPc"`, `"VennColorOnlyQ"`, `"VennColorQPc"`, `"VennColorQPcQ"`, `"VennColorQQ"`, `"VennMonoPc"`, `"VennMonoPcQ"`, `"VennMonoQ"`, `"Voice"`, `"Wallpaper"`, `"Warn"`, `"Wave"`, `"WingL"`, `"WingR"`] diff --git a/nodePackages/react/package.json b/nodePackages/react/package.json index a71eac3d..e912b39b 100644 --- a/nodePackages/react/package.json +++ b/nodePackages/react/package.json @@ -27,7 +27,9 @@ ], "scripts": { "prebuild": "pnpm run \"/^prebuild:.+/\"", - "build": "tsc", + "build": "pnpm run \"/^build:.+/\"", + "build:jsdoc": "rimraf docs && typedoc", + "build:ts": "tsc", "clean": "rimraf -g \"*.tgz\" \"*.tsbuildinfo\" dist generated-src LICENSE node_modules/.cache", "prepack": "pnpm run clean && pnpm run build", "prebuild:code": "liBuilder react", @@ -46,6 +48,8 @@ "jsdom": "^25.0.1", "react": "^19.0.0", "rimraf": "^5.0.10", + "typedoc": "^0.27.5", + "typedoc-plugin-markdown": "^4.3.3", "typescript": "~5.7.2", "vitest": "^2.1.8" }, diff --git a/nodePackages/react/typedoc.json b/nodePackages/react/typedoc.json new file mode 100644 index 00000000..abf25d91 --- /dev/null +++ b/nodePackages/react/typedoc.json @@ -0,0 +1,5 @@ +{ + "disableSources": true, + "entryPoints": ["./generated-src/index.mts"], + "plugin": ["typedoc-plugin-markdown"] +} diff --git a/nodePackages/solid/docs/README.md b/nodePackages/solid/docs/README.md new file mode 100644 index 00000000..8fcba5c3 --- /dev/null +++ b/nodePackages/solid/docs/README.md @@ -0,0 +1,26 @@ +**@kurone-kito/launchpad-icons-solid** + +*** + +# 🚀 LaunchPad Icons for Solid + +## Usage + +```sh +npm install @kurone-kito/launchpad-icons-solid +``` + +```tsx +import { Avatars } from '@kurone-kito/launchpad-icons-solid/Avatars'; +import type { Component } from 'solid-js'; + +export const App: Component = () => ( +
+ +
+); +``` + +## License + +This repository is licensed under the [CC-BY-NC 4.0](_media/LICENSE). diff --git a/nodePackages/solid/docs/_media/LICENSE b/nodePackages/solid/docs/_media/LICENSE new file mode 100644 index 00000000..c657cab4 --- /dev/null +++ b/nodePackages/solid/docs/_media/LICENSE @@ -0,0 +1,407 @@ +Attribution-NonCommercial 4.0 International + +======================================================================= + +Creative Commons Corporation ("Creative Commons") is not a law firm and +does not provide legal services or legal advice. Distribution of +Creative Commons public licenses does not create a lawyer-client or +other relationship. Creative Commons makes its licenses and related +information available on an "as-is" basis. Creative Commons gives no +warranties regarding its licenses, any material licensed under their +terms and conditions, or any related information. Creative Commons +disclaims all liability for damages resulting from their use to the +fullest extent possible. + +Using Creative Commons Public Licenses + +Creative Commons public licenses provide a standard set of terms and +conditions that creators and other rights holders may use to share +original works of authorship and other material subject to copyright +and certain other rights specified in the public license below. The +following considerations are for informational purposes only, are not +exhaustive, and do not form part of our licenses. + + Considerations for licensors: Our public licenses are + intended for use by those authorized to give the public + permission to use material in ways otherwise restricted by + copyright and certain other rights. Our licenses are + irrevocable. Licensors should read and understand the terms + and conditions of the license they choose before applying it. + Licensors should also secure all rights necessary before + applying our licenses so that the public can reuse the + material as expected. Licensors should clearly mark any + material not subject to the license. This includes other CC- + licensed material, or material used under an exception or + limitation to copyright. More considerations for licensors: + wiki.creativecommons.org/Considerations_for_licensors + + Considerations for the public: By using one of our public + licenses, a licensor grants the public permission to use the + licensed material under specified terms and conditions. If + the licensor's permission is not necessary for any reason--for + example, because of any applicable exception or limitation to + copyright--then that use is not regulated by the license. Our + licenses grant only permissions under copyright and certain + other rights that a licensor has authority to grant. Use of + the licensed material may still be restricted for other + reasons, including because others have copyright or other + rights in the material. A licensor may make special requests, + such as asking that all changes be marked or described. + Although not required by our licenses, you are encouraged to + respect those requests where reasonable. More considerations + for the public: + wiki.creativecommons.org/Considerations_for_licensees + +======================================================================= + +Creative Commons Attribution-NonCommercial 4.0 International Public +License + +By exercising the Licensed Rights (defined below), You accept and agree +to be bound by the terms and conditions of this Creative Commons +Attribution-NonCommercial 4.0 International Public License ("Public +License"). To the extent this Public License may be interpreted as a +contract, You are granted the Licensed Rights in consideration of Your +acceptance of these terms and conditions, and the Licensor grants You +such rights in consideration of benefits the Licensor receives from +making the Licensed Material available under these terms and +conditions. + + +Section 1 -- Definitions. + + a. Adapted Material means material subject to Copyright and Similar + Rights that is derived from or based upon the Licensed Material + and in which the Licensed Material is translated, altered, + arranged, transformed, or otherwise modified in a manner requiring + permission under the Copyright and Similar Rights held by the + Licensor. For purposes of this Public License, where the Licensed + Material is a musical work, performance, or sound recording, + Adapted Material is always produced where the Licensed Material is + synched in timed relation with a moving image. + + b. Adapter's License means the license You apply to Your Copyright + and Similar Rights in Your contributions to Adapted Material in + accordance with the terms and conditions of this Public License. + + c. Copyright and Similar Rights means copyright and/or similar rights + closely related to copyright including, without limitation, + performance, broadcast, sound recording, and Sui Generis Database + Rights, without regard to how the rights are labeled or + categorized. For purposes of this Public License, the rights + specified in Section 2(b)(1)-(2) are not Copyright and Similar + Rights. + d. Effective Technological Measures means those measures that, in the + absence of proper authority, may not be circumvented under laws + fulfilling obligations under Article 11 of the WIPO Copyright + Treaty adopted on December 20, 1996, and/or similar international + agreements. + + e. Exceptions and Limitations means fair use, fair dealing, and/or + any other exception or limitation to Copyright and Similar Rights + that applies to Your use of the Licensed Material. + + f. Licensed Material means the artistic or literary work, database, + or other material to which the Licensor applied this Public + License. + + g. Licensed Rights means the rights granted to You subject to the + terms and conditions of this Public License, which are limited to + all Copyright and Similar Rights that apply to Your use of the + Licensed Material and that the Licensor has authority to license. + + h. Licensor means the individual(s) or entity(ies) granting rights + under this Public License. + + i. NonCommercial means not primarily intended for or directed towards + commercial advantage or monetary compensation. For purposes of + this Public License, the exchange of the Licensed Material for + other material subject to Copyright and Similar Rights by digital + file-sharing or similar means is NonCommercial provided there is + no payment of monetary compensation in connection with the + exchange. + + j. Share means to provide material to the public by any means or + process that requires permission under the Licensed Rights, such + as reproduction, public display, public performance, distribution, + dissemination, communication, or importation, and to make material + available to the public including in ways that members of the + public may access the material from a place and at a time + individually chosen by them. + + k. Sui Generis Database Rights means rights other than copyright + resulting from Directive 96/9/EC of the European Parliament and of + the Council of 11 March 1996 on the legal protection of databases, + as amended and/or succeeded, as well as other essentially + equivalent rights anywhere in the world. + + l. You means the individual or entity exercising the Licensed Rights + under this Public License. Your has a corresponding meaning. + + +Section 2 -- Scope. + + a. License grant. + + 1. Subject to the terms and conditions of this Public License, + the Licensor hereby grants You a worldwide, royalty-free, + non-sublicensable, non-exclusive, irrevocable license to + exercise the Licensed Rights in the Licensed Material to: + + a. reproduce and Share the Licensed Material, in whole or + in part, for NonCommercial purposes only; and + + b. produce, reproduce, and Share Adapted Material for + NonCommercial purposes only. + + 2. Exceptions and Limitations. For the avoidance of doubt, where + Exceptions and Limitations apply to Your use, this Public + License does not apply, and You do not need to comply with + its terms and conditions. + + 3. Term. The term of this Public License is specified in Section + 6(a). + + 4. Media and formats; technical modifications allowed. The + Licensor authorizes You to exercise the Licensed Rights in + all media and formats whether now known or hereafter created, + and to make technical modifications necessary to do so. The + Licensor waives and/or agrees not to assert any right or + authority to forbid You from making technical modifications + necessary to exercise the Licensed Rights, including + technical modifications necessary to circumvent Effective + Technological Measures. For purposes of this Public License, + simply making modifications authorized by this Section 2(a) + (4) never produces Adapted Material. + + 5. Downstream recipients. + + a. Offer from the Licensor -- Licensed Material. Every + recipient of the Licensed Material automatically + receives an offer from the Licensor to exercise the + Licensed Rights under the terms and conditions of this + Public License. + + b. No downstream restrictions. You may not offer or impose + any additional or different terms or conditions on, or + apply any Effective Technological Measures to, the + Licensed Material if doing so restricts exercise of the + Licensed Rights by any recipient of the Licensed + Material. + + 6. No endorsement. Nothing in this Public License constitutes or + may be construed as permission to assert or imply that You + are, or that Your use of the Licensed Material is, connected + with, or sponsored, endorsed, or granted official status by, + the Licensor or others designated to receive attribution as + provided in Section 3(a)(1)(A)(i). + + b. Other rights. + + 1. Moral rights, such as the right of integrity, are not + licensed under this Public License, nor are publicity, + privacy, and/or other similar personality rights; however, to + the extent possible, the Licensor waives and/or agrees not to + assert any such rights held by the Licensor to the limited + extent necessary to allow You to exercise the Licensed + Rights, but not otherwise. + + 2. Patent and trademark rights are not licensed under this + Public License. + + 3. To the extent possible, the Licensor waives any right to + collect royalties from You for the exercise of the Licensed + Rights, whether directly or through a collecting society + under any voluntary or waivable statutory or compulsory + licensing scheme. In all other cases the Licensor expressly + reserves any right to collect such royalties, including when + the Licensed Material is used other than for NonCommercial + purposes. + + +Section 3 -- License Conditions. + +Your exercise of the Licensed Rights is expressly made subject to the +following conditions. + + a. Attribution. + + 1. If You Share the Licensed Material (including in modified + form), You must: + + a. retain the following if it is supplied by the Licensor + with the Licensed Material: + + i. identification of the creator(s) of the Licensed + Material and any others designated to receive + attribution, in any reasonable manner requested by + the Licensor (including by pseudonym if + designated); + + ii. a copyright notice; + + iii. a notice that refers to this Public License; + + iv. a notice that refers to the disclaimer of + warranties; + + v. a URI or hyperlink to the Licensed Material to the + extent reasonably practicable; + + b. indicate if You modified the Licensed Material and + retain an indication of any previous modifications; and + + c. indicate the Licensed Material is licensed under this + Public License, and include the text of, or the URI or + hyperlink to, this Public License. + + 2. You may satisfy the conditions in Section 3(a)(1) in any + reasonable manner based on the medium, means, and context in + which You Share the Licensed Material. For example, it may be + reasonable to satisfy the conditions by providing a URI or + hyperlink to a resource that includes the required + information. + + 3. If requested by the Licensor, You must remove any of the + information required by Section 3(a)(1)(A) to the extent + reasonably practicable. + + 4. If You Share Adapted Material You produce, the Adapter's + License You apply must not prevent recipients of the Adapted + Material from complying with this Public License. + + +Section 4 -- Sui Generis Database Rights. + +Where the Licensed Rights include Sui Generis Database Rights that +apply to Your use of the Licensed Material: + + a. for the avoidance of doubt, Section 2(a)(1) grants You the right + to extract, reuse, reproduce, and Share all or a substantial + portion of the contents of the database for NonCommercial purposes + only; + + b. if You include all or a substantial portion of the database + contents in a database in which You have Sui Generis Database + Rights, then the database in which You have Sui Generis Database + Rights (but not its individual contents) is Adapted Material; and + + c. You must comply with the conditions in Section 3(a) if You Share + all or a substantial portion of the contents of the database. + +For the avoidance of doubt, this Section 4 supplements and does not +replace Your obligations under this Public License where the Licensed +Rights include other Copyright and Similar Rights. + + +Section 5 -- Disclaimer of Warranties and Limitation of Liability. + + a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE + EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS + AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF + ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS, + IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION, + WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR + PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS, + ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT + KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT + ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU. + + b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE + TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION, + NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT, + INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES, + COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR + USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN + ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR + DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR + IN PART, THIS LIMITATION MAY NOT APPLY TO YOU. + + c. The disclaimer of warranties and limitation of liability provided + above shall be interpreted in a manner that, to the extent + possible, most closely approximates an absolute disclaimer and + waiver of all liability. + + +Section 6 -- Term and Termination. + + a. This Public License applies for the term of the Copyright and + Similar Rights licensed here. However, if You fail to comply with + this Public License, then Your rights under this Public License + terminate automatically. + + b. Where Your right to use the Licensed Material has terminated under + Section 6(a), it reinstates: + + 1. automatically as of the date the violation is cured, provided + it is cured within 30 days of Your discovery of the + violation; or + + 2. upon express reinstatement by the Licensor. + + For the avoidance of doubt, this Section 6(b) does not affect any + right the Licensor may have to seek remedies for Your violations + of this Public License. + + c. For the avoidance of doubt, the Licensor may also offer the + Licensed Material under separate terms or conditions or stop + distributing the Licensed Material at any time; however, doing so + will not terminate this Public License. + + d. Sections 1, 5, 6, 7, and 8 survive termination of this Public + License. + + +Section 7 -- Other Terms and Conditions. + + a. The Licensor shall not be bound by any additional or different + terms or conditions communicated by You unless expressly agreed. + + b. Any arrangements, understandings, or agreements regarding the + Licensed Material not stated herein are separate from and + independent of the terms and conditions of this Public License. + + +Section 8 -- Interpretation. + + a. For the avoidance of doubt, this Public License does not, and + shall not be interpreted to, reduce, limit, restrict, or impose + conditions on any use of the Licensed Material that could lawfully + be made without permission under this Public License. + + b. To the extent possible, if any provision of this Public License is + deemed unenforceable, it shall be automatically reformed to the + minimum extent necessary to make it enforceable. If the provision + cannot be reformed, it shall be severed from this Public License + without affecting the enforceability of the remaining terms and + conditions. + + c. No term or condition of this Public License will be waived and no + failure to comply consented to unless expressly agreed to by the + Licensor. + + d. Nothing in this Public License constitutes or may be interpreted + as a limitation upon, or waiver of, any privileges and immunities + that apply to the Licensor or You, including from the legal + processes of any jurisdiction or authority. + +======================================================================= + +Creative Commons is not a party to its public +licenses. Notwithstanding, Creative Commons may elect to apply one of +its public licenses to material it publishes and in those instances +will be considered the “Licensor.” The text of the Creative Commons +public licenses is dedicated to the public domain under the CC0 Public +Domain Dedication. Except for the limited purpose of indicating that +material is shared under a Creative Commons public license or as +otherwise permitted by the Creative Commons policies published at +creativecommons.org/policies, Creative Commons does not authorize the +use of the trademark "Creative Commons" or any other trademark or logo +of Creative Commons without its prior written consent including, +without limitation, in connection with any unauthorized modifications +to any of its public licenses or any other arrangements, +understandings, or agreements concerning use of licensed material. For +the avoidance of doubt, this paragraph does not form part of the +public licenses. + +Creative Commons may be contacted at creativecommons.org. diff --git a/nodePackages/solid/docs/functions/Avatars.md b/nodePackages/solid/docs/functions/Avatars.md new file mode 100644 index 00000000..cd44b86e --- /dev/null +++ b/nodePackages/solid/docs/functions/Avatars.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Avatars + +# Function: Avatars() + +> **Avatars**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/BackReturn.md b/nodePackages/solid/docs/functions/BackReturn.md new file mode 100644 index 00000000..19fa7d69 --- /dev/null +++ b/nodePackages/solid/docs/functions/BackReturn.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / BackReturn + +# Function: BackReturn() + +> **BackReturn**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Bell.md b/nodePackages/solid/docs/functions/Bell.md new file mode 100644 index 00000000..7ac78dd2 --- /dev/null +++ b/nodePackages/solid/docs/functions/Bell.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Bell + +# Function: Bell() + +> **Bell**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Bulb.md b/nodePackages/solid/docs/functions/Bulb.md new file mode 100644 index 00000000..200bab0d --- /dev/null +++ b/nodePackages/solid/docs/functions/Bulb.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Bulb + +# Function: Bulb() + +> **Bulb**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Camera.md b/nodePackages/solid/docs/functions/Camera.md new file mode 100644 index 00000000..4b5f3ada --- /dev/null +++ b/nodePackages/solid/docs/functions/Camera.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Camera + +# Function: Camera() + +> **Camera**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/CameraFlash.md b/nodePackages/solid/docs/functions/CameraFlash.md new file mode 100644 index 00000000..110a4902 --- /dev/null +++ b/nodePackages/solid/docs/functions/CameraFlash.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / CameraFlash + +# Function: CameraFlash() + +> **CameraFlash**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/CameraReload.md b/nodePackages/solid/docs/functions/CameraReload.md new file mode 100644 index 00000000..f5333e76 --- /dev/null +++ b/nodePackages/solid/docs/functions/CameraReload.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / CameraReload + +# Function: CameraReload() + +> **CameraReload**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Caution.md b/nodePackages/solid/docs/functions/Caution.md new file mode 100644 index 00000000..3fb231b8 --- /dev/null +++ b/nodePackages/solid/docs/functions/Caution.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Caution + +# Function: Caution() + +> **Caution**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/ChangeMic.md b/nodePackages/solid/docs/functions/ChangeMic.md new file mode 100644 index 00000000..db2a4b66 --- /dev/null +++ b/nodePackages/solid/docs/functions/ChangeMic.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / ChangeMic + +# Function: ChangeMic() + +> **ChangeMic**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Check.md b/nodePackages/solid/docs/functions/Check.md new file mode 100644 index 00000000..4043650a --- /dev/null +++ b/nodePackages/solid/docs/functions/Check.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Check + +# Function: Check() + +> **Check**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/CheckCircle.md b/nodePackages/solid/docs/functions/CheckCircle.md new file mode 100644 index 00000000..3d044784 --- /dev/null +++ b/nodePackages/solid/docs/functions/CheckCircle.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / CheckCircle + +# Function: CheckCircle() + +> **CheckCircle**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/CheckThin.md b/nodePackages/solid/docs/functions/CheckThin.md new file mode 100644 index 00000000..017b5990 --- /dev/null +++ b/nodePackages/solid/docs/functions/CheckThin.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / CheckThin + +# Function: CheckThin() + +> **CheckThin**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/CircleCircle.md b/nodePackages/solid/docs/functions/CircleCircle.md new file mode 100644 index 00000000..97fe1d96 --- /dev/null +++ b/nodePackages/solid/docs/functions/CircleCircle.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / CircleCircle + +# Function: CircleCircle() + +> **CircleCircle**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/CircleCross.md b/nodePackages/solid/docs/functions/CircleCross.md new file mode 100644 index 00000000..069a1207 --- /dev/null +++ b/nodePackages/solid/docs/functions/CircleCross.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / CircleCross + +# Function: CircleCross() + +> **CircleCross**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/CircleHandle.md b/nodePackages/solid/docs/functions/CircleHandle.md new file mode 100644 index 00000000..8efaa9da --- /dev/null +++ b/nodePackages/solid/docs/functions/CircleHandle.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / CircleHandle + +# Function: CircleHandle() + +> **CircleHandle**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/CircleMinus.md b/nodePackages/solid/docs/functions/CircleMinus.md new file mode 100644 index 00000000..8f1e999c --- /dev/null +++ b/nodePackages/solid/docs/functions/CircleMinus.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / CircleMinus + +# Function: CircleMinus() + +> **CircleMinus**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/CirclePlus.md b/nodePackages/solid/docs/functions/CirclePlus.md new file mode 100644 index 00000000..53264f0a --- /dev/null +++ b/nodePackages/solid/docs/functions/CirclePlus.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / CirclePlus + +# Function: CirclePlus() + +> **CirclePlus**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/CircleSquare.md b/nodePackages/solid/docs/functions/CircleSquare.md new file mode 100644 index 00000000..13f211ca --- /dev/null +++ b/nodePackages/solid/docs/functions/CircleSquare.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / CircleSquare + +# Function: CircleSquare() + +> **CircleSquare**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/CircleStar.md b/nodePackages/solid/docs/functions/CircleStar.md new file mode 100644 index 00000000..ef8ce367 --- /dev/null +++ b/nodePackages/solid/docs/functions/CircleStar.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / CircleStar + +# Function: CircleStar() + +> **CircleStar**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Circleless.md b/nodePackages/solid/docs/functions/Circleless.md new file mode 100644 index 00000000..c009f228 --- /dev/null +++ b/nodePackages/solid/docs/functions/Circleless.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Circleless + +# Function: Circleless() + +> **Circleless**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Collapse.md b/nodePackages/solid/docs/functions/Collapse.md new file mode 100644 index 00000000..64678396 --- /dev/null +++ b/nodePackages/solid/docs/functions/Collapse.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Collapse + +# Function: Collapse() + +> **Collapse**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Copy.md b/nodePackages/solid/docs/functions/Copy.md new file mode 100644 index 00000000..7b4ac0af --- /dev/null +++ b/nodePackages/solid/docs/functions/Copy.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Copy + +# Function: Copy() + +> **Copy**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Create.md b/nodePackages/solid/docs/functions/Create.md new file mode 100644 index 00000000..b520ecf0 --- /dev/null +++ b/nodePackages/solid/docs/functions/Create.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Create + +# Function: Create() + +> **Create**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Credits.md b/nodePackages/solid/docs/functions/Credits.md new file mode 100644 index 00000000..19bb7aa1 --- /dev/null +++ b/nodePackages/solid/docs/functions/Credits.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Credits + +# Function: Credits() + +> **Credits**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Cross.md b/nodePackages/solid/docs/functions/Cross.md new file mode 100644 index 00000000..885f2a97 --- /dev/null +++ b/nodePackages/solid/docs/functions/Cross.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Cross + +# Function: Cross() + +> **Cross**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/CrossThin.md b/nodePackages/solid/docs/functions/CrossThin.md new file mode 100644 index 00000000..5b5329f4 --- /dev/null +++ b/nodePackages/solid/docs/functions/CrossThin.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / CrossThin + +# Function: CrossThin() + +> **CrossThin**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Cursor.md b/nodePackages/solid/docs/functions/Cursor.md new file mode 100644 index 00000000..2d471394 --- /dev/null +++ b/nodePackages/solid/docs/functions/Cursor.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Cursor + +# Function: Cursor() + +> **Cursor**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Document.md b/nodePackages/solid/docs/functions/Document.md new file mode 100644 index 00000000..e897a37f --- /dev/null +++ b/nodePackages/solid/docs/functions/Document.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Document + +# Function: Document() + +> **Document**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Down.md b/nodePackages/solid/docs/functions/Down.md new file mode 100644 index 00000000..7dde0d88 --- /dev/null +++ b/nodePackages/solid/docs/functions/Down.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Down + +# Function: Down() + +> **Down**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Edit.md b/nodePackages/solid/docs/functions/Edit.md new file mode 100644 index 00000000..27609cab --- /dev/null +++ b/nodePackages/solid/docs/functions/Edit.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Edit + +# Function: Edit() + +> **Edit**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Envelope.md b/nodePackages/solid/docs/functions/Envelope.md new file mode 100644 index 00000000..8c49df21 --- /dev/null +++ b/nodePackages/solid/docs/functions/Envelope.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Envelope + +# Function: Envelope() + +> **Envelope**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/EnvelopePlus.md b/nodePackages/solid/docs/functions/EnvelopePlus.md new file mode 100644 index 00000000..597acda3 --- /dev/null +++ b/nodePackages/solid/docs/functions/EnvelopePlus.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / EnvelopePlus + +# Function: EnvelopePlus() + +> **EnvelopePlus**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/EnvelopeQ.md b/nodePackages/solid/docs/functions/EnvelopeQ.md new file mode 100644 index 00000000..9d18c129 --- /dev/null +++ b/nodePackages/solid/docs/functions/EnvelopeQ.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / EnvelopeQ + +# Function: EnvelopeQ() + +> **EnvelopeQ**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Expand.md b/nodePackages/solid/docs/functions/Expand.md new file mode 100644 index 00000000..0eeeb05a --- /dev/null +++ b/nodePackages/solid/docs/functions/Expand.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Expand + +# Function: Expand() + +> **Expand**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Expandable.md b/nodePackages/solid/docs/functions/Expandable.md new file mode 100644 index 00000000..33debd95 --- /dev/null +++ b/nodePackages/solid/docs/functions/Expandable.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Expandable + +# Function: Expandable() + +> **Expandable**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Eye.md b/nodePackages/solid/docs/functions/Eye.md new file mode 100644 index 00000000..ace6cafb --- /dev/null +++ b/nodePackages/solid/docs/functions/Eye.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Eye + +# Function: Eye() + +> **Eye**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/EyeMove.md b/nodePackages/solid/docs/functions/EyeMove.md new file mode 100644 index 00000000..495021b2 --- /dev/null +++ b/nodePackages/solid/docs/functions/EyeMove.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / EyeMove + +# Function: EyeMove() + +> **EyeMove**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/FaceMirror.md b/nodePackages/solid/docs/functions/FaceMirror.md new file mode 100644 index 00000000..528f6f13 --- /dev/null +++ b/nodePackages/solid/docs/functions/FaceMirror.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / FaceMirror + +# Function: FaceMirror() + +> **FaceMirror**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Fire.md b/nodePackages/solid/docs/functions/Fire.md new file mode 100644 index 00000000..0cc4a6d7 --- /dev/null +++ b/nodePackages/solid/docs/functions/Fire.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Fire + +# Function: Fire() + +> **Fire**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Forbid.md b/nodePackages/solid/docs/functions/Forbid.md new file mode 100644 index 00000000..554ed6c7 --- /dev/null +++ b/nodePackages/solid/docs/functions/Forbid.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Forbid + +# Function: Forbid() + +> **Forbid**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Friends.md b/nodePackages/solid/docs/functions/Friends.md new file mode 100644 index 00000000..f800c667 --- /dev/null +++ b/nodePackages/solid/docs/functions/Friends.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Friends + +# Function: Friends() + +> **Friends**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Gear.md b/nodePackages/solid/docs/functions/Gear.md new file mode 100644 index 00000000..a6e4dc08 --- /dev/null +++ b/nodePackages/solid/docs/functions/Gear.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Gear + +# Function: Gear() + +> **Gear**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Graphics.md b/nodePackages/solid/docs/functions/Graphics.md new file mode 100644 index 00000000..4269a367 --- /dev/null +++ b/nodePackages/solid/docs/functions/Graphics.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Graphics + +# Function: Graphics() + +> **Graphics**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Grid.md b/nodePackages/solid/docs/functions/Grid.md new file mode 100644 index 00000000..5544bdab --- /dev/null +++ b/nodePackages/solid/docs/functions/Grid.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Grid + +# Function: Grid() + +> **Grid**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Group.md b/nodePackages/solid/docs/functions/Group.md new file mode 100644 index 00000000..e33b3ca0 --- /dev/null +++ b/nodePackages/solid/docs/functions/Group.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Group + +# Function: Group() + +> **Group**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Hamburger.md b/nodePackages/solid/docs/functions/Hamburger.md new file mode 100644 index 00000000..38647fde --- /dev/null +++ b/nodePackages/solid/docs/functions/Hamburger.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Hamburger + +# Function: Hamburger() + +> **Hamburger**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Help.md b/nodePackages/solid/docs/functions/Help.md new file mode 100644 index 00000000..d2626ed6 --- /dev/null +++ b/nodePackages/solid/docs/functions/Help.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Help + +# Function: Help() + +> **Help**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/History.md b/nodePackages/solid/docs/functions/History.md new file mode 100644 index 00000000..af63a6c2 --- /dev/null +++ b/nodePackages/solid/docs/functions/History.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / History + +# Function: History() + +> **History**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Home.md b/nodePackages/solid/docs/functions/Home.md new file mode 100644 index 00000000..2bf24d73 --- /dev/null +++ b/nodePackages/solid/docs/functions/Home.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Home + +# Function: Home() + +> **Home**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/HomeReload.md b/nodePackages/solid/docs/functions/HomeReload.md new file mode 100644 index 00000000..63ae40cd --- /dev/null +++ b/nodePackages/solid/docs/functions/HomeReload.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / HomeReload + +# Function: HomeReload() + +> **HomeReload**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Hourgrass.md b/nodePackages/solid/docs/functions/Hourgrass.md new file mode 100644 index 00000000..cd34e061 --- /dev/null +++ b/nodePackages/solid/docs/functions/Hourgrass.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Hourgrass + +# Function: Hourgrass() + +> **Hourgrass**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/IK.md b/nodePackages/solid/docs/functions/IK.md new file mode 100644 index 00000000..5879eadf --- /dev/null +++ b/nodePackages/solid/docs/functions/IK.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / IK + +# Function: IK() + +> **IK**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Images.md b/nodePackages/solid/docs/functions/Images.md new file mode 100644 index 00000000..e601634c --- /dev/null +++ b/nodePackages/solid/docs/functions/Images.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Images + +# Function: Images() + +> **Images**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Info.md b/nodePackages/solid/docs/functions/Info.md new file mode 100644 index 00000000..5d14a295 --- /dev/null +++ b/nodePackages/solid/docs/functions/Info.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Info + +# Function: Info() + +> **Info**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/InfoBlock.md b/nodePackages/solid/docs/functions/InfoBlock.md new file mode 100644 index 00000000..2e91f757 --- /dev/null +++ b/nodePackages/solid/docs/functions/InfoBlock.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / InfoBlock + +# Function: InfoBlock() + +> **InfoBlock**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/InfoMono.md b/nodePackages/solid/docs/functions/InfoMono.md new file mode 100644 index 00000000..0fa936fa --- /dev/null +++ b/nodePackages/solid/docs/functions/InfoMono.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / InfoMono + +# Function: InfoMono() + +> **InfoMono**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Join.md b/nodePackages/solid/docs/functions/Join.md new file mode 100644 index 00000000..95bca0f0 --- /dev/null +++ b/nodePackages/solid/docs/functions/Join.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Join + +# Function: Join() + +> **Join**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Keyboard.md b/nodePackages/solid/docs/functions/Keyboard.md new file mode 100644 index 00000000..9ac6d763 --- /dev/null +++ b/nodePackages/solid/docs/functions/Keyboard.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Keyboard + +# Function: Keyboard() + +> **Keyboard**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/KeyboardThin.md b/nodePackages/solid/docs/functions/KeyboardThin.md new file mode 100644 index 00000000..6e97ab4e --- /dev/null +++ b/nodePackages/solid/docs/functions/KeyboardThin.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / KeyboardThin + +# Function: KeyboardThin() + +> **KeyboardThin**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/List.md b/nodePackages/solid/docs/functions/List.md new file mode 100644 index 00000000..7ddd069d --- /dev/null +++ b/nodePackages/solid/docs/functions/List.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / List + +# Function: List() + +> **List**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/ListThin.md b/nodePackages/solid/docs/functions/ListThin.md new file mode 100644 index 00000000..84f51ac1 --- /dev/null +++ b/nodePackages/solid/docs/functions/ListThin.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / ListThin + +# Function: ListThin() + +> **ListThin**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Logout.md b/nodePackages/solid/docs/functions/Logout.md new file mode 100644 index 00000000..e31d639f --- /dev/null +++ b/nodePackages/solid/docs/functions/Logout.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Logout + +# Function: Logout() + +> **Logout**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Material.md b/nodePackages/solid/docs/functions/Material.md new file mode 100644 index 00000000..5af8b1ca --- /dev/null +++ b/nodePackages/solid/docs/functions/Material.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Material + +# Function: Material() + +> **Material**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Mic.md b/nodePackages/solid/docs/functions/Mic.md new file mode 100644 index 00000000..89c3748c --- /dev/null +++ b/nodePackages/solid/docs/functions/Mic.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Mic + +# Function: Mic() + +> **Mic**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Mirror.md b/nodePackages/solid/docs/functions/Mirror.md new file mode 100644 index 00000000..bdb291b6 --- /dev/null +++ b/nodePackages/solid/docs/functions/Mirror.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Mirror + +# Function: Mirror() + +> **Mirror**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Monitor.md b/nodePackages/solid/docs/functions/Monitor.md new file mode 100644 index 00000000..bbca0692 --- /dev/null +++ b/nodePackages/solid/docs/functions/Monitor.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Monitor + +# Function: Monitor() + +> **Monitor**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Move.md b/nodePackages/solid/docs/functions/Move.md new file mode 100644 index 00000000..3326a995 --- /dev/null +++ b/nodePackages/solid/docs/functions/Move.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Move + +# Function: Move() + +> **Move**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/MoveCircle.md b/nodePackages/solid/docs/functions/MoveCircle.md new file mode 100644 index 00000000..b66a23c1 --- /dev/null +++ b/nodePackages/solid/docs/functions/MoveCircle.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / MoveCircle + +# Function: MoveCircle() + +> **MoveCircle**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/MoveSquare.md b/nodePackages/solid/docs/functions/MoveSquare.md new file mode 100644 index 00000000..97ba9149 --- /dev/null +++ b/nodePackages/solid/docs/functions/MoveSquare.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / MoveSquare + +# Function: MoveSquare() + +> **MoveSquare**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Next.md b/nodePackages/solid/docs/functions/Next.md new file mode 100644 index 00000000..808c304e --- /dev/null +++ b/nodePackages/solid/docs/functions/Next.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Next + +# Function: Next() + +> **Next**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Next3.md b/nodePackages/solid/docs/functions/Next3.md new file mode 100644 index 00000000..5544ac75 --- /dev/null +++ b/nodePackages/solid/docs/functions/Next3.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Next3 + +# Function: Next3() + +> **Next3**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/NextArrow.md b/nodePackages/solid/docs/functions/NextArrow.md new file mode 100644 index 00000000..99769227 --- /dev/null +++ b/nodePackages/solid/docs/functions/NextArrow.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / NextArrow + +# Function: NextArrow() + +> **NextArrow**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/NextThin.md b/nodePackages/solid/docs/functions/NextThin.md new file mode 100644 index 00000000..4d9c3f88 --- /dev/null +++ b/nodePackages/solid/docs/functions/NextThin.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / NextThin + +# Function: NextThin() + +> **NextThin**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/NextTri.md b/nodePackages/solid/docs/functions/NextTri.md new file mode 100644 index 00000000..b61f64bc --- /dev/null +++ b/nodePackages/solid/docs/functions/NextTri.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / NextTri + +# Function: NextTri() + +> **NextTri**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/NextTriThin.md b/nodePackages/solid/docs/functions/NextTriThin.md new file mode 100644 index 00000000..98977823 --- /dev/null +++ b/nodePackages/solid/docs/functions/NextTriThin.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / NextTriThin + +# Function: NextTriThin() + +> **NextTriThin**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/NextTriW.md b/nodePackages/solid/docs/functions/NextTriW.md new file mode 100644 index 00000000..5330793d --- /dev/null +++ b/nodePackages/solid/docs/functions/NextTriW.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / NextTriW + +# Function: NextTriW() + +> **NextTriW**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Notice.md b/nodePackages/solid/docs/functions/Notice.md new file mode 100644 index 00000000..03fbba24 --- /dev/null +++ b/nodePackages/solid/docs/functions/Notice.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Notice + +# Function: Notice() + +> **Notice**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/OSC.md b/nodePackages/solid/docs/functions/OSC.md new file mode 100644 index 00000000..284fae58 --- /dev/null +++ b/nodePackages/solid/docs/functions/OSC.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / OSC + +# Function: OSC() + +> **OSC**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Order.md b/nodePackages/solid/docs/functions/Order.md new file mode 100644 index 00000000..378dbdb9 --- /dev/null +++ b/nodePackages/solid/docs/functions/Order.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Order + +# Function: Order() + +> **Order**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Pad.md b/nodePackages/solid/docs/functions/Pad.md new file mode 100644 index 00000000..48c8aa85 --- /dev/null +++ b/nodePackages/solid/docs/functions/Pad.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Pad + +# Function: Pad() + +> **Pad**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Pin.md b/nodePackages/solid/docs/functions/Pin.md new file mode 100644 index 00000000..4fec1b78 --- /dev/null +++ b/nodePackages/solid/docs/functions/Pin.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Pin + +# Function: Pin() + +> **Pin**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Plus.md b/nodePackages/solid/docs/functions/Plus.md new file mode 100644 index 00000000..a5b2f9a0 --- /dev/null +++ b/nodePackages/solid/docs/functions/Plus.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Plus + +# Function: Plus() + +> **Plus**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/PlusThin.md b/nodePackages/solid/docs/functions/PlusThin.md new file mode 100644 index 00000000..8b33e2c4 --- /dev/null +++ b/nodePackages/solid/docs/functions/PlusThin.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / PlusThin + +# Function: PlusThin() + +> **PlusThin**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Portraits.md b/nodePackages/solid/docs/functions/Portraits.md new file mode 100644 index 00000000..b1943219 --- /dev/null +++ b/nodePackages/solid/docs/functions/Portraits.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Portraits + +# Function: Portraits() + +> **Portraits**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Power.md b/nodePackages/solid/docs/functions/Power.md new file mode 100644 index 00000000..ed39acd4 --- /dev/null +++ b/nodePackages/solid/docs/functions/Power.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Power + +# Function: Power() + +> **Power**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Previous.md b/nodePackages/solid/docs/functions/Previous.md new file mode 100644 index 00000000..6d21eafb --- /dev/null +++ b/nodePackages/solid/docs/functions/Previous.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Previous + +# Function: Previous() + +> **Previous**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Previous3.md b/nodePackages/solid/docs/functions/Previous3.md new file mode 100644 index 00000000..d9e4ea56 --- /dev/null +++ b/nodePackages/solid/docs/functions/Previous3.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Previous3 + +# Function: Previous3() + +> **Previous3**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/PreviousArrow.md b/nodePackages/solid/docs/functions/PreviousArrow.md new file mode 100644 index 00000000..6ffd9d3d --- /dev/null +++ b/nodePackages/solid/docs/functions/PreviousArrow.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / PreviousArrow + +# Function: PreviousArrow() + +> **PreviousArrow**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/PreviousThin.md b/nodePackages/solid/docs/functions/PreviousThin.md new file mode 100644 index 00000000..78cea018 --- /dev/null +++ b/nodePackages/solid/docs/functions/PreviousThin.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / PreviousThin + +# Function: PreviousThin() + +> **PreviousThin**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/PreviousTri.md b/nodePackages/solid/docs/functions/PreviousTri.md new file mode 100644 index 00000000..e0ebbffb --- /dev/null +++ b/nodePackages/solid/docs/functions/PreviousTri.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / PreviousTri + +# Function: PreviousTri() + +> **PreviousTri**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/PreviousTriThin.md b/nodePackages/solid/docs/functions/PreviousTriThin.md new file mode 100644 index 00000000..041383dc --- /dev/null +++ b/nodePackages/solid/docs/functions/PreviousTriThin.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / PreviousTriThin + +# Function: PreviousTriThin() + +> **PreviousTriThin**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/PreviousTriW.md b/nodePackages/solid/docs/functions/PreviousTriW.md new file mode 100644 index 00000000..58bf4dd6 --- /dev/null +++ b/nodePackages/solid/docs/functions/PreviousTriW.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / PreviousTriW + +# Function: PreviousTriW() + +> **PreviousTriW**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Pulse.md b/nodePackages/solid/docs/functions/Pulse.md new file mode 100644 index 00000000..5c5f50b3 --- /dev/null +++ b/nodePackages/solid/docs/functions/Pulse.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Pulse + +# Function: Pulse() + +> **Pulse**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/RankExcellent.md b/nodePackages/solid/docs/functions/RankExcellent.md new file mode 100644 index 00000000..f20da95e --- /dev/null +++ b/nodePackages/solid/docs/functions/RankExcellent.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / RankExcellent + +# Function: RankExcellent() + +> **RankExcellent**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/RankGood.md b/nodePackages/solid/docs/functions/RankGood.md new file mode 100644 index 00000000..4f178825 --- /dev/null +++ b/nodePackages/solid/docs/functions/RankGood.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / RankGood + +# Function: RankGood() + +> **RankGood**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/RankMedium.md b/nodePackages/solid/docs/functions/RankMedium.md new file mode 100644 index 00000000..337a09a3 --- /dev/null +++ b/nodePackages/solid/docs/functions/RankMedium.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / RankMedium + +# Function: RankMedium() + +> **RankMedium**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/RankPoor.md b/nodePackages/solid/docs/functions/RankPoor.md new file mode 100644 index 00000000..a9d064a2 --- /dev/null +++ b/nodePackages/solid/docs/functions/RankPoor.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / RankPoor + +# Function: RankPoor() + +> **RankPoor**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/RankVeryPoor.md b/nodePackages/solid/docs/functions/RankVeryPoor.md new file mode 100644 index 00000000..91a29bac --- /dev/null +++ b/nodePackages/solid/docs/functions/RankVeryPoor.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / RankVeryPoor + +# Function: RankVeryPoor() + +> **RankVeryPoor**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Reload.md b/nodePackages/solid/docs/functions/Reload.md new file mode 100644 index 00000000..a22d3a75 --- /dev/null +++ b/nodePackages/solid/docs/functions/Reload.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Reload + +# Function: Reload() + +> **Reload**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Reset.md b/nodePackages/solid/docs/functions/Reset.md new file mode 100644 index 00000000..c7856898 --- /dev/null +++ b/nodePackages/solid/docs/functions/Reset.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Reset + +# Function: Reset() + +> **Reset**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Resolution.md b/nodePackages/solid/docs/functions/Resolution.md new file mode 100644 index 00000000..4179fa9a --- /dev/null +++ b/nodePackages/solid/docs/functions/Resolution.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Resolution + +# Function: Resolution() + +> **Resolution**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Reticule.md b/nodePackages/solid/docs/functions/Reticule.md new file mode 100644 index 00000000..9bdb4841 --- /dev/null +++ b/nodePackages/solid/docs/functions/Reticule.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Reticule + +# Function: Reticule() + +> **Reticule**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Return.md b/nodePackages/solid/docs/functions/Return.md new file mode 100644 index 00000000..2fad3221 --- /dev/null +++ b/nodePackages/solid/docs/functions/Return.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Return + +# Function: Return() + +> **Return**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/ReturnReverse.md b/nodePackages/solid/docs/functions/ReturnReverse.md new file mode 100644 index 00000000..3a53c28a --- /dev/null +++ b/nodePackages/solid/docs/functions/ReturnReverse.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / ReturnReverse + +# Function: ReturnReverse() + +> **ReturnReverse**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Rocket.md b/nodePackages/solid/docs/functions/Rocket.md new file mode 100644 index 00000000..10114576 --- /dev/null +++ b/nodePackages/solid/docs/functions/Rocket.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Rocket + +# Function: Rocket() + +> **Rocket**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Saturn.md b/nodePackages/solid/docs/functions/Saturn.md new file mode 100644 index 00000000..e1399fba --- /dev/null +++ b/nodePackages/solid/docs/functions/Saturn.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Saturn + +# Function: Saturn() + +> **Saturn**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/SaturnWithSatellites.md b/nodePackages/solid/docs/functions/SaturnWithSatellites.md new file mode 100644 index 00000000..10d71821 --- /dev/null +++ b/nodePackages/solid/docs/functions/SaturnWithSatellites.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / SaturnWithSatellites + +# Function: SaturnWithSatellites() + +> **SaturnWithSatellites**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Shield.md b/nodePackages/solid/docs/functions/Shield.md new file mode 100644 index 00000000..c062db29 --- /dev/null +++ b/nodePackages/solid/docs/functions/Shield.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Shield + +# Function: Shield() + +> **Shield**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/ShieldWithGear.md b/nodePackages/solid/docs/functions/ShieldWithGear.md new file mode 100644 index 00000000..f24827ba --- /dev/null +++ b/nodePackages/solid/docs/functions/ShieldWithGear.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / ShieldWithGear + +# Function: ShieldWithGear() + +> **ShieldWithGear**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/ShieldWithStar.md b/nodePackages/solid/docs/functions/ShieldWithStar.md new file mode 100644 index 00000000..4e35d515 --- /dev/null +++ b/nodePackages/solid/docs/functions/ShieldWithStar.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / ShieldWithStar + +# Function: ShieldWithStar() + +> **ShieldWithStar**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Shieldless.md b/nodePackages/solid/docs/functions/Shieldless.md new file mode 100644 index 00000000..2c52e635 --- /dev/null +++ b/nodePackages/solid/docs/functions/Shieldless.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Shieldless + +# Function: Shieldless() + +> **Shieldless**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Speaker.md b/nodePackages/solid/docs/functions/Speaker.md new file mode 100644 index 00000000..5c824214 --- /dev/null +++ b/nodePackages/solid/docs/functions/Speaker.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Speaker + +# Function: Speaker() + +> **Speaker**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Star.md b/nodePackages/solid/docs/functions/Star.md new file mode 100644 index 00000000..8509e0c0 --- /dev/null +++ b/nodePackages/solid/docs/functions/Star.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Star + +# Function: Star() + +> **Star**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/StarThin.md b/nodePackages/solid/docs/functions/StarThin.md new file mode 100644 index 00000000..fb2f833c --- /dev/null +++ b/nodePackages/solid/docs/functions/StarThin.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / StarThin + +# Function: StarThin() + +> **StarThin**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Terminal.md b/nodePackages/solid/docs/functions/Terminal.md new file mode 100644 index 00000000..7cb5dae7 --- /dev/null +++ b/nodePackages/solid/docs/functions/Terminal.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Terminal + +# Function: Terminal() + +> **Terminal**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Tip.md b/nodePackages/solid/docs/functions/Tip.md new file mode 100644 index 00000000..4f1343ff --- /dev/null +++ b/nodePackages/solid/docs/functions/Tip.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Tip + +# Function: Tip() + +> **Tip**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/UI.md b/nodePackages/solid/docs/functions/UI.md new file mode 100644 index 00000000..b8578918 --- /dev/null +++ b/nodePackages/solid/docs/functions/UI.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / UI + +# Function: UI() + +> **UI**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Up.md b/nodePackages/solid/docs/functions/Up.md new file mode 100644 index 00000000..00c83650 --- /dev/null +++ b/nodePackages/solid/docs/functions/Up.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Up + +# Function: Up() + +> **Up**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/User.md b/nodePackages/solid/docs/functions/User.md new file mode 100644 index 00000000..2f3eb38f --- /dev/null +++ b/nodePackages/solid/docs/functions/User.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / User + +# Function: User() + +> **User**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/UserIcon.md b/nodePackages/solid/docs/functions/UserIcon.md new file mode 100644 index 00000000..d1249365 --- /dev/null +++ b/nodePackages/solid/docs/functions/UserIcon.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / UserIcon + +# Function: UserIcon() + +> **UserIcon**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Users2.md b/nodePackages/solid/docs/functions/Users2.md new file mode 100644 index 00000000..bdacbfb4 --- /dev/null +++ b/nodePackages/solid/docs/functions/Users2.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Users2 + +# Function: Users2() + +> **Users2**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Users3.md b/nodePackages/solid/docs/functions/Users3.md new file mode 100644 index 00000000..5786b267 --- /dev/null +++ b/nodePackages/solid/docs/functions/Users3.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Users3 + +# Function: Users3() + +> **Users3**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/VCC.md b/nodePackages/solid/docs/functions/VCC.md new file mode 100644 index 00000000..5063ebce --- /dev/null +++ b/nodePackages/solid/docs/functions/VCC.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / VCC + +# Function: VCC() + +> **VCC**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/VRC.md b/nodePackages/solid/docs/functions/VRC.md new file mode 100644 index 00000000..7519862f --- /dev/null +++ b/nodePackages/solid/docs/functions/VRC.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / VRC + +# Function: VRC() + +> **VRC**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/VRCPlus.md b/nodePackages/solid/docs/functions/VRCPlus.md new file mode 100644 index 00000000..44001e89 --- /dev/null +++ b/nodePackages/solid/docs/functions/VRCPlus.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / VRCPlus + +# Function: VRCPlus() + +> **VRCPlus**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Venn.md b/nodePackages/solid/docs/functions/Venn.md new file mode 100644 index 00000000..bc44f16e --- /dev/null +++ b/nodePackages/solid/docs/functions/Venn.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Venn + +# Function: Venn() + +> **Venn**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/VennColorMM.md b/nodePackages/solid/docs/functions/VennColorMM.md new file mode 100644 index 00000000..6375591a --- /dev/null +++ b/nodePackages/solid/docs/functions/VennColorMM.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / VennColorMM + +# Function: VennColorMM() + +> **VennColorMM**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/VennColorMPc.md b/nodePackages/solid/docs/functions/VennColorMPc.md new file mode 100644 index 00000000..1a8a5d14 --- /dev/null +++ b/nodePackages/solid/docs/functions/VennColorMPc.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / VennColorMPc + +# Function: VennColorMPc() + +> **VennColorMPc**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/VennColorMPcM.md b/nodePackages/solid/docs/functions/VennColorMPcM.md new file mode 100644 index 00000000..973a1538 --- /dev/null +++ b/nodePackages/solid/docs/functions/VennColorMPcM.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / VennColorMPcM + +# Function: VennColorMPcM() + +> **VennColorMPcM**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/VennColorOnlyM.md b/nodePackages/solid/docs/functions/VennColorOnlyM.md new file mode 100644 index 00000000..cf46a2eb --- /dev/null +++ b/nodePackages/solid/docs/functions/VennColorOnlyM.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / VennColorOnlyM + +# Function: VennColorOnlyM() + +> **VennColorOnlyM**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/VennColorOnlyPc.md b/nodePackages/solid/docs/functions/VennColorOnlyPc.md new file mode 100644 index 00000000..22b03d5b --- /dev/null +++ b/nodePackages/solid/docs/functions/VennColorOnlyPc.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / VennColorOnlyPc + +# Function: VennColorOnlyPc() + +> **VennColorOnlyPc**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/VennColorOnlyQ.md b/nodePackages/solid/docs/functions/VennColorOnlyQ.md new file mode 100644 index 00000000..50674a8c --- /dev/null +++ b/nodePackages/solid/docs/functions/VennColorOnlyQ.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / VennColorOnlyQ + +# Function: VennColorOnlyQ() + +> **VennColorOnlyQ**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/VennColorQPc.md b/nodePackages/solid/docs/functions/VennColorQPc.md new file mode 100644 index 00000000..9064906b --- /dev/null +++ b/nodePackages/solid/docs/functions/VennColorQPc.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / VennColorQPc + +# Function: VennColorQPc() + +> **VennColorQPc**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/VennColorQPcQ.md b/nodePackages/solid/docs/functions/VennColorQPcQ.md new file mode 100644 index 00000000..4431f502 --- /dev/null +++ b/nodePackages/solid/docs/functions/VennColorQPcQ.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / VennColorQPcQ + +# Function: VennColorQPcQ() + +> **VennColorQPcQ**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/VennColorQQ.md b/nodePackages/solid/docs/functions/VennColorQQ.md new file mode 100644 index 00000000..249a2b41 --- /dev/null +++ b/nodePackages/solid/docs/functions/VennColorQQ.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / VennColorQQ + +# Function: VennColorQQ() + +> **VennColorQQ**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/VennMonoPc.md b/nodePackages/solid/docs/functions/VennMonoPc.md new file mode 100644 index 00000000..58ca6f9f --- /dev/null +++ b/nodePackages/solid/docs/functions/VennMonoPc.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / VennMonoPc + +# Function: VennMonoPc() + +> **VennMonoPc**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/VennMonoPcQ.md b/nodePackages/solid/docs/functions/VennMonoPcQ.md new file mode 100644 index 00000000..a52b145e --- /dev/null +++ b/nodePackages/solid/docs/functions/VennMonoPcQ.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / VennMonoPcQ + +# Function: VennMonoPcQ() + +> **VennMonoPcQ**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/VennMonoQ.md b/nodePackages/solid/docs/functions/VennMonoQ.md new file mode 100644 index 00000000..82293a25 --- /dev/null +++ b/nodePackages/solid/docs/functions/VennMonoQ.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / VennMonoQ + +# Function: VennMonoQ() + +> **VennMonoQ**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Voice.md b/nodePackages/solid/docs/functions/Voice.md new file mode 100644 index 00000000..3ddc1e22 --- /dev/null +++ b/nodePackages/solid/docs/functions/Voice.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Voice + +# Function: Voice() + +> **Voice**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Wallpaper.md b/nodePackages/solid/docs/functions/Wallpaper.md new file mode 100644 index 00000000..d621dc72 --- /dev/null +++ b/nodePackages/solid/docs/functions/Wallpaper.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Wallpaper + +# Function: Wallpaper() + +> **Wallpaper**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Warn.md b/nodePackages/solid/docs/functions/Warn.md new file mode 100644 index 00000000..b85f1be0 --- /dev/null +++ b/nodePackages/solid/docs/functions/Warn.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Warn + +# Function: Warn() + +> **Warn**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/Wave.md b/nodePackages/solid/docs/functions/Wave.md new file mode 100644 index 00000000..72457ba8 --- /dev/null +++ b/nodePackages/solid/docs/functions/Wave.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / Wave + +# Function: Wave() + +> **Wave**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/WingL.md b/nodePackages/solid/docs/functions/WingL.md new file mode 100644 index 00000000..0bdd014b --- /dev/null +++ b/nodePackages/solid/docs/functions/WingL.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / WingL + +# Function: WingL() + +> **WingL**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/functions/WingR.md b/nodePackages/solid/docs/functions/WingR.md new file mode 100644 index 00000000..848a8759 --- /dev/null +++ b/nodePackages/solid/docs/functions/WingR.md @@ -0,0 +1,19 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / WingR + +# Function: WingR() + +> **WingR**(`props`): `Element` + +## Parameters + +### props + +`SvgSVGAttributes`\<`SVGSVGElement`\> + +## Returns + +`Element` diff --git a/nodePackages/solid/docs/globals.md b/nodePackages/solid/docs/globals.md new file mode 100644 index 00000000..d6baedf7 --- /dev/null +++ b/nodePackages/solid/docs/globals.md @@ -0,0 +1,156 @@ +[**@kurone-kito/launchpad-icons-solid**](README.md) + +*** + +# @kurone-kito/launchpad-icons-solid + +## Variables + +- [iconNames](variables/iconNames.md) + +## Functions + +- [Avatars](functions/Avatars.md) +- [BackReturn](functions/BackReturn.md) +- [Bell](functions/Bell.md) +- [Bulb](functions/Bulb.md) +- [Camera](functions/Camera.md) +- [CameraFlash](functions/CameraFlash.md) +- [CameraReload](functions/CameraReload.md) +- [Caution](functions/Caution.md) +- [ChangeMic](functions/ChangeMic.md) +- [Check](functions/Check.md) +- [CheckCircle](functions/CheckCircle.md) +- [CheckThin](functions/CheckThin.md) +- [CircleCircle](functions/CircleCircle.md) +- [CircleCross](functions/CircleCross.md) +- [CircleHandle](functions/CircleHandle.md) +- [Circleless](functions/Circleless.md) +- [CircleMinus](functions/CircleMinus.md) +- [CirclePlus](functions/CirclePlus.md) +- [CircleSquare](functions/CircleSquare.md) +- [CircleStar](functions/CircleStar.md) +- [Collapse](functions/Collapse.md) +- [Copy](functions/Copy.md) +- [Create](functions/Create.md) +- [Credits](functions/Credits.md) +- [Cross](functions/Cross.md) +- [CrossThin](functions/CrossThin.md) +- [Cursor](functions/Cursor.md) +- [Document](functions/Document.md) +- [Down](functions/Down.md) +- [Edit](functions/Edit.md) +- [Envelope](functions/Envelope.md) +- [EnvelopePlus](functions/EnvelopePlus.md) +- [EnvelopeQ](functions/EnvelopeQ.md) +- [Expand](functions/Expand.md) +- [Expandable](functions/Expandable.md) +- [Eye](functions/Eye.md) +- [EyeMove](functions/EyeMove.md) +- [FaceMirror](functions/FaceMirror.md) +- [Fire](functions/Fire.md) +- [Forbid](functions/Forbid.md) +- [Friends](functions/Friends.md) +- [Gear](functions/Gear.md) +- [Graphics](functions/Graphics.md) +- [Grid](functions/Grid.md) +- [Group](functions/Group.md) +- [Hamburger](functions/Hamburger.md) +- [Help](functions/Help.md) +- [History](functions/History.md) +- [Home](functions/Home.md) +- [HomeReload](functions/HomeReload.md) +- [Hourgrass](functions/Hourgrass.md) +- [IK](functions/IK.md) +- [Images](functions/Images.md) +- [Info](functions/Info.md) +- [InfoBlock](functions/InfoBlock.md) +- [InfoMono](functions/InfoMono.md) +- [Join](functions/Join.md) +- [Keyboard](functions/Keyboard.md) +- [KeyboardThin](functions/KeyboardThin.md) +- [List](functions/List.md) +- [ListThin](functions/ListThin.md) +- [Logout](functions/Logout.md) +- [Material](functions/Material.md) +- [Mic](functions/Mic.md) +- [Mirror](functions/Mirror.md) +- [Monitor](functions/Monitor.md) +- [Move](functions/Move.md) +- [MoveCircle](functions/MoveCircle.md) +- [MoveSquare](functions/MoveSquare.md) +- [Next](functions/Next.md) +- [Next3](functions/Next3.md) +- [NextArrow](functions/NextArrow.md) +- [NextThin](functions/NextThin.md) +- [NextTri](functions/NextTri.md) +- [NextTriThin](functions/NextTriThin.md) +- [NextTriW](functions/NextTriW.md) +- [Notice](functions/Notice.md) +- [Order](functions/Order.md) +- [OSC](functions/OSC.md) +- [Pad](functions/Pad.md) +- [Pin](functions/Pin.md) +- [Plus](functions/Plus.md) +- [PlusThin](functions/PlusThin.md) +- [Portraits](functions/Portraits.md) +- [Power](functions/Power.md) +- [Previous](functions/Previous.md) +- [Previous3](functions/Previous3.md) +- [PreviousArrow](functions/PreviousArrow.md) +- [PreviousThin](functions/PreviousThin.md) +- [PreviousTri](functions/PreviousTri.md) +- [PreviousTriThin](functions/PreviousTriThin.md) +- [PreviousTriW](functions/PreviousTriW.md) +- [Pulse](functions/Pulse.md) +- [RankExcellent](functions/RankExcellent.md) +- [RankGood](functions/RankGood.md) +- [RankMedium](functions/RankMedium.md) +- [RankPoor](functions/RankPoor.md) +- [RankVeryPoor](functions/RankVeryPoor.md) +- [Reload](functions/Reload.md) +- [Reset](functions/Reset.md) +- [Resolution](functions/Resolution.md) +- [Reticule](functions/Reticule.md) +- [Return](functions/Return.md) +- [ReturnReverse](functions/ReturnReverse.md) +- [Rocket](functions/Rocket.md) +- [Saturn](functions/Saturn.md) +- [SaturnWithSatellites](functions/SaturnWithSatellites.md) +- [Shield](functions/Shield.md) +- [Shieldless](functions/Shieldless.md) +- [ShieldWithGear](functions/ShieldWithGear.md) +- [ShieldWithStar](functions/ShieldWithStar.md) +- [Speaker](functions/Speaker.md) +- [Star](functions/Star.md) +- [StarThin](functions/StarThin.md) +- [Terminal](functions/Terminal.md) +- [Tip](functions/Tip.md) +- [UI](functions/UI.md) +- [Up](functions/Up.md) +- [User](functions/User.md) +- [UserIcon](functions/UserIcon.md) +- [Users2](functions/Users2.md) +- [Users3](functions/Users3.md) +- [VCC](functions/VCC.md) +- [Venn](functions/Venn.md) +- [VennColorMM](functions/VennColorMM.md) +- [VennColorMPc](functions/VennColorMPc.md) +- [VennColorMPcM](functions/VennColorMPcM.md) +- [VennColorOnlyM](functions/VennColorOnlyM.md) +- [VennColorOnlyPc](functions/VennColorOnlyPc.md) +- [VennColorOnlyQ](functions/VennColorOnlyQ.md) +- [VennColorQPc](functions/VennColorQPc.md) +- [VennColorQPcQ](functions/VennColorQPcQ.md) +- [VennColorQQ](functions/VennColorQQ.md) +- [VennMonoPc](functions/VennMonoPc.md) +- [VennMonoPcQ](functions/VennMonoPcQ.md) +- [VennMonoQ](functions/VennMonoQ.md) +- [Voice](functions/Voice.md) +- [VRC](functions/VRC.md) +- [VRCPlus](functions/VRCPlus.md) +- [Wallpaper](functions/Wallpaper.md) +- [Warn](functions/Warn.md) +- [Wave](functions/Wave.md) +- [WingL](functions/WingL.md) +- [WingR](functions/WingR.md) diff --git a/nodePackages/solid/docs/variables/iconNames.md b/nodePackages/solid/docs/variables/iconNames.md new file mode 100644 index 00000000..18f6bfd6 --- /dev/null +++ b/nodePackages/solid/docs/variables/iconNames.md @@ -0,0 +1,9 @@ +[**@kurone-kito/launchpad-icons-solid**](../README.md) + +*** + +[@kurone-kito/launchpad-icons-solid](../globals.md) / iconNames + +# Variable: iconNames + +> `const` **iconNames**: readonly [`"Avatars"`, `"BackReturn"`, `"Bell"`, `"Bulb"`, `"Camera"`, `"CameraFlash"`, `"CameraReload"`, `"Caution"`, `"ChangeMic"`, `"Check"`, `"CheckCircle"`, `"CheckThin"`, `"CircleCircle"`, `"CircleCross"`, `"CircleHandle"`, `"CircleMinus"`, `"CirclePlus"`, `"CircleSquare"`, `"CircleStar"`, `"Circleless"`, `"Collapse"`, `"Copy"`, `"Create"`, `"Credits"`, `"Cross"`, `"CrossThin"`, `"Cursor"`, `"Document"`, `"Down"`, `"Edit"`, `"Envelope"`, `"EnvelopePlus"`, `"EnvelopeQ"`, `"Expand"`, `"Expandable"`, `"Eye"`, `"EyeMove"`, `"FaceMirror"`, `"Fire"`, `"Forbid"`, `"Friends"`, `"Gear"`, `"Graphics"`, `"Grid"`, `"Group"`, `"Hamburger"`, `"Help"`, `"History"`, `"Home"`, `"HomeReload"`, `"Hourgrass"`, `"IK"`, `"Images"`, `"Info"`, `"InfoBlock"`, `"InfoMono"`, `"Join"`, `"Keyboard"`, `"KeyboardThin"`, `"List"`, `"ListThin"`, `"Logout"`, `"Material"`, `"Mic"`, `"Mirror"`, `"Monitor"`, `"Move"`, `"MoveCircle"`, `"MoveSquare"`, `"Next"`, `"Next3"`, `"NextArrow"`, `"NextThin"`, `"NextTri"`, `"NextTriThin"`, `"NextTriW"`, `"Notice"`, `"OSC"`, `"Order"`, `"Pad"`, `"Pin"`, `"Plus"`, `"PlusThin"`, `"Portraits"`, `"Power"`, `"Previous"`, `"Previous3"`, `"PreviousArrow"`, `"PreviousThin"`, `"PreviousTri"`, `"PreviousTriThin"`, `"PreviousTriW"`, `"Pulse"`, `"RankExcellent"`, `"RankGood"`, `"RankMedium"`, `"RankPoor"`, `"RankVeryPoor"`, `"Reload"`, `"Reset"`, `"Resolution"`, `"Reticule"`, `"Return"`, `"ReturnReverse"`, `"Rocket"`, `"Saturn"`, `"SaturnWithSatellites"`, `"Shield"`, `"ShieldWithGear"`, `"ShieldWithStar"`, `"Shieldless"`, `"Speaker"`, `"Star"`, `"StarThin"`, `"Terminal"`, `"Tip"`, `"UI"`, `"Up"`, `"User"`, `"UserIcon"`, `"Users2"`, `"Users3"`, `"VCC"`, `"VRC"`, `"VRCPlus"`, `"Venn"`, `"VennColorMM"`, `"VennColorMPc"`, `"VennColorMPcM"`, `"VennColorOnlyM"`, `"VennColorOnlyPc"`, `"VennColorOnlyQ"`, `"VennColorQPc"`, `"VennColorQPcQ"`, `"VennColorQQ"`, `"VennMonoPc"`, `"VennMonoPcQ"`, `"VennMonoQ"`, `"Voice"`, `"Wallpaper"`, `"Warn"`, `"Wave"`, `"WingL"`, `"WingR"`] diff --git a/nodePackages/solid/package.json b/nodePackages/solid/package.json index f48dfac5..2ae8baf1 100644 --- a/nodePackages/solid/package.json +++ b/nodePackages/solid/package.json @@ -28,7 +28,9 @@ ], "scripts": { "prebuild": "pnpm run \"/^prebuild:.+/\"", - "build": "tsc", + "build": "pnpm run \"/^build:.+/\"", + "build:jsdoc": "rimraf docs && typedoc", + "build:ts": "tsc", "clean": "rimraf -g \"*.tgz\" \"*.tsbuildinfo\" dist generated-src LICENSE node_modules/.cache", "prepack": "pnpm run clean && pnpm run build", "prebuild:code": "liBuilder solid-js", @@ -45,6 +47,8 @@ "jsdom": "^25.0.1", "rimraf": "^5.0.10", "solid-js": "^1.9.3", + "typedoc": "^0.27.5", + "typedoc-plugin-markdown": "^4.3.3", "typescript": "~5.7.2", "vite-plugin-solid": "^2.11.0", "vitest": "^2.1.8" diff --git a/nodePackages/solid/typedoc.json b/nodePackages/solid/typedoc.json new file mode 100644 index 00000000..abf25d91 --- /dev/null +++ b/nodePackages/solid/typedoc.json @@ -0,0 +1,5 @@ +{ + "disableSources": true, + "entryPoints": ["./generated-src/index.mts"], + "plugin": ["typedoc-plugin-markdown"] +} diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 835ea845..a4980647 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -141,6 +141,12 @@ importers: rimraf: specifier: ^5.0.10 version: 5.0.10 + typedoc: + specifier: ^0.27.5 + version: 0.27.5(typescript@5.7.2) + typedoc-plugin-markdown: + specifier: ^4.3.3 + version: 4.3.3(typedoc@0.27.5(typescript@5.7.2)) typescript: specifier: ~5.7.2 version: 5.7.2 @@ -171,6 +177,12 @@ importers: solid-js: specifier: ^1.9.3 version: 1.9.3 + typedoc: + specifier: ^0.27.5 + version: 0.27.5(typescript@5.7.2) + typedoc-plugin-markdown: + specifier: ^4.3.3 + version: 4.3.3(typedoc@0.27.5(typescript@5.7.2)) typescript: specifier: ~5.7.2 version: 5.7.2 @@ -789,6 +801,9 @@ packages: resolution: {integrity: sha512-zSkKow6H5Kdm0ZUQUB2kV5JIXqoG0+uH5YADhaEHswm664N9Db8dXSi0nMJpacpMf+MyyglF1vnZohpEg5yUtg==} engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@gerrit0/mini-shiki@1.24.4': + resolution: {integrity: sha512-YEHW1QeAg6UmxEmswiQbOVEg1CW22b1XUD/lNTliOsu0LD0wqoyleFMnmbTp697QE0pcadQiR5cVtbbAPncvpw==} + '@humanfs/core@0.19.1': resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==} engines: {node: '>=18.18.0'} @@ -1097,6 +1112,15 @@ packages: '@rtsao/scc@1.1.0': resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==} + '@shikijs/engine-oniguruma@1.24.4': + resolution: {integrity: sha512-Do2ry6flp2HWdvpj2XOwwa0ljZBRy15HKZITzPcNIBOGSeprnA8gOooA/bLsSPuy8aJBa+Q/r34dMmC3KNL/zw==} + + '@shikijs/types@1.24.4': + resolution: {integrity: sha512-0r0XU7Eaow0PuDxuWC1bVqmWCgm3XqizIaT7SM42K03vc69LGooT0U8ccSR44xP/hGlNx4FKhtYpV+BU6aaKAA==} + + '@shikijs/vscode-textmate@9.3.1': + resolution: {integrity: sha512-79QfK1393x9Ho60QFyLti+QfdJzRQCVLFb97kOIV7Eo9vQU/roINgk7m24uv0a7AUvN//RDH36FLjjK48v0s9g==} + '@sindresorhus/merge-streams@2.3.0': resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==} engines: {node: '>=18'} @@ -1160,6 +1184,9 @@ packages: '@types/estree@1.0.6': resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} + '@types/hast@3.0.4': + resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} + '@types/json-schema@7.0.15': resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} @@ -2663,6 +2690,9 @@ packages: lru-cache@5.1.1: resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} + lunr@2.3.9: + resolution: {integrity: sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==} + lz-string@1.5.0: resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==} hasBin: true @@ -3534,6 +3564,19 @@ packages: resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==} engines: {node: '>= 0.4'} + typedoc-plugin-markdown@4.3.3: + resolution: {integrity: sha512-kESCcNRzOcFJATLML2FoCfaTF9c0ujmbZ+UXsJvmNlFLS3v8tDKfDifreJXvXWa9d8gUcetZqOqFcZ/7+Ba34Q==} + engines: {node: '>= 18'} + peerDependencies: + typedoc: 0.27.x + + typedoc@0.27.5: + resolution: {integrity: sha512-x+fhKJtTg4ozXwKayh/ek4wxZQI/+2hmZUdO2i2NGDBRUflDble70z+ewHod3d4gRpXSO6fnlnjbDTnJk7HlkQ==} + engines: {node: '>= 18'} + hasBin: true + peerDependencies: + typescript: 5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x || 5.5.x || 5.6.x || 5.7.x + typescript-eslint-language-service@5.0.5: resolution: {integrity: sha512-b7gWXpwSTqMVKpPX3WttNZEyVAMKs/2jsHKF79H+qaD6mjzCyU5jboJe/lOZgLJD+QRsXCr0GjIVxvl5kI1NMw==} peerDependencies: @@ -4415,6 +4458,12 @@ snapshots: dependencies: levn: 0.4.1 + '@gerrit0/mini-shiki@1.24.4': + dependencies: + '@shikijs/engine-oniguruma': 1.24.4 + '@shikijs/types': 1.24.4 + '@shikijs/vscode-textmate': 9.3.1 + '@humanfs/core@0.19.1': {} '@humanfs/node@0.16.6': @@ -4641,6 +4690,18 @@ snapshots: '@rtsao/scc@1.1.0': {} + '@shikijs/engine-oniguruma@1.24.4': + dependencies: + '@shikijs/types': 1.24.4 + '@shikijs/vscode-textmate': 9.3.1 + + '@shikijs/types@1.24.4': + dependencies: + '@shikijs/vscode-textmate': 9.3.1 + '@types/hast': 3.0.4 + + '@shikijs/vscode-textmate@9.3.1': {} + '@sindresorhus/merge-streams@2.3.0': {} '@solidjs/testing-library@0.8.10(solid-js@1.9.3)': @@ -4713,6 +4774,10 @@ snapshots: '@types/estree@1.0.6': {} + '@types/hast@3.0.4': + dependencies: + '@types/unist': 3.0.3 + '@types/json-schema@7.0.15': {} '@types/json5@0.0.29': {} @@ -6487,6 +6552,8 @@ snapshots: dependencies: yallist: 3.1.1 + lunr@2.3.9: {} + lz-string@1.5.0: {} magic-string@0.30.17: @@ -7534,6 +7601,19 @@ snapshots: possible-typed-array-names: 1.0.0 reflect.getprototypeof: 1.0.9 + typedoc-plugin-markdown@4.3.3(typedoc@0.27.5(typescript@5.7.2)): + dependencies: + typedoc: 0.27.5(typescript@5.7.2) + + typedoc@0.27.5(typescript@5.7.2): + dependencies: + '@gerrit0/mini-shiki': 1.24.4 + lunr: 2.3.9 + markdown-it: 14.1.0 + minimatch: 9.0.5 + typescript: 5.7.2 + yaml: 2.6.1 + typescript-eslint-language-service@5.0.5(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2): dependencies: '@typescript-eslint/parser': 8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2) From 8a2224e96a43726b320dad741d27c92c4c3fcb7a Mon Sep 17 00:00:00 2001 From: kurone-kito Date: Wed, 25 Dec 2024 21:55:34 +0900 Subject: [PATCH 13/13] 0.8.1 --- Packages/black.kit.launchpadicons/package.json | 2 +- nodePackages/builder/package.json | 2 +- nodePackages/react/package.json | 2 +- nodePackages/solid/package.json | 2 +- nodePackages/web/package.json | 2 +- package.json | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Packages/black.kit.launchpadicons/package.json b/Packages/black.kit.launchpadicons/package.json index ace11dcd..39182637 100644 --- a/Packages/black.kit.launchpadicons/package.json +++ b/Packages/black.kit.launchpadicons/package.json @@ -1,7 +1,7 @@ { "name": "black.kit.launchpadicons", "displayName": "LaunchPad Icons", - "version": "0.8.0", + "version": "0.8.1", "description": "the icons VPM asset like the VRChat LaunchPad for the VRChat", "keywords": [ "icons", diff --git a/nodePackages/builder/package.json b/nodePackages/builder/package.json index 05552c98..31754d9c 100644 --- a/nodePackages/builder/package.json +++ b/nodePackages/builder/package.json @@ -1,6 +1,6 @@ { "name": "@kurone-kito/launchpad-icons-builder", - "version": "0.8.0-alpha.1", + "version": "0.8.1", "private": true, "description": "the builder for the LaunchPad icons NPM packages", "keywords": [ diff --git a/nodePackages/react/package.json b/nodePackages/react/package.json index e912b39b..a8e0c58a 100644 --- a/nodePackages/react/package.json +++ b/nodePackages/react/package.json @@ -1,6 +1,6 @@ { "name": "@kurone-kito/launchpad-icons-react", - "version": "0.8.0-alpha.1", + "version": "0.8.1", "description": "the icons like the VRChat for Node.js ecosystem with the React", "keywords": [ "components", diff --git a/nodePackages/solid/package.json b/nodePackages/solid/package.json index 2ae8baf1..ea919d23 100644 --- a/nodePackages/solid/package.json +++ b/nodePackages/solid/package.json @@ -1,6 +1,6 @@ { "name": "@kurone-kito/launchpad-icons-solid", - "version": "0.8.0-alpha.1", + "version": "0.8.1", "description": "the icons like the VRChat for Node.js ecosystem with the Solid.js", "keywords": [ "components", diff --git a/nodePackages/web/package.json b/nodePackages/web/package.json index 3fbfee92..04da6ed0 100644 --- a/nodePackages/web/package.json +++ b/nodePackages/web/package.json @@ -1,6 +1,6 @@ { "name": "@kurone-kito/launchpad-icons-web", - "version": "0.8.0-alpha.1", + "version": "0.8.1", "private": true, "description": "the official website of the Launchpad Icons", "keywords": [ diff --git a/package.json b/package.json index 671c4038..cfb1fe11 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@kurone-kito/launchpad-icons-root", - "version": "0.8.0-alpha.1", + "version": "0.8.1", "private": true, "description": "the icons VPM asset like the VRChat LaunchPad for the VRChat and Web", "keywords": [