diff --git a/.editorconfig b/.editorconfig deleted file mode 100644 index d86ac027..00000000 --- a/.editorconfig +++ /dev/null @@ -1,34 +0,0 @@ -# EditorConfig helps developers define and maintain consistent -# coding styles between different editors and IDEs -# EditorConfig is awesome: https://EditorConfig.org - -root = true - -[*] -charset = utf-8 -indent_size = 2 -indent_style = space -end_of_line = lf -insert_final_newline = true -trim_trailing_whitespace = true - -# go -[*.go] -indent_style = tab -indent_size = 4 - -# python -[*.{ini,py,py.tpl,rst}] -indent_size = 4 - -# rust -[*.rs] -indent_size = 4 - -# documentation, utils -[*.{md,mdx,diff}] -trim_trailing_whitespace = false - -# windows shell scripts -[*.{cmd,bat,ps1}] -end_of_line = crlf diff --git a/.eslintrc b/.eslintrc deleted file mode 100644 index de7e4134..00000000 --- a/.eslintrc +++ /dev/null @@ -1,4 +0,0 @@ -{ - "extends": "@antfu", - "ignorePatterns": ["themes", "previews"] -} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1e1f2d5b..659634ea 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,13 @@ -on: [push, pull_request] +name: CI + +on: + push: + branches: [main] + pull_request: + branches: [main] + +env: + PUPPETEER_SKIP_DOWNLOAD: true jobs: ci: @@ -9,34 +18,27 @@ jobs: - name: Checkout uses: actions/checkout@v3 - - name: Install Node.js + - name: Install pnpm + uses: pnpm/action-setup@v2 + + - name: Setup node uses: actions/setup-node@v3 with: - node-version: 18 - cache: yarn + cache: pnpm + node-version: lts/* - name: Install dependencies - run: yarn install --frozen-lockfile + run: pnpm i --frozen-lockfile - name: Lint files - run: yarn lint + run: pnpm lint - - name: Verify icons integrity - run: yarn integrity + - name: Build extension + run: pnpm build - - name: Build themes - run: yarn build - - - name: Package Extension - id: packageExtension - uses: HaaLeo/publish-vscode-extension@v1 + - name: Package extension + uses: haaleo/publish-vscode-extension@v1 with: - pat: stub - yarn: true + pat: _ + dependencies: false dryRun: true - - - name: Upload Artifact - uses: actions/upload-artifact@v3 - with: - name: catppuccin-vsc-icons.vsix - path: ${{ steps.packageExtension.outputs.vsixPath }} diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml deleted file mode 100644 index 9bb4ee3f..00000000 --- a/.github/workflows/publish.yml +++ /dev/null @@ -1,55 +0,0 @@ -on: - push: - tags: ['*'] - -jobs: - publish: - name: Publish - runs-on: ubuntu-latest - - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Install Node.js - uses: actions/setup-node@v3 - with: - node-version: 18 - cache: yarn - - - name: Install dependencies - run: yarn install --frozen-lockfile - - - name: Lint files - run: yarn lint - - - name: Verify icons integrity - run: yarn integrity - - - name: Build themes - run: yarn build - - - name: Package Extension - id: packageExtension - uses: HaaLeo/publish-vscode-extension@v1 - with: - pat: stub - yarn: true - dryRun: true - - - name: Publish to Visual Studio Marketplace - uses: HaaLeo/publish-vscode-extension@v1 - with: - yarn: true - pat: ${{ secrets.VS_MARKETPLACE_TOKEN }} - extensionFile: ${{ steps.packageExtension.outputs.vsixPath }} - registryUrl: https://marketplace.visualstudio.com - - - name: Publish to Open VSX Registry - uses: HaaLeo/publish-vscode-extension@v1 - continue-on-error: true - timeout-minutes: 10 - with: - yarn: true - pat: ${{ secrets.OPEN_VSX_TOKEN }} - extensionFile: ${{ steps.packageExtension.outputs.vsixPath }} diff --git a/.vscode/launch.json b/.vscode/launch.json index a403e3a9..d3216f02 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -5,7 +5,12 @@ "name": "Extension", "type": "extensionHost", "request": "launch", - "args": ["--extensionDevelopmentPath=${workspaceFolder}"] + "args": [ + "--extensionDevelopmentPath=${workspaceFolder}" + ], + "outFiles": [ + "${workspaceFolder}/dist/**/*.js" + ] } ] } diff --git a/.vscodeignore b/.vscodeignore index 6892bed9..a79bb199 100644 --- a/.vscodeignore +++ b/.vscodeignore @@ -1,15 +1,9 @@ -.github/ -.vscode/ -assets/ -icons/ -node_modules/ -scripts/ -src/ +* +**/* -todo.md -*.vsix -.editorconfig -.eslintrc -.gitignore -yarn.lock -tsconfig.json +!CHANGELOG.md +!LICENSE +!README.md +!assets/*.png +!dist/**/* +!package.json diff --git a/LICENSE b/LICENSE index b930e79b..306622e3 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2023 Catppuccin +Copyright (c) 2024 Catppuccin Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 1578c5ba..4ad8bfe8 100644 --- a/README.md +++ b/README.md @@ -1,49 +1,27 @@

- Logo
- - Catppuccin icons for VSCode - + Logo
+ + Catppuccin icons +

- - - + + +

- -

- +

-## Previews - -
-🌻 Latte - -
-
-🪴 Frappé - -
-
-🌺 Macchiato - -
-
-🌿 Mocha - -
+> [!IMPORTANT] +> The repository is currently a WIP towards v1. New icons and features may wait until the release. -## Usage + -1. Install the [icon theme extension](https://marketplace.visualstudio.com/items?itemName=Catppuccin.catppuccin-vsc-icons) -2. Press Ctrl+Shift+P or CMD+Shift+P -3. Type in `> File Icon Theme` and press enter -4. Select your flavor and press enter -5. Enjoy! + ## 💝 Thanks to @@ -52,13 +30,13 @@  

- +

- Copyright © 2021-present Catppuccin Org + Copyright © 2021-present Catppuccin Org

- +

diff --git a/assets/catwalk.png b/assets/catwalk.png new file mode 100644 index 00000000..7ec39f9e Binary files /dev/null and b/assets/catwalk.png differ diff --git a/logo.png b/assets/icon.png similarity index 100% rename from logo.png rename to assets/icon.png diff --git a/assets/preview.webp b/assets/preview.webp deleted file mode 100644 index 82375e35..00000000 Binary files a/assets/preview.webp and /dev/null differ diff --git a/assets/previews/frappe-icons.png b/assets/previews/frappe-icons.png deleted file mode 100644 index bcc6e6df..00000000 Binary files a/assets/previews/frappe-icons.png and /dev/null differ diff --git a/assets/previews/frappe.png b/assets/previews/frappe.png deleted file mode 100644 index f008d39d..00000000 Binary files a/assets/previews/frappe.png and /dev/null differ diff --git a/assets/previews/latte-icons.png b/assets/previews/latte-icons.png deleted file mode 100644 index 0743f18a..00000000 Binary files a/assets/previews/latte-icons.png and /dev/null differ diff --git a/assets/previews/latte.png b/assets/previews/latte.png deleted file mode 100644 index 9f5675fe..00000000 Binary files a/assets/previews/latte.png and /dev/null differ diff --git a/assets/previews/macchiato-icons.png b/assets/previews/macchiato-icons.png deleted file mode 100644 index 1bded87b..00000000 Binary files a/assets/previews/macchiato-icons.png and /dev/null differ diff --git a/assets/previews/macchiato.png b/assets/previews/macchiato.png deleted file mode 100644 index 681a5286..00000000 Binary files a/assets/previews/macchiato.png and /dev/null differ diff --git a/assets/previews/mocha-icons.png b/assets/previews/mocha-icons.png deleted file mode 100644 index 86b5be25..00000000 Binary files a/assets/previews/mocha-icons.png and /dev/null differ diff --git a/assets/previews/mocha.png b/assets/previews/mocha.png deleted file mode 100644 index 1373e196..00000000 Binary files a/assets/previews/mocha.png and /dev/null differ diff --git a/eslint.config.js b/eslint.config.js new file mode 100644 index 00000000..50d59b97 --- /dev/null +++ b/eslint.config.js @@ -0,0 +1,10 @@ +import config from '@antfu/eslint-config' + +export default config({ + ignores: [], +}, { + files: ['src/defaults/*.ts'], + rules: { + 'sort-keys': ['error', 'asc', { minKeys: 10 }], + }, +}) diff --git a/icons/adonis.svg b/icons/adonis.svg deleted file mode 100644 index 79765b0a..00000000 --- a/icons/adonis.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/alex.svg b/icons/alex.svg deleted file mode 100644 index 9ed16b94..00000000 --- a/icons/alex.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/angular.svg b/icons/angular.svg deleted file mode 100644 index 06a9cc88..00000000 --- a/icons/angular.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/apl.svg b/icons/apl.svg deleted file mode 100644 index bc8b5fd0..00000000 --- a/icons/apl.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/apollo.svg b/icons/apollo.svg deleted file mode 100644 index 1f09a4f5..00000000 --- a/icons/apollo.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/apple.svg b/icons/apple.svg deleted file mode 100644 index f4676b52..00000000 --- a/icons/apple.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/appveyor.svg b/icons/appveyor.svg deleted file mode 100644 index 63d87bff..00000000 --- a/icons/appveyor.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/arduino.svg b/icons/arduino.svg deleted file mode 100644 index fdc8218d..00000000 --- a/icons/arduino.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/assembly.svg b/icons/assembly.svg deleted file mode 100644 index 06d6d185..00000000 --- a/icons/assembly.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/astro.svg b/icons/astro.svg deleted file mode 100644 index 99d3743e..00000000 --- a/icons/astro.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/astro_config.svg b/icons/astro_config.svg deleted file mode 100644 index 399fee8b..00000000 --- a/icons/astro_config.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/babel.svg b/icons/babel.svg deleted file mode 100644 index b4eaa470..00000000 --- a/icons/babel.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/bash.svg b/icons/bash.svg deleted file mode 100644 index 44ba653e..00000000 --- a/icons/bash.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/bat.svg b/icons/bat.svg deleted file mode 100644 index f00dca80..00000000 --- a/icons/bat.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/binary.svg b/icons/binary.svg deleted file mode 100644 index 805866ed..00000000 --- a/icons/binary.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/browserslist.svg b/icons/browserslist.svg deleted file mode 100644 index 976e5cde..00000000 --- a/icons/browserslist.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/bun.svg b/icons/bun.svg deleted file mode 100644 index 387449cc..00000000 --- a/icons/bun.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/bun_lock.svg b/icons/bun_lock.svg deleted file mode 100644 index 0517e92e..00000000 --- a/icons/bun_lock.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/icons/c.svg b/icons/c.svg deleted file mode 100644 index 2760fb65..00000000 --- a/icons/c.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/caddy.svg b/icons/caddy.svg deleted file mode 100644 index 472d6dc4..00000000 --- a/icons/caddy.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/icons/capacitor.svg b/icons/capacitor.svg deleted file mode 100644 index dfcbbc5a..00000000 --- a/icons/capacitor.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/icons/cargo.svg b/icons/cargo.svg deleted file mode 100644 index 4f26b781..00000000 --- a/icons/cargo.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/cargo_lock.svg b/icons/cargo_lock.svg deleted file mode 100644 index e2740b63..00000000 --- a/icons/cargo_lock.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/icons/certificate.svg b/icons/certificate.svg deleted file mode 100644 index ab410c55..00000000 --- a/icons/certificate.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/changelog.svg b/icons/changelog.svg deleted file mode 100644 index be9ce6e4..00000000 --- a/icons/changelog.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/clojure.svg b/icons/clojure.svg deleted file mode 100644 index f6e2bd37..00000000 --- a/icons/clojure.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/icons/cmake.svg b/icons/cmake.svg deleted file mode 100644 index 36afb28c..00000000 --- a/icons/cmake.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/code_climate.svg b/icons/code_climate.svg deleted file mode 100644 index 6eb9d387..00000000 --- a/icons/code_climate.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/code_of_conduct.svg b/icons/code_of_conduct.svg deleted file mode 100644 index 196a6a20..00000000 --- a/icons/code_of_conduct.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/codecov.svg b/icons/codecov.svg deleted file mode 100644 index ebffb460..00000000 --- a/icons/codecov.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/codeowners.svg b/icons/codeowners.svg deleted file mode 100644 index 83c6c1d7..00000000 --- a/icons/codeowners.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/coffeescript.svg b/icons/coffeescript.svg deleted file mode 100644 index e6c4f3b3..00000000 --- a/icons/coffeescript.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/commitlint.svg b/icons/commitlint.svg deleted file mode 100644 index 1847109f..00000000 --- a/icons/commitlint.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/contributing.svg b/icons/contributing.svg deleted file mode 100644 index d372a9c1..00000000 --- a/icons/contributing.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/coq.svg b/icons/coq.svg deleted file mode 100644 index e41b3cb9..00000000 --- a/icons/coq.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/cpp.svg b/icons/cpp.svg deleted file mode 100644 index ca8f4544..00000000 --- a/icons/cpp.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/csharp.svg b/icons/csharp.svg deleted file mode 100644 index 98ec50ad..00000000 --- a/icons/csharp.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/css-variables/_file.svg b/icons/css-variables/_file.svg new file mode 100644 index 00000000..a76ede21 --- /dev/null +++ b/icons/css-variables/_file.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/_folder.svg b/icons/css-variables/_folder.svg new file mode 100644 index 00000000..f66d3214 --- /dev/null +++ b/icons/css-variables/_folder.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/_folder_open.svg b/icons/css-variables/_folder_open.svg new file mode 100644 index 00000000..3dc14043 --- /dev/null +++ b/icons/css-variables/_folder_open.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/adonis.svg b/icons/css-variables/adonis.svg new file mode 100644 index 00000000..dd5ddc85 --- /dev/null +++ b/icons/css-variables/adonis.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/alex.svg b/icons/css-variables/alex.svg new file mode 100644 index 00000000..c6a2ecc6 --- /dev/null +++ b/icons/css-variables/alex.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/android.svg b/icons/css-variables/android.svg new file mode 100644 index 00000000..5a69457a --- /dev/null +++ b/icons/css-variables/android.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/antlr.svg b/icons/css-variables/antlr.svg new file mode 100644 index 00000000..c0a769d4 --- /dev/null +++ b/icons/css-variables/antlr.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/api-blueprint.svg b/icons/css-variables/api-blueprint.svg new file mode 100644 index 00000000..d430bfd5 --- /dev/null +++ b/icons/css-variables/api-blueprint.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/apollo.svg b/icons/css-variables/apollo.svg new file mode 100644 index 00000000..cbe8396f --- /dev/null +++ b/icons/css-variables/apollo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/audio.svg b/icons/css-variables/audio.svg new file mode 100644 index 00000000..56e3af98 --- /dev/null +++ b/icons/css-variables/audio.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/azure-pipelines.svg b/icons/css-variables/azure-pipelines.svg new file mode 100644 index 00000000..f5bda260 --- /dev/null +++ b/icons/css-variables/azure-pipelines.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/babel.svg b/icons/css-variables/babel.svg new file mode 100644 index 00000000..56821dfe --- /dev/null +++ b/icons/css-variables/babel.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/bash.svg b/icons/css-variables/bash.svg new file mode 100644 index 00000000..5873b395 --- /dev/null +++ b/icons/css-variables/bash.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/css-variables/batch.svg b/icons/css-variables/batch.svg new file mode 100644 index 00000000..2cc6965b --- /dev/null +++ b/icons/css-variables/batch.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/binary.svg b/icons/css-variables/binary.svg new file mode 100644 index 00000000..deb033cb --- /dev/null +++ b/icons/css-variables/binary.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/bitbucket.svg b/icons/css-variables/bitbucket.svg new file mode 100644 index 00000000..4bd4f691 --- /dev/null +++ b/icons/css-variables/bitbucket.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/blitz.svg b/icons/css-variables/blitz.svg new file mode 100644 index 00000000..842a3ced --- /dev/null +++ b/icons/css-variables/blitz.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/bower.svg b/icons/css-variables/bower.svg new file mode 100644 index 00000000..4e5c0fbd --- /dev/null +++ b/icons/css-variables/bower.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/css-variables/browserslist.svg b/icons/css-variables/browserslist.svg new file mode 100644 index 00000000..8cfb0d6e --- /dev/null +++ b/icons/css-variables/browserslist.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/bun-lock.svg b/icons/css-variables/bun-lock.svg new file mode 100644 index 00000000..5d01eacd --- /dev/null +++ b/icons/css-variables/bun-lock.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/css-variables/bun.svg b/icons/css-variables/bun.svg new file mode 100644 index 00000000..6530c562 --- /dev/null +++ b/icons/css-variables/bun.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/css-variables/c-header.svg b/icons/css-variables/c-header.svg new file mode 100644 index 00000000..766f2917 --- /dev/null +++ b/icons/css-variables/c-header.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/c.svg b/icons/css-variables/c.svg new file mode 100644 index 00000000..55436ea2 --- /dev/null +++ b/icons/css-variables/c.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/caddy.svg b/icons/css-variables/caddy.svg new file mode 100644 index 00000000..a270e30a --- /dev/null +++ b/icons/css-variables/caddy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/capacitor.svg b/icons/css-variables/capacitor.svg new file mode 100644 index 00000000..bbfc118b --- /dev/null +++ b/icons/css-variables/capacitor.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/certificate.svg b/icons/css-variables/certificate.svg new file mode 100644 index 00000000..680e60ac --- /dev/null +++ b/icons/css-variables/certificate.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/css-variables/changelog.svg b/icons/css-variables/changelog.svg new file mode 100644 index 00000000..47514db1 --- /dev/null +++ b/icons/css-variables/changelog.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/circle-ci.svg b/icons/css-variables/circle-ci.svg new file mode 100644 index 00000000..86afa968 --- /dev/null +++ b/icons/css-variables/circle-ci.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/clojure.svg b/icons/css-variables/clojure.svg new file mode 100644 index 00000000..14a49069 --- /dev/null +++ b/icons/css-variables/clojure.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons/css-variables/cmake.svg b/icons/css-variables/cmake.svg new file mode 100644 index 00000000..f8224005 --- /dev/null +++ b/icons/css-variables/cmake.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/css-variables/cobol.svg b/icons/css-variables/cobol.svg new file mode 100644 index 00000000..1cbaf1a3 --- /dev/null +++ b/icons/css-variables/cobol.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/code-climate.svg b/icons/css-variables/code-climate.svg new file mode 100644 index 00000000..b2139d6b --- /dev/null +++ b/icons/css-variables/code-climate.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/code-of-conduct.svg b/icons/css-variables/code-of-conduct.svg new file mode 100644 index 00000000..ed224d39 --- /dev/null +++ b/icons/css-variables/code-of-conduct.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/coffeescript.svg b/icons/css-variables/coffeescript.svg new file mode 100644 index 00000000..fe13b3ed --- /dev/null +++ b/icons/css-variables/coffeescript.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/commitlint.svg b/icons/css-variables/commitlint.svg new file mode 100644 index 00000000..28033b63 --- /dev/null +++ b/icons/css-variables/commitlint.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/cpp-header.svg b/icons/css-variables/cpp-header.svg new file mode 100644 index 00000000..92ac978a --- /dev/null +++ b/icons/css-variables/cpp-header.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/cpp.svg b/icons/css-variables/cpp.svg new file mode 100644 index 00000000..ca9572f8 --- /dev/null +++ b/icons/css-variables/cpp.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/csharp.svg b/icons/css-variables/csharp.svg new file mode 100644 index 00000000..2482d320 --- /dev/null +++ b/icons/css-variables/csharp.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/css-map.svg b/icons/css-variables/css-map.svg new file mode 100644 index 00000000..7f547112 --- /dev/null +++ b/icons/css-variables/css-map.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/css-variables/css.svg b/icons/css-variables/css.svg new file mode 100644 index 00000000..1a946007 --- /dev/null +++ b/icons/css-variables/css.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/csv.svg b/icons/css-variables/csv.svg new file mode 100644 index 00000000..c7c2f04a --- /dev/null +++ b/icons/css-variables/csv.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/cucumber.svg b/icons/css-variables/cucumber.svg new file mode 100644 index 00000000..8a437a0f --- /dev/null +++ b/icons/css-variables/cucumber.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/cuda.svg b/icons/css-variables/cuda.svg new file mode 100644 index 00000000..26ed113c --- /dev/null +++ b/icons/css-variables/cuda.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/cypress.svg b/icons/css-variables/cypress.svg new file mode 100644 index 00000000..cd8c3b48 --- /dev/null +++ b/icons/css-variables/cypress.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/d.svg b/icons/css-variables/d.svg new file mode 100644 index 00000000..ba16d35c --- /dev/null +++ b/icons/css-variables/d.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/dart-generated.svg b/icons/css-variables/dart-generated.svg new file mode 100644 index 00000000..992b28ae --- /dev/null +++ b/icons/css-variables/dart-generated.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/dart.svg b/icons/css-variables/dart.svg new file mode 100644 index 00000000..f167dc2c --- /dev/null +++ b/icons/css-variables/dart.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/database.svg b/icons/css-variables/database.svg new file mode 100644 index 00000000..72b4f925 --- /dev/null +++ b/icons/css-variables/database.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/deno.svg b/icons/css-variables/deno.svg new file mode 100644 index 00000000..4de01f3f --- /dev/null +++ b/icons/css-variables/deno.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/deno_lock.svg b/icons/css-variables/deno_lock.svg new file mode 100644 index 00000000..de4bca2d --- /dev/null +++ b/icons/css-variables/deno_lock.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/dependabot.svg b/icons/css-variables/dependabot.svg new file mode 100644 index 00000000..c2b467bb --- /dev/null +++ b/icons/css-variables/dependabot.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/dhall.svg b/icons/css-variables/dhall.svg new file mode 100644 index 00000000..71a5b5eb --- /dev/null +++ b/icons/css-variables/dhall.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/diff.svg b/icons/css-variables/diff.svg new file mode 100644 index 00000000..c78f499e --- /dev/null +++ b/icons/css-variables/diff.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/css-variables/django.svg b/icons/css-variables/django.svg new file mode 100644 index 00000000..8163a7ea --- /dev/null +++ b/icons/css-variables/django.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/docker-compose.svg b/icons/css-variables/docker-compose.svg new file mode 100644 index 00000000..a49c3ff5 --- /dev/null +++ b/icons/css-variables/docker-compose.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/docker-ignore.svg b/icons/css-variables/docker-ignore.svg new file mode 100644 index 00000000..7b1ef8ad --- /dev/null +++ b/icons/css-variables/docker-ignore.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/docker.svg b/icons/css-variables/docker.svg new file mode 100644 index 00000000..13a0c29f --- /dev/null +++ b/icons/css-variables/docker.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/drawio.svg b/icons/css-variables/drawio.svg new file mode 100644 index 00000000..b6f5fbdc --- /dev/null +++ b/icons/css-variables/drawio.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/editorconfig.svg b/icons/css-variables/editorconfig.svg new file mode 100644 index 00000000..f97c6c9b --- /dev/null +++ b/icons/css-variables/editorconfig.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/ejs.svg b/icons/css-variables/ejs.svg new file mode 100644 index 00000000..30719dc0 --- /dev/null +++ b/icons/css-variables/ejs.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/elixir.svg b/icons/css-variables/elixir.svg new file mode 100644 index 00000000..0c2caa6f --- /dev/null +++ b/icons/css-variables/elixir.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/elm.svg b/icons/css-variables/elm.svg new file mode 100644 index 00000000..c87651a5 --- /dev/null +++ b/icons/css-variables/elm.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/ember.svg b/icons/css-variables/ember.svg new file mode 100644 index 00000000..afbecc35 --- /dev/null +++ b/icons/css-variables/ember.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/env.svg b/icons/css-variables/env.svg new file mode 100644 index 00000000..76393a7b --- /dev/null +++ b/icons/css-variables/env.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/erlang.svg b/icons/css-variables/erlang.svg new file mode 100644 index 00000000..ca2cdf7a --- /dev/null +++ b/icons/css-variables/erlang.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/esbuild.svg b/icons/css-variables/esbuild.svg new file mode 100644 index 00000000..437d9a95 --- /dev/null +++ b/icons/css-variables/esbuild.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/eslint-ignore.svg b/icons/css-variables/eslint-ignore.svg new file mode 100644 index 00000000..c2c30d63 --- /dev/null +++ b/icons/css-variables/eslint-ignore.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/eslint.svg b/icons/css-variables/eslint.svg new file mode 100644 index 00000000..6e997b3d --- /dev/null +++ b/icons/css-variables/eslint.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/exe.svg b/icons/css-variables/exe.svg new file mode 100644 index 00000000..e77f35e3 --- /dev/null +++ b/icons/css-variables/exe.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/fastlane.svg b/icons/css-variables/fastlane.svg new file mode 100644 index 00000000..0358e65c --- /dev/null +++ b/icons/css-variables/fastlane.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons/css-variables/favicon.svg b/icons/css-variables/favicon.svg new file mode 100644 index 00000000..c1af14ef --- /dev/null +++ b/icons/css-variables/favicon.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/figma.svg b/icons/css-variables/figma.svg new file mode 100644 index 00000000..7eb772bb --- /dev/null +++ b/icons/css-variables/figma.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/css-variables/firebase.svg b/icons/css-variables/firebase.svg new file mode 100644 index 00000000..ffa423c8 --- /dev/null +++ b/icons/css-variables/firebase.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/folder_admin.svg b/icons/css-variables/folder_admin.svg new file mode 100644 index 00000000..c9cd8764 --- /dev/null +++ b/icons/css-variables/folder_admin.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_admin_open.svg b/icons/css-variables/folder_admin_open.svg new file mode 100644 index 00000000..e2366efd --- /dev/null +++ b/icons/css-variables/folder_admin_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_android.svg b/icons/css-variables/folder_android.svg new file mode 100644 index 00000000..bf3b2a2c --- /dev/null +++ b/icons/css-variables/folder_android.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_android__open.svg b/icons/css-variables/folder_android__open.svg new file mode 100644 index 00000000..257c7069 --- /dev/null +++ b/icons/css-variables/folder_android__open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_animation.svg b/icons/css-variables/folder_animation.svg new file mode 100644 index 00000000..b717a28b --- /dev/null +++ b/icons/css-variables/folder_animation.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_animation_open.svg b/icons/css-variables/folder_animation_open.svg new file mode 100644 index 00000000..4067647f --- /dev/null +++ b/icons/css-variables/folder_animation_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_api.svg b/icons/css-variables/folder_api.svg new file mode 100644 index 00000000..309edd8a --- /dev/null +++ b/icons/css-variables/folder_api.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_api_open.svg b/icons/css-variables/folder_api_open.svg new file mode 100644 index 00000000..fd86f56d --- /dev/null +++ b/icons/css-variables/folder_api_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_app.svg b/icons/css-variables/folder_app.svg new file mode 100644 index 00000000..addeffd8 --- /dev/null +++ b/icons/css-variables/folder_app.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/css-variables/folder_app_open.svg b/icons/css-variables/folder_app_open.svg new file mode 100644 index 00000000..3d2c1170 --- /dev/null +++ b/icons/css-variables/folder_app_open.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/css-variables/folder_audio.svg b/icons/css-variables/folder_audio.svg new file mode 100644 index 00000000..7167dcee --- /dev/null +++ b/icons/css-variables/folder_audio.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/css-variables/folder_audio_open.svg b/icons/css-variables/folder_audio_open.svg new file mode 100644 index 00000000..4e04cf71 --- /dev/null +++ b/icons/css-variables/folder_audio_open.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/css-variables/folder_aws.svg b/icons/css-variables/folder_aws.svg new file mode 100644 index 00000000..b054a044 --- /dev/null +++ b/icons/css-variables/folder_aws.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/css-variables/folder_aws_open.svg b/icons/css-variables/folder_aws_open.svg new file mode 100644 index 00000000..2f8ea572 --- /dev/null +++ b/icons/css-variables/folder_aws_open.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/css-variables/folder_benchmark.svg b/icons/css-variables/folder_benchmark.svg new file mode 100644 index 00000000..e91d9dec --- /dev/null +++ b/icons/css-variables/folder_benchmark.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_benchmark_open.svg b/icons/css-variables/folder_benchmark_open.svg new file mode 100644 index 00000000..65baf988 --- /dev/null +++ b/icons/css-variables/folder_benchmark_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_circle-ci.svg b/icons/css-variables/folder_circle-ci.svg new file mode 100644 index 00000000..1817ffbe --- /dev/null +++ b/icons/css-variables/folder_circle-ci.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/css-variables/folder_circle-ci_open.svg b/icons/css-variables/folder_circle-ci_open.svg new file mode 100644 index 00000000..050e6a85 --- /dev/null +++ b/icons/css-variables/folder_circle-ci_open.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/css-variables/folder_client.svg b/icons/css-variables/folder_client.svg new file mode 100644 index 00000000..6c5bd480 --- /dev/null +++ b/icons/css-variables/folder_client.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_client_open.svg b/icons/css-variables/folder_client_open.svg new file mode 100644 index 00000000..94363a2a --- /dev/null +++ b/icons/css-variables/folder_client_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_cloud.svg b/icons/css-variables/folder_cloud.svg new file mode 100644 index 00000000..f7d6eefc --- /dev/null +++ b/icons/css-variables/folder_cloud.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_cloud_open.svg b/icons/css-variables/folder_cloud_open.svg new file mode 100644 index 00000000..503f839c --- /dev/null +++ b/icons/css-variables/folder_cloud_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_command.svg b/icons/css-variables/folder_command.svg new file mode 100644 index 00000000..c2590d04 --- /dev/null +++ b/icons/css-variables/folder_command.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_command_open.svg b/icons/css-variables/folder_command_open.svg new file mode 100644 index 00000000..77aea111 --- /dev/null +++ b/icons/css-variables/folder_command_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_components.svg b/icons/css-variables/folder_components.svg new file mode 100644 index 00000000..44158869 --- /dev/null +++ b/icons/css-variables/folder_components.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_components_open.svg b/icons/css-variables/folder_components_open.svg new file mode 100644 index 00000000..6ef91c3c --- /dev/null +++ b/icons/css-variables/folder_components_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_composables.svg b/icons/css-variables/folder_composables.svg new file mode 100644 index 00000000..4bc25e3d --- /dev/null +++ b/icons/css-variables/folder_composables.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_composables_open.svg b/icons/css-variables/folder_composables_open.svg new file mode 100644 index 00000000..5bd54929 --- /dev/null +++ b/icons/css-variables/folder_composables_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_config.svg b/icons/css-variables/folder_config.svg new file mode 100644 index 00000000..f0b3014c --- /dev/null +++ b/icons/css-variables/folder_config.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_config_open.svg b/icons/css-variables/folder_config_open.svg new file mode 100644 index 00000000..6139bb40 --- /dev/null +++ b/icons/css-variables/folder_config_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_connection.svg b/icons/css-variables/folder_connection.svg new file mode 100644 index 00000000..7d05ecea --- /dev/null +++ b/icons/css-variables/folder_connection.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_connection_open.svg b/icons/css-variables/folder_connection_open.svg new file mode 100644 index 00000000..87b6e2d8 --- /dev/null +++ b/icons/css-variables/folder_connection_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_constant.svg b/icons/css-variables/folder_constant.svg new file mode 100644 index 00000000..8dffdcbb --- /dev/null +++ b/icons/css-variables/folder_constant.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_constant_open.svg b/icons/css-variables/folder_constant_open.svg new file mode 100644 index 00000000..358eec09 --- /dev/null +++ b/icons/css-variables/folder_constant_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_controllers.svg b/icons/css-variables/folder_controllers.svg new file mode 100644 index 00000000..9201ca13 --- /dev/null +++ b/icons/css-variables/folder_controllers.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_controllers_open.svg b/icons/css-variables/folder_controllers_open.svg new file mode 100644 index 00000000..22496d47 --- /dev/null +++ b/icons/css-variables/folder_controllers_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_core.svg b/icons/css-variables/folder_core.svg new file mode 100644 index 00000000..1d406a94 --- /dev/null +++ b/icons/css-variables/folder_core.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_core_open.svg b/icons/css-variables/folder_core_open.svg new file mode 100644 index 00000000..56b026de --- /dev/null +++ b/icons/css-variables/folder_core_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_coverage.svg b/icons/css-variables/folder_coverage.svg new file mode 100644 index 00000000..f6741bff --- /dev/null +++ b/icons/css-variables/folder_coverage.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_coverage_open.svg b/icons/css-variables/folder_coverage_open.svg new file mode 100644 index 00000000..f2031587 --- /dev/null +++ b/icons/css-variables/folder_coverage_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_cypress.svg b/icons/css-variables/folder_cypress.svg new file mode 100644 index 00000000..c9eebe72 --- /dev/null +++ b/icons/css-variables/folder_cypress.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_cypress__open.svg b/icons/css-variables/folder_cypress__open.svg new file mode 100644 index 00000000..c616a6fd --- /dev/null +++ b/icons/css-variables/folder_cypress__open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_database.svg b/icons/css-variables/folder_database.svg new file mode 100644 index 00000000..884b1408 --- /dev/null +++ b/icons/css-variables/folder_database.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_database_open.svg b/icons/css-variables/folder_database_open.svg new file mode 100644 index 00000000..1f4cdb2d --- /dev/null +++ b/icons/css-variables/folder_database_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_debug.svg b/icons/css-variables/folder_debug.svg new file mode 100644 index 00000000..8ef5f41f --- /dev/null +++ b/icons/css-variables/folder_debug.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_debug_open.svg b/icons/css-variables/folder_debug_open.svg new file mode 100644 index 00000000..e8e0bf17 --- /dev/null +++ b/icons/css-variables/folder_debug_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_dist.svg b/icons/css-variables/folder_dist.svg new file mode 100644 index 00000000..311cca12 --- /dev/null +++ b/icons/css-variables/folder_dist.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_dist_open.svg b/icons/css-variables/folder_dist_open.svg new file mode 100644 index 00000000..2c66a186 --- /dev/null +++ b/icons/css-variables/folder_dist_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_docker.svg b/icons/css-variables/folder_docker.svg new file mode 100644 index 00000000..4971a764 --- /dev/null +++ b/icons/css-variables/folder_docker.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/css-variables/folder_docker_open.svg b/icons/css-variables/folder_docker_open.svg new file mode 100644 index 00000000..17a5d6c9 --- /dev/null +++ b/icons/css-variables/folder_docker_open.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/css-variables/folder_docs.svg b/icons/css-variables/folder_docs.svg new file mode 100644 index 00000000..b5d739b9 --- /dev/null +++ b/icons/css-variables/folder_docs.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_docs__open.svg b/icons/css-variables/folder_docs__open.svg new file mode 100644 index 00000000..47ff4cc3 --- /dev/null +++ b/icons/css-variables/folder_docs__open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_download.svg b/icons/css-variables/folder_download.svg new file mode 100644 index 00000000..df0114dd --- /dev/null +++ b/icons/css-variables/folder_download.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_download_open.svg b/icons/css-variables/folder_download_open.svg new file mode 100644 index 00000000..a57945f4 --- /dev/null +++ b/icons/css-variables/folder_download_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_examples.svg b/icons/css-variables/folder_examples.svg new file mode 100644 index 00000000..6748230d --- /dev/null +++ b/icons/css-variables/folder_examples.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_examples_open.svg b/icons/css-variables/folder_examples_open.svg new file mode 100644 index 00000000..3258a1b6 --- /dev/null +++ b/icons/css-variables/folder_examples_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_firebase.svg b/icons/css-variables/folder_firebase.svg new file mode 100644 index 00000000..3015218b --- /dev/null +++ b/icons/css-variables/folder_firebase.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_firebase_open.svg b/icons/css-variables/folder_firebase_open.svg new file mode 100644 index 00000000..b07d08ff --- /dev/null +++ b/icons/css-variables/folder_firebase_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_fonts.svg b/icons/css-variables/folder_fonts.svg new file mode 100644 index 00000000..42670dbe --- /dev/null +++ b/icons/css-variables/folder_fonts.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_fonts_open.svg b/icons/css-variables/folder_fonts_open.svg new file mode 100644 index 00000000..7d3f7ba2 --- /dev/null +++ b/icons/css-variables/folder_fonts_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_functions.svg b/icons/css-variables/folder_functions.svg new file mode 100644 index 00000000..afad3c7d --- /dev/null +++ b/icons/css-variables/folder_functions.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_functions_open.svg b/icons/css-variables/folder_functions_open.svg new file mode 100644 index 00000000..c7fadb75 --- /dev/null +++ b/icons/css-variables/folder_functions_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_git.svg b/icons/css-variables/folder_git.svg new file mode 100644 index 00000000..572de550 --- /dev/null +++ b/icons/css-variables/folder_git.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_git_open.svg b/icons/css-variables/folder_git_open.svg new file mode 100644 index 00000000..c2805ee1 --- /dev/null +++ b/icons/css-variables/folder_git_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_github.svg b/icons/css-variables/folder_github.svg new file mode 100644 index 00000000..69bf2d20 --- /dev/null +++ b/icons/css-variables/folder_github.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_github_open.svg b/icons/css-variables/folder_github_open.svg new file mode 100644 index 00000000..71109096 --- /dev/null +++ b/icons/css-variables/folder_github_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_gitlab.svg b/icons/css-variables/folder_gitlab.svg new file mode 100644 index 00000000..7c27b765 --- /dev/null +++ b/icons/css-variables/folder_gitlab.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_gitlab_open.svg b/icons/css-variables/folder_gitlab_open.svg new file mode 100644 index 00000000..55c9a8b3 --- /dev/null +++ b/icons/css-variables/folder_gitlab_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_husky.svg b/icons/css-variables/folder_husky.svg new file mode 100644 index 00000000..63398bb1 --- /dev/null +++ b/icons/css-variables/folder_husky.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/css-variables/folder_husky_open.svg b/icons/css-variables/folder_husky_open.svg new file mode 100644 index 00000000..a07b827c --- /dev/null +++ b/icons/css-variables/folder_husky_open.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/css-variables/folder_images.svg b/icons/css-variables/folder_images.svg new file mode 100644 index 00000000..9f79bbc5 --- /dev/null +++ b/icons/css-variables/folder_images.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/css-variables/folder_images_open.svg b/icons/css-variables/folder_images_open.svg new file mode 100644 index 00000000..842cebb3 --- /dev/null +++ b/icons/css-variables/folder_images_open.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/css-variables/folder_kubernetes.svg b/icons/css-variables/folder_kubernetes.svg new file mode 100644 index 00000000..30f0c629 --- /dev/null +++ b/icons/css-variables/folder_kubernetes.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/css-variables/folder_kubernetes_open.svg b/icons/css-variables/folder_kubernetes_open.svg new file mode 100644 index 00000000..ce1f872b --- /dev/null +++ b/icons/css-variables/folder_kubernetes_open.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/css-variables/folder_layouts.svg b/icons/css-variables/folder_layouts.svg new file mode 100644 index 00000000..58d8fc41 --- /dev/null +++ b/icons/css-variables/folder_layouts.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_layouts_open.svg b/icons/css-variables/folder_layouts_open.svg new file mode 100644 index 00000000..32f0943f --- /dev/null +++ b/icons/css-variables/folder_layouts_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_locales.svg b/icons/css-variables/folder_locales.svg new file mode 100644 index 00000000..e6979698 --- /dev/null +++ b/icons/css-variables/folder_locales.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_locales_open.svg b/icons/css-variables/folder_locales_open.svg new file mode 100644 index 00000000..7cec28c7 --- /dev/null +++ b/icons/css-variables/folder_locales_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_middleware.svg b/icons/css-variables/folder_middleware.svg new file mode 100644 index 00000000..836caf05 --- /dev/null +++ b/icons/css-variables/folder_middleware.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_middleware_open.svg b/icons/css-variables/folder_middleware_open.svg new file mode 100644 index 00000000..b8f1478f --- /dev/null +++ b/icons/css-variables/folder_middleware_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_mocks.svg b/icons/css-variables/folder_mocks.svg new file mode 100644 index 00000000..e5cee945 --- /dev/null +++ b/icons/css-variables/folder_mocks.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_mocks_open.svg b/icons/css-variables/folder_mocks_open.svg new file mode 100644 index 00000000..ee895dc6 --- /dev/null +++ b/icons/css-variables/folder_mocks_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_next.svg b/icons/css-variables/folder_next.svg new file mode 100644 index 00000000..cc868613 --- /dev/null +++ b/icons/css-variables/folder_next.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_next_open.svg b/icons/css-variables/folder_next_open.svg new file mode 100644 index 00000000..ba66e4e4 --- /dev/null +++ b/icons/css-variables/folder_next_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_node.svg b/icons/css-variables/folder_node.svg new file mode 100644 index 00000000..d45b4ecf --- /dev/null +++ b/icons/css-variables/folder_node.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_node_open.svg b/icons/css-variables/folder_node_open.svg new file mode 100644 index 00000000..cc738c36 --- /dev/null +++ b/icons/css-variables/folder_node_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_nuxt.svg b/icons/css-variables/folder_nuxt.svg new file mode 100644 index 00000000..d63d92ee --- /dev/null +++ b/icons/css-variables/folder_nuxt.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_nuxt_open.svg b/icons/css-variables/folder_nuxt_open.svg new file mode 100644 index 00000000..886b451a --- /dev/null +++ b/icons/css-variables/folder_nuxt_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_packages.svg b/icons/css-variables/folder_packages.svg new file mode 100644 index 00000000..440a9673 --- /dev/null +++ b/icons/css-variables/folder_packages.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_packages_open.svg b/icons/css-variables/folder_packages_open.svg new file mode 100644 index 00000000..b693c47d --- /dev/null +++ b/icons/css-variables/folder_packages_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_plugins.svg b/icons/css-variables/folder_plugins.svg new file mode 100644 index 00000000..3a5ee79d --- /dev/null +++ b/icons/css-variables/folder_plugins.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_plugins_open.svg b/icons/css-variables/folder_plugins_open.svg new file mode 100644 index 00000000..961e4b73 --- /dev/null +++ b/icons/css-variables/folder_plugins_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_prisma.svg b/icons/css-variables/folder_prisma.svg new file mode 100644 index 00000000..721bd8d2 --- /dev/null +++ b/icons/css-variables/folder_prisma.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_prisma_open.svg b/icons/css-variables/folder_prisma_open.svg new file mode 100644 index 00000000..5e8e60b4 --- /dev/null +++ b/icons/css-variables/folder_prisma_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_public.svg b/icons/css-variables/folder_public.svg new file mode 100644 index 00000000..4c2c00e0 --- /dev/null +++ b/icons/css-variables/folder_public.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_public_open.svg b/icons/css-variables/folder_public_open.svg new file mode 100644 index 00000000..4bc98495 --- /dev/null +++ b/icons/css-variables/folder_public_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_queue.svg b/icons/css-variables/folder_queue.svg new file mode 100644 index 00000000..14855d72 --- /dev/null +++ b/icons/css-variables/folder_queue.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_queue_open.svg b/icons/css-variables/folder_queue_open.svg new file mode 100644 index 00000000..c41511ad --- /dev/null +++ b/icons/css-variables/folder_queue_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_redux.svg b/icons/css-variables/folder_redux.svg new file mode 100644 index 00000000..9c1f45e9 --- /dev/null +++ b/icons/css-variables/folder_redux.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_redux_open.svg b/icons/css-variables/folder_redux_open.svg new file mode 100644 index 00000000..40b41473 --- /dev/null +++ b/icons/css-variables/folder_redux_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_routes.svg b/icons/css-variables/folder_routes.svg new file mode 100644 index 00000000..6cdc38ab --- /dev/null +++ b/icons/css-variables/folder_routes.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_routes_open.svg b/icons/css-variables/folder_routes_open.svg new file mode 100644 index 00000000..ca523a26 --- /dev/null +++ b/icons/css-variables/folder_routes_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_sass.svg b/icons/css-variables/folder_sass.svg new file mode 100644 index 00000000..3718a433 --- /dev/null +++ b/icons/css-variables/folder_sass.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_sass_open.svg b/icons/css-variables/folder_sass_open.svg new file mode 100644 index 00000000..963e391d --- /dev/null +++ b/icons/css-variables/folder_sass_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_scripts.svg b/icons/css-variables/folder_scripts.svg new file mode 100644 index 00000000..e6761b30 --- /dev/null +++ b/icons/css-variables/folder_scripts.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_scripts_open.svg b/icons/css-variables/folder_scripts_open.svg new file mode 100644 index 00000000..7140e1b3 --- /dev/null +++ b/icons/css-variables/folder_scripts_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_server.svg b/icons/css-variables/folder_server.svg new file mode 100644 index 00000000..524b94db --- /dev/null +++ b/icons/css-variables/folder_server.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_server_open.svg b/icons/css-variables/folder_server_open.svg new file mode 100644 index 00000000..0b745e50 --- /dev/null +++ b/icons/css-variables/folder_server_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_src.svg b/icons/css-variables/folder_src.svg new file mode 100644 index 00000000..646acfad --- /dev/null +++ b/icons/css-variables/folder_src.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_src_open.svg b/icons/css-variables/folder_src_open.svg new file mode 100644 index 00000000..c0cce215 --- /dev/null +++ b/icons/css-variables/folder_src_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_storybook.svg b/icons/css-variables/folder_storybook.svg new file mode 100644 index 00000000..bf67d9c1 --- /dev/null +++ b/icons/css-variables/folder_storybook.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_storybook_open.svg b/icons/css-variables/folder_storybook_open.svg new file mode 100644 index 00000000..6d7dbe3a --- /dev/null +++ b/icons/css-variables/folder_storybook_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_styles.svg b/icons/css-variables/folder_styles.svg new file mode 100644 index 00000000..c4fc9a1b --- /dev/null +++ b/icons/css-variables/folder_styles.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_styles_open.svg b/icons/css-variables/folder_styles_open.svg new file mode 100644 index 00000000..6bd9b49c --- /dev/null +++ b/icons/css-variables/folder_styles_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_svg.svg b/icons/css-variables/folder_svg.svg new file mode 100644 index 00000000..18a2fa51 --- /dev/null +++ b/icons/css-variables/folder_svg.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_svg_open.svg b/icons/css-variables/folder_svg_open.svg new file mode 100644 index 00000000..7492850c --- /dev/null +++ b/icons/css-variables/folder_svg_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_tauri.svg b/icons/css-variables/folder_tauri.svg new file mode 100644 index 00000000..b4e6f4d2 --- /dev/null +++ b/icons/css-variables/folder_tauri.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/css-variables/folder_tauri_open.svg b/icons/css-variables/folder_tauri_open.svg new file mode 100644 index 00000000..54de0ddd --- /dev/null +++ b/icons/css-variables/folder_tauri_open.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/css-variables/folder_temp.svg b/icons/css-variables/folder_temp.svg new file mode 100644 index 00000000..9fbcc6af --- /dev/null +++ b/icons/css-variables/folder_temp.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_temp_open.svg b/icons/css-variables/folder_temp_open.svg new file mode 100644 index 00000000..12dc3452 --- /dev/null +++ b/icons/css-variables/folder_temp_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_templates.svg b/icons/css-variables/folder_templates.svg new file mode 100644 index 00000000..e6417b93 --- /dev/null +++ b/icons/css-variables/folder_templates.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_templates_open.svg b/icons/css-variables/folder_templates_open.svg new file mode 100644 index 00000000..0c25c190 --- /dev/null +++ b/icons/css-variables/folder_templates_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_tests.svg b/icons/css-variables/folder_tests.svg new file mode 100644 index 00000000..97b1e24b --- /dev/null +++ b/icons/css-variables/folder_tests.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_tests_open.svg b/icons/css-variables/folder_tests_open.svg new file mode 100644 index 00000000..6804c36a --- /dev/null +++ b/icons/css-variables/folder_tests_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_types.svg b/icons/css-variables/folder_types.svg new file mode 100644 index 00000000..46434721 --- /dev/null +++ b/icons/css-variables/folder_types.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_types_open.svg b/icons/css-variables/folder_types_open.svg new file mode 100644 index 00000000..8ff813ee --- /dev/null +++ b/icons/css-variables/folder_types_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_upload.svg b/icons/css-variables/folder_upload.svg new file mode 100644 index 00000000..214b2943 --- /dev/null +++ b/icons/css-variables/folder_upload.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/css-variables/folder_upload_open.svg b/icons/css-variables/folder_upload_open.svg new file mode 100644 index 00000000..098e78a0 --- /dev/null +++ b/icons/css-variables/folder_upload_open.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/css-variables/folder_utils.svg b/icons/css-variables/folder_utils.svg new file mode 100644 index 00000000..057d82c3 --- /dev/null +++ b/icons/css-variables/folder_utils.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_utils_open.svg b/icons/css-variables/folder_utils_open.svg new file mode 100644 index 00000000..d8da0c04 --- /dev/null +++ b/icons/css-variables/folder_utils_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_vercel.svg b/icons/css-variables/folder_vercel.svg new file mode 100644 index 00000000..cf7f302f --- /dev/null +++ b/icons/css-variables/folder_vercel.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_vercel_open.svg b/icons/css-variables/folder_vercel_open.svg new file mode 100644 index 00000000..28325d8e --- /dev/null +++ b/icons/css-variables/folder_vercel_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_video.svg b/icons/css-variables/folder_video.svg new file mode 100644 index 00000000..74013041 --- /dev/null +++ b/icons/css-variables/folder_video.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_video_open.svg b/icons/css-variables/folder_video_open.svg new file mode 100644 index 00000000..f064b645 --- /dev/null +++ b/icons/css-variables/folder_video_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_views.svg b/icons/css-variables/folder_views.svg new file mode 100644 index 00000000..d29032ae --- /dev/null +++ b/icons/css-variables/folder_views.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_views_open.svg b/icons/css-variables/folder_views_open.svg new file mode 100644 index 00000000..1680e9ff --- /dev/null +++ b/icons/css-variables/folder_views_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_vscode.svg b/icons/css-variables/folder_vscode.svg new file mode 100644 index 00000000..7673453b --- /dev/null +++ b/icons/css-variables/folder_vscode.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_vscode_open.svg b/icons/css-variables/folder_vscode_open.svg new file mode 100644 index 00000000..6611b5c2 --- /dev/null +++ b/icons/css-variables/folder_vscode_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_workflows.svg b/icons/css-variables/folder_workflows.svg new file mode 100644 index 00000000..addd3e88 --- /dev/null +++ b/icons/css-variables/folder_workflows.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/folder_workflows_open.svg b/icons/css-variables/folder_workflows_open.svg new file mode 100644 index 00000000..0a473e72 --- /dev/null +++ b/icons/css-variables/folder_workflows_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/font.svg b/icons/css-variables/font.svg new file mode 100644 index 00000000..4e172c41 --- /dev/null +++ b/icons/css-variables/font.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/fortran.svg b/icons/css-variables/fortran.svg new file mode 100644 index 00000000..058a5650 --- /dev/null +++ b/icons/css-variables/fortran.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/fsharp.svg b/icons/css-variables/fsharp.svg new file mode 100644 index 00000000..7ec8bba0 --- /dev/null +++ b/icons/css-variables/fsharp.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/gatsby.svg b/icons/css-variables/gatsby.svg new file mode 100644 index 00000000..1dc0fe53 --- /dev/null +++ b/icons/css-variables/gatsby.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/git.svg b/icons/css-variables/git.svg new file mode 100644 index 00000000..78f33c5c --- /dev/null +++ b/icons/css-variables/git.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/gitlab.svg b/icons/css-variables/gitlab.svg new file mode 100644 index 00000000..3247cd22 --- /dev/null +++ b/icons/css-variables/gitlab.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/gitpod.svg b/icons/css-variables/gitpod.svg new file mode 100644 index 00000000..905a986c --- /dev/null +++ b/icons/css-variables/gitpod.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/go-mod.svg b/icons/css-variables/go-mod.svg new file mode 100644 index 00000000..3aca0e35 --- /dev/null +++ b/icons/css-variables/go-mod.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/go.svg b/icons/css-variables/go.svg new file mode 100644 index 00000000..7d978a40 --- /dev/null +++ b/icons/css-variables/go.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/godot-assets.svg b/icons/css-variables/godot-assets.svg new file mode 100644 index 00000000..f1972086 --- /dev/null +++ b/icons/css-variables/godot-assets.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/godot.svg b/icons/css-variables/godot.svg new file mode 100644 index 00000000..55d93e48 --- /dev/null +++ b/icons/css-variables/godot.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/gradle.svg b/icons/css-variables/gradle.svg new file mode 100644 index 00000000..2f49c8d0 --- /dev/null +++ b/icons/css-variables/gradle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/graphql.svg b/icons/css-variables/graphql.svg new file mode 100644 index 00000000..026dca92 --- /dev/null +++ b/icons/css-variables/graphql.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/groovy.svg b/icons/css-variables/groovy.svg new file mode 100644 index 00000000..b6adb27a --- /dev/null +++ b/icons/css-variables/groovy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/gulp.svg b/icons/css-variables/gulp.svg new file mode 100644 index 00000000..c7943145 --- /dev/null +++ b/icons/css-variables/gulp.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/haml.svg b/icons/css-variables/haml.svg new file mode 100644 index 00000000..d5878062 --- /dev/null +++ b/icons/css-variables/haml.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/css-variables/handlebars.svg b/icons/css-variables/handlebars.svg new file mode 100644 index 00000000..3f49ca78 --- /dev/null +++ b/icons/css-variables/handlebars.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/haskell.svg b/icons/css-variables/haskell.svg new file mode 100644 index 00000000..a0e8f50a --- /dev/null +++ b/icons/css-variables/haskell.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/haxe.svg b/icons/css-variables/haxe.svg new file mode 100644 index 00000000..354a1d7d --- /dev/null +++ b/icons/css-variables/haxe.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/helm.svg b/icons/css-variables/helm.svg new file mode 100644 index 00000000..d5b6ff52 --- /dev/null +++ b/icons/css-variables/helm.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/heroku.svg b/icons/css-variables/heroku.svg new file mode 100644 index 00000000..25f7f5a2 --- /dev/null +++ b/icons/css-variables/heroku.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/histoire.svg b/icons/css-variables/histoire.svg new file mode 100644 index 00000000..f37b8a14 --- /dev/null +++ b/icons/css-variables/histoire.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/html.svg b/icons/css-variables/html.svg new file mode 100644 index 00000000..a4b4ff7c --- /dev/null +++ b/icons/css-variables/html.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/http.svg b/icons/css-variables/http.svg new file mode 100644 index 00000000..a19adde5 --- /dev/null +++ b/icons/css-variables/http.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/husky.svg b/icons/css-variables/husky.svg new file mode 100644 index 00000000..75798b23 --- /dev/null +++ b/icons/css-variables/husky.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/image.svg b/icons/css-variables/image.svg new file mode 100644 index 00000000..0872a9a1 --- /dev/null +++ b/icons/css-variables/image.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/css-variables/ionic.svg b/icons/css-variables/ionic.svg new file mode 100644 index 00000000..f168dcb2 --- /dev/null +++ b/icons/css-variables/ionic.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/java-class.svg b/icons/css-variables/java-class.svg new file mode 100644 index 00000000..e1ef6c2b --- /dev/null +++ b/icons/css-variables/java-class.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/css-variables/java-jar.svg b/icons/css-variables/java-jar.svg new file mode 100644 index 00000000..e80fa774 --- /dev/null +++ b/icons/css-variables/java-jar.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/css-variables/java.svg b/icons/css-variables/java.svg new file mode 100644 index 00000000..3b7cca78 --- /dev/null +++ b/icons/css-variables/java.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/css-variables/javascript-config.svg b/icons/css-variables/javascript-config.svg new file mode 100644 index 00000000..42e06667 --- /dev/null +++ b/icons/css-variables/javascript-config.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/css-variables/javascript-map.svg b/icons/css-variables/javascript-map.svg new file mode 100644 index 00000000..1d39d2aa --- /dev/null +++ b/icons/css-variables/javascript-map.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/css-variables/javascript-react.svg b/icons/css-variables/javascript-react.svg new file mode 100644 index 00000000..67720f9e --- /dev/null +++ b/icons/css-variables/javascript-react.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/css-variables/javascript-test.svg b/icons/css-variables/javascript-test.svg new file mode 100644 index 00000000..b504c008 --- /dev/null +++ b/icons/css-variables/javascript-test.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/javascript.svg b/icons/css-variables/javascript.svg new file mode 100644 index 00000000..dd9975c7 --- /dev/null +++ b/icons/css-variables/javascript.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/jest.svg b/icons/css-variables/jest.svg new file mode 100644 index 00000000..d74f3c4e --- /dev/null +++ b/icons/css-variables/jest.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/css-variables/jinja.svg b/icons/css-variables/jinja.svg new file mode 100644 index 00000000..41db3cab --- /dev/null +++ b/icons/css-variables/jinja.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/json.svg b/icons/css-variables/json.svg new file mode 100644 index 00000000..a5a0b8d4 --- /dev/null +++ b/icons/css-variables/json.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/julia.svg b/icons/css-variables/julia.svg new file mode 100644 index 00000000..7c74905e --- /dev/null +++ b/icons/css-variables/julia.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/css-variables/jupyter.svg b/icons/css-variables/jupyter.svg new file mode 100644 index 00000000..30ddb6f6 --- /dev/null +++ b/icons/css-variables/jupyter.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/just.svg b/icons/css-variables/just.svg new file mode 100644 index 00000000..18fb7b95 --- /dev/null +++ b/icons/css-variables/just.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/icons/css-variables/key.svg b/icons/css-variables/key.svg new file mode 100644 index 00000000..434e5015 --- /dev/null +++ b/icons/css-variables/key.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/kotlin.svg b/icons/css-variables/kotlin.svg new file mode 100644 index 00000000..29c25811 --- /dev/null +++ b/icons/css-variables/kotlin.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/css-variables/laravel.svg b/icons/css-variables/laravel.svg new file mode 100644 index 00000000..8971a1e4 --- /dev/null +++ b/icons/css-variables/laravel.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/css-variables/latex.svg b/icons/css-variables/latex.svg new file mode 100644 index 00000000..8a3db13f --- /dev/null +++ b/icons/css-variables/latex.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/lerna.svg b/icons/css-variables/lerna.svg new file mode 100644 index 00000000..d269b950 --- /dev/null +++ b/icons/css-variables/lerna.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/less.svg b/icons/css-variables/less.svg new file mode 100644 index 00000000..87dd5de2 --- /dev/null +++ b/icons/css-variables/less.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/lib.svg b/icons/css-variables/lib.svg new file mode 100644 index 00000000..00bb0bda --- /dev/null +++ b/icons/css-variables/lib.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/license.svg b/icons/css-variables/license.svg new file mode 100644 index 00000000..18354cce --- /dev/null +++ b/icons/css-variables/license.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/lint-staged.svg b/icons/css-variables/lint-staged.svg new file mode 100644 index 00000000..ce4e955d --- /dev/null +++ b/icons/css-variables/lint-staged.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/css-variables/lisp.svg b/icons/css-variables/lisp.svg new file mode 100644 index 00000000..40306b95 --- /dev/null +++ b/icons/css-variables/lisp.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/log.svg b/icons/css-variables/log.svg new file mode 100644 index 00000000..83312cfa --- /dev/null +++ b/icons/css-variables/log.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/lua.svg b/icons/css-variables/lua.svg new file mode 100644 index 00000000..3931983d --- /dev/null +++ b/icons/css-variables/lua.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/makefile.svg b/icons/css-variables/makefile.svg new file mode 100644 index 00000000..012d2b2b --- /dev/null +++ b/icons/css-variables/makefile.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/markdown-mdx.svg b/icons/css-variables/markdown-mdx.svg new file mode 100644 index 00000000..82d9332f --- /dev/null +++ b/icons/css-variables/markdown-mdx.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/markdown.svg b/icons/css-variables/markdown.svg new file mode 100644 index 00000000..ec7c6ca6 --- /dev/null +++ b/icons/css-variables/markdown.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/marko.svg b/icons/css-variables/marko.svg new file mode 100644 index 00000000..ef76be1c --- /dev/null +++ b/icons/css-variables/marko.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/css-variables/matlab.svg b/icons/css-variables/matlab.svg new file mode 100644 index 00000000..b0d5e674 --- /dev/null +++ b/icons/css-variables/matlab.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/maven.svg b/icons/css-variables/maven.svg new file mode 100644 index 00000000..d36a484d --- /dev/null +++ b/icons/css-variables/maven.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/css-variables/mermaid.svg b/icons/css-variables/mermaid.svg new file mode 100644 index 00000000..0ef68417 --- /dev/null +++ b/icons/css-variables/mermaid.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/meson.svg b/icons/css-variables/meson.svg new file mode 100644 index 00000000..1019445b --- /dev/null +++ b/icons/css-variables/meson.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/mjml.svg b/icons/css-variables/mjml.svg new file mode 100644 index 00000000..d01bf8ee --- /dev/null +++ b/icons/css-variables/mjml.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/modernizr.svg b/icons/css-variables/modernizr.svg new file mode 100644 index 00000000..0154c116 --- /dev/null +++ b/icons/css-variables/modernizr.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/ms-excel.svg b/icons/css-variables/ms-excel.svg new file mode 100644 index 00000000..1bce64be --- /dev/null +++ b/icons/css-variables/ms-excel.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/ms-powerpoint.svg b/icons/css-variables/ms-powerpoint.svg new file mode 100644 index 00000000..2705454f --- /dev/null +++ b/icons/css-variables/ms-powerpoint.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/ms-word.svg b/icons/css-variables/ms-word.svg new file mode 100644 index 00000000..c082a85b --- /dev/null +++ b/icons/css-variables/ms-word.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/nativescript.svg b/icons/css-variables/nativescript.svg new file mode 100644 index 00000000..b5b29030 --- /dev/null +++ b/icons/css-variables/nativescript.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/nest.svg b/icons/css-variables/nest.svg new file mode 100644 index 00000000..24cf127c --- /dev/null +++ b/icons/css-variables/nest.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/netlify.svg b/icons/css-variables/netlify.svg new file mode 100644 index 00000000..6459966f --- /dev/null +++ b/icons/css-variables/netlify.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/next.svg b/icons/css-variables/next.svg new file mode 100644 index 00000000..774f5649 --- /dev/null +++ b/icons/css-variables/next.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/nextflow.svg b/icons/css-variables/nextflow.svg new file mode 100644 index 00000000..40ab1496 --- /dev/null +++ b/icons/css-variables/nextflow.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/nginx.svg b/icons/css-variables/nginx.svg new file mode 100644 index 00000000..50538b52 --- /dev/null +++ b/icons/css-variables/nginx.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/nim.svg b/icons/css-variables/nim.svg new file mode 100644 index 00000000..c301f3d3 --- /dev/null +++ b/icons/css-variables/nim.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/ninja.svg b/icons/css-variables/ninja.svg new file mode 100644 index 00000000..24357be1 --- /dev/null +++ b/icons/css-variables/ninja.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/nix-lock.svg b/icons/css-variables/nix-lock.svg new file mode 100644 index 00000000..fa501ae1 --- /dev/null +++ b/icons/css-variables/nix-lock.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons/css-variables/nix.svg b/icons/css-variables/nix.svg new file mode 100644 index 00000000..c0a5ab50 --- /dev/null +++ b/icons/css-variables/nix.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons/css-variables/nodemon.svg b/icons/css-variables/nodemon.svg new file mode 100644 index 00000000..26336cf8 --- /dev/null +++ b/icons/css-variables/nodemon.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/npm-ignore.svg b/icons/css-variables/npm-ignore.svg new file mode 100644 index 00000000..5e528abb --- /dev/null +++ b/icons/css-variables/npm-ignore.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/npm-lock.svg b/icons/css-variables/npm-lock.svg new file mode 100644 index 00000000..ac160957 --- /dev/null +++ b/icons/css-variables/npm-lock.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/css-variables/npm.svg b/icons/css-variables/npm.svg new file mode 100644 index 00000000..491f5edd --- /dev/null +++ b/icons/css-variables/npm.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/nuget.svg b/icons/css-variables/nuget.svg new file mode 100644 index 00000000..899220e7 --- /dev/null +++ b/icons/css-variables/nuget.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/nunjucks.svg b/icons/css-variables/nunjucks.svg new file mode 100644 index 00000000..745a14d0 --- /dev/null +++ b/icons/css-variables/nunjucks.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/nuxt-ignore.svg b/icons/css-variables/nuxt-ignore.svg new file mode 100644 index 00000000..eb8c0d34 --- /dev/null +++ b/icons/css-variables/nuxt-ignore.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/nuxt.svg b/icons/css-variables/nuxt.svg new file mode 100644 index 00000000..11a60fed --- /dev/null +++ b/icons/css-variables/nuxt.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/ocaml.svg b/icons/css-variables/ocaml.svg new file mode 100644 index 00000000..fd02a2ae --- /dev/null +++ b/icons/css-variables/ocaml.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/css-variables/package-json.svg b/icons/css-variables/package-json.svg new file mode 100644 index 00000000..b451f90b --- /dev/null +++ b/icons/css-variables/package-json.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/panda-css.svg b/icons/css-variables/panda-css.svg new file mode 100644 index 00000000..07b005b0 --- /dev/null +++ b/icons/css-variables/panda-css.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/pdf.svg b/icons/css-variables/pdf.svg new file mode 100644 index 00000000..bf12398a --- /dev/null +++ b/icons/css-variables/pdf.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/perl.svg b/icons/css-variables/perl.svg new file mode 100644 index 00000000..9d5d961f --- /dev/null +++ b/icons/css-variables/perl.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/phrase.svg b/icons/css-variables/phrase.svg new file mode 100644 index 00000000..c206c1da --- /dev/null +++ b/icons/css-variables/phrase.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/playwright.svg b/icons/css-variables/playwright.svg new file mode 100644 index 00000000..830503e9 --- /dev/null +++ b/icons/css-variables/playwright.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/css-variables/plop.svg b/icons/css-variables/plop.svg new file mode 100644 index 00000000..e3d27cd4 --- /dev/null +++ b/icons/css-variables/plop.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/pnpm-lock.svg b/icons/css-variables/pnpm-lock.svg new file mode 100644 index 00000000..48134edc --- /dev/null +++ b/icons/css-variables/pnpm-lock.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/css-variables/pnpm.svg b/icons/css-variables/pnpm.svg new file mode 100644 index 00000000..ba65015c --- /dev/null +++ b/icons/css-variables/pnpm.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/css-variables/postcss.svg b/icons/css-variables/postcss.svg new file mode 100644 index 00000000..ed11d2ba --- /dev/null +++ b/icons/css-variables/postcss.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/css-variables/powershell.svg b/icons/css-variables/powershell.svg new file mode 100644 index 00000000..13dbce04 --- /dev/null +++ b/icons/css-variables/powershell.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/premake.svg b/icons/css-variables/premake.svg new file mode 100644 index 00000000..020202b8 --- /dev/null +++ b/icons/css-variables/premake.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/css-variables/prettier-ignore.svg b/icons/css-variables/prettier-ignore.svg new file mode 100644 index 00000000..c0b94976 --- /dev/null +++ b/icons/css-variables/prettier-ignore.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/prettier.svg b/icons/css-variables/prettier.svg new file mode 100644 index 00000000..b59dcbb2 --- /dev/null +++ b/icons/css-variables/prettier.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/css-variables/prisma.svg b/icons/css-variables/prisma.svg new file mode 100644 index 00000000..56971309 --- /dev/null +++ b/icons/css-variables/prisma.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/prolog.svg b/icons/css-variables/prolog.svg new file mode 100644 index 00000000..873f089a --- /dev/null +++ b/icons/css-variables/prolog.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/properties.svg b/icons/css-variables/properties.svg new file mode 100644 index 00000000..82cd33f3 --- /dev/null +++ b/icons/css-variables/properties.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/proto.svg b/icons/css-variables/proto.svg new file mode 100644 index 00000000..dcb7b50a --- /dev/null +++ b/icons/css-variables/proto.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/css-variables/pug.svg b/icons/css-variables/pug.svg new file mode 100644 index 00000000..ecc1ae4b --- /dev/null +++ b/icons/css-variables/pug.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/python-compiled.svg b/icons/css-variables/python-compiled.svg new file mode 100644 index 00000000..426a0574 --- /dev/null +++ b/icons/css-variables/python-compiled.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/css-variables/python.svg b/icons/css-variables/python.svg new file mode 100644 index 00000000..28c8a603 --- /dev/null +++ b/icons/css-variables/python.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/css-variables/r.svg b/icons/css-variables/r.svg new file mode 100644 index 00000000..87525d4a --- /dev/null +++ b/icons/css-variables/r.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/racket.svg b/icons/css-variables/racket.svg new file mode 100644 index 00000000..656132d8 --- /dev/null +++ b/icons/css-variables/racket.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/razor.svg b/icons/css-variables/razor.svg new file mode 100644 index 00000000..1f3ce8fb --- /dev/null +++ b/icons/css-variables/razor.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/readme.svg b/icons/css-variables/readme.svg new file mode 100644 index 00000000..d92a4c6e --- /dev/null +++ b/icons/css-variables/readme.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/reason.svg b/icons/css-variables/reason.svg new file mode 100644 index 00000000..b378b830 --- /dev/null +++ b/icons/css-variables/reason.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/redwood.svg b/icons/css-variables/redwood.svg new file mode 100644 index 00000000..b400f359 --- /dev/null +++ b/icons/css-variables/redwood.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/remix.svg b/icons/css-variables/remix.svg new file mode 100644 index 00000000..ca4c6472 --- /dev/null +++ b/icons/css-variables/remix.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/renovate.svg b/icons/css-variables/renovate.svg new file mode 100644 index 00000000..cb3b60b9 --- /dev/null +++ b/icons/css-variables/renovate.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/rescript.svg b/icons/css-variables/rescript.svg new file mode 100644 index 00000000..a8f9a4ef --- /dev/null +++ b/icons/css-variables/rescript.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/robots.svg b/icons/css-variables/robots.svg new file mode 100644 index 00000000..dddfc258 --- /dev/null +++ b/icons/css-variables/robots.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/rollup.svg b/icons/css-variables/rollup.svg new file mode 100644 index 00000000..eb1ff3be --- /dev/null +++ b/icons/css-variables/rollup.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/ruby-gem-lock.svg b/icons/css-variables/ruby-gem-lock.svg new file mode 100644 index 00000000..55012bdc --- /dev/null +++ b/icons/css-variables/ruby-gem-lock.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/css-variables/ruby-gem.svg b/icons/css-variables/ruby-gem.svg new file mode 100644 index 00000000..7cf894a5 --- /dev/null +++ b/icons/css-variables/ruby-gem.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/ruby.svg b/icons/css-variables/ruby.svg new file mode 100644 index 00000000..bc436465 --- /dev/null +++ b/icons/css-variables/ruby.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/rust.svg b/icons/css-variables/rust.svg new file mode 100644 index 00000000..1463c41e --- /dev/null +++ b/icons/css-variables/rust.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/sass.svg b/icons/css-variables/sass.svg new file mode 100644 index 00000000..1a433d8c --- /dev/null +++ b/icons/css-variables/sass.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/scala.svg b/icons/css-variables/scala.svg new file mode 100644 index 00000000..a329ba90 --- /dev/null +++ b/icons/css-variables/scala.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/search.svg b/icons/css-variables/search.svg new file mode 100644 index 00000000..66da9fcd --- /dev/null +++ b/icons/css-variables/search.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/semantic-release.svg b/icons/css-variables/semantic-release.svg new file mode 100644 index 00000000..7032dc9c --- /dev/null +++ b/icons/css-variables/semantic-release.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/semgrep-ignore.svg b/icons/css-variables/semgrep-ignore.svg new file mode 100644 index 00000000..4a5448e4 --- /dev/null +++ b/icons/css-variables/semgrep-ignore.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/semgrep.svg b/icons/css-variables/semgrep.svg new file mode 100644 index 00000000..9aeee7f1 --- /dev/null +++ b/icons/css-variables/semgrep.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/sentry.svg b/icons/css-variables/sentry.svg new file mode 100644 index 00000000..845f54b5 --- /dev/null +++ b/icons/css-variables/sentry.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/serverless.svg b/icons/css-variables/serverless.svg new file mode 100644 index 00000000..ec0504b4 --- /dev/null +++ b/icons/css-variables/serverless.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/shader.svg b/icons/css-variables/shader.svg new file mode 100644 index 00000000..fd03663b --- /dev/null +++ b/icons/css-variables/shader.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/sketch.svg b/icons/css-variables/sketch.svg new file mode 100644 index 00000000..26e8c035 --- /dev/null +++ b/icons/css-variables/sketch.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/snowpack.svg b/icons/css-variables/snowpack.svg new file mode 100644 index 00000000..f96f5b68 --- /dev/null +++ b/icons/css-variables/snowpack.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/solidity.svg b/icons/css-variables/solidity.svg new file mode 100644 index 00000000..d6446fba --- /dev/null +++ b/icons/css-variables/solidity.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/sonar-cloud.svg b/icons/css-variables/sonar-cloud.svg new file mode 100644 index 00000000..7c4ffe97 --- /dev/null +++ b/icons/css-variables/sonar-cloud.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/css-variables/stackblitz.svg b/icons/css-variables/stackblitz.svg new file mode 100644 index 00000000..86d6f655 --- /dev/null +++ b/icons/css-variables/stackblitz.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/stencil.svg b/icons/css-variables/stencil.svg new file mode 100644 index 00000000..15dadc20 --- /dev/null +++ b/icons/css-variables/stencil.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/stitches.svg b/icons/css-variables/stitches.svg new file mode 100644 index 00000000..4ff9d972 --- /dev/null +++ b/icons/css-variables/stitches.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/css-variables/storybook-svelte.svg b/icons/css-variables/storybook-svelte.svg new file mode 100644 index 00000000..11f553b3 --- /dev/null +++ b/icons/css-variables/storybook-svelte.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/storybook-vue.svg b/icons/css-variables/storybook-vue.svg new file mode 100644 index 00000000..1f7d0494 --- /dev/null +++ b/icons/css-variables/storybook-vue.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/storybook.svg b/icons/css-variables/storybook.svg new file mode 100644 index 00000000..3b62e55b --- /dev/null +++ b/icons/css-variables/storybook.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/stylelint-ignore.svg b/icons/css-variables/stylelint-ignore.svg new file mode 100644 index 00000000..060d757b --- /dev/null +++ b/icons/css-variables/stylelint-ignore.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/css-variables/stylelint.svg b/icons/css-variables/stylelint.svg new file mode 100644 index 00000000..faa0d39b --- /dev/null +++ b/icons/css-variables/stylelint.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/css-variables/sublime.svg b/icons/css-variables/sublime.svg new file mode 100644 index 00000000..c7edaac5 --- /dev/null +++ b/icons/css-variables/sublime.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/svelte-config.svg b/icons/css-variables/svelte-config.svg new file mode 100644 index 00000000..692c06dc --- /dev/null +++ b/icons/css-variables/svelte-config.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/svelte.svg b/icons/css-variables/svelte.svg new file mode 100644 index 00000000..5b43ddd2 --- /dev/null +++ b/icons/css-variables/svelte.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/svg.svg b/icons/css-variables/svg.svg new file mode 100644 index 00000000..26dc836c --- /dev/null +++ b/icons/css-variables/svg.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/swift.svg b/icons/css-variables/swift.svg new file mode 100644 index 00000000..bccdcb58 --- /dev/null +++ b/icons/css-variables/swift.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/tailwind.svg b/icons/css-variables/tailwind.svg new file mode 100644 index 00000000..8f1c0c2c --- /dev/null +++ b/icons/css-variables/tailwind.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/tauri-ignore.svg b/icons/css-variables/tauri-ignore.svg new file mode 100644 index 00000000..2b9268e5 --- /dev/null +++ b/icons/css-variables/tauri-ignore.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/tauri.svg b/icons/css-variables/tauri.svg new file mode 100644 index 00000000..15736964 --- /dev/null +++ b/icons/css-variables/tauri.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/css-variables/terraform.svg b/icons/css-variables/terraform.svg new file mode 100644 index 00000000..104da6dd --- /dev/null +++ b/icons/css-variables/terraform.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/text.svg b/icons/css-variables/text.svg new file mode 100644 index 00000000..c007bcdf --- /dev/null +++ b/icons/css-variables/text.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/todo.svg b/icons/css-variables/todo.svg new file mode 100644 index 00000000..713935af --- /dev/null +++ b/icons/css-variables/todo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/toml.svg b/icons/css-variables/toml.svg new file mode 100644 index 00000000..99b325a4 --- /dev/null +++ b/icons/css-variables/toml.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/twine.svg b/icons/css-variables/twine.svg new file mode 100644 index 00000000..c110f32b --- /dev/null +++ b/icons/css-variables/twine.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/typescript-config.svg b/icons/css-variables/typescript-config.svg new file mode 100644 index 00000000..f959a40f --- /dev/null +++ b/icons/css-variables/typescript-config.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/css-variables/typescript-def.svg b/icons/css-variables/typescript-def.svg new file mode 100644 index 00000000..e1c6452e --- /dev/null +++ b/icons/css-variables/typescript-def.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/css-variables/typescript-react.svg b/icons/css-variables/typescript-react.svg new file mode 100644 index 00000000..09b7e6ae --- /dev/null +++ b/icons/css-variables/typescript-react.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/css-variables/typescript-test.svg b/icons/css-variables/typescript-test.svg new file mode 100644 index 00000000..59388381 --- /dev/null +++ b/icons/css-variables/typescript-test.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/typescript.svg b/icons/css-variables/typescript.svg new file mode 100644 index 00000000..591a3ea9 --- /dev/null +++ b/icons/css-variables/typescript.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/unity.svg b/icons/css-variables/unity.svg new file mode 100644 index 00000000..c2e94853 --- /dev/null +++ b/icons/css-variables/unity.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/unocss.svg b/icons/css-variables/unocss.svg new file mode 100644 index 00000000..ca54d40d --- /dev/null +++ b/icons/css-variables/unocss.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/url.svg b/icons/css-variables/url.svg new file mode 100644 index 00000000..8bf2b134 --- /dev/null +++ b/icons/css-variables/url.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/v.svg b/icons/css-variables/v.svg new file mode 100644 index 00000000..c5f573fe --- /dev/null +++ b/icons/css-variables/v.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/vercel-ignore.svg b/icons/css-variables/vercel-ignore.svg new file mode 100644 index 00000000..3f29b1eb --- /dev/null +++ b/icons/css-variables/vercel-ignore.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/vercel.svg b/icons/css-variables/vercel.svg new file mode 100644 index 00000000..cde61502 --- /dev/null +++ b/icons/css-variables/vercel.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/verilog.svg b/icons/css-variables/verilog.svg new file mode 100644 index 00000000..c04c399e --- /dev/null +++ b/icons/css-variables/verilog.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/video.svg b/icons/css-variables/video.svg new file mode 100644 index 00000000..29b66f47 --- /dev/null +++ b/icons/css-variables/video.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/vim.svg b/icons/css-variables/vim.svg new file mode 100644 index 00000000..e5c13f53 --- /dev/null +++ b/icons/css-variables/vim.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/visual-studio.svg b/icons/css-variables/visual-studio.svg new file mode 100644 index 00000000..43dcd0dc --- /dev/null +++ b/icons/css-variables/visual-studio.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/vite.svg b/icons/css-variables/vite.svg new file mode 100644 index 00000000..8b1819bd --- /dev/null +++ b/icons/css-variables/vite.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/vitest.svg b/icons/css-variables/vitest.svg new file mode 100644 index 00000000..7817463a --- /dev/null +++ b/icons/css-variables/vitest.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/vs-codium.svg b/icons/css-variables/vs-codium.svg new file mode 100644 index 00000000..05e27836 --- /dev/null +++ b/icons/css-variables/vs-codium.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/css-variables/vscode-ignore.svg b/icons/css-variables/vscode-ignore.svg new file mode 100644 index 00000000..d716c5d6 --- /dev/null +++ b/icons/css-variables/vscode-ignore.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/vscode.svg b/icons/css-variables/vscode.svg new file mode 100644 index 00000000..be951d6c --- /dev/null +++ b/icons/css-variables/vscode.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/vue-config.svg b/icons/css-variables/vue-config.svg new file mode 100644 index 00000000..6ad654cd --- /dev/null +++ b/icons/css-variables/vue-config.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/vue.svg b/icons/css-variables/vue.svg new file mode 100644 index 00000000..b94a3d32 --- /dev/null +++ b/icons/css-variables/vue.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/web-assembly.svg b/icons/css-variables/web-assembly.svg new file mode 100644 index 00000000..b43768f1 --- /dev/null +++ b/icons/css-variables/web-assembly.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/css-variables/webpack.svg b/icons/css-variables/webpack.svg new file mode 100644 index 00000000..b6a17530 --- /dev/null +++ b/icons/css-variables/webpack.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/css-variables/windi.svg b/icons/css-variables/windi.svg new file mode 100644 index 00000000..524c69a5 --- /dev/null +++ b/icons/css-variables/windi.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/workflow.svg b/icons/css-variables/workflow.svg new file mode 100644 index 00000000..a1ed99fc --- /dev/null +++ b/icons/css-variables/workflow.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/xaml.svg b/icons/css-variables/xaml.svg new file mode 100644 index 00000000..38ee46fc --- /dev/null +++ b/icons/css-variables/xaml.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/css-variables/xmake.svg b/icons/css-variables/xmake.svg new file mode 100644 index 00000000..ddc5a4a3 --- /dev/null +++ b/icons/css-variables/xmake.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/css-variables/xml.svg b/icons/css-variables/xml.svg new file mode 100644 index 00000000..d811f868 --- /dev/null +++ b/icons/css-variables/xml.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/yaml.svg b/icons/css-variables/yaml.svg new file mode 100644 index 00000000..02c6e7d4 --- /dev/null +++ b/icons/css-variables/yaml.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/yarn-lock.svg b/icons/css-variables/yarn-lock.svg new file mode 100644 index 00000000..9b28de8c --- /dev/null +++ b/icons/css-variables/yarn-lock.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/css-variables/yarn.svg b/icons/css-variables/yarn.svg new file mode 100644 index 00000000..47d8a3d9 --- /dev/null +++ b/icons/css-variables/yarn.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css-variables/zig.svg b/icons/css-variables/zig.svg new file mode 100644 index 00000000..da4328da --- /dev/null +++ b/icons/css-variables/zig.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/css.svg b/icons/css.svg deleted file mode 100644 index d69e75ef..00000000 --- a/icons/css.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/css_map.svg b/icons/css_map.svg deleted file mode 100644 index da4fe5a7..00000000 --- a/icons/css_map.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/csv.svg b/icons/csv.svg deleted file mode 100644 index 66ed468b..00000000 --- a/icons/csv.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/cucumber.svg b/icons/cucumber.svg deleted file mode 100644 index 01a16a72..00000000 --- a/icons/cucumber.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/cuda.svg b/icons/cuda.svg deleted file mode 100644 index e3ec4a0f..00000000 --- a/icons/cuda.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/cypress.svg b/icons/cypress.svg deleted file mode 100644 index 12abcc2a..00000000 --- a/icons/cypress.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/d.svg b/icons/d.svg deleted file mode 100644 index b50995ec..00000000 --- a/icons/d.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons/dart.svg b/icons/dart.svg deleted file mode 100644 index cd2d1327..00000000 --- a/icons/dart.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/dart_generated.svg b/icons/dart_generated.svg deleted file mode 100644 index c992b418..00000000 --- a/icons/dart_generated.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/database.svg b/icons/database.svg deleted file mode 100644 index 77c63a65..00000000 --- a/icons/database.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/deno.svg b/icons/deno.svg deleted file mode 100644 index 0e452f62..00000000 --- a/icons/deno.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/deno_lock.svg b/icons/deno_lock.svg deleted file mode 100644 index 01b5283d..00000000 --- a/icons/deno_lock.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/dependabot.svg b/icons/dependabot.svg deleted file mode 100644 index ddbd30e2..00000000 --- a/icons/dependabot.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/dhall.svg b/icons/dhall.svg deleted file mode 100644 index 8a97557f..00000000 --- a/icons/dhall.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/icons/diff.svg b/icons/diff.svg deleted file mode 100644 index eb43e685..00000000 --- a/icons/diff.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/django.svg b/icons/django.svg deleted file mode 100644 index 1cfe4e5c..00000000 --- a/icons/django.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/doc.svg b/icons/doc.svg deleted file mode 100644 index c655fa96..00000000 --- a/icons/doc.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/docker.svg b/icons/docker.svg deleted file mode 100644 index 8281e1d4..00000000 --- a/icons/docker.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/icons/docker_compose.svg b/icons/docker_compose.svg deleted file mode 100644 index 2315f0ec..00000000 --- a/icons/docker_compose.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/icons/docker_ignore.svg b/icons/docker_ignore.svg deleted file mode 100644 index e85e92b3..00000000 --- a/icons/docker_ignore.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/icons/dub.svg b/icons/dub.svg deleted file mode 100644 index f4fb0eba..00000000 --- a/icons/dub.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/icons/dub_selections.svg b/icons/dub_selections.svg deleted file mode 100644 index 2e64ac6b..00000000 --- a/icons/dub_selections.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/editorconfig.svg b/icons/editorconfig.svg deleted file mode 100644 index 4aa1ea1a..00000000 --- a/icons/editorconfig.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/icons/elixir.svg b/icons/elixir.svg deleted file mode 100644 index cc945d76..00000000 --- a/icons/elixir.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/elm.svg b/icons/elm.svg deleted file mode 100644 index cfb198e7..00000000 --- a/icons/elm.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/icons/ember.svg b/icons/ember.svg deleted file mode 100644 index 5a33108a..00000000 --- a/icons/ember.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/env.svg b/icons/env.svg deleted file mode 100644 index 9c4d4ec3..00000000 --- a/icons/env.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/erlang.svg b/icons/erlang.svg deleted file mode 100644 index ce12ea28..00000000 --- a/icons/erlang.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/eslint.svg b/icons/eslint.svg deleted file mode 100644 index dc70b184..00000000 --- a/icons/eslint.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/eslint_ignore.svg b/icons/eslint_ignore.svg deleted file mode 100644 index 66bbe1c1..00000000 --- a/icons/eslint_ignore.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/favicon.svg b/icons/favicon.svg deleted file mode 100644 index 2c596173..00000000 --- a/icons/favicon.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/file.svg b/icons/file.svg deleted file mode 100644 index bcf429d3..00000000 --- a/icons/file.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/firebase.svg b/icons/firebase.svg deleted file mode 100644 index 9e440f29..00000000 --- a/icons/firebase.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/folder.svg b/icons/folder.svg deleted file mode 100644 index 063494cb..00000000 --- a/icons/folder.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/folder__open.svg b/icons/folder__open.svg deleted file mode 100644 index f5c6ab50..00000000 --- a/icons/folder__open.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/folder_api.svg b/icons/folder_api.svg deleted file mode 100644 index 29f781ff..00000000 --- a/icons/folder_api.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/folder_api__open.svg b/icons/folder_api__open.svg deleted file mode 100644 index 793ecb0e..00000000 --- a/icons/folder_api__open.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/folder_benchmarks.svg b/icons/folder_benchmarks.svg deleted file mode 100644 index aa1cfa3f..00000000 --- a/icons/folder_benchmarks.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/folder_benchmarks__open.svg b/icons/folder_benchmarks__open.svg deleted file mode 100644 index c0beb490..00000000 --- a/icons/folder_benchmarks__open.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/folder_client.svg b/icons/folder_client.svg deleted file mode 100644 index 035fe387..00000000 --- a/icons/folder_client.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/folder_client__open.svg b/icons/folder_client__open.svg deleted file mode 100644 index cf9197aa..00000000 --- a/icons/folder_client__open.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/folder_components.svg b/icons/folder_components.svg deleted file mode 100644 index 4cd9b30a..00000000 --- a/icons/folder_components.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/folder_components__open.svg b/icons/folder_components__open.svg deleted file mode 100644 index 0315e323..00000000 --- a/icons/folder_components__open.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/folder_composables.svg b/icons/folder_composables.svg deleted file mode 100644 index d89b1e7e..00000000 --- a/icons/folder_composables.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/folder_composables__open.svg b/icons/folder_composables__open.svg deleted file mode 100644 index 54cb3973..00000000 --- a/icons/folder_composables__open.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/folder_config.svg b/icons/folder_config.svg deleted file mode 100644 index 4764db26..00000000 --- a/icons/folder_config.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/folder_config__open.svg b/icons/folder_config__open.svg deleted file mode 100644 index cc2f030b..00000000 --- a/icons/folder_config__open.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/folder_controllers.svg b/icons/folder_controllers.svg deleted file mode 100644 index f2597066..00000000 --- a/icons/folder_controllers.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/folder_controllers__open.svg b/icons/folder_controllers__open.svg deleted file mode 100644 index b9fc6b95..00000000 --- a/icons/folder_controllers__open.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/folder_coverage.svg b/icons/folder_coverage.svg deleted file mode 100644 index f88d7097..00000000 --- a/icons/folder_coverage.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/folder_coverage__open.svg b/icons/folder_coverage__open.svg deleted file mode 100644 index 250da4c2..00000000 --- a/icons/folder_coverage__open.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/folder_cypress.svg b/icons/folder_cypress.svg deleted file mode 100644 index c07b32c1..00000000 --- a/icons/folder_cypress.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/folder_cypress__open.svg b/icons/folder_cypress__open.svg deleted file mode 100644 index 56317b42..00000000 --- a/icons/folder_cypress__open.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/folder_dist.svg b/icons/folder_dist.svg deleted file mode 100644 index cb4c7849..00000000 --- a/icons/folder_dist.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/folder_dist__open.svg b/icons/folder_dist__open.svg deleted file mode 100644 index 8ecd195a..00000000 --- a/icons/folder_dist__open.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/folder_docs.svg b/icons/folder_docs.svg deleted file mode 100644 index 8d797d80..00000000 --- a/icons/folder_docs.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/folder_docs__open.svg b/icons/folder_docs__open.svg deleted file mode 100644 index 7452b901..00000000 --- a/icons/folder_docs__open.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/folder_examples.svg b/icons/folder_examples.svg deleted file mode 100644 index cfb855ac..00000000 --- a/icons/folder_examples.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/folder_examples__open.svg b/icons/folder_examples__open.svg deleted file mode 100644 index 5d34c8cd..00000000 --- a/icons/folder_examples__open.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/folder_fonts.svg b/icons/folder_fonts.svg deleted file mode 100644 index b51b3c2c..00000000 --- a/icons/folder_fonts.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/folder_fonts__open.svg b/icons/folder_fonts__open.svg deleted file mode 100644 index e485d52d..00000000 --- a/icons/folder_fonts__open.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/folder_functions.svg b/icons/folder_functions.svg deleted file mode 100644 index e3b645e2..00000000 --- a/icons/folder_functions.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/folder_functions__open.svg b/icons/folder_functions__open.svg deleted file mode 100644 index 2fb1f166..00000000 --- a/icons/folder_functions__open.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/folder_github.svg b/icons/folder_github.svg deleted file mode 100644 index a38cb85c..00000000 --- a/icons/folder_github.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/folder_github__open.svg b/icons/folder_github__open.svg deleted file mode 100644 index 4b1247f1..00000000 --- a/icons/folder_github__open.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/folder_husky.svg b/icons/folder_husky.svg deleted file mode 100644 index 3db870ec..00000000 --- a/icons/folder_husky.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/icons/folder_husky__open.svg b/icons/folder_husky__open.svg deleted file mode 100644 index 7c831f63..00000000 --- a/icons/folder_husky__open.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/icons/folder_images.svg b/icons/folder_images.svg deleted file mode 100644 index 4e621ebb..00000000 --- a/icons/folder_images.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/folder_images__open.svg b/icons/folder_images__open.svg deleted file mode 100644 index f61c37c6..00000000 --- a/icons/folder_images__open.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/folder_layouts.svg b/icons/folder_layouts.svg deleted file mode 100644 index 3271c981..00000000 --- a/icons/folder_layouts.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/folder_layouts__open.svg b/icons/folder_layouts__open.svg deleted file mode 100644 index 7803bf42..00000000 --- a/icons/folder_layouts__open.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/folder_locales.svg b/icons/folder_locales.svg deleted file mode 100644 index 58240011..00000000 --- a/icons/folder_locales.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/folder_locales__open.svg b/icons/folder_locales__open.svg deleted file mode 100644 index 1f325e76..00000000 --- a/icons/folder_locales__open.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/folder_mocks.svg b/icons/folder_mocks.svg deleted file mode 100644 index e4fc62d4..00000000 --- a/icons/folder_mocks.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/folder_mocks__open.svg b/icons/folder_mocks__open.svg deleted file mode 100644 index aab192f4..00000000 --- a/icons/folder_mocks__open.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/folder_next.svg b/icons/folder_next.svg deleted file mode 100644 index 7d4a2f3c..00000000 --- a/icons/folder_next.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/folder_next__open.svg b/icons/folder_next__open.svg deleted file mode 100644 index d7bcc055..00000000 --- a/icons/folder_next__open.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/folder_node.svg b/icons/folder_node.svg deleted file mode 100644 index b528fcae..00000000 --- a/icons/folder_node.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/folder_node__open.svg b/icons/folder_node__open.svg deleted file mode 100644 index 43554e16..00000000 --- a/icons/folder_node__open.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/folder_nuxt.svg b/icons/folder_nuxt.svg deleted file mode 100644 index eecbd945..00000000 --- a/icons/folder_nuxt.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/folder_nuxt__open.svg b/icons/folder_nuxt__open.svg deleted file mode 100644 index 70c86652..00000000 --- a/icons/folder_nuxt__open.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/folder_packages.svg b/icons/folder_packages.svg deleted file mode 100644 index efe1d5fe..00000000 --- a/icons/folder_packages.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/folder_packages__open.svg b/icons/folder_packages__open.svg deleted file mode 100644 index 66ea4429..00000000 --- a/icons/folder_packages__open.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/folder_playground.svg b/icons/folder_playground.svg deleted file mode 100644 index eaaa3a7f..00000000 --- a/icons/folder_playground.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/folder_playground__open.svg b/icons/folder_playground__open.svg deleted file mode 100644 index bc4a8523..00000000 --- a/icons/folder_playground__open.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/folder_plugins.svg b/icons/folder_plugins.svg deleted file mode 100644 index e88520e5..00000000 --- a/icons/folder_plugins.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/folder_plugins__open.svg b/icons/folder_plugins__open.svg deleted file mode 100644 index d1302074..00000000 --- a/icons/folder_plugins__open.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/folder_public.svg b/icons/folder_public.svg deleted file mode 100644 index 85257007..00000000 --- a/icons/folder_public.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/folder_public__open.svg b/icons/folder_public__open.svg deleted file mode 100644 index 21b775af..00000000 --- a/icons/folder_public__open.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/folder_root.svg b/icons/folder_root.svg deleted file mode 100644 index 340288b1..00000000 --- a/icons/folder_root.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/folder_root__open.svg b/icons/folder_root__open.svg deleted file mode 100644 index 8f8d234d..00000000 --- a/icons/folder_root__open.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/folder_routes.svg b/icons/folder_routes.svg deleted file mode 100644 index 4b467d9f..00000000 --- a/icons/folder_routes.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/folder_routes__open.svg b/icons/folder_routes__open.svg deleted file mode 100644 index 03ea2523..00000000 --- a/icons/folder_routes__open.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/folder_sass.svg b/icons/folder_sass.svg deleted file mode 100644 index de09c220..00000000 --- a/icons/folder_sass.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/folder_sass__open.svg b/icons/folder_sass__open.svg deleted file mode 100644 index dee6ef11..00000000 --- a/icons/folder_sass__open.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/folder_scripts.svg b/icons/folder_scripts.svg deleted file mode 100644 index 4ae517bf..00000000 --- a/icons/folder_scripts.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/folder_scripts__open.svg b/icons/folder_scripts__open.svg deleted file mode 100644 index bca29e77..00000000 --- a/icons/folder_scripts__open.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/folder_server.svg b/icons/folder_server.svg deleted file mode 100644 index 43b5c336..00000000 --- a/icons/folder_server.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/folder_server__open.svg b/icons/folder_server__open.svg deleted file mode 100644 index 46da0463..00000000 --- a/icons/folder_server__open.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/folder_src.svg b/icons/folder_src.svg deleted file mode 100644 index 7c954f24..00000000 --- a/icons/folder_src.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/folder_src__open.svg b/icons/folder_src__open.svg deleted file mode 100644 index 92243ac1..00000000 --- a/icons/folder_src__open.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/folder_storybook.svg b/icons/folder_storybook.svg deleted file mode 100644 index d18a1c60..00000000 --- a/icons/folder_storybook.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/folder_storybook__open.svg b/icons/folder_storybook__open.svg deleted file mode 100644 index ecda1d98..00000000 --- a/icons/folder_storybook__open.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/folder_styles.svg b/icons/folder_styles.svg deleted file mode 100644 index 0ba4fbfd..00000000 --- a/icons/folder_styles.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/folder_styles__open.svg b/icons/folder_styles__open.svg deleted file mode 100644 index 06883032..00000000 --- a/icons/folder_styles__open.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/folder_templates.svg b/icons/folder_templates.svg deleted file mode 100644 index 0d565731..00000000 --- a/icons/folder_templates.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/folder_templates__open.svg b/icons/folder_templates__open.svg deleted file mode 100644 index b8939450..00000000 --- a/icons/folder_templates__open.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/folder_tests.svg b/icons/folder_tests.svg deleted file mode 100644 index 85dba9e1..00000000 --- a/icons/folder_tests.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/folder_tests__open.svg b/icons/folder_tests__open.svg deleted file mode 100644 index 30deb6b0..00000000 --- a/icons/folder_tests__open.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/folder_types.svg b/icons/folder_types.svg deleted file mode 100644 index 18edf2c1..00000000 --- a/icons/folder_types.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/folder_types__open.svg b/icons/folder_types__open.svg deleted file mode 100644 index 4051bba7..00000000 --- a/icons/folder_types__open.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/folder_utils.svg b/icons/folder_utils.svg deleted file mode 100644 index 977cf5cf..00000000 --- a/icons/folder_utils.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/folder_utils__open.svg b/icons/folder_utils__open.svg deleted file mode 100644 index e3c9b8e4..00000000 --- a/icons/folder_utils__open.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/folder_views.svg b/icons/folder_views.svg deleted file mode 100644 index 62fa3ba9..00000000 --- a/icons/folder_views.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/folder_views__open.svg b/icons/folder_views__open.svg deleted file mode 100644 index 26f713ef..00000000 --- a/icons/folder_views__open.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/folder_vscode.svg b/icons/folder_vscode.svg deleted file mode 100644 index 5119e048..00000000 --- a/icons/folder_vscode.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/folder_vscode__open.svg b/icons/folder_vscode__open.svg deleted file mode 100644 index b6eccec8..00000000 --- a/icons/folder_vscode__open.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/folder_workflows.svg b/icons/folder_workflows.svg deleted file mode 100644 index 616df353..00000000 --- a/icons/folder_workflows.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/folder_workflows__open.svg b/icons/folder_workflows__open.svg deleted file mode 100644 index 0f367f5a..00000000 --- a/icons/folder_workflows__open.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/folder_yarn.svg b/icons/folder_yarn.svg deleted file mode 100644 index 7b3cc295..00000000 --- a/icons/folder_yarn.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/icons/folder_yarn__open.svg b/icons/folder_yarn__open.svg deleted file mode 100644 index fbc331be..00000000 --- a/icons/folder_yarn__open.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/icons/font.svg b/icons/font.svg deleted file mode 100644 index 47c39499..00000000 --- a/icons/font.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/fortran.svg b/icons/fortran.svg deleted file mode 100644 index 1b0ccabc..00000000 --- a/icons/fortran.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/icons/frappe/_file.svg b/icons/frappe/_file.svg new file mode 100644 index 00000000..ebc55934 --- /dev/null +++ b/icons/frappe/_file.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/_folder.svg b/icons/frappe/_folder.svg new file mode 100644 index 00000000..c65140be --- /dev/null +++ b/icons/frappe/_folder.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/_folder_open.svg b/icons/frappe/_folder_open.svg new file mode 100644 index 00000000..c7ff3f1a --- /dev/null +++ b/icons/frappe/_folder_open.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/adonis.svg b/icons/frappe/adonis.svg new file mode 100644 index 00000000..07e38150 --- /dev/null +++ b/icons/frappe/adonis.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/alex.svg b/icons/frappe/alex.svg new file mode 100644 index 00000000..5bb6f8b3 --- /dev/null +++ b/icons/frappe/alex.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/android.svg b/icons/frappe/android.svg new file mode 100644 index 00000000..9795b926 --- /dev/null +++ b/icons/frappe/android.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/antlr.svg b/icons/frappe/antlr.svg new file mode 100644 index 00000000..1a3f917c --- /dev/null +++ b/icons/frappe/antlr.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/api-blueprint.svg b/icons/frappe/api-blueprint.svg new file mode 100644 index 00000000..af658275 --- /dev/null +++ b/icons/frappe/api-blueprint.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/apollo.svg b/icons/frappe/apollo.svg new file mode 100644 index 00000000..7f09a1c6 --- /dev/null +++ b/icons/frappe/apollo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/audio.svg b/icons/frappe/audio.svg new file mode 100644 index 00000000..18da8fdd --- /dev/null +++ b/icons/frappe/audio.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/azure-pipelines.svg b/icons/frappe/azure-pipelines.svg new file mode 100644 index 00000000..56fb6b19 --- /dev/null +++ b/icons/frappe/azure-pipelines.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/babel.svg b/icons/frappe/babel.svg new file mode 100644 index 00000000..c7d058ce --- /dev/null +++ b/icons/frappe/babel.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/bash.svg b/icons/frappe/bash.svg new file mode 100644 index 00000000..f24c4519 --- /dev/null +++ b/icons/frappe/bash.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/frappe/batch.svg b/icons/frappe/batch.svg new file mode 100644 index 00000000..5d5b9b66 --- /dev/null +++ b/icons/frappe/batch.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/binary.svg b/icons/frappe/binary.svg new file mode 100644 index 00000000..b4f7af0d --- /dev/null +++ b/icons/frappe/binary.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/bitbucket.svg b/icons/frappe/bitbucket.svg new file mode 100644 index 00000000..057f96be --- /dev/null +++ b/icons/frappe/bitbucket.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/blitz.svg b/icons/frappe/blitz.svg new file mode 100644 index 00000000..f9e8f612 --- /dev/null +++ b/icons/frappe/blitz.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/bower.svg b/icons/frappe/bower.svg new file mode 100644 index 00000000..502c33d7 --- /dev/null +++ b/icons/frappe/bower.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/frappe/browserslist.svg b/icons/frappe/browserslist.svg new file mode 100644 index 00000000..e8840ff0 --- /dev/null +++ b/icons/frappe/browserslist.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/bun-lock.svg b/icons/frappe/bun-lock.svg new file mode 100644 index 00000000..c9a861d2 --- /dev/null +++ b/icons/frappe/bun-lock.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/frappe/bun.svg b/icons/frappe/bun.svg new file mode 100644 index 00000000..08c3df29 --- /dev/null +++ b/icons/frappe/bun.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/frappe/c-header.svg b/icons/frappe/c-header.svg new file mode 100644 index 00000000..6f578dbb --- /dev/null +++ b/icons/frappe/c-header.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/c.svg b/icons/frappe/c.svg new file mode 100644 index 00000000..53655597 --- /dev/null +++ b/icons/frappe/c.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/caddy.svg b/icons/frappe/caddy.svg new file mode 100644 index 00000000..c32734c8 --- /dev/null +++ b/icons/frappe/caddy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/capacitor.svg b/icons/frappe/capacitor.svg new file mode 100644 index 00000000..b986992d --- /dev/null +++ b/icons/frappe/capacitor.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/certificate.svg b/icons/frappe/certificate.svg new file mode 100644 index 00000000..cd8021fe --- /dev/null +++ b/icons/frappe/certificate.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/frappe/changelog.svg b/icons/frappe/changelog.svg new file mode 100644 index 00000000..2d2ec9c4 --- /dev/null +++ b/icons/frappe/changelog.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/circle-ci.svg b/icons/frappe/circle-ci.svg new file mode 100644 index 00000000..1c0e0587 --- /dev/null +++ b/icons/frappe/circle-ci.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/clojure.svg b/icons/frappe/clojure.svg new file mode 100644 index 00000000..1b87d702 --- /dev/null +++ b/icons/frappe/clojure.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons/frappe/cmake.svg b/icons/frappe/cmake.svg new file mode 100644 index 00000000..aa315aba --- /dev/null +++ b/icons/frappe/cmake.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/frappe/cobol.svg b/icons/frappe/cobol.svg new file mode 100644 index 00000000..d3d56dd8 --- /dev/null +++ b/icons/frappe/cobol.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/code-climate.svg b/icons/frappe/code-climate.svg new file mode 100644 index 00000000..2bd025d3 --- /dev/null +++ b/icons/frappe/code-climate.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/code-of-conduct.svg b/icons/frappe/code-of-conduct.svg new file mode 100644 index 00000000..56420fa1 --- /dev/null +++ b/icons/frappe/code-of-conduct.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/coffeescript.svg b/icons/frappe/coffeescript.svg new file mode 100644 index 00000000..8009909a --- /dev/null +++ b/icons/frappe/coffeescript.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/commitlint.svg b/icons/frappe/commitlint.svg new file mode 100644 index 00000000..48b2f0a8 --- /dev/null +++ b/icons/frappe/commitlint.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/cpp-header.svg b/icons/frappe/cpp-header.svg new file mode 100644 index 00000000..f14eba9c --- /dev/null +++ b/icons/frappe/cpp-header.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/cpp.svg b/icons/frappe/cpp.svg new file mode 100644 index 00000000..393a94de --- /dev/null +++ b/icons/frappe/cpp.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/csharp.svg b/icons/frappe/csharp.svg new file mode 100644 index 00000000..f09b098e --- /dev/null +++ b/icons/frappe/csharp.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/css-map.svg b/icons/frappe/css-map.svg new file mode 100644 index 00000000..3c89de42 --- /dev/null +++ b/icons/frappe/css-map.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/frappe/css.svg b/icons/frappe/css.svg new file mode 100644 index 00000000..b2e6f285 --- /dev/null +++ b/icons/frappe/css.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/csv.svg b/icons/frappe/csv.svg new file mode 100644 index 00000000..10e5313c --- /dev/null +++ b/icons/frappe/csv.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/cucumber.svg b/icons/frappe/cucumber.svg new file mode 100644 index 00000000..fed71776 --- /dev/null +++ b/icons/frappe/cucumber.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/cuda.svg b/icons/frappe/cuda.svg new file mode 100644 index 00000000..f95f7428 --- /dev/null +++ b/icons/frappe/cuda.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/cypress.svg b/icons/frappe/cypress.svg new file mode 100644 index 00000000..8bd24405 --- /dev/null +++ b/icons/frappe/cypress.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/d.svg b/icons/frappe/d.svg new file mode 100644 index 00000000..eddf95bb --- /dev/null +++ b/icons/frappe/d.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/dart-generated.svg b/icons/frappe/dart-generated.svg new file mode 100644 index 00000000..5e1221a3 --- /dev/null +++ b/icons/frappe/dart-generated.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/dart.svg b/icons/frappe/dart.svg new file mode 100644 index 00000000..00055cbd --- /dev/null +++ b/icons/frappe/dart.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/database.svg b/icons/frappe/database.svg new file mode 100644 index 00000000..887f019f --- /dev/null +++ b/icons/frappe/database.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/deno.svg b/icons/frappe/deno.svg new file mode 100644 index 00000000..95c54a2c --- /dev/null +++ b/icons/frappe/deno.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/deno_lock.svg b/icons/frappe/deno_lock.svg new file mode 100644 index 00000000..0d0b862b --- /dev/null +++ b/icons/frappe/deno_lock.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/dependabot.svg b/icons/frappe/dependabot.svg new file mode 100644 index 00000000..759b78e0 --- /dev/null +++ b/icons/frappe/dependabot.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/dhall.svg b/icons/frappe/dhall.svg new file mode 100644 index 00000000..f3f17f41 --- /dev/null +++ b/icons/frappe/dhall.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/diff.svg b/icons/frappe/diff.svg new file mode 100644 index 00000000..82362393 --- /dev/null +++ b/icons/frappe/diff.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/frappe/django.svg b/icons/frappe/django.svg new file mode 100644 index 00000000..617ab0ef --- /dev/null +++ b/icons/frappe/django.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/docker-compose.svg b/icons/frappe/docker-compose.svg new file mode 100644 index 00000000..ca91b327 --- /dev/null +++ b/icons/frappe/docker-compose.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/docker-ignore.svg b/icons/frappe/docker-ignore.svg new file mode 100644 index 00000000..cd53153b --- /dev/null +++ b/icons/frappe/docker-ignore.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/docker.svg b/icons/frappe/docker.svg new file mode 100644 index 00000000..fcf8a5a7 --- /dev/null +++ b/icons/frappe/docker.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/drawio.svg b/icons/frappe/drawio.svg new file mode 100644 index 00000000..109f031f --- /dev/null +++ b/icons/frappe/drawio.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/editorconfig.svg b/icons/frappe/editorconfig.svg new file mode 100644 index 00000000..923b8291 --- /dev/null +++ b/icons/frappe/editorconfig.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/ejs.svg b/icons/frappe/ejs.svg new file mode 100644 index 00000000..78aac88b --- /dev/null +++ b/icons/frappe/ejs.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/elixir.svg b/icons/frappe/elixir.svg new file mode 100644 index 00000000..39eaba0f --- /dev/null +++ b/icons/frappe/elixir.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/elm.svg b/icons/frappe/elm.svg new file mode 100644 index 00000000..c953af52 --- /dev/null +++ b/icons/frappe/elm.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/ember.svg b/icons/frappe/ember.svg new file mode 100644 index 00000000..52336884 --- /dev/null +++ b/icons/frappe/ember.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/env.svg b/icons/frappe/env.svg new file mode 100644 index 00000000..bf242a7e --- /dev/null +++ b/icons/frappe/env.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/erlang.svg b/icons/frappe/erlang.svg new file mode 100644 index 00000000..004f1bd0 --- /dev/null +++ b/icons/frappe/erlang.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/esbuild.svg b/icons/frappe/esbuild.svg new file mode 100644 index 00000000..c13a78db --- /dev/null +++ b/icons/frappe/esbuild.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/eslint-ignore.svg b/icons/frappe/eslint-ignore.svg new file mode 100644 index 00000000..2b3eaaa7 --- /dev/null +++ b/icons/frappe/eslint-ignore.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/eslint.svg b/icons/frappe/eslint.svg new file mode 100644 index 00000000..0a927d91 --- /dev/null +++ b/icons/frappe/eslint.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/exe.svg b/icons/frappe/exe.svg new file mode 100644 index 00000000..d33e8ebf --- /dev/null +++ b/icons/frappe/exe.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/fastlane.svg b/icons/frappe/fastlane.svg new file mode 100644 index 00000000..57aa36ba --- /dev/null +++ b/icons/frappe/fastlane.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons/frappe/favicon.svg b/icons/frappe/favicon.svg new file mode 100644 index 00000000..1a41b80e --- /dev/null +++ b/icons/frappe/favicon.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/figma.svg b/icons/frappe/figma.svg new file mode 100644 index 00000000..bc74b1ba --- /dev/null +++ b/icons/frappe/figma.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/frappe/firebase.svg b/icons/frappe/firebase.svg new file mode 100644 index 00000000..32ff8807 --- /dev/null +++ b/icons/frappe/firebase.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/folder_admin.svg b/icons/frappe/folder_admin.svg new file mode 100644 index 00000000..8385380d --- /dev/null +++ b/icons/frappe/folder_admin.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_admin_open.svg b/icons/frappe/folder_admin_open.svg new file mode 100644 index 00000000..dbeb7808 --- /dev/null +++ b/icons/frappe/folder_admin_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_android.svg b/icons/frappe/folder_android.svg new file mode 100644 index 00000000..55196c23 --- /dev/null +++ b/icons/frappe/folder_android.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_android__open.svg b/icons/frappe/folder_android__open.svg new file mode 100644 index 00000000..909a10cb --- /dev/null +++ b/icons/frappe/folder_android__open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_animation.svg b/icons/frappe/folder_animation.svg new file mode 100644 index 00000000..6482c217 --- /dev/null +++ b/icons/frappe/folder_animation.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_animation_open.svg b/icons/frappe/folder_animation_open.svg new file mode 100644 index 00000000..7cf0c07c --- /dev/null +++ b/icons/frappe/folder_animation_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_api.svg b/icons/frappe/folder_api.svg new file mode 100644 index 00000000..d0e90b26 --- /dev/null +++ b/icons/frappe/folder_api.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_api_open.svg b/icons/frappe/folder_api_open.svg new file mode 100644 index 00000000..d4808ae0 --- /dev/null +++ b/icons/frappe/folder_api_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_app.svg b/icons/frappe/folder_app.svg new file mode 100644 index 00000000..eaeaf608 --- /dev/null +++ b/icons/frappe/folder_app.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/frappe/folder_app_open.svg b/icons/frappe/folder_app_open.svg new file mode 100644 index 00000000..796d23d9 --- /dev/null +++ b/icons/frappe/folder_app_open.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/frappe/folder_audio.svg b/icons/frappe/folder_audio.svg new file mode 100644 index 00000000..ccbe1874 --- /dev/null +++ b/icons/frappe/folder_audio.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/frappe/folder_audio_open.svg b/icons/frappe/folder_audio_open.svg new file mode 100644 index 00000000..6632b25e --- /dev/null +++ b/icons/frappe/folder_audio_open.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/frappe/folder_aws.svg b/icons/frappe/folder_aws.svg new file mode 100644 index 00000000..404d51c3 --- /dev/null +++ b/icons/frappe/folder_aws.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/frappe/folder_aws_open.svg b/icons/frappe/folder_aws_open.svg new file mode 100644 index 00000000..84d17ac5 --- /dev/null +++ b/icons/frappe/folder_aws_open.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/frappe/folder_benchmark.svg b/icons/frappe/folder_benchmark.svg new file mode 100644 index 00000000..6235f053 --- /dev/null +++ b/icons/frappe/folder_benchmark.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_benchmark_open.svg b/icons/frappe/folder_benchmark_open.svg new file mode 100644 index 00000000..4b9609c9 --- /dev/null +++ b/icons/frappe/folder_benchmark_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_circle-ci.svg b/icons/frappe/folder_circle-ci.svg new file mode 100644 index 00000000..6bb892cc --- /dev/null +++ b/icons/frappe/folder_circle-ci.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/frappe/folder_circle-ci_open.svg b/icons/frappe/folder_circle-ci_open.svg new file mode 100644 index 00000000..19e544cf --- /dev/null +++ b/icons/frappe/folder_circle-ci_open.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/frappe/folder_client.svg b/icons/frappe/folder_client.svg new file mode 100644 index 00000000..52cc49f1 --- /dev/null +++ b/icons/frappe/folder_client.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_client_open.svg b/icons/frappe/folder_client_open.svg new file mode 100644 index 00000000..94a3252d --- /dev/null +++ b/icons/frappe/folder_client_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_cloud.svg b/icons/frappe/folder_cloud.svg new file mode 100644 index 00000000..3f2448a3 --- /dev/null +++ b/icons/frappe/folder_cloud.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_cloud_open.svg b/icons/frappe/folder_cloud_open.svg new file mode 100644 index 00000000..8b54cf93 --- /dev/null +++ b/icons/frappe/folder_cloud_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_command.svg b/icons/frappe/folder_command.svg new file mode 100644 index 00000000..b0db880c --- /dev/null +++ b/icons/frappe/folder_command.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_command_open.svg b/icons/frappe/folder_command_open.svg new file mode 100644 index 00000000..eb4b6668 --- /dev/null +++ b/icons/frappe/folder_command_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_components.svg b/icons/frappe/folder_components.svg new file mode 100644 index 00000000..4103c034 --- /dev/null +++ b/icons/frappe/folder_components.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_components_open.svg b/icons/frappe/folder_components_open.svg new file mode 100644 index 00000000..786a3b6e --- /dev/null +++ b/icons/frappe/folder_components_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_composables.svg b/icons/frappe/folder_composables.svg new file mode 100644 index 00000000..ffe8b985 --- /dev/null +++ b/icons/frappe/folder_composables.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_composables_open.svg b/icons/frappe/folder_composables_open.svg new file mode 100644 index 00000000..db393491 --- /dev/null +++ b/icons/frappe/folder_composables_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_config.svg b/icons/frappe/folder_config.svg new file mode 100644 index 00000000..d6b764f9 --- /dev/null +++ b/icons/frappe/folder_config.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_config_open.svg b/icons/frappe/folder_config_open.svg new file mode 100644 index 00000000..ca4519ba --- /dev/null +++ b/icons/frappe/folder_config_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_connection.svg b/icons/frappe/folder_connection.svg new file mode 100644 index 00000000..78b5b325 --- /dev/null +++ b/icons/frappe/folder_connection.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_connection_open.svg b/icons/frappe/folder_connection_open.svg new file mode 100644 index 00000000..f2812e1f --- /dev/null +++ b/icons/frappe/folder_connection_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_constant.svg b/icons/frappe/folder_constant.svg new file mode 100644 index 00000000..968aed42 --- /dev/null +++ b/icons/frappe/folder_constant.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_constant_open.svg b/icons/frappe/folder_constant_open.svg new file mode 100644 index 00000000..a291f0f3 --- /dev/null +++ b/icons/frappe/folder_constant_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_controllers.svg b/icons/frappe/folder_controllers.svg new file mode 100644 index 00000000..bc7e08e7 --- /dev/null +++ b/icons/frappe/folder_controllers.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_controllers_open.svg b/icons/frappe/folder_controllers_open.svg new file mode 100644 index 00000000..4d96e9a3 --- /dev/null +++ b/icons/frappe/folder_controllers_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_core.svg b/icons/frappe/folder_core.svg new file mode 100644 index 00000000..ad3c4cbd --- /dev/null +++ b/icons/frappe/folder_core.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_core_open.svg b/icons/frappe/folder_core_open.svg new file mode 100644 index 00000000..7ee066d7 --- /dev/null +++ b/icons/frappe/folder_core_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_coverage.svg b/icons/frappe/folder_coverage.svg new file mode 100644 index 00000000..847d95fd --- /dev/null +++ b/icons/frappe/folder_coverage.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_coverage_open.svg b/icons/frappe/folder_coverage_open.svg new file mode 100644 index 00000000..11e49da5 --- /dev/null +++ b/icons/frappe/folder_coverage_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_cypress.svg b/icons/frappe/folder_cypress.svg new file mode 100644 index 00000000..2f05229a --- /dev/null +++ b/icons/frappe/folder_cypress.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_cypress__open.svg b/icons/frappe/folder_cypress__open.svg new file mode 100644 index 00000000..19b204b6 --- /dev/null +++ b/icons/frappe/folder_cypress__open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_database.svg b/icons/frappe/folder_database.svg new file mode 100644 index 00000000..1a5a9bd5 --- /dev/null +++ b/icons/frappe/folder_database.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_database_open.svg b/icons/frappe/folder_database_open.svg new file mode 100644 index 00000000..b6ddc598 --- /dev/null +++ b/icons/frappe/folder_database_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_debug.svg b/icons/frappe/folder_debug.svg new file mode 100644 index 00000000..f2e71f85 --- /dev/null +++ b/icons/frappe/folder_debug.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_debug_open.svg b/icons/frappe/folder_debug_open.svg new file mode 100644 index 00000000..4db7cb7d --- /dev/null +++ b/icons/frappe/folder_debug_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_dist.svg b/icons/frappe/folder_dist.svg new file mode 100644 index 00000000..328f4a6a --- /dev/null +++ b/icons/frappe/folder_dist.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_dist_open.svg b/icons/frappe/folder_dist_open.svg new file mode 100644 index 00000000..419cfb1b --- /dev/null +++ b/icons/frappe/folder_dist_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_docker.svg b/icons/frappe/folder_docker.svg new file mode 100644 index 00000000..0bf7f379 --- /dev/null +++ b/icons/frappe/folder_docker.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/frappe/folder_docker_open.svg b/icons/frappe/folder_docker_open.svg new file mode 100644 index 00000000..3f3d1977 --- /dev/null +++ b/icons/frappe/folder_docker_open.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/frappe/folder_docs.svg b/icons/frappe/folder_docs.svg new file mode 100644 index 00000000..0e86177f --- /dev/null +++ b/icons/frappe/folder_docs.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_docs__open.svg b/icons/frappe/folder_docs__open.svg new file mode 100644 index 00000000..f7f66f53 --- /dev/null +++ b/icons/frappe/folder_docs__open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_download.svg b/icons/frappe/folder_download.svg new file mode 100644 index 00000000..9c87efec --- /dev/null +++ b/icons/frappe/folder_download.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_download_open.svg b/icons/frappe/folder_download_open.svg new file mode 100644 index 00000000..59f80700 --- /dev/null +++ b/icons/frappe/folder_download_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_examples.svg b/icons/frappe/folder_examples.svg new file mode 100644 index 00000000..f01c2732 --- /dev/null +++ b/icons/frappe/folder_examples.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_examples_open.svg b/icons/frappe/folder_examples_open.svg new file mode 100644 index 00000000..5b4e3039 --- /dev/null +++ b/icons/frappe/folder_examples_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_firebase.svg b/icons/frappe/folder_firebase.svg new file mode 100644 index 00000000..b27c257b --- /dev/null +++ b/icons/frappe/folder_firebase.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_firebase_open.svg b/icons/frappe/folder_firebase_open.svg new file mode 100644 index 00000000..df935fec --- /dev/null +++ b/icons/frappe/folder_firebase_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_fonts.svg b/icons/frappe/folder_fonts.svg new file mode 100644 index 00000000..ebd92c23 --- /dev/null +++ b/icons/frappe/folder_fonts.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_fonts_open.svg b/icons/frappe/folder_fonts_open.svg new file mode 100644 index 00000000..93e78a9a --- /dev/null +++ b/icons/frappe/folder_fonts_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_functions.svg b/icons/frappe/folder_functions.svg new file mode 100644 index 00000000..85a3e7d8 --- /dev/null +++ b/icons/frappe/folder_functions.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_functions_open.svg b/icons/frappe/folder_functions_open.svg new file mode 100644 index 00000000..ab92009e --- /dev/null +++ b/icons/frappe/folder_functions_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_git.svg b/icons/frappe/folder_git.svg new file mode 100644 index 00000000..37aba61c --- /dev/null +++ b/icons/frappe/folder_git.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_git_open.svg b/icons/frappe/folder_git_open.svg new file mode 100644 index 00000000..86515a74 --- /dev/null +++ b/icons/frappe/folder_git_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_github.svg b/icons/frappe/folder_github.svg new file mode 100644 index 00000000..ed77684c --- /dev/null +++ b/icons/frappe/folder_github.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_github_open.svg b/icons/frappe/folder_github_open.svg new file mode 100644 index 00000000..5ec776d5 --- /dev/null +++ b/icons/frappe/folder_github_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_gitlab.svg b/icons/frappe/folder_gitlab.svg new file mode 100644 index 00000000..5480579c --- /dev/null +++ b/icons/frappe/folder_gitlab.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_gitlab_open.svg b/icons/frappe/folder_gitlab_open.svg new file mode 100644 index 00000000..2a122479 --- /dev/null +++ b/icons/frappe/folder_gitlab_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_husky.svg b/icons/frappe/folder_husky.svg new file mode 100644 index 00000000..a175f10c --- /dev/null +++ b/icons/frappe/folder_husky.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/frappe/folder_husky_open.svg b/icons/frappe/folder_husky_open.svg new file mode 100644 index 00000000..8e627bb8 --- /dev/null +++ b/icons/frappe/folder_husky_open.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/frappe/folder_images.svg b/icons/frappe/folder_images.svg new file mode 100644 index 00000000..fa9fff93 --- /dev/null +++ b/icons/frappe/folder_images.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/frappe/folder_images_open.svg b/icons/frappe/folder_images_open.svg new file mode 100644 index 00000000..271d6da2 --- /dev/null +++ b/icons/frappe/folder_images_open.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/frappe/folder_kubernetes.svg b/icons/frappe/folder_kubernetes.svg new file mode 100644 index 00000000..f6c2c46d --- /dev/null +++ b/icons/frappe/folder_kubernetes.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/frappe/folder_kubernetes_open.svg b/icons/frappe/folder_kubernetes_open.svg new file mode 100644 index 00000000..3ea9f632 --- /dev/null +++ b/icons/frappe/folder_kubernetes_open.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/frappe/folder_layouts.svg b/icons/frappe/folder_layouts.svg new file mode 100644 index 00000000..19a4ef8e --- /dev/null +++ b/icons/frappe/folder_layouts.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_layouts_open.svg b/icons/frappe/folder_layouts_open.svg new file mode 100644 index 00000000..549f586a --- /dev/null +++ b/icons/frappe/folder_layouts_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_locales.svg b/icons/frappe/folder_locales.svg new file mode 100644 index 00000000..61ae83b4 --- /dev/null +++ b/icons/frappe/folder_locales.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_locales_open.svg b/icons/frappe/folder_locales_open.svg new file mode 100644 index 00000000..37ec32d5 --- /dev/null +++ b/icons/frappe/folder_locales_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_middleware.svg b/icons/frappe/folder_middleware.svg new file mode 100644 index 00000000..767719fe --- /dev/null +++ b/icons/frappe/folder_middleware.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_middleware_open.svg b/icons/frappe/folder_middleware_open.svg new file mode 100644 index 00000000..d0067513 --- /dev/null +++ b/icons/frappe/folder_middleware_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_mocks.svg b/icons/frappe/folder_mocks.svg new file mode 100644 index 00000000..3dde26c4 --- /dev/null +++ b/icons/frappe/folder_mocks.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_mocks_open.svg b/icons/frappe/folder_mocks_open.svg new file mode 100644 index 00000000..47cb4225 --- /dev/null +++ b/icons/frappe/folder_mocks_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_next.svg b/icons/frappe/folder_next.svg new file mode 100644 index 00000000..c4c74ef9 --- /dev/null +++ b/icons/frappe/folder_next.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_next_open.svg b/icons/frappe/folder_next_open.svg new file mode 100644 index 00000000..602d3b6d --- /dev/null +++ b/icons/frappe/folder_next_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_node.svg b/icons/frappe/folder_node.svg new file mode 100644 index 00000000..f342924a --- /dev/null +++ b/icons/frappe/folder_node.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_node_open.svg b/icons/frappe/folder_node_open.svg new file mode 100644 index 00000000..a7c62165 --- /dev/null +++ b/icons/frappe/folder_node_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_nuxt.svg b/icons/frappe/folder_nuxt.svg new file mode 100644 index 00000000..dfc2e163 --- /dev/null +++ b/icons/frappe/folder_nuxt.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_nuxt_open.svg b/icons/frappe/folder_nuxt_open.svg new file mode 100644 index 00000000..81c717ec --- /dev/null +++ b/icons/frappe/folder_nuxt_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_packages.svg b/icons/frappe/folder_packages.svg new file mode 100644 index 00000000..3dda330e --- /dev/null +++ b/icons/frappe/folder_packages.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_packages_open.svg b/icons/frappe/folder_packages_open.svg new file mode 100644 index 00000000..e22a6111 --- /dev/null +++ b/icons/frappe/folder_packages_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_plugins.svg b/icons/frappe/folder_plugins.svg new file mode 100644 index 00000000..40f65672 --- /dev/null +++ b/icons/frappe/folder_plugins.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_plugins_open.svg b/icons/frappe/folder_plugins_open.svg new file mode 100644 index 00000000..a2656ce5 --- /dev/null +++ b/icons/frappe/folder_plugins_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_prisma.svg b/icons/frappe/folder_prisma.svg new file mode 100644 index 00000000..fdf3a789 --- /dev/null +++ b/icons/frappe/folder_prisma.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_prisma_open.svg b/icons/frappe/folder_prisma_open.svg new file mode 100644 index 00000000..9d36726e --- /dev/null +++ b/icons/frappe/folder_prisma_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_public.svg b/icons/frappe/folder_public.svg new file mode 100644 index 00000000..fca0c7e4 --- /dev/null +++ b/icons/frappe/folder_public.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_public_open.svg b/icons/frappe/folder_public_open.svg new file mode 100644 index 00000000..1e54e803 --- /dev/null +++ b/icons/frappe/folder_public_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_queue.svg b/icons/frappe/folder_queue.svg new file mode 100644 index 00000000..408e9d12 --- /dev/null +++ b/icons/frappe/folder_queue.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_queue_open.svg b/icons/frappe/folder_queue_open.svg new file mode 100644 index 00000000..e9630827 --- /dev/null +++ b/icons/frappe/folder_queue_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_redux.svg b/icons/frappe/folder_redux.svg new file mode 100644 index 00000000..77720a2d --- /dev/null +++ b/icons/frappe/folder_redux.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_redux_open.svg b/icons/frappe/folder_redux_open.svg new file mode 100644 index 00000000..490e424a --- /dev/null +++ b/icons/frappe/folder_redux_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_routes.svg b/icons/frappe/folder_routes.svg new file mode 100644 index 00000000..29b05573 --- /dev/null +++ b/icons/frappe/folder_routes.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_routes_open.svg b/icons/frappe/folder_routes_open.svg new file mode 100644 index 00000000..50c0d172 --- /dev/null +++ b/icons/frappe/folder_routes_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_sass.svg b/icons/frappe/folder_sass.svg new file mode 100644 index 00000000..6c0d5738 --- /dev/null +++ b/icons/frappe/folder_sass.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_sass_open.svg b/icons/frappe/folder_sass_open.svg new file mode 100644 index 00000000..7dea62aa --- /dev/null +++ b/icons/frappe/folder_sass_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_scripts.svg b/icons/frappe/folder_scripts.svg new file mode 100644 index 00000000..922ce1bd --- /dev/null +++ b/icons/frappe/folder_scripts.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_scripts_open.svg b/icons/frappe/folder_scripts_open.svg new file mode 100644 index 00000000..2198b3ae --- /dev/null +++ b/icons/frappe/folder_scripts_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_server.svg b/icons/frappe/folder_server.svg new file mode 100644 index 00000000..a822778a --- /dev/null +++ b/icons/frappe/folder_server.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_server_open.svg b/icons/frappe/folder_server_open.svg new file mode 100644 index 00000000..370c8c1f --- /dev/null +++ b/icons/frappe/folder_server_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_src.svg b/icons/frappe/folder_src.svg new file mode 100644 index 00000000..bc80c220 --- /dev/null +++ b/icons/frappe/folder_src.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_src_open.svg b/icons/frappe/folder_src_open.svg new file mode 100644 index 00000000..98ccd408 --- /dev/null +++ b/icons/frappe/folder_src_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_storybook.svg b/icons/frappe/folder_storybook.svg new file mode 100644 index 00000000..e3516320 --- /dev/null +++ b/icons/frappe/folder_storybook.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_storybook_open.svg b/icons/frappe/folder_storybook_open.svg new file mode 100644 index 00000000..a4395a55 --- /dev/null +++ b/icons/frappe/folder_storybook_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_styles.svg b/icons/frappe/folder_styles.svg new file mode 100644 index 00000000..4b8214d0 --- /dev/null +++ b/icons/frappe/folder_styles.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_styles_open.svg b/icons/frappe/folder_styles_open.svg new file mode 100644 index 00000000..8cf761a1 --- /dev/null +++ b/icons/frappe/folder_styles_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_svg.svg b/icons/frappe/folder_svg.svg new file mode 100644 index 00000000..51b41ef4 --- /dev/null +++ b/icons/frappe/folder_svg.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_svg_open.svg b/icons/frappe/folder_svg_open.svg new file mode 100644 index 00000000..ead54ab4 --- /dev/null +++ b/icons/frappe/folder_svg_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_tauri.svg b/icons/frappe/folder_tauri.svg new file mode 100644 index 00000000..0552b107 --- /dev/null +++ b/icons/frappe/folder_tauri.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/frappe/folder_tauri_open.svg b/icons/frappe/folder_tauri_open.svg new file mode 100644 index 00000000..c875edde --- /dev/null +++ b/icons/frappe/folder_tauri_open.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/frappe/folder_temp.svg b/icons/frappe/folder_temp.svg new file mode 100644 index 00000000..e969de4a --- /dev/null +++ b/icons/frappe/folder_temp.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_temp_open.svg b/icons/frappe/folder_temp_open.svg new file mode 100644 index 00000000..f0856360 --- /dev/null +++ b/icons/frappe/folder_temp_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_templates.svg b/icons/frappe/folder_templates.svg new file mode 100644 index 00000000..8c44a3c4 --- /dev/null +++ b/icons/frappe/folder_templates.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_templates_open.svg b/icons/frappe/folder_templates_open.svg new file mode 100644 index 00000000..68e8f90e --- /dev/null +++ b/icons/frappe/folder_templates_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_tests.svg b/icons/frappe/folder_tests.svg new file mode 100644 index 00000000..b5aaf69c --- /dev/null +++ b/icons/frappe/folder_tests.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_tests_open.svg b/icons/frappe/folder_tests_open.svg new file mode 100644 index 00000000..87e1ad41 --- /dev/null +++ b/icons/frappe/folder_tests_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_types.svg b/icons/frappe/folder_types.svg new file mode 100644 index 00000000..1563e6c3 --- /dev/null +++ b/icons/frappe/folder_types.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_types_open.svg b/icons/frappe/folder_types_open.svg new file mode 100644 index 00000000..c828882c --- /dev/null +++ b/icons/frappe/folder_types_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_upload.svg b/icons/frappe/folder_upload.svg new file mode 100644 index 00000000..8fcfe4bf --- /dev/null +++ b/icons/frappe/folder_upload.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/frappe/folder_upload_open.svg b/icons/frappe/folder_upload_open.svg new file mode 100644 index 00000000..24ad261a --- /dev/null +++ b/icons/frappe/folder_upload_open.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/frappe/folder_utils.svg b/icons/frappe/folder_utils.svg new file mode 100644 index 00000000..873ba29d --- /dev/null +++ b/icons/frappe/folder_utils.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_utils_open.svg b/icons/frappe/folder_utils_open.svg new file mode 100644 index 00000000..543221f0 --- /dev/null +++ b/icons/frappe/folder_utils_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_vercel.svg b/icons/frappe/folder_vercel.svg new file mode 100644 index 00000000..ab59b9e9 --- /dev/null +++ b/icons/frappe/folder_vercel.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_vercel_open.svg b/icons/frappe/folder_vercel_open.svg new file mode 100644 index 00000000..aa3f7723 --- /dev/null +++ b/icons/frappe/folder_vercel_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_video.svg b/icons/frappe/folder_video.svg new file mode 100644 index 00000000..a063d950 --- /dev/null +++ b/icons/frappe/folder_video.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_video_open.svg b/icons/frappe/folder_video_open.svg new file mode 100644 index 00000000..4bf0281e --- /dev/null +++ b/icons/frappe/folder_video_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_views.svg b/icons/frappe/folder_views.svg new file mode 100644 index 00000000..9e243ce9 --- /dev/null +++ b/icons/frappe/folder_views.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_views_open.svg b/icons/frappe/folder_views_open.svg new file mode 100644 index 00000000..a3754985 --- /dev/null +++ b/icons/frappe/folder_views_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_vscode.svg b/icons/frappe/folder_vscode.svg new file mode 100644 index 00000000..dac18383 --- /dev/null +++ b/icons/frappe/folder_vscode.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_vscode_open.svg b/icons/frappe/folder_vscode_open.svg new file mode 100644 index 00000000..d590c5ff --- /dev/null +++ b/icons/frappe/folder_vscode_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_workflows.svg b/icons/frappe/folder_workflows.svg new file mode 100644 index 00000000..d8a22c84 --- /dev/null +++ b/icons/frappe/folder_workflows.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/folder_workflows_open.svg b/icons/frappe/folder_workflows_open.svg new file mode 100644 index 00000000..3dba689d --- /dev/null +++ b/icons/frappe/folder_workflows_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/font.svg b/icons/frappe/font.svg new file mode 100644 index 00000000..b85df200 --- /dev/null +++ b/icons/frappe/font.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/fortran.svg b/icons/frappe/fortran.svg new file mode 100644 index 00000000..f7344921 --- /dev/null +++ b/icons/frappe/fortran.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/fsharp.svg b/icons/frappe/fsharp.svg new file mode 100644 index 00000000..7fe5d522 --- /dev/null +++ b/icons/frappe/fsharp.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/gatsby.svg b/icons/frappe/gatsby.svg new file mode 100644 index 00000000..a3962f0d --- /dev/null +++ b/icons/frappe/gatsby.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/git.svg b/icons/frappe/git.svg new file mode 100644 index 00000000..8bc7ff7d --- /dev/null +++ b/icons/frappe/git.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/gitlab.svg b/icons/frappe/gitlab.svg new file mode 100644 index 00000000..b45f2931 --- /dev/null +++ b/icons/frappe/gitlab.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/gitpod.svg b/icons/frappe/gitpod.svg new file mode 100644 index 00000000..ccd7a36d --- /dev/null +++ b/icons/frappe/gitpod.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/go-mod.svg b/icons/frappe/go-mod.svg new file mode 100644 index 00000000..9929c9de --- /dev/null +++ b/icons/frappe/go-mod.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/go.svg b/icons/frappe/go.svg new file mode 100644 index 00000000..a57bbeda --- /dev/null +++ b/icons/frappe/go.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/godot-assets.svg b/icons/frappe/godot-assets.svg new file mode 100644 index 00000000..7d702f70 --- /dev/null +++ b/icons/frappe/godot-assets.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/godot.svg b/icons/frappe/godot.svg new file mode 100644 index 00000000..767cbe4e --- /dev/null +++ b/icons/frappe/godot.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/gradle.svg b/icons/frappe/gradle.svg new file mode 100644 index 00000000..2d11f293 --- /dev/null +++ b/icons/frappe/gradle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/graphql.svg b/icons/frappe/graphql.svg new file mode 100644 index 00000000..b5c6a261 --- /dev/null +++ b/icons/frappe/graphql.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/groovy.svg b/icons/frappe/groovy.svg new file mode 100644 index 00000000..7f9375de --- /dev/null +++ b/icons/frappe/groovy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/gulp.svg b/icons/frappe/gulp.svg new file mode 100644 index 00000000..c8cba517 --- /dev/null +++ b/icons/frappe/gulp.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/haml.svg b/icons/frappe/haml.svg new file mode 100644 index 00000000..0dd48ccc --- /dev/null +++ b/icons/frappe/haml.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/frappe/handlebars.svg b/icons/frappe/handlebars.svg new file mode 100644 index 00000000..363ccebe --- /dev/null +++ b/icons/frappe/handlebars.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/haskell.svg b/icons/frappe/haskell.svg new file mode 100644 index 00000000..5d87c4e6 --- /dev/null +++ b/icons/frappe/haskell.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/haxe.svg b/icons/frappe/haxe.svg new file mode 100644 index 00000000..62a2d614 --- /dev/null +++ b/icons/frappe/haxe.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/helm.svg b/icons/frappe/helm.svg new file mode 100644 index 00000000..84b63dea --- /dev/null +++ b/icons/frappe/helm.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/heroku.svg b/icons/frappe/heroku.svg new file mode 100644 index 00000000..9c3f8bcb --- /dev/null +++ b/icons/frappe/heroku.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/histoire.svg b/icons/frappe/histoire.svg new file mode 100644 index 00000000..d2b64b76 --- /dev/null +++ b/icons/frappe/histoire.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/html.svg b/icons/frappe/html.svg new file mode 100644 index 00000000..475595d5 --- /dev/null +++ b/icons/frappe/html.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/http.svg b/icons/frappe/http.svg new file mode 100644 index 00000000..5a7decdc --- /dev/null +++ b/icons/frappe/http.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/husky.svg b/icons/frappe/husky.svg new file mode 100644 index 00000000..efa77d4c --- /dev/null +++ b/icons/frappe/husky.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/image.svg b/icons/frappe/image.svg new file mode 100644 index 00000000..f78c9903 --- /dev/null +++ b/icons/frappe/image.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/frappe/ionic.svg b/icons/frappe/ionic.svg new file mode 100644 index 00000000..e3337de3 --- /dev/null +++ b/icons/frappe/ionic.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/java-class.svg b/icons/frappe/java-class.svg new file mode 100644 index 00000000..fba23650 --- /dev/null +++ b/icons/frappe/java-class.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/frappe/java-jar.svg b/icons/frappe/java-jar.svg new file mode 100644 index 00000000..655b146e --- /dev/null +++ b/icons/frappe/java-jar.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/frappe/java.svg b/icons/frappe/java.svg new file mode 100644 index 00000000..3692371d --- /dev/null +++ b/icons/frappe/java.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/frappe/javascript-config.svg b/icons/frappe/javascript-config.svg new file mode 100644 index 00000000..7b1adc99 --- /dev/null +++ b/icons/frappe/javascript-config.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/frappe/javascript-map.svg b/icons/frappe/javascript-map.svg new file mode 100644 index 00000000..046c5f7a --- /dev/null +++ b/icons/frappe/javascript-map.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/frappe/javascript-react.svg b/icons/frappe/javascript-react.svg new file mode 100644 index 00000000..861f718b --- /dev/null +++ b/icons/frappe/javascript-react.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/frappe/javascript-test.svg b/icons/frappe/javascript-test.svg new file mode 100644 index 00000000..758317d6 --- /dev/null +++ b/icons/frappe/javascript-test.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/javascript.svg b/icons/frappe/javascript.svg new file mode 100644 index 00000000..01285174 --- /dev/null +++ b/icons/frappe/javascript.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/jest.svg b/icons/frappe/jest.svg new file mode 100644 index 00000000..fa9172a7 --- /dev/null +++ b/icons/frappe/jest.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/frappe/jinja.svg b/icons/frappe/jinja.svg new file mode 100644 index 00000000..d1e03c82 --- /dev/null +++ b/icons/frappe/jinja.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/json.svg b/icons/frappe/json.svg new file mode 100644 index 00000000..850e7a60 --- /dev/null +++ b/icons/frappe/json.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/julia.svg b/icons/frappe/julia.svg new file mode 100644 index 00000000..b81d9ec1 --- /dev/null +++ b/icons/frappe/julia.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/frappe/jupyter.svg b/icons/frappe/jupyter.svg new file mode 100644 index 00000000..43017077 --- /dev/null +++ b/icons/frappe/jupyter.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/just.svg b/icons/frappe/just.svg new file mode 100644 index 00000000..e40fc4a0 --- /dev/null +++ b/icons/frappe/just.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/icons/frappe/key.svg b/icons/frappe/key.svg new file mode 100644 index 00000000..85fd050d --- /dev/null +++ b/icons/frappe/key.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/kotlin.svg b/icons/frappe/kotlin.svg new file mode 100644 index 00000000..a31fc56a --- /dev/null +++ b/icons/frappe/kotlin.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/frappe/laravel.svg b/icons/frappe/laravel.svg new file mode 100644 index 00000000..96475f84 --- /dev/null +++ b/icons/frappe/laravel.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/frappe/latex.svg b/icons/frappe/latex.svg new file mode 100644 index 00000000..64518b55 --- /dev/null +++ b/icons/frappe/latex.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/lerna.svg b/icons/frappe/lerna.svg new file mode 100644 index 00000000..894be9b8 --- /dev/null +++ b/icons/frappe/lerna.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/less.svg b/icons/frappe/less.svg new file mode 100644 index 00000000..0c02bd24 --- /dev/null +++ b/icons/frappe/less.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/lib.svg b/icons/frappe/lib.svg new file mode 100644 index 00000000..1f13406a --- /dev/null +++ b/icons/frappe/lib.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/license.svg b/icons/frappe/license.svg new file mode 100644 index 00000000..e741db8f --- /dev/null +++ b/icons/frappe/license.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/lint-staged.svg b/icons/frappe/lint-staged.svg new file mode 100644 index 00000000..e1a62cbe --- /dev/null +++ b/icons/frappe/lint-staged.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/frappe/lisp.svg b/icons/frappe/lisp.svg new file mode 100644 index 00000000..b68d2862 --- /dev/null +++ b/icons/frappe/lisp.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/log.svg b/icons/frappe/log.svg new file mode 100644 index 00000000..afa27961 --- /dev/null +++ b/icons/frappe/log.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/lua.svg b/icons/frappe/lua.svg new file mode 100644 index 00000000..1ab42da3 --- /dev/null +++ b/icons/frappe/lua.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/makefile.svg b/icons/frappe/makefile.svg new file mode 100644 index 00000000..80aabaa4 --- /dev/null +++ b/icons/frappe/makefile.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/markdown-mdx.svg b/icons/frappe/markdown-mdx.svg new file mode 100644 index 00000000..3c2a90f1 --- /dev/null +++ b/icons/frappe/markdown-mdx.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/markdown.svg b/icons/frappe/markdown.svg new file mode 100644 index 00000000..a8a7f84c --- /dev/null +++ b/icons/frappe/markdown.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/marko.svg b/icons/frappe/marko.svg new file mode 100644 index 00000000..78106bbe --- /dev/null +++ b/icons/frappe/marko.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/frappe/matlab.svg b/icons/frappe/matlab.svg new file mode 100644 index 00000000..f5f69992 --- /dev/null +++ b/icons/frappe/matlab.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/maven.svg b/icons/frappe/maven.svg new file mode 100644 index 00000000..6cc9c5df --- /dev/null +++ b/icons/frappe/maven.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/frappe/mermaid.svg b/icons/frappe/mermaid.svg new file mode 100644 index 00000000..9ba22727 --- /dev/null +++ b/icons/frappe/mermaid.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/meson.svg b/icons/frappe/meson.svg new file mode 100644 index 00000000..872d17ac --- /dev/null +++ b/icons/frappe/meson.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/mjml.svg b/icons/frappe/mjml.svg new file mode 100644 index 00000000..7296660f --- /dev/null +++ b/icons/frappe/mjml.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/modernizr.svg b/icons/frappe/modernizr.svg new file mode 100644 index 00000000..27b355ef --- /dev/null +++ b/icons/frappe/modernizr.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/ms-excel.svg b/icons/frappe/ms-excel.svg new file mode 100644 index 00000000..43de96ce --- /dev/null +++ b/icons/frappe/ms-excel.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/ms-powerpoint.svg b/icons/frappe/ms-powerpoint.svg new file mode 100644 index 00000000..23cc3b51 --- /dev/null +++ b/icons/frappe/ms-powerpoint.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/ms-word.svg b/icons/frappe/ms-word.svg new file mode 100644 index 00000000..aff96677 --- /dev/null +++ b/icons/frappe/ms-word.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/nativescript.svg b/icons/frappe/nativescript.svg new file mode 100644 index 00000000..607e4fbe --- /dev/null +++ b/icons/frappe/nativescript.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/nest.svg b/icons/frappe/nest.svg new file mode 100644 index 00000000..3affea41 --- /dev/null +++ b/icons/frappe/nest.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/netlify.svg b/icons/frappe/netlify.svg new file mode 100644 index 00000000..4520ddc3 --- /dev/null +++ b/icons/frappe/netlify.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/next.svg b/icons/frappe/next.svg new file mode 100644 index 00000000..a041a76e --- /dev/null +++ b/icons/frappe/next.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/nextflow.svg b/icons/frappe/nextflow.svg new file mode 100644 index 00000000..ed6a1cb4 --- /dev/null +++ b/icons/frappe/nextflow.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/nginx.svg b/icons/frappe/nginx.svg new file mode 100644 index 00000000..3ee0fc2e --- /dev/null +++ b/icons/frappe/nginx.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/nim.svg b/icons/frappe/nim.svg new file mode 100644 index 00000000..b2f63b84 --- /dev/null +++ b/icons/frappe/nim.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/ninja.svg b/icons/frappe/ninja.svg new file mode 100644 index 00000000..a615105a --- /dev/null +++ b/icons/frappe/ninja.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/nix-lock.svg b/icons/frappe/nix-lock.svg new file mode 100644 index 00000000..ca4d93bd --- /dev/null +++ b/icons/frappe/nix-lock.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons/frappe/nix.svg b/icons/frappe/nix.svg new file mode 100644 index 00000000..0513a77e --- /dev/null +++ b/icons/frappe/nix.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons/frappe/nodemon.svg b/icons/frappe/nodemon.svg new file mode 100644 index 00000000..bce0a70c --- /dev/null +++ b/icons/frappe/nodemon.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/npm-ignore.svg b/icons/frappe/npm-ignore.svg new file mode 100644 index 00000000..54ac7c21 --- /dev/null +++ b/icons/frappe/npm-ignore.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/npm-lock.svg b/icons/frappe/npm-lock.svg new file mode 100644 index 00000000..a5afe399 --- /dev/null +++ b/icons/frappe/npm-lock.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/frappe/npm.svg b/icons/frappe/npm.svg new file mode 100644 index 00000000..ee405783 --- /dev/null +++ b/icons/frappe/npm.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/nuget.svg b/icons/frappe/nuget.svg new file mode 100644 index 00000000..46adbe93 --- /dev/null +++ b/icons/frappe/nuget.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/nunjucks.svg b/icons/frappe/nunjucks.svg new file mode 100644 index 00000000..1ce723d3 --- /dev/null +++ b/icons/frappe/nunjucks.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/nuxt-ignore.svg b/icons/frappe/nuxt-ignore.svg new file mode 100644 index 00000000..1f37ba16 --- /dev/null +++ b/icons/frappe/nuxt-ignore.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/nuxt.svg b/icons/frappe/nuxt.svg new file mode 100644 index 00000000..64bd8e91 --- /dev/null +++ b/icons/frappe/nuxt.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/ocaml.svg b/icons/frappe/ocaml.svg new file mode 100644 index 00000000..64b0b121 --- /dev/null +++ b/icons/frappe/ocaml.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/frappe/package-json.svg b/icons/frappe/package-json.svg new file mode 100644 index 00000000..b6aa9c28 --- /dev/null +++ b/icons/frappe/package-json.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/panda-css.svg b/icons/frappe/panda-css.svg new file mode 100644 index 00000000..2f18f4c8 --- /dev/null +++ b/icons/frappe/panda-css.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/pdf.svg b/icons/frappe/pdf.svg new file mode 100644 index 00000000..d639b485 --- /dev/null +++ b/icons/frappe/pdf.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/perl.svg b/icons/frappe/perl.svg new file mode 100644 index 00000000..0ddba151 --- /dev/null +++ b/icons/frappe/perl.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/phrase.svg b/icons/frappe/phrase.svg new file mode 100644 index 00000000..1cb127bf --- /dev/null +++ b/icons/frappe/phrase.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/playwright.svg b/icons/frappe/playwright.svg new file mode 100644 index 00000000..0e8ba0fb --- /dev/null +++ b/icons/frappe/playwright.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/frappe/plop.svg b/icons/frappe/plop.svg new file mode 100644 index 00000000..00db9644 --- /dev/null +++ b/icons/frappe/plop.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/pnpm-lock.svg b/icons/frappe/pnpm-lock.svg new file mode 100644 index 00000000..8bde0054 --- /dev/null +++ b/icons/frappe/pnpm-lock.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/frappe/pnpm.svg b/icons/frappe/pnpm.svg new file mode 100644 index 00000000..7c6b83ac --- /dev/null +++ b/icons/frappe/pnpm.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/frappe/postcss.svg b/icons/frappe/postcss.svg new file mode 100644 index 00000000..45ade70b --- /dev/null +++ b/icons/frappe/postcss.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/frappe/powershell.svg b/icons/frappe/powershell.svg new file mode 100644 index 00000000..2125ee4c --- /dev/null +++ b/icons/frappe/powershell.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/premake.svg b/icons/frappe/premake.svg new file mode 100644 index 00000000..3db0f8b9 --- /dev/null +++ b/icons/frappe/premake.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/frappe/prettier-ignore.svg b/icons/frappe/prettier-ignore.svg new file mode 100644 index 00000000..b1bb8d4b --- /dev/null +++ b/icons/frappe/prettier-ignore.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/prettier.svg b/icons/frappe/prettier.svg new file mode 100644 index 00000000..d7528b6a --- /dev/null +++ b/icons/frappe/prettier.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/frappe/prisma.svg b/icons/frappe/prisma.svg new file mode 100644 index 00000000..419ad6ec --- /dev/null +++ b/icons/frappe/prisma.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/prolog.svg b/icons/frappe/prolog.svg new file mode 100644 index 00000000..4872af27 --- /dev/null +++ b/icons/frappe/prolog.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/properties.svg b/icons/frappe/properties.svg new file mode 100644 index 00000000..9c2625ac --- /dev/null +++ b/icons/frappe/properties.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/proto.svg b/icons/frappe/proto.svg new file mode 100644 index 00000000..599cf205 --- /dev/null +++ b/icons/frappe/proto.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/frappe/pug.svg b/icons/frappe/pug.svg new file mode 100644 index 00000000..059dc099 --- /dev/null +++ b/icons/frappe/pug.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/python-compiled.svg b/icons/frappe/python-compiled.svg new file mode 100644 index 00000000..81c708c3 --- /dev/null +++ b/icons/frappe/python-compiled.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/frappe/python.svg b/icons/frappe/python.svg new file mode 100644 index 00000000..e39b6629 --- /dev/null +++ b/icons/frappe/python.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/frappe/r.svg b/icons/frappe/r.svg new file mode 100644 index 00000000..90d2558b --- /dev/null +++ b/icons/frappe/r.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/racket.svg b/icons/frappe/racket.svg new file mode 100644 index 00000000..d5abc95f --- /dev/null +++ b/icons/frappe/racket.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/razor.svg b/icons/frappe/razor.svg new file mode 100644 index 00000000..43ddf422 --- /dev/null +++ b/icons/frappe/razor.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/readme.svg b/icons/frappe/readme.svg new file mode 100644 index 00000000..f4f4bba0 --- /dev/null +++ b/icons/frappe/readme.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/reason.svg b/icons/frappe/reason.svg new file mode 100644 index 00000000..b8b03c0d --- /dev/null +++ b/icons/frappe/reason.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/redwood.svg b/icons/frappe/redwood.svg new file mode 100644 index 00000000..f228e255 --- /dev/null +++ b/icons/frappe/redwood.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/remix.svg b/icons/frappe/remix.svg new file mode 100644 index 00000000..0065ccf9 --- /dev/null +++ b/icons/frappe/remix.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/renovate.svg b/icons/frappe/renovate.svg new file mode 100644 index 00000000..650eb699 --- /dev/null +++ b/icons/frappe/renovate.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/rescript.svg b/icons/frappe/rescript.svg new file mode 100644 index 00000000..064015ec --- /dev/null +++ b/icons/frappe/rescript.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/robots.svg b/icons/frappe/robots.svg new file mode 100644 index 00000000..1da5f395 --- /dev/null +++ b/icons/frappe/robots.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/rollup.svg b/icons/frappe/rollup.svg new file mode 100644 index 00000000..753805c0 --- /dev/null +++ b/icons/frappe/rollup.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/ruby-gem-lock.svg b/icons/frappe/ruby-gem-lock.svg new file mode 100644 index 00000000..29ffb560 --- /dev/null +++ b/icons/frappe/ruby-gem-lock.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/frappe/ruby-gem.svg b/icons/frappe/ruby-gem.svg new file mode 100644 index 00000000..8a63176d --- /dev/null +++ b/icons/frappe/ruby-gem.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/ruby.svg b/icons/frappe/ruby.svg new file mode 100644 index 00000000..d00f4528 --- /dev/null +++ b/icons/frappe/ruby.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/rust.svg b/icons/frappe/rust.svg new file mode 100644 index 00000000..63dbd69e --- /dev/null +++ b/icons/frappe/rust.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/sass.svg b/icons/frappe/sass.svg new file mode 100644 index 00000000..b779f8b3 --- /dev/null +++ b/icons/frappe/sass.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/scala.svg b/icons/frappe/scala.svg new file mode 100644 index 00000000..a47648d5 --- /dev/null +++ b/icons/frappe/scala.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/search.svg b/icons/frappe/search.svg new file mode 100644 index 00000000..656a9d42 --- /dev/null +++ b/icons/frappe/search.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/semantic-release.svg b/icons/frappe/semantic-release.svg new file mode 100644 index 00000000..5614e93b --- /dev/null +++ b/icons/frappe/semantic-release.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/semgrep-ignore.svg b/icons/frappe/semgrep-ignore.svg new file mode 100644 index 00000000..95dc7ba4 --- /dev/null +++ b/icons/frappe/semgrep-ignore.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/semgrep.svg b/icons/frappe/semgrep.svg new file mode 100644 index 00000000..81bcbcf3 --- /dev/null +++ b/icons/frappe/semgrep.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/sentry.svg b/icons/frappe/sentry.svg new file mode 100644 index 00000000..615e6b43 --- /dev/null +++ b/icons/frappe/sentry.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/serverless.svg b/icons/frappe/serverless.svg new file mode 100644 index 00000000..ef8d7ce4 --- /dev/null +++ b/icons/frappe/serverless.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/shader.svg b/icons/frappe/shader.svg new file mode 100644 index 00000000..83101a20 --- /dev/null +++ b/icons/frappe/shader.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/sketch.svg b/icons/frappe/sketch.svg new file mode 100644 index 00000000..12ea24bb --- /dev/null +++ b/icons/frappe/sketch.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/snowpack.svg b/icons/frappe/snowpack.svg new file mode 100644 index 00000000..55253366 --- /dev/null +++ b/icons/frappe/snowpack.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/solidity.svg b/icons/frappe/solidity.svg new file mode 100644 index 00000000..4a015d01 --- /dev/null +++ b/icons/frappe/solidity.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/sonar-cloud.svg b/icons/frappe/sonar-cloud.svg new file mode 100644 index 00000000..d625bd4f --- /dev/null +++ b/icons/frappe/sonar-cloud.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/frappe/stackblitz.svg b/icons/frappe/stackblitz.svg new file mode 100644 index 00000000..7a3e245e --- /dev/null +++ b/icons/frappe/stackblitz.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/stencil.svg b/icons/frappe/stencil.svg new file mode 100644 index 00000000..8893519b --- /dev/null +++ b/icons/frappe/stencil.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/stitches.svg b/icons/frappe/stitches.svg new file mode 100644 index 00000000..0f967ae8 --- /dev/null +++ b/icons/frappe/stitches.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/frappe/storybook-svelte.svg b/icons/frappe/storybook-svelte.svg new file mode 100644 index 00000000..55e0a674 --- /dev/null +++ b/icons/frappe/storybook-svelte.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/storybook-vue.svg b/icons/frappe/storybook-vue.svg new file mode 100644 index 00000000..2b58e00d --- /dev/null +++ b/icons/frappe/storybook-vue.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/storybook.svg b/icons/frappe/storybook.svg new file mode 100644 index 00000000..6d866045 --- /dev/null +++ b/icons/frappe/storybook.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/stylelint-ignore.svg b/icons/frappe/stylelint-ignore.svg new file mode 100644 index 00000000..0c0d2b85 --- /dev/null +++ b/icons/frappe/stylelint-ignore.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/frappe/stylelint.svg b/icons/frappe/stylelint.svg new file mode 100644 index 00000000..20f06d23 --- /dev/null +++ b/icons/frappe/stylelint.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/frappe/sublime.svg b/icons/frappe/sublime.svg new file mode 100644 index 00000000..2eb64bee --- /dev/null +++ b/icons/frappe/sublime.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/svelte-config.svg b/icons/frappe/svelte-config.svg new file mode 100644 index 00000000..ee740d53 --- /dev/null +++ b/icons/frappe/svelte-config.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/svelte.svg b/icons/frappe/svelte.svg new file mode 100644 index 00000000..61b8750a --- /dev/null +++ b/icons/frappe/svelte.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/svg.svg b/icons/frappe/svg.svg new file mode 100644 index 00000000..f27708c6 --- /dev/null +++ b/icons/frappe/svg.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/swift.svg b/icons/frappe/swift.svg new file mode 100644 index 00000000..25f8540c --- /dev/null +++ b/icons/frappe/swift.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/tailwind.svg b/icons/frappe/tailwind.svg new file mode 100644 index 00000000..030a1c0c --- /dev/null +++ b/icons/frappe/tailwind.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/tauri-ignore.svg b/icons/frappe/tauri-ignore.svg new file mode 100644 index 00000000..c9351dfc --- /dev/null +++ b/icons/frappe/tauri-ignore.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/tauri.svg b/icons/frappe/tauri.svg new file mode 100644 index 00000000..0d7283c6 --- /dev/null +++ b/icons/frappe/tauri.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/frappe/terraform.svg b/icons/frappe/terraform.svg new file mode 100644 index 00000000..9bca06e9 --- /dev/null +++ b/icons/frappe/terraform.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/text.svg b/icons/frappe/text.svg new file mode 100644 index 00000000..8e063668 --- /dev/null +++ b/icons/frappe/text.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/todo.svg b/icons/frappe/todo.svg new file mode 100644 index 00000000..a0089171 --- /dev/null +++ b/icons/frappe/todo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/toml.svg b/icons/frappe/toml.svg new file mode 100644 index 00000000..a2e1192b --- /dev/null +++ b/icons/frappe/toml.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/twine.svg b/icons/frappe/twine.svg new file mode 100644 index 00000000..da86635e --- /dev/null +++ b/icons/frappe/twine.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/typescript-config.svg b/icons/frappe/typescript-config.svg new file mode 100644 index 00000000..7a6f44b3 --- /dev/null +++ b/icons/frappe/typescript-config.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/frappe/typescript-def.svg b/icons/frappe/typescript-def.svg new file mode 100644 index 00000000..1055aa20 --- /dev/null +++ b/icons/frappe/typescript-def.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/frappe/typescript-react.svg b/icons/frappe/typescript-react.svg new file mode 100644 index 00000000..456b7b8e --- /dev/null +++ b/icons/frappe/typescript-react.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/frappe/typescript-test.svg b/icons/frappe/typescript-test.svg new file mode 100644 index 00000000..1287f558 --- /dev/null +++ b/icons/frappe/typescript-test.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/typescript.svg b/icons/frappe/typescript.svg new file mode 100644 index 00000000..06d0fa50 --- /dev/null +++ b/icons/frappe/typescript.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/unity.svg b/icons/frappe/unity.svg new file mode 100644 index 00000000..e5b88eeb --- /dev/null +++ b/icons/frappe/unity.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/unocss.svg b/icons/frappe/unocss.svg new file mode 100644 index 00000000..e0f8b032 --- /dev/null +++ b/icons/frappe/unocss.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/url.svg b/icons/frappe/url.svg new file mode 100644 index 00000000..dd83374c --- /dev/null +++ b/icons/frappe/url.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/v.svg b/icons/frappe/v.svg new file mode 100644 index 00000000..75d5af49 --- /dev/null +++ b/icons/frappe/v.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/vercel-ignore.svg b/icons/frappe/vercel-ignore.svg new file mode 100644 index 00000000..94c0c050 --- /dev/null +++ b/icons/frappe/vercel-ignore.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/vercel.svg b/icons/frappe/vercel.svg new file mode 100644 index 00000000..377603be --- /dev/null +++ b/icons/frappe/vercel.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/verilog.svg b/icons/frappe/verilog.svg new file mode 100644 index 00000000..60be371b --- /dev/null +++ b/icons/frappe/verilog.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/video.svg b/icons/frappe/video.svg new file mode 100644 index 00000000..8306a276 --- /dev/null +++ b/icons/frappe/video.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/vim.svg b/icons/frappe/vim.svg new file mode 100644 index 00000000..cc6a8647 --- /dev/null +++ b/icons/frappe/vim.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/visual-studio.svg b/icons/frappe/visual-studio.svg new file mode 100644 index 00000000..2321e5e0 --- /dev/null +++ b/icons/frappe/visual-studio.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/vite.svg b/icons/frappe/vite.svg new file mode 100644 index 00000000..6b48c597 --- /dev/null +++ b/icons/frappe/vite.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/vitest.svg b/icons/frappe/vitest.svg new file mode 100644 index 00000000..1e369673 --- /dev/null +++ b/icons/frappe/vitest.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/vs-codium.svg b/icons/frappe/vs-codium.svg new file mode 100644 index 00000000..ffbcca4f --- /dev/null +++ b/icons/frappe/vs-codium.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/frappe/vscode-ignore.svg b/icons/frappe/vscode-ignore.svg new file mode 100644 index 00000000..f5773f55 --- /dev/null +++ b/icons/frappe/vscode-ignore.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/vscode.svg b/icons/frappe/vscode.svg new file mode 100644 index 00000000..d01e3413 --- /dev/null +++ b/icons/frappe/vscode.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/vue-config.svg b/icons/frappe/vue-config.svg new file mode 100644 index 00000000..126f5342 --- /dev/null +++ b/icons/frappe/vue-config.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/vue.svg b/icons/frappe/vue.svg new file mode 100644 index 00000000..465be814 --- /dev/null +++ b/icons/frappe/vue.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/web-assembly.svg b/icons/frappe/web-assembly.svg new file mode 100644 index 00000000..02fd2477 --- /dev/null +++ b/icons/frappe/web-assembly.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/frappe/webpack.svg b/icons/frappe/webpack.svg new file mode 100644 index 00000000..2dabab0e --- /dev/null +++ b/icons/frappe/webpack.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/frappe/windi.svg b/icons/frappe/windi.svg new file mode 100644 index 00000000..07bcfb7d --- /dev/null +++ b/icons/frappe/windi.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/workflow.svg b/icons/frappe/workflow.svg new file mode 100644 index 00000000..f179a725 --- /dev/null +++ b/icons/frappe/workflow.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/xaml.svg b/icons/frappe/xaml.svg new file mode 100644 index 00000000..19ddab5e --- /dev/null +++ b/icons/frappe/xaml.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/frappe/xmake.svg b/icons/frappe/xmake.svg new file mode 100644 index 00000000..95806f1d --- /dev/null +++ b/icons/frappe/xmake.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/frappe/xml.svg b/icons/frappe/xml.svg new file mode 100644 index 00000000..8ae8d9f8 --- /dev/null +++ b/icons/frappe/xml.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/yaml.svg b/icons/frappe/yaml.svg new file mode 100644 index 00000000..05802f23 --- /dev/null +++ b/icons/frappe/yaml.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/yarn-lock.svg b/icons/frappe/yarn-lock.svg new file mode 100644 index 00000000..42f561d9 --- /dev/null +++ b/icons/frappe/yarn-lock.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/frappe/yarn.svg b/icons/frappe/yarn.svg new file mode 100644 index 00000000..ef55824b --- /dev/null +++ b/icons/frappe/yarn.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/frappe/zig.svg b/icons/frappe/zig.svg new file mode 100644 index 00000000..cba01c51 --- /dev/null +++ b/icons/frappe/zig.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/fsharp.svg b/icons/fsharp.svg deleted file mode 100644 index 6c2dc2f0..00000000 --- a/icons/fsharp.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/gatsby.svg b/icons/gatsby.svg deleted file mode 100644 index 9b8957d0..00000000 --- a/icons/gatsby.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/git.svg b/icons/git.svg deleted file mode 100644 index bfa287a9..00000000 --- a/icons/git.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/icons/gitlab.svg b/icons/gitlab.svg deleted file mode 100644 index 89ad0bcf..00000000 --- a/icons/gitlab.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/gitpod.svg b/icons/gitpod.svg deleted file mode 100644 index 13b356d0..00000000 --- a/icons/gitpod.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/gnuplot.svg b/icons/gnuplot.svg deleted file mode 100644 index b85a6029..00000000 --- a/icons/gnuplot.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/go.svg b/icons/go.svg deleted file mode 100644 index ca34a8e0..00000000 --- a/icons/go.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/go_mod.svg b/icons/go_mod.svg deleted file mode 100644 index 1cecaee7..00000000 --- a/icons/go_mod.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/godot.svg b/icons/godot.svg deleted file mode 100644 index 0e5e93d2..00000000 --- a/icons/godot.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/icons/gradle.svg b/icons/gradle.svg deleted file mode 100644 index 5fc99620..00000000 --- a/icons/gradle.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/graphql.svg b/icons/graphql.svg deleted file mode 100644 index ea95c0ea..00000000 --- a/icons/graphql.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons/groovy.svg b/icons/groovy.svg deleted file mode 100644 index c859a702..00000000 --- a/icons/groovy.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/h.svg b/icons/h.svg deleted file mode 100644 index 816545c7..00000000 --- a/icons/h.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/haml.svg b/icons/haml.svg deleted file mode 100644 index ae2ffd4f..00000000 --- a/icons/haml.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons/handlebars.svg b/icons/handlebars.svg deleted file mode 100644 index b4a3ab09..00000000 --- a/icons/handlebars.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/haskell.svg b/icons/haskell.svg deleted file mode 100644 index f6bda390..00000000 --- a/icons/haskell.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/haxe.svg b/icons/haxe.svg deleted file mode 100644 index 6e964232..00000000 --- a/icons/haxe.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/helm.svg b/icons/helm.svg deleted file mode 100644 index 35709216..00000000 --- a/icons/helm.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/icons/heroku.svg b/icons/heroku.svg deleted file mode 100644 index 556f0ead..00000000 --- a/icons/heroku.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/histoire.svg b/icons/histoire.svg deleted file mode 100644 index 57a57797..00000000 --- a/icons/histoire.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/hpp.svg b/icons/hpp.svg deleted file mode 100644 index e131ab9f..00000000 --- a/icons/hpp.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/html.svg b/icons/html.svg deleted file mode 100644 index 97956a29..00000000 --- a/icons/html.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/http.svg b/icons/http.svg deleted file mode 100644 index 6b6b4811..00000000 --- a/icons/http.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/husky.svg b/icons/husky.svg deleted file mode 100644 index b777cd80..00000000 --- a/icons/husky.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/image.svg b/icons/image.svg deleted file mode 100644 index a59c5903..00000000 --- a/icons/image.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/ionic.svg b/icons/ionic.svg deleted file mode 100644 index 1cf8420a..00000000 --- a/icons/ionic.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/java.svg b/icons/java.svg deleted file mode 100644 index cf70c08b..00000000 --- a/icons/java.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/java_class.svg b/icons/java_class.svg deleted file mode 100644 index 5d370beb..00000000 --- a/icons/java_class.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/java_jar.svg b/icons/java_jar.svg deleted file mode 100644 index d9042bc2..00000000 --- a/icons/java_jar.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/javascript.svg b/icons/javascript.svg deleted file mode 100644 index d040f1f2..00000000 --- a/icons/javascript.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/javascript_config.svg b/icons/javascript_config.svg deleted file mode 100644 index feac1536..00000000 --- a/icons/javascript_config.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/icons/javascript_map.svg b/icons/javascript_map.svg deleted file mode 100644 index b7e866da..00000000 --- a/icons/javascript_map.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/icons/javascript_react.svg b/icons/javascript_react.svg deleted file mode 100644 index 4b8d472a..00000000 --- a/icons/javascript_react.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/javascript_test.svg b/icons/javascript_test.svg deleted file mode 100644 index 13ef40ed..00000000 --- a/icons/javascript_test.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/icons/jest.svg b/icons/jest.svg deleted file mode 100644 index 3b231d42..00000000 --- a/icons/jest.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/icons/jinja.svg b/icons/jinja.svg deleted file mode 100644 index 7f8edc52..00000000 --- a/icons/jinja.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/json.svg b/icons/json.svg deleted file mode 100644 index bf742a55..00000000 --- a/icons/json.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/julia.svg b/icons/julia.svg deleted file mode 100644 index cead0074..00000000 --- a/icons/julia.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/jupyter.svg b/icons/jupyter.svg deleted file mode 100644 index 6c0808b2..00000000 --- a/icons/jupyter.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/key.svg b/icons/key.svg deleted file mode 100644 index e84db7ab..00000000 --- a/icons/key.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/kotlin.svg b/icons/kotlin.svg deleted file mode 100644 index e4b07732..00000000 --- a/icons/kotlin.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/laravel.svg b/icons/laravel.svg deleted file mode 100644 index d31b8571..00000000 --- a/icons/laravel.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/latex.svg b/icons/latex.svg deleted file mode 100644 index f0b5af64..00000000 --- a/icons/latex.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/latte/_file.svg b/icons/latte/_file.svg new file mode 100644 index 00000000..a3bd1d0c --- /dev/null +++ b/icons/latte/_file.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/_folder.svg b/icons/latte/_folder.svg new file mode 100644 index 00000000..de099fab --- /dev/null +++ b/icons/latte/_folder.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/_folder_open.svg b/icons/latte/_folder_open.svg new file mode 100644 index 00000000..0e3967c7 --- /dev/null +++ b/icons/latte/_folder_open.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/adonis.svg b/icons/latte/adonis.svg new file mode 100644 index 00000000..c8ae39ea --- /dev/null +++ b/icons/latte/adonis.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/alex.svg b/icons/latte/alex.svg new file mode 100644 index 00000000..f2895ed1 --- /dev/null +++ b/icons/latte/alex.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/android.svg b/icons/latte/android.svg new file mode 100644 index 00000000..e09fff4f --- /dev/null +++ b/icons/latte/android.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/antlr.svg b/icons/latte/antlr.svg new file mode 100644 index 00000000..17e7c520 --- /dev/null +++ b/icons/latte/antlr.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/api-blueprint.svg b/icons/latte/api-blueprint.svg new file mode 100644 index 00000000..8a92a1ae --- /dev/null +++ b/icons/latte/api-blueprint.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/apollo.svg b/icons/latte/apollo.svg new file mode 100644 index 00000000..29b54ec4 --- /dev/null +++ b/icons/latte/apollo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/audio.svg b/icons/latte/audio.svg new file mode 100644 index 00000000..fab80e70 --- /dev/null +++ b/icons/latte/audio.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/azure-pipelines.svg b/icons/latte/azure-pipelines.svg new file mode 100644 index 00000000..5f0be343 --- /dev/null +++ b/icons/latte/azure-pipelines.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/babel.svg b/icons/latte/babel.svg new file mode 100644 index 00000000..0f485456 --- /dev/null +++ b/icons/latte/babel.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/bash.svg b/icons/latte/bash.svg new file mode 100644 index 00000000..0224341e --- /dev/null +++ b/icons/latte/bash.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/latte/batch.svg b/icons/latte/batch.svg new file mode 100644 index 00000000..cbfd37ce --- /dev/null +++ b/icons/latte/batch.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/binary.svg b/icons/latte/binary.svg new file mode 100644 index 00000000..24b41768 --- /dev/null +++ b/icons/latte/binary.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/bitbucket.svg b/icons/latte/bitbucket.svg new file mode 100644 index 00000000..539e8741 --- /dev/null +++ b/icons/latte/bitbucket.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/blitz.svg b/icons/latte/blitz.svg new file mode 100644 index 00000000..58a95a49 --- /dev/null +++ b/icons/latte/blitz.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/bower.svg b/icons/latte/bower.svg new file mode 100644 index 00000000..62af9f02 --- /dev/null +++ b/icons/latte/bower.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/latte/browserslist.svg b/icons/latte/browserslist.svg new file mode 100644 index 00000000..914e60d2 --- /dev/null +++ b/icons/latte/browserslist.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/bun-lock.svg b/icons/latte/bun-lock.svg new file mode 100644 index 00000000..32b5b5f5 --- /dev/null +++ b/icons/latte/bun-lock.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/latte/bun.svg b/icons/latte/bun.svg new file mode 100644 index 00000000..ac8c65a2 --- /dev/null +++ b/icons/latte/bun.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/latte/c-header.svg b/icons/latte/c-header.svg new file mode 100644 index 00000000..3d1cd2ef --- /dev/null +++ b/icons/latte/c-header.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/c.svg b/icons/latte/c.svg new file mode 100644 index 00000000..0114c0ba --- /dev/null +++ b/icons/latte/c.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/caddy.svg b/icons/latte/caddy.svg new file mode 100644 index 00000000..6c645ffe --- /dev/null +++ b/icons/latte/caddy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/capacitor.svg b/icons/latte/capacitor.svg new file mode 100644 index 00000000..542c1590 --- /dev/null +++ b/icons/latte/capacitor.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/certificate.svg b/icons/latte/certificate.svg new file mode 100644 index 00000000..c04ed2b0 --- /dev/null +++ b/icons/latte/certificate.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/latte/changelog.svg b/icons/latte/changelog.svg new file mode 100644 index 00000000..48519c41 --- /dev/null +++ b/icons/latte/changelog.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/circle-ci.svg b/icons/latte/circle-ci.svg new file mode 100644 index 00000000..0f574c1c --- /dev/null +++ b/icons/latte/circle-ci.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/clojure.svg b/icons/latte/clojure.svg new file mode 100644 index 00000000..52a85f4b --- /dev/null +++ b/icons/latte/clojure.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons/latte/cmake.svg b/icons/latte/cmake.svg new file mode 100644 index 00000000..f9c2ec10 --- /dev/null +++ b/icons/latte/cmake.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/latte/cobol.svg b/icons/latte/cobol.svg new file mode 100644 index 00000000..0edad066 --- /dev/null +++ b/icons/latte/cobol.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/code-climate.svg b/icons/latte/code-climate.svg new file mode 100644 index 00000000..b37aa468 --- /dev/null +++ b/icons/latte/code-climate.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/code-of-conduct.svg b/icons/latte/code-of-conduct.svg new file mode 100644 index 00000000..68ae87a1 --- /dev/null +++ b/icons/latte/code-of-conduct.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/coffeescript.svg b/icons/latte/coffeescript.svg new file mode 100644 index 00000000..f86601ea --- /dev/null +++ b/icons/latte/coffeescript.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/commitlint.svg b/icons/latte/commitlint.svg new file mode 100644 index 00000000..e3b5fc14 --- /dev/null +++ b/icons/latte/commitlint.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/cpp-header.svg b/icons/latte/cpp-header.svg new file mode 100644 index 00000000..42aae1e7 --- /dev/null +++ b/icons/latte/cpp-header.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/cpp.svg b/icons/latte/cpp.svg new file mode 100644 index 00000000..e226581f --- /dev/null +++ b/icons/latte/cpp.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/csharp.svg b/icons/latte/csharp.svg new file mode 100644 index 00000000..60a49f0f --- /dev/null +++ b/icons/latte/csharp.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/css-map.svg b/icons/latte/css-map.svg new file mode 100644 index 00000000..aeddbb52 --- /dev/null +++ b/icons/latte/css-map.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/latte/css.svg b/icons/latte/css.svg new file mode 100644 index 00000000..2c311029 --- /dev/null +++ b/icons/latte/css.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/csv.svg b/icons/latte/csv.svg new file mode 100644 index 00000000..5c9fa1fa --- /dev/null +++ b/icons/latte/csv.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/cucumber.svg b/icons/latte/cucumber.svg new file mode 100644 index 00000000..0f88858f --- /dev/null +++ b/icons/latte/cucumber.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/cuda.svg b/icons/latte/cuda.svg new file mode 100644 index 00000000..ced44e45 --- /dev/null +++ b/icons/latte/cuda.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/cypress.svg b/icons/latte/cypress.svg new file mode 100644 index 00000000..82179f85 --- /dev/null +++ b/icons/latte/cypress.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/d.svg b/icons/latte/d.svg new file mode 100644 index 00000000..a687a127 --- /dev/null +++ b/icons/latte/d.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/dart-generated.svg b/icons/latte/dart-generated.svg new file mode 100644 index 00000000..22fbd30e --- /dev/null +++ b/icons/latte/dart-generated.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/dart.svg b/icons/latte/dart.svg new file mode 100644 index 00000000..f41960a5 --- /dev/null +++ b/icons/latte/dart.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/database.svg b/icons/latte/database.svg new file mode 100644 index 00000000..a94da60f --- /dev/null +++ b/icons/latte/database.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/deno.svg b/icons/latte/deno.svg new file mode 100644 index 00000000..334cc3fc --- /dev/null +++ b/icons/latte/deno.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/deno_lock.svg b/icons/latte/deno_lock.svg new file mode 100644 index 00000000..9055b856 --- /dev/null +++ b/icons/latte/deno_lock.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/dependabot.svg b/icons/latte/dependabot.svg new file mode 100644 index 00000000..b59d209e --- /dev/null +++ b/icons/latte/dependabot.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/dhall.svg b/icons/latte/dhall.svg new file mode 100644 index 00000000..a54d00a9 --- /dev/null +++ b/icons/latte/dhall.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/diff.svg b/icons/latte/diff.svg new file mode 100644 index 00000000..c5a9905e --- /dev/null +++ b/icons/latte/diff.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/latte/django.svg b/icons/latte/django.svg new file mode 100644 index 00000000..fdfa1576 --- /dev/null +++ b/icons/latte/django.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/docker-compose.svg b/icons/latte/docker-compose.svg new file mode 100644 index 00000000..d379ebf6 --- /dev/null +++ b/icons/latte/docker-compose.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/docker-ignore.svg b/icons/latte/docker-ignore.svg new file mode 100644 index 00000000..3e8a7875 --- /dev/null +++ b/icons/latte/docker-ignore.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/docker.svg b/icons/latte/docker.svg new file mode 100644 index 00000000..e616b6e0 --- /dev/null +++ b/icons/latte/docker.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/drawio.svg b/icons/latte/drawio.svg new file mode 100644 index 00000000..6bf97528 --- /dev/null +++ b/icons/latte/drawio.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/editorconfig.svg b/icons/latte/editorconfig.svg new file mode 100644 index 00000000..e0725c60 --- /dev/null +++ b/icons/latte/editorconfig.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/ejs.svg b/icons/latte/ejs.svg new file mode 100644 index 00000000..2543bc20 --- /dev/null +++ b/icons/latte/ejs.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/elixir.svg b/icons/latte/elixir.svg new file mode 100644 index 00000000..89d992b8 --- /dev/null +++ b/icons/latte/elixir.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/elm.svg b/icons/latte/elm.svg new file mode 100644 index 00000000..af7874c4 --- /dev/null +++ b/icons/latte/elm.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/ember.svg b/icons/latte/ember.svg new file mode 100644 index 00000000..85707e37 --- /dev/null +++ b/icons/latte/ember.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/env.svg b/icons/latte/env.svg new file mode 100644 index 00000000..b71316d6 --- /dev/null +++ b/icons/latte/env.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/erlang.svg b/icons/latte/erlang.svg new file mode 100644 index 00000000..3bf2323a --- /dev/null +++ b/icons/latte/erlang.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/esbuild.svg b/icons/latte/esbuild.svg new file mode 100644 index 00000000..e5163b39 --- /dev/null +++ b/icons/latte/esbuild.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/eslint-ignore.svg b/icons/latte/eslint-ignore.svg new file mode 100644 index 00000000..d4b0ecda --- /dev/null +++ b/icons/latte/eslint-ignore.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/eslint.svg b/icons/latte/eslint.svg new file mode 100644 index 00000000..5420ddbc --- /dev/null +++ b/icons/latte/eslint.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/exe.svg b/icons/latte/exe.svg new file mode 100644 index 00000000..5dddfdc5 --- /dev/null +++ b/icons/latte/exe.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/fastlane.svg b/icons/latte/fastlane.svg new file mode 100644 index 00000000..e4012460 --- /dev/null +++ b/icons/latte/fastlane.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons/latte/favicon.svg b/icons/latte/favicon.svg new file mode 100644 index 00000000..020cf887 --- /dev/null +++ b/icons/latte/favicon.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/figma.svg b/icons/latte/figma.svg new file mode 100644 index 00000000..127c84d5 --- /dev/null +++ b/icons/latte/figma.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/latte/firebase.svg b/icons/latte/firebase.svg new file mode 100644 index 00000000..4ed9cb34 --- /dev/null +++ b/icons/latte/firebase.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/folder_admin.svg b/icons/latte/folder_admin.svg new file mode 100644 index 00000000..8f837cc4 --- /dev/null +++ b/icons/latte/folder_admin.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_admin_open.svg b/icons/latte/folder_admin_open.svg new file mode 100644 index 00000000..aedf88a6 --- /dev/null +++ b/icons/latte/folder_admin_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_android.svg b/icons/latte/folder_android.svg new file mode 100644 index 00000000..e7f9a529 --- /dev/null +++ b/icons/latte/folder_android.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_android__open.svg b/icons/latte/folder_android__open.svg new file mode 100644 index 00000000..59b219f4 --- /dev/null +++ b/icons/latte/folder_android__open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_animation.svg b/icons/latte/folder_animation.svg new file mode 100644 index 00000000..94ca1999 --- /dev/null +++ b/icons/latte/folder_animation.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_animation_open.svg b/icons/latte/folder_animation_open.svg new file mode 100644 index 00000000..98f6f921 --- /dev/null +++ b/icons/latte/folder_animation_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_api.svg b/icons/latte/folder_api.svg new file mode 100644 index 00000000..331b094f --- /dev/null +++ b/icons/latte/folder_api.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_api_open.svg b/icons/latte/folder_api_open.svg new file mode 100644 index 00000000..07842708 --- /dev/null +++ b/icons/latte/folder_api_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_app.svg b/icons/latte/folder_app.svg new file mode 100644 index 00000000..76eb5a34 --- /dev/null +++ b/icons/latte/folder_app.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/latte/folder_app_open.svg b/icons/latte/folder_app_open.svg new file mode 100644 index 00000000..586b28b4 --- /dev/null +++ b/icons/latte/folder_app_open.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/latte/folder_audio.svg b/icons/latte/folder_audio.svg new file mode 100644 index 00000000..66ee9623 --- /dev/null +++ b/icons/latte/folder_audio.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/latte/folder_audio_open.svg b/icons/latte/folder_audio_open.svg new file mode 100644 index 00000000..c9061da3 --- /dev/null +++ b/icons/latte/folder_audio_open.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/latte/folder_aws.svg b/icons/latte/folder_aws.svg new file mode 100644 index 00000000..b9e0e6fd --- /dev/null +++ b/icons/latte/folder_aws.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/latte/folder_aws_open.svg b/icons/latte/folder_aws_open.svg new file mode 100644 index 00000000..b262a3aa --- /dev/null +++ b/icons/latte/folder_aws_open.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/latte/folder_benchmark.svg b/icons/latte/folder_benchmark.svg new file mode 100644 index 00000000..76b732c4 --- /dev/null +++ b/icons/latte/folder_benchmark.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_benchmark_open.svg b/icons/latte/folder_benchmark_open.svg new file mode 100644 index 00000000..409e63c4 --- /dev/null +++ b/icons/latte/folder_benchmark_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_circle-ci.svg b/icons/latte/folder_circle-ci.svg new file mode 100644 index 00000000..45d9a69a --- /dev/null +++ b/icons/latte/folder_circle-ci.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/latte/folder_circle-ci_open.svg b/icons/latte/folder_circle-ci_open.svg new file mode 100644 index 00000000..0be052a3 --- /dev/null +++ b/icons/latte/folder_circle-ci_open.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/latte/folder_client.svg b/icons/latte/folder_client.svg new file mode 100644 index 00000000..29e6fd9b --- /dev/null +++ b/icons/latte/folder_client.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_client_open.svg b/icons/latte/folder_client_open.svg new file mode 100644 index 00000000..632c6aa3 --- /dev/null +++ b/icons/latte/folder_client_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_cloud.svg b/icons/latte/folder_cloud.svg new file mode 100644 index 00000000..fe8d2427 --- /dev/null +++ b/icons/latte/folder_cloud.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_cloud_open.svg b/icons/latte/folder_cloud_open.svg new file mode 100644 index 00000000..8a3f3dcb --- /dev/null +++ b/icons/latte/folder_cloud_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_command.svg b/icons/latte/folder_command.svg new file mode 100644 index 00000000..ed41dfa4 --- /dev/null +++ b/icons/latte/folder_command.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_command_open.svg b/icons/latte/folder_command_open.svg new file mode 100644 index 00000000..3b288f80 --- /dev/null +++ b/icons/latte/folder_command_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_components.svg b/icons/latte/folder_components.svg new file mode 100644 index 00000000..7148cab9 --- /dev/null +++ b/icons/latte/folder_components.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_components_open.svg b/icons/latte/folder_components_open.svg new file mode 100644 index 00000000..ae28ea61 --- /dev/null +++ b/icons/latte/folder_components_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_composables.svg b/icons/latte/folder_composables.svg new file mode 100644 index 00000000..b7253f8d --- /dev/null +++ b/icons/latte/folder_composables.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_composables_open.svg b/icons/latte/folder_composables_open.svg new file mode 100644 index 00000000..46f0777d --- /dev/null +++ b/icons/latte/folder_composables_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_config.svg b/icons/latte/folder_config.svg new file mode 100644 index 00000000..096f7f2d --- /dev/null +++ b/icons/latte/folder_config.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_config_open.svg b/icons/latte/folder_config_open.svg new file mode 100644 index 00000000..2812689f --- /dev/null +++ b/icons/latte/folder_config_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_connection.svg b/icons/latte/folder_connection.svg new file mode 100644 index 00000000..19bb7e5b --- /dev/null +++ b/icons/latte/folder_connection.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_connection_open.svg b/icons/latte/folder_connection_open.svg new file mode 100644 index 00000000..37dad732 --- /dev/null +++ b/icons/latte/folder_connection_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_constant.svg b/icons/latte/folder_constant.svg new file mode 100644 index 00000000..514d5432 --- /dev/null +++ b/icons/latte/folder_constant.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_constant_open.svg b/icons/latte/folder_constant_open.svg new file mode 100644 index 00000000..7bdc836e --- /dev/null +++ b/icons/latte/folder_constant_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_controllers.svg b/icons/latte/folder_controllers.svg new file mode 100644 index 00000000..8cac4335 --- /dev/null +++ b/icons/latte/folder_controllers.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_controllers_open.svg b/icons/latte/folder_controllers_open.svg new file mode 100644 index 00000000..86266f14 --- /dev/null +++ b/icons/latte/folder_controllers_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_core.svg b/icons/latte/folder_core.svg new file mode 100644 index 00000000..88d4f989 --- /dev/null +++ b/icons/latte/folder_core.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_core_open.svg b/icons/latte/folder_core_open.svg new file mode 100644 index 00000000..aa886e16 --- /dev/null +++ b/icons/latte/folder_core_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_coverage.svg b/icons/latte/folder_coverage.svg new file mode 100644 index 00000000..e702b6cf --- /dev/null +++ b/icons/latte/folder_coverage.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_coverage_open.svg b/icons/latte/folder_coverage_open.svg new file mode 100644 index 00000000..10018c34 --- /dev/null +++ b/icons/latte/folder_coverage_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_cypress.svg b/icons/latte/folder_cypress.svg new file mode 100644 index 00000000..074ab067 --- /dev/null +++ b/icons/latte/folder_cypress.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_cypress__open.svg b/icons/latte/folder_cypress__open.svg new file mode 100644 index 00000000..ff1a302c --- /dev/null +++ b/icons/latte/folder_cypress__open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_database.svg b/icons/latte/folder_database.svg new file mode 100644 index 00000000..cd9a664d --- /dev/null +++ b/icons/latte/folder_database.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_database_open.svg b/icons/latte/folder_database_open.svg new file mode 100644 index 00000000..414873e7 --- /dev/null +++ b/icons/latte/folder_database_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_debug.svg b/icons/latte/folder_debug.svg new file mode 100644 index 00000000..f7ee2a52 --- /dev/null +++ b/icons/latte/folder_debug.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_debug_open.svg b/icons/latte/folder_debug_open.svg new file mode 100644 index 00000000..b3ae1360 --- /dev/null +++ b/icons/latte/folder_debug_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_dist.svg b/icons/latte/folder_dist.svg new file mode 100644 index 00000000..a3d27e96 --- /dev/null +++ b/icons/latte/folder_dist.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_dist_open.svg b/icons/latte/folder_dist_open.svg new file mode 100644 index 00000000..d5c02086 --- /dev/null +++ b/icons/latte/folder_dist_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_docker.svg b/icons/latte/folder_docker.svg new file mode 100644 index 00000000..8cc17072 --- /dev/null +++ b/icons/latte/folder_docker.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/latte/folder_docker_open.svg b/icons/latte/folder_docker_open.svg new file mode 100644 index 00000000..60139324 --- /dev/null +++ b/icons/latte/folder_docker_open.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/latte/folder_docs.svg b/icons/latte/folder_docs.svg new file mode 100644 index 00000000..c69a4c74 --- /dev/null +++ b/icons/latte/folder_docs.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_docs__open.svg b/icons/latte/folder_docs__open.svg new file mode 100644 index 00000000..28facfba --- /dev/null +++ b/icons/latte/folder_docs__open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_download.svg b/icons/latte/folder_download.svg new file mode 100644 index 00000000..7c7e7c51 --- /dev/null +++ b/icons/latte/folder_download.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_download_open.svg b/icons/latte/folder_download_open.svg new file mode 100644 index 00000000..2409e338 --- /dev/null +++ b/icons/latte/folder_download_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_examples.svg b/icons/latte/folder_examples.svg new file mode 100644 index 00000000..eb1da357 --- /dev/null +++ b/icons/latte/folder_examples.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_examples_open.svg b/icons/latte/folder_examples_open.svg new file mode 100644 index 00000000..7e9f6899 --- /dev/null +++ b/icons/latte/folder_examples_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_firebase.svg b/icons/latte/folder_firebase.svg new file mode 100644 index 00000000..d9317e1a --- /dev/null +++ b/icons/latte/folder_firebase.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_firebase_open.svg b/icons/latte/folder_firebase_open.svg new file mode 100644 index 00000000..3c60515d --- /dev/null +++ b/icons/latte/folder_firebase_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_fonts.svg b/icons/latte/folder_fonts.svg new file mode 100644 index 00000000..30609364 --- /dev/null +++ b/icons/latte/folder_fonts.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_fonts_open.svg b/icons/latte/folder_fonts_open.svg new file mode 100644 index 00000000..4a273c95 --- /dev/null +++ b/icons/latte/folder_fonts_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_functions.svg b/icons/latte/folder_functions.svg new file mode 100644 index 00000000..e6490193 --- /dev/null +++ b/icons/latte/folder_functions.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_functions_open.svg b/icons/latte/folder_functions_open.svg new file mode 100644 index 00000000..57fa9b63 --- /dev/null +++ b/icons/latte/folder_functions_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_git.svg b/icons/latte/folder_git.svg new file mode 100644 index 00000000..3c1966d0 --- /dev/null +++ b/icons/latte/folder_git.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_git_open.svg b/icons/latte/folder_git_open.svg new file mode 100644 index 00000000..3435486f --- /dev/null +++ b/icons/latte/folder_git_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_github.svg b/icons/latte/folder_github.svg new file mode 100644 index 00000000..fff637a4 --- /dev/null +++ b/icons/latte/folder_github.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_github_open.svg b/icons/latte/folder_github_open.svg new file mode 100644 index 00000000..c5f6239d --- /dev/null +++ b/icons/latte/folder_github_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_gitlab.svg b/icons/latte/folder_gitlab.svg new file mode 100644 index 00000000..1d0a62db --- /dev/null +++ b/icons/latte/folder_gitlab.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_gitlab_open.svg b/icons/latte/folder_gitlab_open.svg new file mode 100644 index 00000000..4429d96f --- /dev/null +++ b/icons/latte/folder_gitlab_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_husky.svg b/icons/latte/folder_husky.svg new file mode 100644 index 00000000..027d3961 --- /dev/null +++ b/icons/latte/folder_husky.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/latte/folder_husky_open.svg b/icons/latte/folder_husky_open.svg new file mode 100644 index 00000000..a6c17138 --- /dev/null +++ b/icons/latte/folder_husky_open.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/latte/folder_images.svg b/icons/latte/folder_images.svg new file mode 100644 index 00000000..96d0c11b --- /dev/null +++ b/icons/latte/folder_images.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/latte/folder_images_open.svg b/icons/latte/folder_images_open.svg new file mode 100644 index 00000000..c00fc907 --- /dev/null +++ b/icons/latte/folder_images_open.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/latte/folder_kubernetes.svg b/icons/latte/folder_kubernetes.svg new file mode 100644 index 00000000..9ce35855 --- /dev/null +++ b/icons/latte/folder_kubernetes.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/latte/folder_kubernetes_open.svg b/icons/latte/folder_kubernetes_open.svg new file mode 100644 index 00000000..d8dead32 --- /dev/null +++ b/icons/latte/folder_kubernetes_open.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/latte/folder_layouts.svg b/icons/latte/folder_layouts.svg new file mode 100644 index 00000000..0d7f417d --- /dev/null +++ b/icons/latte/folder_layouts.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_layouts_open.svg b/icons/latte/folder_layouts_open.svg new file mode 100644 index 00000000..90cb8c27 --- /dev/null +++ b/icons/latte/folder_layouts_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_locales.svg b/icons/latte/folder_locales.svg new file mode 100644 index 00000000..115213f7 --- /dev/null +++ b/icons/latte/folder_locales.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_locales_open.svg b/icons/latte/folder_locales_open.svg new file mode 100644 index 00000000..0173e06a --- /dev/null +++ b/icons/latte/folder_locales_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_middleware.svg b/icons/latte/folder_middleware.svg new file mode 100644 index 00000000..4bffb77e --- /dev/null +++ b/icons/latte/folder_middleware.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_middleware_open.svg b/icons/latte/folder_middleware_open.svg new file mode 100644 index 00000000..77b13a0f --- /dev/null +++ b/icons/latte/folder_middleware_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_mocks.svg b/icons/latte/folder_mocks.svg new file mode 100644 index 00000000..ba1ddd5d --- /dev/null +++ b/icons/latte/folder_mocks.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_mocks_open.svg b/icons/latte/folder_mocks_open.svg new file mode 100644 index 00000000..abc5bef9 --- /dev/null +++ b/icons/latte/folder_mocks_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_next.svg b/icons/latte/folder_next.svg new file mode 100644 index 00000000..d2c3b584 --- /dev/null +++ b/icons/latte/folder_next.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_next_open.svg b/icons/latte/folder_next_open.svg new file mode 100644 index 00000000..c62c3ad4 --- /dev/null +++ b/icons/latte/folder_next_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_node.svg b/icons/latte/folder_node.svg new file mode 100644 index 00000000..01d25221 --- /dev/null +++ b/icons/latte/folder_node.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_node_open.svg b/icons/latte/folder_node_open.svg new file mode 100644 index 00000000..2a460fd2 --- /dev/null +++ b/icons/latte/folder_node_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_nuxt.svg b/icons/latte/folder_nuxt.svg new file mode 100644 index 00000000..886ec1cf --- /dev/null +++ b/icons/latte/folder_nuxt.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_nuxt_open.svg b/icons/latte/folder_nuxt_open.svg new file mode 100644 index 00000000..1b8249be --- /dev/null +++ b/icons/latte/folder_nuxt_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_packages.svg b/icons/latte/folder_packages.svg new file mode 100644 index 00000000..b59a1df1 --- /dev/null +++ b/icons/latte/folder_packages.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_packages_open.svg b/icons/latte/folder_packages_open.svg new file mode 100644 index 00000000..400e88d9 --- /dev/null +++ b/icons/latte/folder_packages_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_plugins.svg b/icons/latte/folder_plugins.svg new file mode 100644 index 00000000..0dc8bf0d --- /dev/null +++ b/icons/latte/folder_plugins.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_plugins_open.svg b/icons/latte/folder_plugins_open.svg new file mode 100644 index 00000000..2ada7ce7 --- /dev/null +++ b/icons/latte/folder_plugins_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_prisma.svg b/icons/latte/folder_prisma.svg new file mode 100644 index 00000000..23d8487b --- /dev/null +++ b/icons/latte/folder_prisma.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_prisma_open.svg b/icons/latte/folder_prisma_open.svg new file mode 100644 index 00000000..e6ad7f86 --- /dev/null +++ b/icons/latte/folder_prisma_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_public.svg b/icons/latte/folder_public.svg new file mode 100644 index 00000000..ea8bded8 --- /dev/null +++ b/icons/latte/folder_public.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_public_open.svg b/icons/latte/folder_public_open.svg new file mode 100644 index 00000000..13fc6c14 --- /dev/null +++ b/icons/latte/folder_public_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_queue.svg b/icons/latte/folder_queue.svg new file mode 100644 index 00000000..9af6db53 --- /dev/null +++ b/icons/latte/folder_queue.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_queue_open.svg b/icons/latte/folder_queue_open.svg new file mode 100644 index 00000000..dd635218 --- /dev/null +++ b/icons/latte/folder_queue_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_redux.svg b/icons/latte/folder_redux.svg new file mode 100644 index 00000000..62afcacf --- /dev/null +++ b/icons/latte/folder_redux.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_redux_open.svg b/icons/latte/folder_redux_open.svg new file mode 100644 index 00000000..8409347b --- /dev/null +++ b/icons/latte/folder_redux_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_routes.svg b/icons/latte/folder_routes.svg new file mode 100644 index 00000000..50bac124 --- /dev/null +++ b/icons/latte/folder_routes.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_routes_open.svg b/icons/latte/folder_routes_open.svg new file mode 100644 index 00000000..73db20ef --- /dev/null +++ b/icons/latte/folder_routes_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_sass.svg b/icons/latte/folder_sass.svg new file mode 100644 index 00000000..9e1b648f --- /dev/null +++ b/icons/latte/folder_sass.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_sass_open.svg b/icons/latte/folder_sass_open.svg new file mode 100644 index 00000000..4e1d9105 --- /dev/null +++ b/icons/latte/folder_sass_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_scripts.svg b/icons/latte/folder_scripts.svg new file mode 100644 index 00000000..07184ec5 --- /dev/null +++ b/icons/latte/folder_scripts.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_scripts_open.svg b/icons/latte/folder_scripts_open.svg new file mode 100644 index 00000000..ab2e435f --- /dev/null +++ b/icons/latte/folder_scripts_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_server.svg b/icons/latte/folder_server.svg new file mode 100644 index 00000000..27a807ec --- /dev/null +++ b/icons/latte/folder_server.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_server_open.svg b/icons/latte/folder_server_open.svg new file mode 100644 index 00000000..20fc105d --- /dev/null +++ b/icons/latte/folder_server_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_src.svg b/icons/latte/folder_src.svg new file mode 100644 index 00000000..3fe4bb75 --- /dev/null +++ b/icons/latte/folder_src.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_src_open.svg b/icons/latte/folder_src_open.svg new file mode 100644 index 00000000..98b77e23 --- /dev/null +++ b/icons/latte/folder_src_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_storybook.svg b/icons/latte/folder_storybook.svg new file mode 100644 index 00000000..4d5e32cc --- /dev/null +++ b/icons/latte/folder_storybook.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_storybook_open.svg b/icons/latte/folder_storybook_open.svg new file mode 100644 index 00000000..705c32bd --- /dev/null +++ b/icons/latte/folder_storybook_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_styles.svg b/icons/latte/folder_styles.svg new file mode 100644 index 00000000..7427b503 --- /dev/null +++ b/icons/latte/folder_styles.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_styles_open.svg b/icons/latte/folder_styles_open.svg new file mode 100644 index 00000000..d47e496a --- /dev/null +++ b/icons/latte/folder_styles_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_svg.svg b/icons/latte/folder_svg.svg new file mode 100644 index 00000000..ec68a62b --- /dev/null +++ b/icons/latte/folder_svg.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_svg_open.svg b/icons/latte/folder_svg_open.svg new file mode 100644 index 00000000..26786313 --- /dev/null +++ b/icons/latte/folder_svg_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_tauri.svg b/icons/latte/folder_tauri.svg new file mode 100644 index 00000000..a664170b --- /dev/null +++ b/icons/latte/folder_tauri.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/latte/folder_tauri_open.svg b/icons/latte/folder_tauri_open.svg new file mode 100644 index 00000000..fac0065d --- /dev/null +++ b/icons/latte/folder_tauri_open.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/latte/folder_temp.svg b/icons/latte/folder_temp.svg new file mode 100644 index 00000000..24ddd279 --- /dev/null +++ b/icons/latte/folder_temp.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_temp_open.svg b/icons/latte/folder_temp_open.svg new file mode 100644 index 00000000..fa5116c3 --- /dev/null +++ b/icons/latte/folder_temp_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_templates.svg b/icons/latte/folder_templates.svg new file mode 100644 index 00000000..107d9605 --- /dev/null +++ b/icons/latte/folder_templates.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_templates_open.svg b/icons/latte/folder_templates_open.svg new file mode 100644 index 00000000..39fd2506 --- /dev/null +++ b/icons/latte/folder_templates_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_tests.svg b/icons/latte/folder_tests.svg new file mode 100644 index 00000000..9b8d2ac9 --- /dev/null +++ b/icons/latte/folder_tests.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_tests_open.svg b/icons/latte/folder_tests_open.svg new file mode 100644 index 00000000..ea2995c4 --- /dev/null +++ b/icons/latte/folder_tests_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_types.svg b/icons/latte/folder_types.svg new file mode 100644 index 00000000..23c03ce3 --- /dev/null +++ b/icons/latte/folder_types.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_types_open.svg b/icons/latte/folder_types_open.svg new file mode 100644 index 00000000..ff7e03fa --- /dev/null +++ b/icons/latte/folder_types_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_upload.svg b/icons/latte/folder_upload.svg new file mode 100644 index 00000000..7d8d2152 --- /dev/null +++ b/icons/latte/folder_upload.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/latte/folder_upload_open.svg b/icons/latte/folder_upload_open.svg new file mode 100644 index 00000000..28288421 --- /dev/null +++ b/icons/latte/folder_upload_open.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/latte/folder_utils.svg b/icons/latte/folder_utils.svg new file mode 100644 index 00000000..33c59421 --- /dev/null +++ b/icons/latte/folder_utils.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_utils_open.svg b/icons/latte/folder_utils_open.svg new file mode 100644 index 00000000..d429ffce --- /dev/null +++ b/icons/latte/folder_utils_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_vercel.svg b/icons/latte/folder_vercel.svg new file mode 100644 index 00000000..e98e9c66 --- /dev/null +++ b/icons/latte/folder_vercel.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_vercel_open.svg b/icons/latte/folder_vercel_open.svg new file mode 100644 index 00000000..91129186 --- /dev/null +++ b/icons/latte/folder_vercel_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_video.svg b/icons/latte/folder_video.svg new file mode 100644 index 00000000..cc00988b --- /dev/null +++ b/icons/latte/folder_video.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_video_open.svg b/icons/latte/folder_video_open.svg new file mode 100644 index 00000000..de586303 --- /dev/null +++ b/icons/latte/folder_video_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_views.svg b/icons/latte/folder_views.svg new file mode 100644 index 00000000..bfba225f --- /dev/null +++ b/icons/latte/folder_views.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_views_open.svg b/icons/latte/folder_views_open.svg new file mode 100644 index 00000000..a6b73c47 --- /dev/null +++ b/icons/latte/folder_views_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_vscode.svg b/icons/latte/folder_vscode.svg new file mode 100644 index 00000000..b54468d1 --- /dev/null +++ b/icons/latte/folder_vscode.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_vscode_open.svg b/icons/latte/folder_vscode_open.svg new file mode 100644 index 00000000..7d5e0cff --- /dev/null +++ b/icons/latte/folder_vscode_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_workflows.svg b/icons/latte/folder_workflows.svg new file mode 100644 index 00000000..c5acbe4c --- /dev/null +++ b/icons/latte/folder_workflows.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/folder_workflows_open.svg b/icons/latte/folder_workflows_open.svg new file mode 100644 index 00000000..8eaa5f94 --- /dev/null +++ b/icons/latte/folder_workflows_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/font.svg b/icons/latte/font.svg new file mode 100644 index 00000000..5dc06dfa --- /dev/null +++ b/icons/latte/font.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/fortran.svg b/icons/latte/fortran.svg new file mode 100644 index 00000000..755f35a8 --- /dev/null +++ b/icons/latte/fortran.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/fsharp.svg b/icons/latte/fsharp.svg new file mode 100644 index 00000000..e2313625 --- /dev/null +++ b/icons/latte/fsharp.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/gatsby.svg b/icons/latte/gatsby.svg new file mode 100644 index 00000000..d62dc4fe --- /dev/null +++ b/icons/latte/gatsby.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/git.svg b/icons/latte/git.svg new file mode 100644 index 00000000..25fe218a --- /dev/null +++ b/icons/latte/git.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/gitlab.svg b/icons/latte/gitlab.svg new file mode 100644 index 00000000..deb74e3b --- /dev/null +++ b/icons/latte/gitlab.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/gitpod.svg b/icons/latte/gitpod.svg new file mode 100644 index 00000000..d857569d --- /dev/null +++ b/icons/latte/gitpod.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/go-mod.svg b/icons/latte/go-mod.svg new file mode 100644 index 00000000..981a53ce --- /dev/null +++ b/icons/latte/go-mod.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/go.svg b/icons/latte/go.svg new file mode 100644 index 00000000..28b03070 --- /dev/null +++ b/icons/latte/go.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/godot-assets.svg b/icons/latte/godot-assets.svg new file mode 100644 index 00000000..1a8e870f --- /dev/null +++ b/icons/latte/godot-assets.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/godot.svg b/icons/latte/godot.svg new file mode 100644 index 00000000..858963d8 --- /dev/null +++ b/icons/latte/godot.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/gradle.svg b/icons/latte/gradle.svg new file mode 100644 index 00000000..1a33bb33 --- /dev/null +++ b/icons/latte/gradle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/graphql.svg b/icons/latte/graphql.svg new file mode 100644 index 00000000..d937a0ad --- /dev/null +++ b/icons/latte/graphql.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/groovy.svg b/icons/latte/groovy.svg new file mode 100644 index 00000000..04d2a99b --- /dev/null +++ b/icons/latte/groovy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/gulp.svg b/icons/latte/gulp.svg new file mode 100644 index 00000000..50cea3ec --- /dev/null +++ b/icons/latte/gulp.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/haml.svg b/icons/latte/haml.svg new file mode 100644 index 00000000..f711a042 --- /dev/null +++ b/icons/latte/haml.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/latte/handlebars.svg b/icons/latte/handlebars.svg new file mode 100644 index 00000000..8e898179 --- /dev/null +++ b/icons/latte/handlebars.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/haskell.svg b/icons/latte/haskell.svg new file mode 100644 index 00000000..e7d5f4d0 --- /dev/null +++ b/icons/latte/haskell.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/haxe.svg b/icons/latte/haxe.svg new file mode 100644 index 00000000..72c5eb1d --- /dev/null +++ b/icons/latte/haxe.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/helm.svg b/icons/latte/helm.svg new file mode 100644 index 00000000..a5f792db --- /dev/null +++ b/icons/latte/helm.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/heroku.svg b/icons/latte/heroku.svg new file mode 100644 index 00000000..fdf591dd --- /dev/null +++ b/icons/latte/heroku.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/histoire.svg b/icons/latte/histoire.svg new file mode 100644 index 00000000..4ceaa684 --- /dev/null +++ b/icons/latte/histoire.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/html.svg b/icons/latte/html.svg new file mode 100644 index 00000000..09fe5116 --- /dev/null +++ b/icons/latte/html.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/http.svg b/icons/latte/http.svg new file mode 100644 index 00000000..67b9006b --- /dev/null +++ b/icons/latte/http.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/husky.svg b/icons/latte/husky.svg new file mode 100644 index 00000000..e0366763 --- /dev/null +++ b/icons/latte/husky.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/image.svg b/icons/latte/image.svg new file mode 100644 index 00000000..72b42f56 --- /dev/null +++ b/icons/latte/image.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/latte/ionic.svg b/icons/latte/ionic.svg new file mode 100644 index 00000000..832c9764 --- /dev/null +++ b/icons/latte/ionic.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/java-class.svg b/icons/latte/java-class.svg new file mode 100644 index 00000000..88f0ef6b --- /dev/null +++ b/icons/latte/java-class.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/latte/java-jar.svg b/icons/latte/java-jar.svg new file mode 100644 index 00000000..8e159a4a --- /dev/null +++ b/icons/latte/java-jar.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/latte/java.svg b/icons/latte/java.svg new file mode 100644 index 00000000..5bffdfaa --- /dev/null +++ b/icons/latte/java.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/latte/javascript-config.svg b/icons/latte/javascript-config.svg new file mode 100644 index 00000000..48cb397d --- /dev/null +++ b/icons/latte/javascript-config.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/latte/javascript-map.svg b/icons/latte/javascript-map.svg new file mode 100644 index 00000000..f59b7ad7 --- /dev/null +++ b/icons/latte/javascript-map.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/latte/javascript-react.svg b/icons/latte/javascript-react.svg new file mode 100644 index 00000000..be3e8428 --- /dev/null +++ b/icons/latte/javascript-react.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/latte/javascript-test.svg b/icons/latte/javascript-test.svg new file mode 100644 index 00000000..efcc3aa4 --- /dev/null +++ b/icons/latte/javascript-test.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/javascript.svg b/icons/latte/javascript.svg new file mode 100644 index 00000000..5ecd22d9 --- /dev/null +++ b/icons/latte/javascript.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/jest.svg b/icons/latte/jest.svg new file mode 100644 index 00000000..9b559a82 --- /dev/null +++ b/icons/latte/jest.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/latte/jinja.svg b/icons/latte/jinja.svg new file mode 100644 index 00000000..3927de49 --- /dev/null +++ b/icons/latte/jinja.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/json.svg b/icons/latte/json.svg new file mode 100644 index 00000000..472329ca --- /dev/null +++ b/icons/latte/json.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/julia.svg b/icons/latte/julia.svg new file mode 100644 index 00000000..11f4a913 --- /dev/null +++ b/icons/latte/julia.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/latte/jupyter.svg b/icons/latte/jupyter.svg new file mode 100644 index 00000000..38dd653c --- /dev/null +++ b/icons/latte/jupyter.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/just.svg b/icons/latte/just.svg new file mode 100644 index 00000000..0db377d8 --- /dev/null +++ b/icons/latte/just.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/icons/latte/key.svg b/icons/latte/key.svg new file mode 100644 index 00000000..58a07935 --- /dev/null +++ b/icons/latte/key.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/kotlin.svg b/icons/latte/kotlin.svg new file mode 100644 index 00000000..3198a026 --- /dev/null +++ b/icons/latte/kotlin.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/latte/laravel.svg b/icons/latte/laravel.svg new file mode 100644 index 00000000..5055555d --- /dev/null +++ b/icons/latte/laravel.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/latte/latex.svg b/icons/latte/latex.svg new file mode 100644 index 00000000..d7d9e316 --- /dev/null +++ b/icons/latte/latex.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/lerna.svg b/icons/latte/lerna.svg new file mode 100644 index 00000000..5542661c --- /dev/null +++ b/icons/latte/lerna.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/less.svg b/icons/latte/less.svg new file mode 100644 index 00000000..218f1883 --- /dev/null +++ b/icons/latte/less.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/lib.svg b/icons/latte/lib.svg new file mode 100644 index 00000000..5c380878 --- /dev/null +++ b/icons/latte/lib.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/license.svg b/icons/latte/license.svg new file mode 100644 index 00000000..b49574d9 --- /dev/null +++ b/icons/latte/license.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/lint-staged.svg b/icons/latte/lint-staged.svg new file mode 100644 index 00000000..4fc51439 --- /dev/null +++ b/icons/latte/lint-staged.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/latte/lisp.svg b/icons/latte/lisp.svg new file mode 100644 index 00000000..e708c9e7 --- /dev/null +++ b/icons/latte/lisp.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/log.svg b/icons/latte/log.svg new file mode 100644 index 00000000..805c1704 --- /dev/null +++ b/icons/latte/log.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/lua.svg b/icons/latte/lua.svg new file mode 100644 index 00000000..5d2c2b1b --- /dev/null +++ b/icons/latte/lua.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/makefile.svg b/icons/latte/makefile.svg new file mode 100644 index 00000000..70861a39 --- /dev/null +++ b/icons/latte/makefile.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/markdown-mdx.svg b/icons/latte/markdown-mdx.svg new file mode 100644 index 00000000..0b022cf4 --- /dev/null +++ b/icons/latte/markdown-mdx.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/markdown.svg b/icons/latte/markdown.svg new file mode 100644 index 00000000..5c2de66f --- /dev/null +++ b/icons/latte/markdown.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/marko.svg b/icons/latte/marko.svg new file mode 100644 index 00000000..02d94daa --- /dev/null +++ b/icons/latte/marko.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/latte/matlab.svg b/icons/latte/matlab.svg new file mode 100644 index 00000000..c33adbd0 --- /dev/null +++ b/icons/latte/matlab.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/maven.svg b/icons/latte/maven.svg new file mode 100644 index 00000000..da12adfc --- /dev/null +++ b/icons/latte/maven.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/latte/mermaid.svg b/icons/latte/mermaid.svg new file mode 100644 index 00000000..180f89c7 --- /dev/null +++ b/icons/latte/mermaid.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/meson.svg b/icons/latte/meson.svg new file mode 100644 index 00000000..bf333a16 --- /dev/null +++ b/icons/latte/meson.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/mjml.svg b/icons/latte/mjml.svg new file mode 100644 index 00000000..5432b29c --- /dev/null +++ b/icons/latte/mjml.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/modernizr.svg b/icons/latte/modernizr.svg new file mode 100644 index 00000000..12229e86 --- /dev/null +++ b/icons/latte/modernizr.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/ms-excel.svg b/icons/latte/ms-excel.svg new file mode 100644 index 00000000..afda64fe --- /dev/null +++ b/icons/latte/ms-excel.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/ms-powerpoint.svg b/icons/latte/ms-powerpoint.svg new file mode 100644 index 00000000..2e603770 --- /dev/null +++ b/icons/latte/ms-powerpoint.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/ms-word.svg b/icons/latte/ms-word.svg new file mode 100644 index 00000000..7af20ae1 --- /dev/null +++ b/icons/latte/ms-word.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/nativescript.svg b/icons/latte/nativescript.svg new file mode 100644 index 00000000..b9b2d7a2 --- /dev/null +++ b/icons/latte/nativescript.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/nest.svg b/icons/latte/nest.svg new file mode 100644 index 00000000..9f36cbfa --- /dev/null +++ b/icons/latte/nest.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/netlify.svg b/icons/latte/netlify.svg new file mode 100644 index 00000000..88b44936 --- /dev/null +++ b/icons/latte/netlify.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/next.svg b/icons/latte/next.svg new file mode 100644 index 00000000..008a1b9a --- /dev/null +++ b/icons/latte/next.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/nextflow.svg b/icons/latte/nextflow.svg new file mode 100644 index 00000000..19eee412 --- /dev/null +++ b/icons/latte/nextflow.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/nginx.svg b/icons/latte/nginx.svg new file mode 100644 index 00000000..e67624de --- /dev/null +++ b/icons/latte/nginx.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/nim.svg b/icons/latte/nim.svg new file mode 100644 index 00000000..99850c09 --- /dev/null +++ b/icons/latte/nim.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/ninja.svg b/icons/latte/ninja.svg new file mode 100644 index 00000000..281a4052 --- /dev/null +++ b/icons/latte/ninja.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/nix-lock.svg b/icons/latte/nix-lock.svg new file mode 100644 index 00000000..92c62afe --- /dev/null +++ b/icons/latte/nix-lock.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons/latte/nix.svg b/icons/latte/nix.svg new file mode 100644 index 00000000..e49a1468 --- /dev/null +++ b/icons/latte/nix.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons/latte/nodemon.svg b/icons/latte/nodemon.svg new file mode 100644 index 00000000..31b49458 --- /dev/null +++ b/icons/latte/nodemon.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/npm-ignore.svg b/icons/latte/npm-ignore.svg new file mode 100644 index 00000000..394dae70 --- /dev/null +++ b/icons/latte/npm-ignore.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/npm-lock.svg b/icons/latte/npm-lock.svg new file mode 100644 index 00000000..d8f3abc9 --- /dev/null +++ b/icons/latte/npm-lock.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/latte/npm.svg b/icons/latte/npm.svg new file mode 100644 index 00000000..47be1151 --- /dev/null +++ b/icons/latte/npm.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/nuget.svg b/icons/latte/nuget.svg new file mode 100644 index 00000000..c5c75d34 --- /dev/null +++ b/icons/latte/nuget.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/nunjucks.svg b/icons/latte/nunjucks.svg new file mode 100644 index 00000000..e67b83b0 --- /dev/null +++ b/icons/latte/nunjucks.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/nuxt-ignore.svg b/icons/latte/nuxt-ignore.svg new file mode 100644 index 00000000..76c1d00c --- /dev/null +++ b/icons/latte/nuxt-ignore.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/nuxt.svg b/icons/latte/nuxt.svg new file mode 100644 index 00000000..5fa77c2a --- /dev/null +++ b/icons/latte/nuxt.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/ocaml.svg b/icons/latte/ocaml.svg new file mode 100644 index 00000000..7bac9d0d --- /dev/null +++ b/icons/latte/ocaml.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/latte/package-json.svg b/icons/latte/package-json.svg new file mode 100644 index 00000000..27c45d2b --- /dev/null +++ b/icons/latte/package-json.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/panda-css.svg b/icons/latte/panda-css.svg new file mode 100644 index 00000000..16632d15 --- /dev/null +++ b/icons/latte/panda-css.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/pdf.svg b/icons/latte/pdf.svg new file mode 100644 index 00000000..b8fef72a --- /dev/null +++ b/icons/latte/pdf.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/perl.svg b/icons/latte/perl.svg new file mode 100644 index 00000000..25b1c418 --- /dev/null +++ b/icons/latte/perl.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/phrase.svg b/icons/latte/phrase.svg new file mode 100644 index 00000000..3118ebe3 --- /dev/null +++ b/icons/latte/phrase.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/playwright.svg b/icons/latte/playwright.svg new file mode 100644 index 00000000..7ef21c4d --- /dev/null +++ b/icons/latte/playwright.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/latte/plop.svg b/icons/latte/plop.svg new file mode 100644 index 00000000..6f401929 --- /dev/null +++ b/icons/latte/plop.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/pnpm-lock.svg b/icons/latte/pnpm-lock.svg new file mode 100644 index 00000000..b386ff9a --- /dev/null +++ b/icons/latte/pnpm-lock.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/latte/pnpm.svg b/icons/latte/pnpm.svg new file mode 100644 index 00000000..0cc4982e --- /dev/null +++ b/icons/latte/pnpm.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/latte/postcss.svg b/icons/latte/postcss.svg new file mode 100644 index 00000000..e612db0c --- /dev/null +++ b/icons/latte/postcss.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/latte/powershell.svg b/icons/latte/powershell.svg new file mode 100644 index 00000000..c5d33285 --- /dev/null +++ b/icons/latte/powershell.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/premake.svg b/icons/latte/premake.svg new file mode 100644 index 00000000..ed61d593 --- /dev/null +++ b/icons/latte/premake.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/latte/prettier-ignore.svg b/icons/latte/prettier-ignore.svg new file mode 100644 index 00000000..84a36501 --- /dev/null +++ b/icons/latte/prettier-ignore.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/prettier.svg b/icons/latte/prettier.svg new file mode 100644 index 00000000..2e5bb243 --- /dev/null +++ b/icons/latte/prettier.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/latte/prisma.svg b/icons/latte/prisma.svg new file mode 100644 index 00000000..98de3b80 --- /dev/null +++ b/icons/latte/prisma.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/prolog.svg b/icons/latte/prolog.svg new file mode 100644 index 00000000..2e0b445c --- /dev/null +++ b/icons/latte/prolog.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/properties.svg b/icons/latte/properties.svg new file mode 100644 index 00000000..420d902a --- /dev/null +++ b/icons/latte/properties.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/proto.svg b/icons/latte/proto.svg new file mode 100644 index 00000000..c82137f3 --- /dev/null +++ b/icons/latte/proto.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/latte/pug.svg b/icons/latte/pug.svg new file mode 100644 index 00000000..17e379a1 --- /dev/null +++ b/icons/latte/pug.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/python-compiled.svg b/icons/latte/python-compiled.svg new file mode 100644 index 00000000..f208c060 --- /dev/null +++ b/icons/latte/python-compiled.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/latte/python.svg b/icons/latte/python.svg new file mode 100644 index 00000000..57ff32a5 --- /dev/null +++ b/icons/latte/python.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/latte/r.svg b/icons/latte/r.svg new file mode 100644 index 00000000..1b7b1f96 --- /dev/null +++ b/icons/latte/r.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/racket.svg b/icons/latte/racket.svg new file mode 100644 index 00000000..3e347dac --- /dev/null +++ b/icons/latte/racket.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/razor.svg b/icons/latte/razor.svg new file mode 100644 index 00000000..7a0f7dc3 --- /dev/null +++ b/icons/latte/razor.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/readme.svg b/icons/latte/readme.svg new file mode 100644 index 00000000..7f969576 --- /dev/null +++ b/icons/latte/readme.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/reason.svg b/icons/latte/reason.svg new file mode 100644 index 00000000..2802bf17 --- /dev/null +++ b/icons/latte/reason.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/redwood.svg b/icons/latte/redwood.svg new file mode 100644 index 00000000..b4b72db7 --- /dev/null +++ b/icons/latte/redwood.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/remix.svg b/icons/latte/remix.svg new file mode 100644 index 00000000..b50e4e3c --- /dev/null +++ b/icons/latte/remix.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/renovate.svg b/icons/latte/renovate.svg new file mode 100644 index 00000000..efcc0c99 --- /dev/null +++ b/icons/latte/renovate.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/rescript.svg b/icons/latte/rescript.svg new file mode 100644 index 00000000..0e26bc7f --- /dev/null +++ b/icons/latte/rescript.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/robots.svg b/icons/latte/robots.svg new file mode 100644 index 00000000..a3460e01 --- /dev/null +++ b/icons/latte/robots.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/rollup.svg b/icons/latte/rollup.svg new file mode 100644 index 00000000..3c433507 --- /dev/null +++ b/icons/latte/rollup.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/ruby-gem-lock.svg b/icons/latte/ruby-gem-lock.svg new file mode 100644 index 00000000..8fff522d --- /dev/null +++ b/icons/latte/ruby-gem-lock.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/latte/ruby-gem.svg b/icons/latte/ruby-gem.svg new file mode 100644 index 00000000..4c1b8f9c --- /dev/null +++ b/icons/latte/ruby-gem.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/ruby.svg b/icons/latte/ruby.svg new file mode 100644 index 00000000..a234b4f6 --- /dev/null +++ b/icons/latte/ruby.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/rust.svg b/icons/latte/rust.svg new file mode 100644 index 00000000..6f604661 --- /dev/null +++ b/icons/latte/rust.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/sass.svg b/icons/latte/sass.svg new file mode 100644 index 00000000..d1ca68d6 --- /dev/null +++ b/icons/latte/sass.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/scala.svg b/icons/latte/scala.svg new file mode 100644 index 00000000..927605c4 --- /dev/null +++ b/icons/latte/scala.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/search.svg b/icons/latte/search.svg new file mode 100644 index 00000000..b4064b77 --- /dev/null +++ b/icons/latte/search.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/semantic-release.svg b/icons/latte/semantic-release.svg new file mode 100644 index 00000000..d333ab7e --- /dev/null +++ b/icons/latte/semantic-release.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/semgrep-ignore.svg b/icons/latte/semgrep-ignore.svg new file mode 100644 index 00000000..c460d3b9 --- /dev/null +++ b/icons/latte/semgrep-ignore.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/semgrep.svg b/icons/latte/semgrep.svg new file mode 100644 index 00000000..315c60be --- /dev/null +++ b/icons/latte/semgrep.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/sentry.svg b/icons/latte/sentry.svg new file mode 100644 index 00000000..ac6776e0 --- /dev/null +++ b/icons/latte/sentry.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/serverless.svg b/icons/latte/serverless.svg new file mode 100644 index 00000000..a7d0a833 --- /dev/null +++ b/icons/latte/serverless.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/shader.svg b/icons/latte/shader.svg new file mode 100644 index 00000000..524d3b02 --- /dev/null +++ b/icons/latte/shader.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/sketch.svg b/icons/latte/sketch.svg new file mode 100644 index 00000000..fe231088 --- /dev/null +++ b/icons/latte/sketch.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/snowpack.svg b/icons/latte/snowpack.svg new file mode 100644 index 00000000..664b7a95 --- /dev/null +++ b/icons/latte/snowpack.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/solidity.svg b/icons/latte/solidity.svg new file mode 100644 index 00000000..2a759544 --- /dev/null +++ b/icons/latte/solidity.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/sonar-cloud.svg b/icons/latte/sonar-cloud.svg new file mode 100644 index 00000000..bdd256a4 --- /dev/null +++ b/icons/latte/sonar-cloud.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/latte/stackblitz.svg b/icons/latte/stackblitz.svg new file mode 100644 index 00000000..6b0fe39f --- /dev/null +++ b/icons/latte/stackblitz.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/stencil.svg b/icons/latte/stencil.svg new file mode 100644 index 00000000..5148535e --- /dev/null +++ b/icons/latte/stencil.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/stitches.svg b/icons/latte/stitches.svg new file mode 100644 index 00000000..f467e519 --- /dev/null +++ b/icons/latte/stitches.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/latte/storybook-svelte.svg b/icons/latte/storybook-svelte.svg new file mode 100644 index 00000000..5d5d3954 --- /dev/null +++ b/icons/latte/storybook-svelte.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/storybook-vue.svg b/icons/latte/storybook-vue.svg new file mode 100644 index 00000000..52c22be7 --- /dev/null +++ b/icons/latte/storybook-vue.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/storybook.svg b/icons/latte/storybook.svg new file mode 100644 index 00000000..a632244e --- /dev/null +++ b/icons/latte/storybook.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/stylelint-ignore.svg b/icons/latte/stylelint-ignore.svg new file mode 100644 index 00000000..5d887ec0 --- /dev/null +++ b/icons/latte/stylelint-ignore.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/latte/stylelint.svg b/icons/latte/stylelint.svg new file mode 100644 index 00000000..e487a480 --- /dev/null +++ b/icons/latte/stylelint.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/latte/sublime.svg b/icons/latte/sublime.svg new file mode 100644 index 00000000..0cf7090e --- /dev/null +++ b/icons/latte/sublime.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/svelte-config.svg b/icons/latte/svelte-config.svg new file mode 100644 index 00000000..6335145a --- /dev/null +++ b/icons/latte/svelte-config.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/svelte.svg b/icons/latte/svelte.svg new file mode 100644 index 00000000..d965ffab --- /dev/null +++ b/icons/latte/svelte.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/svg.svg b/icons/latte/svg.svg new file mode 100644 index 00000000..651f3405 --- /dev/null +++ b/icons/latte/svg.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/swift.svg b/icons/latte/swift.svg new file mode 100644 index 00000000..95ae6b84 --- /dev/null +++ b/icons/latte/swift.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/tailwind.svg b/icons/latte/tailwind.svg new file mode 100644 index 00000000..2111b1db --- /dev/null +++ b/icons/latte/tailwind.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/tauri-ignore.svg b/icons/latte/tauri-ignore.svg new file mode 100644 index 00000000..a5ad699f --- /dev/null +++ b/icons/latte/tauri-ignore.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/tauri.svg b/icons/latte/tauri.svg new file mode 100644 index 00000000..42e4e706 --- /dev/null +++ b/icons/latte/tauri.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/latte/terraform.svg b/icons/latte/terraform.svg new file mode 100644 index 00000000..80b3c936 --- /dev/null +++ b/icons/latte/terraform.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/text.svg b/icons/latte/text.svg new file mode 100644 index 00000000..46df8612 --- /dev/null +++ b/icons/latte/text.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/todo.svg b/icons/latte/todo.svg new file mode 100644 index 00000000..834a9799 --- /dev/null +++ b/icons/latte/todo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/toml.svg b/icons/latte/toml.svg new file mode 100644 index 00000000..00e449ec --- /dev/null +++ b/icons/latte/toml.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/twine.svg b/icons/latte/twine.svg new file mode 100644 index 00000000..1d627656 --- /dev/null +++ b/icons/latte/twine.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/typescript-config.svg b/icons/latte/typescript-config.svg new file mode 100644 index 00000000..b313e2d0 --- /dev/null +++ b/icons/latte/typescript-config.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/latte/typescript-def.svg b/icons/latte/typescript-def.svg new file mode 100644 index 00000000..362b6c19 --- /dev/null +++ b/icons/latte/typescript-def.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/latte/typescript-react.svg b/icons/latte/typescript-react.svg new file mode 100644 index 00000000..a63329ba --- /dev/null +++ b/icons/latte/typescript-react.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/latte/typescript-test.svg b/icons/latte/typescript-test.svg new file mode 100644 index 00000000..5f2bfad5 --- /dev/null +++ b/icons/latte/typescript-test.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/typescript.svg b/icons/latte/typescript.svg new file mode 100644 index 00000000..18d0b1ad --- /dev/null +++ b/icons/latte/typescript.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/unity.svg b/icons/latte/unity.svg new file mode 100644 index 00000000..9792ef38 --- /dev/null +++ b/icons/latte/unity.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/unocss.svg b/icons/latte/unocss.svg new file mode 100644 index 00000000..41fedf16 --- /dev/null +++ b/icons/latte/unocss.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/url.svg b/icons/latte/url.svg new file mode 100644 index 00000000..bb1868cb --- /dev/null +++ b/icons/latte/url.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/v.svg b/icons/latte/v.svg new file mode 100644 index 00000000..b7e7507a --- /dev/null +++ b/icons/latte/v.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/vercel-ignore.svg b/icons/latte/vercel-ignore.svg new file mode 100644 index 00000000..934c4770 --- /dev/null +++ b/icons/latte/vercel-ignore.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/vercel.svg b/icons/latte/vercel.svg new file mode 100644 index 00000000..6781f3c6 --- /dev/null +++ b/icons/latte/vercel.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/verilog.svg b/icons/latte/verilog.svg new file mode 100644 index 00000000..423e1214 --- /dev/null +++ b/icons/latte/verilog.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/video.svg b/icons/latte/video.svg new file mode 100644 index 00000000..38fddf73 --- /dev/null +++ b/icons/latte/video.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/vim.svg b/icons/latte/vim.svg new file mode 100644 index 00000000..91a35957 --- /dev/null +++ b/icons/latte/vim.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/visual-studio.svg b/icons/latte/visual-studio.svg new file mode 100644 index 00000000..e4e14e63 --- /dev/null +++ b/icons/latte/visual-studio.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/vite.svg b/icons/latte/vite.svg new file mode 100644 index 00000000..c79066c4 --- /dev/null +++ b/icons/latte/vite.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/vitest.svg b/icons/latte/vitest.svg new file mode 100644 index 00000000..36e62fc4 --- /dev/null +++ b/icons/latte/vitest.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/vs-codium.svg b/icons/latte/vs-codium.svg new file mode 100644 index 00000000..fff96622 --- /dev/null +++ b/icons/latte/vs-codium.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/latte/vscode-ignore.svg b/icons/latte/vscode-ignore.svg new file mode 100644 index 00000000..de3e0869 --- /dev/null +++ b/icons/latte/vscode-ignore.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/vscode.svg b/icons/latte/vscode.svg new file mode 100644 index 00000000..92db8f7d --- /dev/null +++ b/icons/latte/vscode.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/vue-config.svg b/icons/latte/vue-config.svg new file mode 100644 index 00000000..77b9770d --- /dev/null +++ b/icons/latte/vue-config.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/vue.svg b/icons/latte/vue.svg new file mode 100644 index 00000000..b875c5b0 --- /dev/null +++ b/icons/latte/vue.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/web-assembly.svg b/icons/latte/web-assembly.svg new file mode 100644 index 00000000..f242b396 --- /dev/null +++ b/icons/latte/web-assembly.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/latte/webpack.svg b/icons/latte/webpack.svg new file mode 100644 index 00000000..df83e553 --- /dev/null +++ b/icons/latte/webpack.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/latte/windi.svg b/icons/latte/windi.svg new file mode 100644 index 00000000..42879b7c --- /dev/null +++ b/icons/latte/windi.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/workflow.svg b/icons/latte/workflow.svg new file mode 100644 index 00000000..a9e4c349 --- /dev/null +++ b/icons/latte/workflow.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/xaml.svg b/icons/latte/xaml.svg new file mode 100644 index 00000000..fa04c586 --- /dev/null +++ b/icons/latte/xaml.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/latte/xmake.svg b/icons/latte/xmake.svg new file mode 100644 index 00000000..3616f76c --- /dev/null +++ b/icons/latte/xmake.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/latte/xml.svg b/icons/latte/xml.svg new file mode 100644 index 00000000..e4f580c7 --- /dev/null +++ b/icons/latte/xml.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/yaml.svg b/icons/latte/yaml.svg new file mode 100644 index 00000000..75261fbf --- /dev/null +++ b/icons/latte/yaml.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/yarn-lock.svg b/icons/latte/yarn-lock.svg new file mode 100644 index 00000000..5e1f2b42 --- /dev/null +++ b/icons/latte/yarn-lock.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/latte/yarn.svg b/icons/latte/yarn.svg new file mode 100644 index 00000000..e442b748 --- /dev/null +++ b/icons/latte/yarn.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/latte/zig.svg b/icons/latte/zig.svg new file mode 100644 index 00000000..e8c82aa6 --- /dev/null +++ b/icons/latte/zig.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/lerna.svg b/icons/lerna.svg deleted file mode 100644 index bb959156..00000000 --- a/icons/lerna.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/lib.svg b/icons/lib.svg deleted file mode 100644 index 4f56dcdd..00000000 --- a/icons/lib.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/license.svg b/icons/license.svg deleted file mode 100644 index 59cb4da3..00000000 --- a/icons/license.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/lintstaged.svg b/icons/lintstaged.svg deleted file mode 100644 index 347bd2ce..00000000 --- a/icons/lintstaged.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/liquid.svg b/icons/liquid.svg deleted file mode 100644 index 45d60906..00000000 --- a/icons/liquid.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/lisp.svg b/icons/lisp.svg deleted file mode 100644 index ceda03f0..00000000 --- a/icons/lisp.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/log.svg b/icons/log.svg deleted file mode 100644 index 78be0074..00000000 --- a/icons/log.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/lua.svg b/icons/lua.svg deleted file mode 100644 index b21ad350..00000000 --- a/icons/lua.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/macchiato/_file.svg b/icons/macchiato/_file.svg new file mode 100644 index 00000000..47199dab --- /dev/null +++ b/icons/macchiato/_file.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/_folder.svg b/icons/macchiato/_folder.svg new file mode 100644 index 00000000..787299d9 --- /dev/null +++ b/icons/macchiato/_folder.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/_folder_open.svg b/icons/macchiato/_folder_open.svg new file mode 100644 index 00000000..0bfdd439 --- /dev/null +++ b/icons/macchiato/_folder_open.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/adonis.svg b/icons/macchiato/adonis.svg new file mode 100644 index 00000000..20d23059 --- /dev/null +++ b/icons/macchiato/adonis.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/alex.svg b/icons/macchiato/alex.svg new file mode 100644 index 00000000..311c2ee6 --- /dev/null +++ b/icons/macchiato/alex.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/android.svg b/icons/macchiato/android.svg new file mode 100644 index 00000000..376712f6 --- /dev/null +++ b/icons/macchiato/android.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/antlr.svg b/icons/macchiato/antlr.svg new file mode 100644 index 00000000..aa81a836 --- /dev/null +++ b/icons/macchiato/antlr.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/api-blueprint.svg b/icons/macchiato/api-blueprint.svg new file mode 100644 index 00000000..4ace6abe --- /dev/null +++ b/icons/macchiato/api-blueprint.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/apollo.svg b/icons/macchiato/apollo.svg new file mode 100644 index 00000000..08a151d1 --- /dev/null +++ b/icons/macchiato/apollo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/audio.svg b/icons/macchiato/audio.svg new file mode 100644 index 00000000..672cc735 --- /dev/null +++ b/icons/macchiato/audio.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/azure-pipelines.svg b/icons/macchiato/azure-pipelines.svg new file mode 100644 index 00000000..e93b76c6 --- /dev/null +++ b/icons/macchiato/azure-pipelines.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/babel.svg b/icons/macchiato/babel.svg new file mode 100644 index 00000000..04f5d826 --- /dev/null +++ b/icons/macchiato/babel.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/bash.svg b/icons/macchiato/bash.svg new file mode 100644 index 00000000..b4113ef9 --- /dev/null +++ b/icons/macchiato/bash.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/macchiato/batch.svg b/icons/macchiato/batch.svg new file mode 100644 index 00000000..55a7e423 --- /dev/null +++ b/icons/macchiato/batch.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/binary.svg b/icons/macchiato/binary.svg new file mode 100644 index 00000000..3fa06dd3 --- /dev/null +++ b/icons/macchiato/binary.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/bitbucket.svg b/icons/macchiato/bitbucket.svg new file mode 100644 index 00000000..9cd21c52 --- /dev/null +++ b/icons/macchiato/bitbucket.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/blitz.svg b/icons/macchiato/blitz.svg new file mode 100644 index 00000000..69445227 --- /dev/null +++ b/icons/macchiato/blitz.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/bower.svg b/icons/macchiato/bower.svg new file mode 100644 index 00000000..b73d9d56 --- /dev/null +++ b/icons/macchiato/bower.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/macchiato/browserslist.svg b/icons/macchiato/browserslist.svg new file mode 100644 index 00000000..a9caeda1 --- /dev/null +++ b/icons/macchiato/browserslist.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/bun-lock.svg b/icons/macchiato/bun-lock.svg new file mode 100644 index 00000000..ad9283a9 --- /dev/null +++ b/icons/macchiato/bun-lock.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/macchiato/bun.svg b/icons/macchiato/bun.svg new file mode 100644 index 00000000..b4402e0e --- /dev/null +++ b/icons/macchiato/bun.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/macchiato/c-header.svg b/icons/macchiato/c-header.svg new file mode 100644 index 00000000..60b5e3f4 --- /dev/null +++ b/icons/macchiato/c-header.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/c.svg b/icons/macchiato/c.svg new file mode 100644 index 00000000..cb7156bb --- /dev/null +++ b/icons/macchiato/c.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/caddy.svg b/icons/macchiato/caddy.svg new file mode 100644 index 00000000..378455e0 --- /dev/null +++ b/icons/macchiato/caddy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/capacitor.svg b/icons/macchiato/capacitor.svg new file mode 100644 index 00000000..26572b53 --- /dev/null +++ b/icons/macchiato/capacitor.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/certificate.svg b/icons/macchiato/certificate.svg new file mode 100644 index 00000000..d0d4ddb5 --- /dev/null +++ b/icons/macchiato/certificate.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/macchiato/changelog.svg b/icons/macchiato/changelog.svg new file mode 100644 index 00000000..ef5e78eb --- /dev/null +++ b/icons/macchiato/changelog.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/circle-ci.svg b/icons/macchiato/circle-ci.svg new file mode 100644 index 00000000..6c542080 --- /dev/null +++ b/icons/macchiato/circle-ci.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/clojure.svg b/icons/macchiato/clojure.svg new file mode 100644 index 00000000..4325f683 --- /dev/null +++ b/icons/macchiato/clojure.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons/macchiato/cmake.svg b/icons/macchiato/cmake.svg new file mode 100644 index 00000000..2835275a --- /dev/null +++ b/icons/macchiato/cmake.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/macchiato/cobol.svg b/icons/macchiato/cobol.svg new file mode 100644 index 00000000..1ac12265 --- /dev/null +++ b/icons/macchiato/cobol.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/code-climate.svg b/icons/macchiato/code-climate.svg new file mode 100644 index 00000000..3a9d3761 --- /dev/null +++ b/icons/macchiato/code-climate.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/code-of-conduct.svg b/icons/macchiato/code-of-conduct.svg new file mode 100644 index 00000000..045f1af4 --- /dev/null +++ b/icons/macchiato/code-of-conduct.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/coffeescript.svg b/icons/macchiato/coffeescript.svg new file mode 100644 index 00000000..5e93d238 --- /dev/null +++ b/icons/macchiato/coffeescript.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/commitlint.svg b/icons/macchiato/commitlint.svg new file mode 100644 index 00000000..0a67b7c0 --- /dev/null +++ b/icons/macchiato/commitlint.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/cpp-header.svg b/icons/macchiato/cpp-header.svg new file mode 100644 index 00000000..cc7a5077 --- /dev/null +++ b/icons/macchiato/cpp-header.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/cpp.svg b/icons/macchiato/cpp.svg new file mode 100644 index 00000000..a67f628b --- /dev/null +++ b/icons/macchiato/cpp.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/csharp.svg b/icons/macchiato/csharp.svg new file mode 100644 index 00000000..242d5a8c --- /dev/null +++ b/icons/macchiato/csharp.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/css-map.svg b/icons/macchiato/css-map.svg new file mode 100644 index 00000000..a02112aa --- /dev/null +++ b/icons/macchiato/css-map.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/macchiato/css.svg b/icons/macchiato/css.svg new file mode 100644 index 00000000..17285eeb --- /dev/null +++ b/icons/macchiato/css.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/csv.svg b/icons/macchiato/csv.svg new file mode 100644 index 00000000..bbc874c4 --- /dev/null +++ b/icons/macchiato/csv.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/cucumber.svg b/icons/macchiato/cucumber.svg new file mode 100644 index 00000000..a82cddbf --- /dev/null +++ b/icons/macchiato/cucumber.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/cuda.svg b/icons/macchiato/cuda.svg new file mode 100644 index 00000000..a16e0965 --- /dev/null +++ b/icons/macchiato/cuda.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/cypress.svg b/icons/macchiato/cypress.svg new file mode 100644 index 00000000..23fe61f4 --- /dev/null +++ b/icons/macchiato/cypress.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/d.svg b/icons/macchiato/d.svg new file mode 100644 index 00000000..318a086c --- /dev/null +++ b/icons/macchiato/d.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/dart-generated.svg b/icons/macchiato/dart-generated.svg new file mode 100644 index 00000000..60f9cc59 --- /dev/null +++ b/icons/macchiato/dart-generated.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/dart.svg b/icons/macchiato/dart.svg new file mode 100644 index 00000000..9e4da812 --- /dev/null +++ b/icons/macchiato/dart.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/database.svg b/icons/macchiato/database.svg new file mode 100644 index 00000000..986bee66 --- /dev/null +++ b/icons/macchiato/database.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/deno.svg b/icons/macchiato/deno.svg new file mode 100644 index 00000000..15a1adb2 --- /dev/null +++ b/icons/macchiato/deno.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/deno_lock.svg b/icons/macchiato/deno_lock.svg new file mode 100644 index 00000000..423f8ab6 --- /dev/null +++ b/icons/macchiato/deno_lock.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/dependabot.svg b/icons/macchiato/dependabot.svg new file mode 100644 index 00000000..6d1df81c --- /dev/null +++ b/icons/macchiato/dependabot.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/dhall.svg b/icons/macchiato/dhall.svg new file mode 100644 index 00000000..ec993ede --- /dev/null +++ b/icons/macchiato/dhall.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/diff.svg b/icons/macchiato/diff.svg new file mode 100644 index 00000000..92d92e02 --- /dev/null +++ b/icons/macchiato/diff.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/macchiato/django.svg b/icons/macchiato/django.svg new file mode 100644 index 00000000..e8902532 --- /dev/null +++ b/icons/macchiato/django.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/docker-compose.svg b/icons/macchiato/docker-compose.svg new file mode 100644 index 00000000..344aafda --- /dev/null +++ b/icons/macchiato/docker-compose.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/docker-ignore.svg b/icons/macchiato/docker-ignore.svg new file mode 100644 index 00000000..d01dbd7f --- /dev/null +++ b/icons/macchiato/docker-ignore.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/docker.svg b/icons/macchiato/docker.svg new file mode 100644 index 00000000..1ff03a3d --- /dev/null +++ b/icons/macchiato/docker.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/drawio.svg b/icons/macchiato/drawio.svg new file mode 100644 index 00000000..121b6db1 --- /dev/null +++ b/icons/macchiato/drawio.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/editorconfig.svg b/icons/macchiato/editorconfig.svg new file mode 100644 index 00000000..b30d3623 --- /dev/null +++ b/icons/macchiato/editorconfig.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/ejs.svg b/icons/macchiato/ejs.svg new file mode 100644 index 00000000..220a844f --- /dev/null +++ b/icons/macchiato/ejs.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/elixir.svg b/icons/macchiato/elixir.svg new file mode 100644 index 00000000..dd16ce12 --- /dev/null +++ b/icons/macchiato/elixir.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/elm.svg b/icons/macchiato/elm.svg new file mode 100644 index 00000000..a1b17427 --- /dev/null +++ b/icons/macchiato/elm.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/ember.svg b/icons/macchiato/ember.svg new file mode 100644 index 00000000..20153e5e --- /dev/null +++ b/icons/macchiato/ember.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/env.svg b/icons/macchiato/env.svg new file mode 100644 index 00000000..02f7a7c3 --- /dev/null +++ b/icons/macchiato/env.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/erlang.svg b/icons/macchiato/erlang.svg new file mode 100644 index 00000000..671a7e72 --- /dev/null +++ b/icons/macchiato/erlang.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/esbuild.svg b/icons/macchiato/esbuild.svg new file mode 100644 index 00000000..e39e0cd1 --- /dev/null +++ b/icons/macchiato/esbuild.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/eslint-ignore.svg b/icons/macchiato/eslint-ignore.svg new file mode 100644 index 00000000..47d204e3 --- /dev/null +++ b/icons/macchiato/eslint-ignore.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/eslint.svg b/icons/macchiato/eslint.svg new file mode 100644 index 00000000..17de663a --- /dev/null +++ b/icons/macchiato/eslint.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/exe.svg b/icons/macchiato/exe.svg new file mode 100644 index 00000000..6d5e4b61 --- /dev/null +++ b/icons/macchiato/exe.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/fastlane.svg b/icons/macchiato/fastlane.svg new file mode 100644 index 00000000..3a096c25 --- /dev/null +++ b/icons/macchiato/fastlane.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons/macchiato/favicon.svg b/icons/macchiato/favicon.svg new file mode 100644 index 00000000..bd35b0f4 --- /dev/null +++ b/icons/macchiato/favicon.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/figma.svg b/icons/macchiato/figma.svg new file mode 100644 index 00000000..4ee2d203 --- /dev/null +++ b/icons/macchiato/figma.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/macchiato/firebase.svg b/icons/macchiato/firebase.svg new file mode 100644 index 00000000..315e9ea5 --- /dev/null +++ b/icons/macchiato/firebase.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/folder_admin.svg b/icons/macchiato/folder_admin.svg new file mode 100644 index 00000000..569b648f --- /dev/null +++ b/icons/macchiato/folder_admin.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_admin_open.svg b/icons/macchiato/folder_admin_open.svg new file mode 100644 index 00000000..3e044c4d --- /dev/null +++ b/icons/macchiato/folder_admin_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_android.svg b/icons/macchiato/folder_android.svg new file mode 100644 index 00000000..0f49c9e9 --- /dev/null +++ b/icons/macchiato/folder_android.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_android__open.svg b/icons/macchiato/folder_android__open.svg new file mode 100644 index 00000000..c53fba61 --- /dev/null +++ b/icons/macchiato/folder_android__open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_animation.svg b/icons/macchiato/folder_animation.svg new file mode 100644 index 00000000..02b75e89 --- /dev/null +++ b/icons/macchiato/folder_animation.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_animation_open.svg b/icons/macchiato/folder_animation_open.svg new file mode 100644 index 00000000..09a7974a --- /dev/null +++ b/icons/macchiato/folder_animation_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_api.svg b/icons/macchiato/folder_api.svg new file mode 100644 index 00000000..1aa760c9 --- /dev/null +++ b/icons/macchiato/folder_api.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_api_open.svg b/icons/macchiato/folder_api_open.svg new file mode 100644 index 00000000..170146d3 --- /dev/null +++ b/icons/macchiato/folder_api_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_app.svg b/icons/macchiato/folder_app.svg new file mode 100644 index 00000000..08c00178 --- /dev/null +++ b/icons/macchiato/folder_app.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/macchiato/folder_app_open.svg b/icons/macchiato/folder_app_open.svg new file mode 100644 index 00000000..5deab41f --- /dev/null +++ b/icons/macchiato/folder_app_open.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/macchiato/folder_audio.svg b/icons/macchiato/folder_audio.svg new file mode 100644 index 00000000..15f809af --- /dev/null +++ b/icons/macchiato/folder_audio.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/macchiato/folder_audio_open.svg b/icons/macchiato/folder_audio_open.svg new file mode 100644 index 00000000..898cc2f4 --- /dev/null +++ b/icons/macchiato/folder_audio_open.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/macchiato/folder_aws.svg b/icons/macchiato/folder_aws.svg new file mode 100644 index 00000000..96be3468 --- /dev/null +++ b/icons/macchiato/folder_aws.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/macchiato/folder_aws_open.svg b/icons/macchiato/folder_aws_open.svg new file mode 100644 index 00000000..09062615 --- /dev/null +++ b/icons/macchiato/folder_aws_open.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/macchiato/folder_benchmark.svg b/icons/macchiato/folder_benchmark.svg new file mode 100644 index 00000000..17201f7b --- /dev/null +++ b/icons/macchiato/folder_benchmark.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_benchmark_open.svg b/icons/macchiato/folder_benchmark_open.svg new file mode 100644 index 00000000..3907967b --- /dev/null +++ b/icons/macchiato/folder_benchmark_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_circle-ci.svg b/icons/macchiato/folder_circle-ci.svg new file mode 100644 index 00000000..46bfd331 --- /dev/null +++ b/icons/macchiato/folder_circle-ci.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/macchiato/folder_circle-ci_open.svg b/icons/macchiato/folder_circle-ci_open.svg new file mode 100644 index 00000000..53a1c745 --- /dev/null +++ b/icons/macchiato/folder_circle-ci_open.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/macchiato/folder_client.svg b/icons/macchiato/folder_client.svg new file mode 100644 index 00000000..6f96b5a5 --- /dev/null +++ b/icons/macchiato/folder_client.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_client_open.svg b/icons/macchiato/folder_client_open.svg new file mode 100644 index 00000000..c850e18b --- /dev/null +++ b/icons/macchiato/folder_client_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_cloud.svg b/icons/macchiato/folder_cloud.svg new file mode 100644 index 00000000..9ce3322a --- /dev/null +++ b/icons/macchiato/folder_cloud.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_cloud_open.svg b/icons/macchiato/folder_cloud_open.svg new file mode 100644 index 00000000..5e34b89a --- /dev/null +++ b/icons/macchiato/folder_cloud_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_command.svg b/icons/macchiato/folder_command.svg new file mode 100644 index 00000000..5acf7030 --- /dev/null +++ b/icons/macchiato/folder_command.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_command_open.svg b/icons/macchiato/folder_command_open.svg new file mode 100644 index 00000000..1042d937 --- /dev/null +++ b/icons/macchiato/folder_command_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_components.svg b/icons/macchiato/folder_components.svg new file mode 100644 index 00000000..6f2de5f4 --- /dev/null +++ b/icons/macchiato/folder_components.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_components_open.svg b/icons/macchiato/folder_components_open.svg new file mode 100644 index 00000000..401c6348 --- /dev/null +++ b/icons/macchiato/folder_components_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_composables.svg b/icons/macchiato/folder_composables.svg new file mode 100644 index 00000000..64b0832d --- /dev/null +++ b/icons/macchiato/folder_composables.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_composables_open.svg b/icons/macchiato/folder_composables_open.svg new file mode 100644 index 00000000..0919c23e --- /dev/null +++ b/icons/macchiato/folder_composables_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_config.svg b/icons/macchiato/folder_config.svg new file mode 100644 index 00000000..3eb07286 --- /dev/null +++ b/icons/macchiato/folder_config.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_config_open.svg b/icons/macchiato/folder_config_open.svg new file mode 100644 index 00000000..57284d47 --- /dev/null +++ b/icons/macchiato/folder_config_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_connection.svg b/icons/macchiato/folder_connection.svg new file mode 100644 index 00000000..574bdbf8 --- /dev/null +++ b/icons/macchiato/folder_connection.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_connection_open.svg b/icons/macchiato/folder_connection_open.svg new file mode 100644 index 00000000..e5746318 --- /dev/null +++ b/icons/macchiato/folder_connection_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_constant.svg b/icons/macchiato/folder_constant.svg new file mode 100644 index 00000000..aad875de --- /dev/null +++ b/icons/macchiato/folder_constant.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_constant_open.svg b/icons/macchiato/folder_constant_open.svg new file mode 100644 index 00000000..698392c5 --- /dev/null +++ b/icons/macchiato/folder_constant_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_controllers.svg b/icons/macchiato/folder_controllers.svg new file mode 100644 index 00000000..7d8bb7ce --- /dev/null +++ b/icons/macchiato/folder_controllers.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_controllers_open.svg b/icons/macchiato/folder_controllers_open.svg new file mode 100644 index 00000000..a7310a65 --- /dev/null +++ b/icons/macchiato/folder_controllers_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_core.svg b/icons/macchiato/folder_core.svg new file mode 100644 index 00000000..6d5aea6e --- /dev/null +++ b/icons/macchiato/folder_core.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_core_open.svg b/icons/macchiato/folder_core_open.svg new file mode 100644 index 00000000..206a4cdc --- /dev/null +++ b/icons/macchiato/folder_core_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_coverage.svg b/icons/macchiato/folder_coverage.svg new file mode 100644 index 00000000..144a98e8 --- /dev/null +++ b/icons/macchiato/folder_coverage.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_coverage_open.svg b/icons/macchiato/folder_coverage_open.svg new file mode 100644 index 00000000..f6383bee --- /dev/null +++ b/icons/macchiato/folder_coverage_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_cypress.svg b/icons/macchiato/folder_cypress.svg new file mode 100644 index 00000000..c3b9c570 --- /dev/null +++ b/icons/macchiato/folder_cypress.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_cypress__open.svg b/icons/macchiato/folder_cypress__open.svg new file mode 100644 index 00000000..e48708c6 --- /dev/null +++ b/icons/macchiato/folder_cypress__open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_database.svg b/icons/macchiato/folder_database.svg new file mode 100644 index 00000000..a3c0cc4e --- /dev/null +++ b/icons/macchiato/folder_database.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_database_open.svg b/icons/macchiato/folder_database_open.svg new file mode 100644 index 00000000..9c810755 --- /dev/null +++ b/icons/macchiato/folder_database_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_debug.svg b/icons/macchiato/folder_debug.svg new file mode 100644 index 00000000..d363ce81 --- /dev/null +++ b/icons/macchiato/folder_debug.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_debug_open.svg b/icons/macchiato/folder_debug_open.svg new file mode 100644 index 00000000..62af1ab4 --- /dev/null +++ b/icons/macchiato/folder_debug_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_dist.svg b/icons/macchiato/folder_dist.svg new file mode 100644 index 00000000..4b75870d --- /dev/null +++ b/icons/macchiato/folder_dist.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_dist_open.svg b/icons/macchiato/folder_dist_open.svg new file mode 100644 index 00000000..72cf5534 --- /dev/null +++ b/icons/macchiato/folder_dist_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_docker.svg b/icons/macchiato/folder_docker.svg new file mode 100644 index 00000000..90ab84cc --- /dev/null +++ b/icons/macchiato/folder_docker.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/macchiato/folder_docker_open.svg b/icons/macchiato/folder_docker_open.svg new file mode 100644 index 00000000..a573e66d --- /dev/null +++ b/icons/macchiato/folder_docker_open.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/macchiato/folder_docs.svg b/icons/macchiato/folder_docs.svg new file mode 100644 index 00000000..e79393ba --- /dev/null +++ b/icons/macchiato/folder_docs.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_docs__open.svg b/icons/macchiato/folder_docs__open.svg new file mode 100644 index 00000000..a088412a --- /dev/null +++ b/icons/macchiato/folder_docs__open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_download.svg b/icons/macchiato/folder_download.svg new file mode 100644 index 00000000..44b4cd10 --- /dev/null +++ b/icons/macchiato/folder_download.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_download_open.svg b/icons/macchiato/folder_download_open.svg new file mode 100644 index 00000000..493b7c51 --- /dev/null +++ b/icons/macchiato/folder_download_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_examples.svg b/icons/macchiato/folder_examples.svg new file mode 100644 index 00000000..aef0edce --- /dev/null +++ b/icons/macchiato/folder_examples.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_examples_open.svg b/icons/macchiato/folder_examples_open.svg new file mode 100644 index 00000000..e22d6817 --- /dev/null +++ b/icons/macchiato/folder_examples_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_firebase.svg b/icons/macchiato/folder_firebase.svg new file mode 100644 index 00000000..172f2602 --- /dev/null +++ b/icons/macchiato/folder_firebase.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_firebase_open.svg b/icons/macchiato/folder_firebase_open.svg new file mode 100644 index 00000000..cc089e59 --- /dev/null +++ b/icons/macchiato/folder_firebase_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_fonts.svg b/icons/macchiato/folder_fonts.svg new file mode 100644 index 00000000..9730f23e --- /dev/null +++ b/icons/macchiato/folder_fonts.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_fonts_open.svg b/icons/macchiato/folder_fonts_open.svg new file mode 100644 index 00000000..ea4f00a9 --- /dev/null +++ b/icons/macchiato/folder_fonts_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_functions.svg b/icons/macchiato/folder_functions.svg new file mode 100644 index 00000000..914ec2a2 --- /dev/null +++ b/icons/macchiato/folder_functions.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_functions_open.svg b/icons/macchiato/folder_functions_open.svg new file mode 100644 index 00000000..b6fe3d68 --- /dev/null +++ b/icons/macchiato/folder_functions_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_git.svg b/icons/macchiato/folder_git.svg new file mode 100644 index 00000000..cd7725b9 --- /dev/null +++ b/icons/macchiato/folder_git.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_git_open.svg b/icons/macchiato/folder_git_open.svg new file mode 100644 index 00000000..91a82408 --- /dev/null +++ b/icons/macchiato/folder_git_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_github.svg b/icons/macchiato/folder_github.svg new file mode 100644 index 00000000..01d0f827 --- /dev/null +++ b/icons/macchiato/folder_github.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_github_open.svg b/icons/macchiato/folder_github_open.svg new file mode 100644 index 00000000..4465b41c --- /dev/null +++ b/icons/macchiato/folder_github_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_gitlab.svg b/icons/macchiato/folder_gitlab.svg new file mode 100644 index 00000000..0ad962c2 --- /dev/null +++ b/icons/macchiato/folder_gitlab.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_gitlab_open.svg b/icons/macchiato/folder_gitlab_open.svg new file mode 100644 index 00000000..099af7d0 --- /dev/null +++ b/icons/macchiato/folder_gitlab_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_husky.svg b/icons/macchiato/folder_husky.svg new file mode 100644 index 00000000..81bba0c4 --- /dev/null +++ b/icons/macchiato/folder_husky.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/macchiato/folder_husky_open.svg b/icons/macchiato/folder_husky_open.svg new file mode 100644 index 00000000..4c43cba3 --- /dev/null +++ b/icons/macchiato/folder_husky_open.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/macchiato/folder_images.svg b/icons/macchiato/folder_images.svg new file mode 100644 index 00000000..922be0cd --- /dev/null +++ b/icons/macchiato/folder_images.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/macchiato/folder_images_open.svg b/icons/macchiato/folder_images_open.svg new file mode 100644 index 00000000..e5f2d3f4 --- /dev/null +++ b/icons/macchiato/folder_images_open.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/macchiato/folder_kubernetes.svg b/icons/macchiato/folder_kubernetes.svg new file mode 100644 index 00000000..738c85a1 --- /dev/null +++ b/icons/macchiato/folder_kubernetes.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/macchiato/folder_kubernetes_open.svg b/icons/macchiato/folder_kubernetes_open.svg new file mode 100644 index 00000000..d2c8e5a4 --- /dev/null +++ b/icons/macchiato/folder_kubernetes_open.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/macchiato/folder_layouts.svg b/icons/macchiato/folder_layouts.svg new file mode 100644 index 00000000..4616847a --- /dev/null +++ b/icons/macchiato/folder_layouts.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_layouts_open.svg b/icons/macchiato/folder_layouts_open.svg new file mode 100644 index 00000000..53157d21 --- /dev/null +++ b/icons/macchiato/folder_layouts_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_locales.svg b/icons/macchiato/folder_locales.svg new file mode 100644 index 00000000..387a6304 --- /dev/null +++ b/icons/macchiato/folder_locales.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_locales_open.svg b/icons/macchiato/folder_locales_open.svg new file mode 100644 index 00000000..83dd5051 --- /dev/null +++ b/icons/macchiato/folder_locales_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_middleware.svg b/icons/macchiato/folder_middleware.svg new file mode 100644 index 00000000..0dfc0deb --- /dev/null +++ b/icons/macchiato/folder_middleware.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_middleware_open.svg b/icons/macchiato/folder_middleware_open.svg new file mode 100644 index 00000000..3d492674 --- /dev/null +++ b/icons/macchiato/folder_middleware_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_mocks.svg b/icons/macchiato/folder_mocks.svg new file mode 100644 index 00000000..3024e0bc --- /dev/null +++ b/icons/macchiato/folder_mocks.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_mocks_open.svg b/icons/macchiato/folder_mocks_open.svg new file mode 100644 index 00000000..d6cca6d9 --- /dev/null +++ b/icons/macchiato/folder_mocks_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_next.svg b/icons/macchiato/folder_next.svg new file mode 100644 index 00000000..38e2ebd6 --- /dev/null +++ b/icons/macchiato/folder_next.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_next_open.svg b/icons/macchiato/folder_next_open.svg new file mode 100644 index 00000000..61b7eed5 --- /dev/null +++ b/icons/macchiato/folder_next_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_node.svg b/icons/macchiato/folder_node.svg new file mode 100644 index 00000000..397b1650 --- /dev/null +++ b/icons/macchiato/folder_node.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_node_open.svg b/icons/macchiato/folder_node_open.svg new file mode 100644 index 00000000..f59e9813 --- /dev/null +++ b/icons/macchiato/folder_node_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_nuxt.svg b/icons/macchiato/folder_nuxt.svg new file mode 100644 index 00000000..1a79cdde --- /dev/null +++ b/icons/macchiato/folder_nuxt.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_nuxt_open.svg b/icons/macchiato/folder_nuxt_open.svg new file mode 100644 index 00000000..64740b38 --- /dev/null +++ b/icons/macchiato/folder_nuxt_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_packages.svg b/icons/macchiato/folder_packages.svg new file mode 100644 index 00000000..59892824 --- /dev/null +++ b/icons/macchiato/folder_packages.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_packages_open.svg b/icons/macchiato/folder_packages_open.svg new file mode 100644 index 00000000..b89e0549 --- /dev/null +++ b/icons/macchiato/folder_packages_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_plugins.svg b/icons/macchiato/folder_plugins.svg new file mode 100644 index 00000000..153ff18f --- /dev/null +++ b/icons/macchiato/folder_plugins.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_plugins_open.svg b/icons/macchiato/folder_plugins_open.svg new file mode 100644 index 00000000..4742ed69 --- /dev/null +++ b/icons/macchiato/folder_plugins_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_prisma.svg b/icons/macchiato/folder_prisma.svg new file mode 100644 index 00000000..3f40b5fb --- /dev/null +++ b/icons/macchiato/folder_prisma.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_prisma_open.svg b/icons/macchiato/folder_prisma_open.svg new file mode 100644 index 00000000..6c677ad5 --- /dev/null +++ b/icons/macchiato/folder_prisma_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_public.svg b/icons/macchiato/folder_public.svg new file mode 100644 index 00000000..05cd2d9b --- /dev/null +++ b/icons/macchiato/folder_public.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_public_open.svg b/icons/macchiato/folder_public_open.svg new file mode 100644 index 00000000..68d25da0 --- /dev/null +++ b/icons/macchiato/folder_public_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_queue.svg b/icons/macchiato/folder_queue.svg new file mode 100644 index 00000000..c99b7011 --- /dev/null +++ b/icons/macchiato/folder_queue.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_queue_open.svg b/icons/macchiato/folder_queue_open.svg new file mode 100644 index 00000000..28a7f87d --- /dev/null +++ b/icons/macchiato/folder_queue_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_redux.svg b/icons/macchiato/folder_redux.svg new file mode 100644 index 00000000..feee1839 --- /dev/null +++ b/icons/macchiato/folder_redux.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_redux_open.svg b/icons/macchiato/folder_redux_open.svg new file mode 100644 index 00000000..9e9c6b43 --- /dev/null +++ b/icons/macchiato/folder_redux_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_routes.svg b/icons/macchiato/folder_routes.svg new file mode 100644 index 00000000..efa0d454 --- /dev/null +++ b/icons/macchiato/folder_routes.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_routes_open.svg b/icons/macchiato/folder_routes_open.svg new file mode 100644 index 00000000..2dbd4a04 --- /dev/null +++ b/icons/macchiato/folder_routes_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_sass.svg b/icons/macchiato/folder_sass.svg new file mode 100644 index 00000000..96a1927e --- /dev/null +++ b/icons/macchiato/folder_sass.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_sass_open.svg b/icons/macchiato/folder_sass_open.svg new file mode 100644 index 00000000..2fc39500 --- /dev/null +++ b/icons/macchiato/folder_sass_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_scripts.svg b/icons/macchiato/folder_scripts.svg new file mode 100644 index 00000000..580e51f7 --- /dev/null +++ b/icons/macchiato/folder_scripts.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_scripts_open.svg b/icons/macchiato/folder_scripts_open.svg new file mode 100644 index 00000000..759d4fcc --- /dev/null +++ b/icons/macchiato/folder_scripts_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_server.svg b/icons/macchiato/folder_server.svg new file mode 100644 index 00000000..c18a5868 --- /dev/null +++ b/icons/macchiato/folder_server.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_server_open.svg b/icons/macchiato/folder_server_open.svg new file mode 100644 index 00000000..6dcdd821 --- /dev/null +++ b/icons/macchiato/folder_server_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_src.svg b/icons/macchiato/folder_src.svg new file mode 100644 index 00000000..28aabac7 --- /dev/null +++ b/icons/macchiato/folder_src.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_src_open.svg b/icons/macchiato/folder_src_open.svg new file mode 100644 index 00000000..ad8287dc --- /dev/null +++ b/icons/macchiato/folder_src_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_storybook.svg b/icons/macchiato/folder_storybook.svg new file mode 100644 index 00000000..f0552036 --- /dev/null +++ b/icons/macchiato/folder_storybook.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_storybook_open.svg b/icons/macchiato/folder_storybook_open.svg new file mode 100644 index 00000000..46bf070d --- /dev/null +++ b/icons/macchiato/folder_storybook_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_styles.svg b/icons/macchiato/folder_styles.svg new file mode 100644 index 00000000..16c3c9e6 --- /dev/null +++ b/icons/macchiato/folder_styles.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_styles_open.svg b/icons/macchiato/folder_styles_open.svg new file mode 100644 index 00000000..408108f9 --- /dev/null +++ b/icons/macchiato/folder_styles_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_svg.svg b/icons/macchiato/folder_svg.svg new file mode 100644 index 00000000..c3641180 --- /dev/null +++ b/icons/macchiato/folder_svg.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_svg_open.svg b/icons/macchiato/folder_svg_open.svg new file mode 100644 index 00000000..7de61f61 --- /dev/null +++ b/icons/macchiato/folder_svg_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_tauri.svg b/icons/macchiato/folder_tauri.svg new file mode 100644 index 00000000..499528c2 --- /dev/null +++ b/icons/macchiato/folder_tauri.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/macchiato/folder_tauri_open.svg b/icons/macchiato/folder_tauri_open.svg new file mode 100644 index 00000000..948bd6a2 --- /dev/null +++ b/icons/macchiato/folder_tauri_open.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/macchiato/folder_temp.svg b/icons/macchiato/folder_temp.svg new file mode 100644 index 00000000..e649450c --- /dev/null +++ b/icons/macchiato/folder_temp.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_temp_open.svg b/icons/macchiato/folder_temp_open.svg new file mode 100644 index 00000000..91b8cd8f --- /dev/null +++ b/icons/macchiato/folder_temp_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_templates.svg b/icons/macchiato/folder_templates.svg new file mode 100644 index 00000000..59015e48 --- /dev/null +++ b/icons/macchiato/folder_templates.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_templates_open.svg b/icons/macchiato/folder_templates_open.svg new file mode 100644 index 00000000..6d0e064f --- /dev/null +++ b/icons/macchiato/folder_templates_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_tests.svg b/icons/macchiato/folder_tests.svg new file mode 100644 index 00000000..1c960594 --- /dev/null +++ b/icons/macchiato/folder_tests.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_tests_open.svg b/icons/macchiato/folder_tests_open.svg new file mode 100644 index 00000000..ad306751 --- /dev/null +++ b/icons/macchiato/folder_tests_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_types.svg b/icons/macchiato/folder_types.svg new file mode 100644 index 00000000..34bfd365 --- /dev/null +++ b/icons/macchiato/folder_types.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_types_open.svg b/icons/macchiato/folder_types_open.svg new file mode 100644 index 00000000..408324a4 --- /dev/null +++ b/icons/macchiato/folder_types_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_upload.svg b/icons/macchiato/folder_upload.svg new file mode 100644 index 00000000..20bbf473 --- /dev/null +++ b/icons/macchiato/folder_upload.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/macchiato/folder_upload_open.svg b/icons/macchiato/folder_upload_open.svg new file mode 100644 index 00000000..a67f9e2b --- /dev/null +++ b/icons/macchiato/folder_upload_open.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/macchiato/folder_utils.svg b/icons/macchiato/folder_utils.svg new file mode 100644 index 00000000..527b9d26 --- /dev/null +++ b/icons/macchiato/folder_utils.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_utils_open.svg b/icons/macchiato/folder_utils_open.svg new file mode 100644 index 00000000..8756efc6 --- /dev/null +++ b/icons/macchiato/folder_utils_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_vercel.svg b/icons/macchiato/folder_vercel.svg new file mode 100644 index 00000000..a376f555 --- /dev/null +++ b/icons/macchiato/folder_vercel.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_vercel_open.svg b/icons/macchiato/folder_vercel_open.svg new file mode 100644 index 00000000..d0052efe --- /dev/null +++ b/icons/macchiato/folder_vercel_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_video.svg b/icons/macchiato/folder_video.svg new file mode 100644 index 00000000..b9636f93 --- /dev/null +++ b/icons/macchiato/folder_video.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_video_open.svg b/icons/macchiato/folder_video_open.svg new file mode 100644 index 00000000..3197f1b4 --- /dev/null +++ b/icons/macchiato/folder_video_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_views.svg b/icons/macchiato/folder_views.svg new file mode 100644 index 00000000..9ed864b3 --- /dev/null +++ b/icons/macchiato/folder_views.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_views_open.svg b/icons/macchiato/folder_views_open.svg new file mode 100644 index 00000000..250eaf2b --- /dev/null +++ b/icons/macchiato/folder_views_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_vscode.svg b/icons/macchiato/folder_vscode.svg new file mode 100644 index 00000000..72356763 --- /dev/null +++ b/icons/macchiato/folder_vscode.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_vscode_open.svg b/icons/macchiato/folder_vscode_open.svg new file mode 100644 index 00000000..6d43c385 --- /dev/null +++ b/icons/macchiato/folder_vscode_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_workflows.svg b/icons/macchiato/folder_workflows.svg new file mode 100644 index 00000000..af4d70fc --- /dev/null +++ b/icons/macchiato/folder_workflows.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/folder_workflows_open.svg b/icons/macchiato/folder_workflows_open.svg new file mode 100644 index 00000000..ead5e4a1 --- /dev/null +++ b/icons/macchiato/folder_workflows_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/font.svg b/icons/macchiato/font.svg new file mode 100644 index 00000000..47e2bf52 --- /dev/null +++ b/icons/macchiato/font.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/fortran.svg b/icons/macchiato/fortran.svg new file mode 100644 index 00000000..903ed74d --- /dev/null +++ b/icons/macchiato/fortran.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/fsharp.svg b/icons/macchiato/fsharp.svg new file mode 100644 index 00000000..9d6f3b70 --- /dev/null +++ b/icons/macchiato/fsharp.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/gatsby.svg b/icons/macchiato/gatsby.svg new file mode 100644 index 00000000..faf4ca36 --- /dev/null +++ b/icons/macchiato/gatsby.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/git.svg b/icons/macchiato/git.svg new file mode 100644 index 00000000..68e4621d --- /dev/null +++ b/icons/macchiato/git.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/gitlab.svg b/icons/macchiato/gitlab.svg new file mode 100644 index 00000000..a3fdf41c --- /dev/null +++ b/icons/macchiato/gitlab.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/gitpod.svg b/icons/macchiato/gitpod.svg new file mode 100644 index 00000000..cce11c8a --- /dev/null +++ b/icons/macchiato/gitpod.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/go-mod.svg b/icons/macchiato/go-mod.svg new file mode 100644 index 00000000..3b495cb8 --- /dev/null +++ b/icons/macchiato/go-mod.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/go.svg b/icons/macchiato/go.svg new file mode 100644 index 00000000..32945aa2 --- /dev/null +++ b/icons/macchiato/go.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/godot-assets.svg b/icons/macchiato/godot-assets.svg new file mode 100644 index 00000000..f50b0bc4 --- /dev/null +++ b/icons/macchiato/godot-assets.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/godot.svg b/icons/macchiato/godot.svg new file mode 100644 index 00000000..6a669892 --- /dev/null +++ b/icons/macchiato/godot.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/gradle.svg b/icons/macchiato/gradle.svg new file mode 100644 index 00000000..e9b3a3fb --- /dev/null +++ b/icons/macchiato/gradle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/graphql.svg b/icons/macchiato/graphql.svg new file mode 100644 index 00000000..fe02b170 --- /dev/null +++ b/icons/macchiato/graphql.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/groovy.svg b/icons/macchiato/groovy.svg new file mode 100644 index 00000000..ab645d08 --- /dev/null +++ b/icons/macchiato/groovy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/gulp.svg b/icons/macchiato/gulp.svg new file mode 100644 index 00000000..99f840c0 --- /dev/null +++ b/icons/macchiato/gulp.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/haml.svg b/icons/macchiato/haml.svg new file mode 100644 index 00000000..a3380fe0 --- /dev/null +++ b/icons/macchiato/haml.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/macchiato/handlebars.svg b/icons/macchiato/handlebars.svg new file mode 100644 index 00000000..23814a38 --- /dev/null +++ b/icons/macchiato/handlebars.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/haskell.svg b/icons/macchiato/haskell.svg new file mode 100644 index 00000000..ff33144e --- /dev/null +++ b/icons/macchiato/haskell.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/haxe.svg b/icons/macchiato/haxe.svg new file mode 100644 index 00000000..68970326 --- /dev/null +++ b/icons/macchiato/haxe.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/helm.svg b/icons/macchiato/helm.svg new file mode 100644 index 00000000..cbea343d --- /dev/null +++ b/icons/macchiato/helm.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/heroku.svg b/icons/macchiato/heroku.svg new file mode 100644 index 00000000..41291302 --- /dev/null +++ b/icons/macchiato/heroku.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/histoire.svg b/icons/macchiato/histoire.svg new file mode 100644 index 00000000..80d97841 --- /dev/null +++ b/icons/macchiato/histoire.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/html.svg b/icons/macchiato/html.svg new file mode 100644 index 00000000..9a324461 --- /dev/null +++ b/icons/macchiato/html.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/http.svg b/icons/macchiato/http.svg new file mode 100644 index 00000000..79ad05ce --- /dev/null +++ b/icons/macchiato/http.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/husky.svg b/icons/macchiato/husky.svg new file mode 100644 index 00000000..e751bad9 --- /dev/null +++ b/icons/macchiato/husky.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/image.svg b/icons/macchiato/image.svg new file mode 100644 index 00000000..9bea14bc --- /dev/null +++ b/icons/macchiato/image.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/macchiato/ionic.svg b/icons/macchiato/ionic.svg new file mode 100644 index 00000000..8695b8d1 --- /dev/null +++ b/icons/macchiato/ionic.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/java-class.svg b/icons/macchiato/java-class.svg new file mode 100644 index 00000000..4b4f5191 --- /dev/null +++ b/icons/macchiato/java-class.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/macchiato/java-jar.svg b/icons/macchiato/java-jar.svg new file mode 100644 index 00000000..140dd699 --- /dev/null +++ b/icons/macchiato/java-jar.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/macchiato/java.svg b/icons/macchiato/java.svg new file mode 100644 index 00000000..8d03a9b0 --- /dev/null +++ b/icons/macchiato/java.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/macchiato/javascript-config.svg b/icons/macchiato/javascript-config.svg new file mode 100644 index 00000000..daf663fe --- /dev/null +++ b/icons/macchiato/javascript-config.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/macchiato/javascript-map.svg b/icons/macchiato/javascript-map.svg new file mode 100644 index 00000000..4e1a1871 --- /dev/null +++ b/icons/macchiato/javascript-map.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/macchiato/javascript-react.svg b/icons/macchiato/javascript-react.svg new file mode 100644 index 00000000..34d9759e --- /dev/null +++ b/icons/macchiato/javascript-react.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/macchiato/javascript-test.svg b/icons/macchiato/javascript-test.svg new file mode 100644 index 00000000..fe3e8f6f --- /dev/null +++ b/icons/macchiato/javascript-test.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/javascript.svg b/icons/macchiato/javascript.svg new file mode 100644 index 00000000..78d226b6 --- /dev/null +++ b/icons/macchiato/javascript.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/jest.svg b/icons/macchiato/jest.svg new file mode 100644 index 00000000..f3aa4fe8 --- /dev/null +++ b/icons/macchiato/jest.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/macchiato/jinja.svg b/icons/macchiato/jinja.svg new file mode 100644 index 00000000..408cf711 --- /dev/null +++ b/icons/macchiato/jinja.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/json.svg b/icons/macchiato/json.svg new file mode 100644 index 00000000..ec4a4bf3 --- /dev/null +++ b/icons/macchiato/json.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/julia.svg b/icons/macchiato/julia.svg new file mode 100644 index 00000000..fb286982 --- /dev/null +++ b/icons/macchiato/julia.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/macchiato/jupyter.svg b/icons/macchiato/jupyter.svg new file mode 100644 index 00000000..e301e419 --- /dev/null +++ b/icons/macchiato/jupyter.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/just.svg b/icons/macchiato/just.svg new file mode 100644 index 00000000..3385f8e5 --- /dev/null +++ b/icons/macchiato/just.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/icons/macchiato/key.svg b/icons/macchiato/key.svg new file mode 100644 index 00000000..55100689 --- /dev/null +++ b/icons/macchiato/key.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/kotlin.svg b/icons/macchiato/kotlin.svg new file mode 100644 index 00000000..9ffd1df2 --- /dev/null +++ b/icons/macchiato/kotlin.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/macchiato/laravel.svg b/icons/macchiato/laravel.svg new file mode 100644 index 00000000..d629de3d --- /dev/null +++ b/icons/macchiato/laravel.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/macchiato/latex.svg b/icons/macchiato/latex.svg new file mode 100644 index 00000000..cc30621d --- /dev/null +++ b/icons/macchiato/latex.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/lerna.svg b/icons/macchiato/lerna.svg new file mode 100644 index 00000000..2c4df700 --- /dev/null +++ b/icons/macchiato/lerna.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/less.svg b/icons/macchiato/less.svg new file mode 100644 index 00000000..852f109a --- /dev/null +++ b/icons/macchiato/less.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/lib.svg b/icons/macchiato/lib.svg new file mode 100644 index 00000000..5812d757 --- /dev/null +++ b/icons/macchiato/lib.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/license.svg b/icons/macchiato/license.svg new file mode 100644 index 00000000..dc68468e --- /dev/null +++ b/icons/macchiato/license.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/lint-staged.svg b/icons/macchiato/lint-staged.svg new file mode 100644 index 00000000..9217f7b6 --- /dev/null +++ b/icons/macchiato/lint-staged.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/macchiato/lisp.svg b/icons/macchiato/lisp.svg new file mode 100644 index 00000000..7556b09c --- /dev/null +++ b/icons/macchiato/lisp.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/log.svg b/icons/macchiato/log.svg new file mode 100644 index 00000000..666b49f7 --- /dev/null +++ b/icons/macchiato/log.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/lua.svg b/icons/macchiato/lua.svg new file mode 100644 index 00000000..bf943ec2 --- /dev/null +++ b/icons/macchiato/lua.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/makefile.svg b/icons/macchiato/makefile.svg new file mode 100644 index 00000000..68600a4e --- /dev/null +++ b/icons/macchiato/makefile.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/markdown-mdx.svg b/icons/macchiato/markdown-mdx.svg new file mode 100644 index 00000000..0cb25588 --- /dev/null +++ b/icons/macchiato/markdown-mdx.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/markdown.svg b/icons/macchiato/markdown.svg new file mode 100644 index 00000000..2fb4bf56 --- /dev/null +++ b/icons/macchiato/markdown.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/marko.svg b/icons/macchiato/marko.svg new file mode 100644 index 00000000..f0a03f54 --- /dev/null +++ b/icons/macchiato/marko.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/macchiato/matlab.svg b/icons/macchiato/matlab.svg new file mode 100644 index 00000000..d551bf25 --- /dev/null +++ b/icons/macchiato/matlab.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/maven.svg b/icons/macchiato/maven.svg new file mode 100644 index 00000000..01a5a094 --- /dev/null +++ b/icons/macchiato/maven.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/macchiato/mermaid.svg b/icons/macchiato/mermaid.svg new file mode 100644 index 00000000..d1a6a1eb --- /dev/null +++ b/icons/macchiato/mermaid.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/meson.svg b/icons/macchiato/meson.svg new file mode 100644 index 00000000..ad12d816 --- /dev/null +++ b/icons/macchiato/meson.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/mjml.svg b/icons/macchiato/mjml.svg new file mode 100644 index 00000000..f91194de --- /dev/null +++ b/icons/macchiato/mjml.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/modernizr.svg b/icons/macchiato/modernizr.svg new file mode 100644 index 00000000..5eb8c959 --- /dev/null +++ b/icons/macchiato/modernizr.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/ms-excel.svg b/icons/macchiato/ms-excel.svg new file mode 100644 index 00000000..bdc7b9f5 --- /dev/null +++ b/icons/macchiato/ms-excel.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/ms-powerpoint.svg b/icons/macchiato/ms-powerpoint.svg new file mode 100644 index 00000000..83dc135f --- /dev/null +++ b/icons/macchiato/ms-powerpoint.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/ms-word.svg b/icons/macchiato/ms-word.svg new file mode 100644 index 00000000..c4360817 --- /dev/null +++ b/icons/macchiato/ms-word.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/nativescript.svg b/icons/macchiato/nativescript.svg new file mode 100644 index 00000000..869fd08b --- /dev/null +++ b/icons/macchiato/nativescript.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/nest.svg b/icons/macchiato/nest.svg new file mode 100644 index 00000000..7114f6a5 --- /dev/null +++ b/icons/macchiato/nest.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/netlify.svg b/icons/macchiato/netlify.svg new file mode 100644 index 00000000..796f12aa --- /dev/null +++ b/icons/macchiato/netlify.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/next.svg b/icons/macchiato/next.svg new file mode 100644 index 00000000..560bc56d --- /dev/null +++ b/icons/macchiato/next.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/nextflow.svg b/icons/macchiato/nextflow.svg new file mode 100644 index 00000000..00ef6e95 --- /dev/null +++ b/icons/macchiato/nextflow.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/nginx.svg b/icons/macchiato/nginx.svg new file mode 100644 index 00000000..32629d09 --- /dev/null +++ b/icons/macchiato/nginx.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/nim.svg b/icons/macchiato/nim.svg new file mode 100644 index 00000000..fc836464 --- /dev/null +++ b/icons/macchiato/nim.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/ninja.svg b/icons/macchiato/ninja.svg new file mode 100644 index 00000000..f5ac0339 --- /dev/null +++ b/icons/macchiato/ninja.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/nix-lock.svg b/icons/macchiato/nix-lock.svg new file mode 100644 index 00000000..a57979f7 --- /dev/null +++ b/icons/macchiato/nix-lock.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons/macchiato/nix.svg b/icons/macchiato/nix.svg new file mode 100644 index 00000000..df9a62ee --- /dev/null +++ b/icons/macchiato/nix.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons/macchiato/nodemon.svg b/icons/macchiato/nodemon.svg new file mode 100644 index 00000000..f6770e18 --- /dev/null +++ b/icons/macchiato/nodemon.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/npm-ignore.svg b/icons/macchiato/npm-ignore.svg new file mode 100644 index 00000000..26dd631e --- /dev/null +++ b/icons/macchiato/npm-ignore.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/npm-lock.svg b/icons/macchiato/npm-lock.svg new file mode 100644 index 00000000..82933ebd --- /dev/null +++ b/icons/macchiato/npm-lock.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/macchiato/npm.svg b/icons/macchiato/npm.svg new file mode 100644 index 00000000..0ba5587e --- /dev/null +++ b/icons/macchiato/npm.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/nuget.svg b/icons/macchiato/nuget.svg new file mode 100644 index 00000000..578883e7 --- /dev/null +++ b/icons/macchiato/nuget.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/nunjucks.svg b/icons/macchiato/nunjucks.svg new file mode 100644 index 00000000..cd04edda --- /dev/null +++ b/icons/macchiato/nunjucks.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/nuxt-ignore.svg b/icons/macchiato/nuxt-ignore.svg new file mode 100644 index 00000000..2fb5bb28 --- /dev/null +++ b/icons/macchiato/nuxt-ignore.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/nuxt.svg b/icons/macchiato/nuxt.svg new file mode 100644 index 00000000..1cf9f7fe --- /dev/null +++ b/icons/macchiato/nuxt.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/ocaml.svg b/icons/macchiato/ocaml.svg new file mode 100644 index 00000000..9623a6aa --- /dev/null +++ b/icons/macchiato/ocaml.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/macchiato/package-json.svg b/icons/macchiato/package-json.svg new file mode 100644 index 00000000..e1f5bce7 --- /dev/null +++ b/icons/macchiato/package-json.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/panda-css.svg b/icons/macchiato/panda-css.svg new file mode 100644 index 00000000..cf19ecef --- /dev/null +++ b/icons/macchiato/panda-css.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/pdf.svg b/icons/macchiato/pdf.svg new file mode 100644 index 00000000..93e1ad3c --- /dev/null +++ b/icons/macchiato/pdf.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/perl.svg b/icons/macchiato/perl.svg new file mode 100644 index 00000000..4e732e84 --- /dev/null +++ b/icons/macchiato/perl.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/phrase.svg b/icons/macchiato/phrase.svg new file mode 100644 index 00000000..9cd958c4 --- /dev/null +++ b/icons/macchiato/phrase.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/playwright.svg b/icons/macchiato/playwright.svg new file mode 100644 index 00000000..ba940a8c --- /dev/null +++ b/icons/macchiato/playwright.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/macchiato/plop.svg b/icons/macchiato/plop.svg new file mode 100644 index 00000000..0b46e7e3 --- /dev/null +++ b/icons/macchiato/plop.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/pnpm-lock.svg b/icons/macchiato/pnpm-lock.svg new file mode 100644 index 00000000..8d5e0ded --- /dev/null +++ b/icons/macchiato/pnpm-lock.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/macchiato/pnpm.svg b/icons/macchiato/pnpm.svg new file mode 100644 index 00000000..ece5759c --- /dev/null +++ b/icons/macchiato/pnpm.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/macchiato/postcss.svg b/icons/macchiato/postcss.svg new file mode 100644 index 00000000..5fb2c4dd --- /dev/null +++ b/icons/macchiato/postcss.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/macchiato/powershell.svg b/icons/macchiato/powershell.svg new file mode 100644 index 00000000..488aac77 --- /dev/null +++ b/icons/macchiato/powershell.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/premake.svg b/icons/macchiato/premake.svg new file mode 100644 index 00000000..1d5c7538 --- /dev/null +++ b/icons/macchiato/premake.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/macchiato/prettier-ignore.svg b/icons/macchiato/prettier-ignore.svg new file mode 100644 index 00000000..ef790483 --- /dev/null +++ b/icons/macchiato/prettier-ignore.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/prettier.svg b/icons/macchiato/prettier.svg new file mode 100644 index 00000000..157f950a --- /dev/null +++ b/icons/macchiato/prettier.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/macchiato/prisma.svg b/icons/macchiato/prisma.svg new file mode 100644 index 00000000..e2c3ce49 --- /dev/null +++ b/icons/macchiato/prisma.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/prolog.svg b/icons/macchiato/prolog.svg new file mode 100644 index 00000000..43814e85 --- /dev/null +++ b/icons/macchiato/prolog.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/properties.svg b/icons/macchiato/properties.svg new file mode 100644 index 00000000..719ba52c --- /dev/null +++ b/icons/macchiato/properties.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/proto.svg b/icons/macchiato/proto.svg new file mode 100644 index 00000000..b1af7c9e --- /dev/null +++ b/icons/macchiato/proto.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/macchiato/pug.svg b/icons/macchiato/pug.svg new file mode 100644 index 00000000..80dbc709 --- /dev/null +++ b/icons/macchiato/pug.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/python-compiled.svg b/icons/macchiato/python-compiled.svg new file mode 100644 index 00000000..91807638 --- /dev/null +++ b/icons/macchiato/python-compiled.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/macchiato/python.svg b/icons/macchiato/python.svg new file mode 100644 index 00000000..92c12989 --- /dev/null +++ b/icons/macchiato/python.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/macchiato/r.svg b/icons/macchiato/r.svg new file mode 100644 index 00000000..0cb18ee2 --- /dev/null +++ b/icons/macchiato/r.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/racket.svg b/icons/macchiato/racket.svg new file mode 100644 index 00000000..d75a64c7 --- /dev/null +++ b/icons/macchiato/racket.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/razor.svg b/icons/macchiato/razor.svg new file mode 100644 index 00000000..649f7a6f --- /dev/null +++ b/icons/macchiato/razor.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/readme.svg b/icons/macchiato/readme.svg new file mode 100644 index 00000000..0b05db35 --- /dev/null +++ b/icons/macchiato/readme.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/reason.svg b/icons/macchiato/reason.svg new file mode 100644 index 00000000..11babcdf --- /dev/null +++ b/icons/macchiato/reason.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/redwood.svg b/icons/macchiato/redwood.svg new file mode 100644 index 00000000..927cad9c --- /dev/null +++ b/icons/macchiato/redwood.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/remix.svg b/icons/macchiato/remix.svg new file mode 100644 index 00000000..d43e89da --- /dev/null +++ b/icons/macchiato/remix.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/renovate.svg b/icons/macchiato/renovate.svg new file mode 100644 index 00000000..ae23fa00 --- /dev/null +++ b/icons/macchiato/renovate.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/rescript.svg b/icons/macchiato/rescript.svg new file mode 100644 index 00000000..269d41f6 --- /dev/null +++ b/icons/macchiato/rescript.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/robots.svg b/icons/macchiato/robots.svg new file mode 100644 index 00000000..a7f7cd23 --- /dev/null +++ b/icons/macchiato/robots.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/rollup.svg b/icons/macchiato/rollup.svg new file mode 100644 index 00000000..e84ce771 --- /dev/null +++ b/icons/macchiato/rollup.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/ruby-gem-lock.svg b/icons/macchiato/ruby-gem-lock.svg new file mode 100644 index 00000000..e4b79423 --- /dev/null +++ b/icons/macchiato/ruby-gem-lock.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/macchiato/ruby-gem.svg b/icons/macchiato/ruby-gem.svg new file mode 100644 index 00000000..3e546ca0 --- /dev/null +++ b/icons/macchiato/ruby-gem.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/ruby.svg b/icons/macchiato/ruby.svg new file mode 100644 index 00000000..859516c0 --- /dev/null +++ b/icons/macchiato/ruby.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/rust.svg b/icons/macchiato/rust.svg new file mode 100644 index 00000000..cde79066 --- /dev/null +++ b/icons/macchiato/rust.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/sass.svg b/icons/macchiato/sass.svg new file mode 100644 index 00000000..a9ca9a8e --- /dev/null +++ b/icons/macchiato/sass.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/scala.svg b/icons/macchiato/scala.svg new file mode 100644 index 00000000..e2ea94e2 --- /dev/null +++ b/icons/macchiato/scala.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/search.svg b/icons/macchiato/search.svg new file mode 100644 index 00000000..b5cb9df1 --- /dev/null +++ b/icons/macchiato/search.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/semantic-release.svg b/icons/macchiato/semantic-release.svg new file mode 100644 index 00000000..24378257 --- /dev/null +++ b/icons/macchiato/semantic-release.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/semgrep-ignore.svg b/icons/macchiato/semgrep-ignore.svg new file mode 100644 index 00000000..3b7d746d --- /dev/null +++ b/icons/macchiato/semgrep-ignore.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/semgrep.svg b/icons/macchiato/semgrep.svg new file mode 100644 index 00000000..b7532d5a --- /dev/null +++ b/icons/macchiato/semgrep.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/sentry.svg b/icons/macchiato/sentry.svg new file mode 100644 index 00000000..2417d3ed --- /dev/null +++ b/icons/macchiato/sentry.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/serverless.svg b/icons/macchiato/serverless.svg new file mode 100644 index 00000000..76a8c730 --- /dev/null +++ b/icons/macchiato/serverless.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/shader.svg b/icons/macchiato/shader.svg new file mode 100644 index 00000000..cab078d7 --- /dev/null +++ b/icons/macchiato/shader.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/sketch.svg b/icons/macchiato/sketch.svg new file mode 100644 index 00000000..e01549f7 --- /dev/null +++ b/icons/macchiato/sketch.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/snowpack.svg b/icons/macchiato/snowpack.svg new file mode 100644 index 00000000..0d6c49b6 --- /dev/null +++ b/icons/macchiato/snowpack.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/solidity.svg b/icons/macchiato/solidity.svg new file mode 100644 index 00000000..fc632771 --- /dev/null +++ b/icons/macchiato/solidity.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/sonar-cloud.svg b/icons/macchiato/sonar-cloud.svg new file mode 100644 index 00000000..cd2148b3 --- /dev/null +++ b/icons/macchiato/sonar-cloud.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/macchiato/stackblitz.svg b/icons/macchiato/stackblitz.svg new file mode 100644 index 00000000..ba59a527 --- /dev/null +++ b/icons/macchiato/stackblitz.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/stencil.svg b/icons/macchiato/stencil.svg new file mode 100644 index 00000000..a4331c32 --- /dev/null +++ b/icons/macchiato/stencil.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/stitches.svg b/icons/macchiato/stitches.svg new file mode 100644 index 00000000..66a67250 --- /dev/null +++ b/icons/macchiato/stitches.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/macchiato/storybook-svelte.svg b/icons/macchiato/storybook-svelte.svg new file mode 100644 index 00000000..3df9a0b9 --- /dev/null +++ b/icons/macchiato/storybook-svelte.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/storybook-vue.svg b/icons/macchiato/storybook-vue.svg new file mode 100644 index 00000000..04c54f50 --- /dev/null +++ b/icons/macchiato/storybook-vue.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/storybook.svg b/icons/macchiato/storybook.svg new file mode 100644 index 00000000..270eda32 --- /dev/null +++ b/icons/macchiato/storybook.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/stylelint-ignore.svg b/icons/macchiato/stylelint-ignore.svg new file mode 100644 index 00000000..d84f8d3f --- /dev/null +++ b/icons/macchiato/stylelint-ignore.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/macchiato/stylelint.svg b/icons/macchiato/stylelint.svg new file mode 100644 index 00000000..fdef6d21 --- /dev/null +++ b/icons/macchiato/stylelint.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/macchiato/sublime.svg b/icons/macchiato/sublime.svg new file mode 100644 index 00000000..8003202f --- /dev/null +++ b/icons/macchiato/sublime.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/svelte-config.svg b/icons/macchiato/svelte-config.svg new file mode 100644 index 00000000..0903bef3 --- /dev/null +++ b/icons/macchiato/svelte-config.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/svelte.svg b/icons/macchiato/svelte.svg new file mode 100644 index 00000000..018a572e --- /dev/null +++ b/icons/macchiato/svelte.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/svg.svg b/icons/macchiato/svg.svg new file mode 100644 index 00000000..7af23f3b --- /dev/null +++ b/icons/macchiato/svg.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/swift.svg b/icons/macchiato/swift.svg new file mode 100644 index 00000000..852fdfa5 --- /dev/null +++ b/icons/macchiato/swift.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/tailwind.svg b/icons/macchiato/tailwind.svg new file mode 100644 index 00000000..b86de6ac --- /dev/null +++ b/icons/macchiato/tailwind.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/tauri-ignore.svg b/icons/macchiato/tauri-ignore.svg new file mode 100644 index 00000000..916aa97f --- /dev/null +++ b/icons/macchiato/tauri-ignore.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/tauri.svg b/icons/macchiato/tauri.svg new file mode 100644 index 00000000..47018128 --- /dev/null +++ b/icons/macchiato/tauri.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/macchiato/terraform.svg b/icons/macchiato/terraform.svg new file mode 100644 index 00000000..02d6e008 --- /dev/null +++ b/icons/macchiato/terraform.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/text.svg b/icons/macchiato/text.svg new file mode 100644 index 00000000..e1e52173 --- /dev/null +++ b/icons/macchiato/text.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/todo.svg b/icons/macchiato/todo.svg new file mode 100644 index 00000000..b0423981 --- /dev/null +++ b/icons/macchiato/todo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/toml.svg b/icons/macchiato/toml.svg new file mode 100644 index 00000000..75161812 --- /dev/null +++ b/icons/macchiato/toml.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/twine.svg b/icons/macchiato/twine.svg new file mode 100644 index 00000000..c8455605 --- /dev/null +++ b/icons/macchiato/twine.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/typescript-config.svg b/icons/macchiato/typescript-config.svg new file mode 100644 index 00000000..e52b5764 --- /dev/null +++ b/icons/macchiato/typescript-config.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/macchiato/typescript-def.svg b/icons/macchiato/typescript-def.svg new file mode 100644 index 00000000..eb7feacf --- /dev/null +++ b/icons/macchiato/typescript-def.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/macchiato/typescript-react.svg b/icons/macchiato/typescript-react.svg new file mode 100644 index 00000000..1bc51fe3 --- /dev/null +++ b/icons/macchiato/typescript-react.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/macchiato/typescript-test.svg b/icons/macchiato/typescript-test.svg new file mode 100644 index 00000000..600b80a1 --- /dev/null +++ b/icons/macchiato/typescript-test.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/typescript.svg b/icons/macchiato/typescript.svg new file mode 100644 index 00000000..76c9a12f --- /dev/null +++ b/icons/macchiato/typescript.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/unity.svg b/icons/macchiato/unity.svg new file mode 100644 index 00000000..26b13143 --- /dev/null +++ b/icons/macchiato/unity.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/unocss.svg b/icons/macchiato/unocss.svg new file mode 100644 index 00000000..7f38b9f1 --- /dev/null +++ b/icons/macchiato/unocss.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/url.svg b/icons/macchiato/url.svg new file mode 100644 index 00000000..907f822c --- /dev/null +++ b/icons/macchiato/url.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/v.svg b/icons/macchiato/v.svg new file mode 100644 index 00000000..09676c5d --- /dev/null +++ b/icons/macchiato/v.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/vercel-ignore.svg b/icons/macchiato/vercel-ignore.svg new file mode 100644 index 00000000..381e37e4 --- /dev/null +++ b/icons/macchiato/vercel-ignore.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/vercel.svg b/icons/macchiato/vercel.svg new file mode 100644 index 00000000..a192f740 --- /dev/null +++ b/icons/macchiato/vercel.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/verilog.svg b/icons/macchiato/verilog.svg new file mode 100644 index 00000000..b0f0851d --- /dev/null +++ b/icons/macchiato/verilog.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/video.svg b/icons/macchiato/video.svg new file mode 100644 index 00000000..826ae99b --- /dev/null +++ b/icons/macchiato/video.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/vim.svg b/icons/macchiato/vim.svg new file mode 100644 index 00000000..dc173cb8 --- /dev/null +++ b/icons/macchiato/vim.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/visual-studio.svg b/icons/macchiato/visual-studio.svg new file mode 100644 index 00000000..b68707af --- /dev/null +++ b/icons/macchiato/visual-studio.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/vite.svg b/icons/macchiato/vite.svg new file mode 100644 index 00000000..c1303a11 --- /dev/null +++ b/icons/macchiato/vite.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/vitest.svg b/icons/macchiato/vitest.svg new file mode 100644 index 00000000..2b1ee641 --- /dev/null +++ b/icons/macchiato/vitest.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/vs-codium.svg b/icons/macchiato/vs-codium.svg new file mode 100644 index 00000000..70070c31 --- /dev/null +++ b/icons/macchiato/vs-codium.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/macchiato/vscode-ignore.svg b/icons/macchiato/vscode-ignore.svg new file mode 100644 index 00000000..a83fd6a0 --- /dev/null +++ b/icons/macchiato/vscode-ignore.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/vscode.svg b/icons/macchiato/vscode.svg new file mode 100644 index 00000000..d7b266dd --- /dev/null +++ b/icons/macchiato/vscode.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/vue-config.svg b/icons/macchiato/vue-config.svg new file mode 100644 index 00000000..7b0f5432 --- /dev/null +++ b/icons/macchiato/vue-config.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/vue.svg b/icons/macchiato/vue.svg new file mode 100644 index 00000000..4219e8b6 --- /dev/null +++ b/icons/macchiato/vue.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/web-assembly.svg b/icons/macchiato/web-assembly.svg new file mode 100644 index 00000000..13a6019d --- /dev/null +++ b/icons/macchiato/web-assembly.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/macchiato/webpack.svg b/icons/macchiato/webpack.svg new file mode 100644 index 00000000..65ff85b6 --- /dev/null +++ b/icons/macchiato/webpack.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/macchiato/windi.svg b/icons/macchiato/windi.svg new file mode 100644 index 00000000..8b5f573d --- /dev/null +++ b/icons/macchiato/windi.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/workflow.svg b/icons/macchiato/workflow.svg new file mode 100644 index 00000000..bcd7122f --- /dev/null +++ b/icons/macchiato/workflow.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/xaml.svg b/icons/macchiato/xaml.svg new file mode 100644 index 00000000..0be2e255 --- /dev/null +++ b/icons/macchiato/xaml.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/macchiato/xmake.svg b/icons/macchiato/xmake.svg new file mode 100644 index 00000000..2fe2d3a7 --- /dev/null +++ b/icons/macchiato/xmake.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/macchiato/xml.svg b/icons/macchiato/xml.svg new file mode 100644 index 00000000..c6cd757a --- /dev/null +++ b/icons/macchiato/xml.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/yaml.svg b/icons/macchiato/yaml.svg new file mode 100644 index 00000000..7b08161e --- /dev/null +++ b/icons/macchiato/yaml.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/yarn-lock.svg b/icons/macchiato/yarn-lock.svg new file mode 100644 index 00000000..a5a5ad5c --- /dev/null +++ b/icons/macchiato/yarn-lock.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/macchiato/yarn.svg b/icons/macchiato/yarn.svg new file mode 100644 index 00000000..bef1d42b --- /dev/null +++ b/icons/macchiato/yarn.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/macchiato/zig.svg b/icons/macchiato/zig.svg new file mode 100644 index 00000000..71e15a42 --- /dev/null +++ b/icons/macchiato/zig.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/makefile.svg b/icons/makefile.svg deleted file mode 100644 index b69dd15a..00000000 --- a/icons/makefile.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/markdown.svg b/icons/markdown.svg deleted file mode 100644 index 024f4852..00000000 --- a/icons/markdown.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/markdown_mdx.svg b/icons/markdown_mdx.svg deleted file mode 100644 index da23ae7d..00000000 --- a/icons/markdown_mdx.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/marko.svg b/icons/marko.svg deleted file mode 100644 index b313795b..00000000 --- a/icons/marko.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/icons/matlab.svg b/icons/matlab.svg deleted file mode 100644 index 108d6a49..00000000 --- a/icons/matlab.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/maven.svg b/icons/maven.svg deleted file mode 100644 index 76b86f86..00000000 --- a/icons/maven.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/meson.svg b/icons/meson.svg deleted file mode 100644 index 44d34c62..00000000 --- a/icons/meson.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/mocha/_file.svg b/icons/mocha/_file.svg new file mode 100644 index 00000000..02ad12fe --- /dev/null +++ b/icons/mocha/_file.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/_folder.svg b/icons/mocha/_folder.svg new file mode 100644 index 00000000..6a521698 --- /dev/null +++ b/icons/mocha/_folder.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/_folder_open.svg b/icons/mocha/_folder_open.svg new file mode 100644 index 00000000..e66842a2 --- /dev/null +++ b/icons/mocha/_folder_open.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/adonis.svg b/icons/mocha/adonis.svg new file mode 100644 index 00000000..4c9f73c9 --- /dev/null +++ b/icons/mocha/adonis.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/alex.svg b/icons/mocha/alex.svg new file mode 100644 index 00000000..784f4f72 --- /dev/null +++ b/icons/mocha/alex.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/android.svg b/icons/mocha/android.svg new file mode 100644 index 00000000..16c2b2b9 --- /dev/null +++ b/icons/mocha/android.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/antlr.svg b/icons/mocha/antlr.svg new file mode 100644 index 00000000..a5a21b42 --- /dev/null +++ b/icons/mocha/antlr.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/api-blueprint.svg b/icons/mocha/api-blueprint.svg new file mode 100644 index 00000000..1e772fdd --- /dev/null +++ b/icons/mocha/api-blueprint.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/apollo.svg b/icons/mocha/apollo.svg new file mode 100644 index 00000000..8d6e9f35 --- /dev/null +++ b/icons/mocha/apollo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/audio.svg b/icons/mocha/audio.svg new file mode 100644 index 00000000..510f3b44 --- /dev/null +++ b/icons/mocha/audio.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/azure-pipelines.svg b/icons/mocha/azure-pipelines.svg new file mode 100644 index 00000000..48b1ee11 --- /dev/null +++ b/icons/mocha/azure-pipelines.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/babel.svg b/icons/mocha/babel.svg new file mode 100644 index 00000000..ee7a607b --- /dev/null +++ b/icons/mocha/babel.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/bash.svg b/icons/mocha/bash.svg new file mode 100644 index 00000000..cd7f25b9 --- /dev/null +++ b/icons/mocha/bash.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/mocha/batch.svg b/icons/mocha/batch.svg new file mode 100644 index 00000000..5a98106d --- /dev/null +++ b/icons/mocha/batch.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/binary.svg b/icons/mocha/binary.svg new file mode 100644 index 00000000..5076e1ba --- /dev/null +++ b/icons/mocha/binary.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/bitbucket.svg b/icons/mocha/bitbucket.svg new file mode 100644 index 00000000..c74a5ccb --- /dev/null +++ b/icons/mocha/bitbucket.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/blitz.svg b/icons/mocha/blitz.svg new file mode 100644 index 00000000..805ba539 --- /dev/null +++ b/icons/mocha/blitz.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/bower.svg b/icons/mocha/bower.svg new file mode 100644 index 00000000..b5dde306 --- /dev/null +++ b/icons/mocha/bower.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/mocha/browserslist.svg b/icons/mocha/browserslist.svg new file mode 100644 index 00000000..cc48bc7b --- /dev/null +++ b/icons/mocha/browserslist.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/bun-lock.svg b/icons/mocha/bun-lock.svg new file mode 100644 index 00000000..91474632 --- /dev/null +++ b/icons/mocha/bun-lock.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/mocha/bun.svg b/icons/mocha/bun.svg new file mode 100644 index 00000000..4b940fd2 --- /dev/null +++ b/icons/mocha/bun.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/mocha/c-header.svg b/icons/mocha/c-header.svg new file mode 100644 index 00000000..e4d82dbc --- /dev/null +++ b/icons/mocha/c-header.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/c.svg b/icons/mocha/c.svg new file mode 100644 index 00000000..6776717d --- /dev/null +++ b/icons/mocha/c.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/caddy.svg b/icons/mocha/caddy.svg new file mode 100644 index 00000000..94870c21 --- /dev/null +++ b/icons/mocha/caddy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/capacitor.svg b/icons/mocha/capacitor.svg new file mode 100644 index 00000000..a808c03a --- /dev/null +++ b/icons/mocha/capacitor.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/certificate.svg b/icons/mocha/certificate.svg new file mode 100644 index 00000000..00f71d55 --- /dev/null +++ b/icons/mocha/certificate.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/mocha/changelog.svg b/icons/mocha/changelog.svg new file mode 100644 index 00000000..2e239b17 --- /dev/null +++ b/icons/mocha/changelog.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/circle-ci.svg b/icons/mocha/circle-ci.svg new file mode 100644 index 00000000..3ffee255 --- /dev/null +++ b/icons/mocha/circle-ci.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/clojure.svg b/icons/mocha/clojure.svg new file mode 100644 index 00000000..76f3a7b3 --- /dev/null +++ b/icons/mocha/clojure.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons/mocha/cmake.svg b/icons/mocha/cmake.svg new file mode 100644 index 00000000..00cc5d66 --- /dev/null +++ b/icons/mocha/cmake.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/mocha/cobol.svg b/icons/mocha/cobol.svg new file mode 100644 index 00000000..5dbede14 --- /dev/null +++ b/icons/mocha/cobol.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/code-climate.svg b/icons/mocha/code-climate.svg new file mode 100644 index 00000000..70d12553 --- /dev/null +++ b/icons/mocha/code-climate.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/code-of-conduct.svg b/icons/mocha/code-of-conduct.svg new file mode 100644 index 00000000..27eb40dc --- /dev/null +++ b/icons/mocha/code-of-conduct.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/coffeescript.svg b/icons/mocha/coffeescript.svg new file mode 100644 index 00000000..792044e9 --- /dev/null +++ b/icons/mocha/coffeescript.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/commitlint.svg b/icons/mocha/commitlint.svg new file mode 100644 index 00000000..48c32e02 --- /dev/null +++ b/icons/mocha/commitlint.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/cpp-header.svg b/icons/mocha/cpp-header.svg new file mode 100644 index 00000000..3f5b588c --- /dev/null +++ b/icons/mocha/cpp-header.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/cpp.svg b/icons/mocha/cpp.svg new file mode 100644 index 00000000..3afbbdf3 --- /dev/null +++ b/icons/mocha/cpp.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/csharp.svg b/icons/mocha/csharp.svg new file mode 100644 index 00000000..03718737 --- /dev/null +++ b/icons/mocha/csharp.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/css-map.svg b/icons/mocha/css-map.svg new file mode 100644 index 00000000..2b6c9035 --- /dev/null +++ b/icons/mocha/css-map.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/mocha/css.svg b/icons/mocha/css.svg new file mode 100644 index 00000000..5291d7ee --- /dev/null +++ b/icons/mocha/css.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/csv.svg b/icons/mocha/csv.svg new file mode 100644 index 00000000..bb67be5f --- /dev/null +++ b/icons/mocha/csv.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/cucumber.svg b/icons/mocha/cucumber.svg new file mode 100644 index 00000000..79e972a3 --- /dev/null +++ b/icons/mocha/cucumber.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/cuda.svg b/icons/mocha/cuda.svg new file mode 100644 index 00000000..7ec59101 --- /dev/null +++ b/icons/mocha/cuda.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/cypress.svg b/icons/mocha/cypress.svg new file mode 100644 index 00000000..b56d8e74 --- /dev/null +++ b/icons/mocha/cypress.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/d.svg b/icons/mocha/d.svg new file mode 100644 index 00000000..22583e6b --- /dev/null +++ b/icons/mocha/d.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/dart-generated.svg b/icons/mocha/dart-generated.svg new file mode 100644 index 00000000..2d55bd23 --- /dev/null +++ b/icons/mocha/dart-generated.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/dart.svg b/icons/mocha/dart.svg new file mode 100644 index 00000000..6f7473f6 --- /dev/null +++ b/icons/mocha/dart.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/database.svg b/icons/mocha/database.svg new file mode 100644 index 00000000..44cd9b16 --- /dev/null +++ b/icons/mocha/database.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/deno.svg b/icons/mocha/deno.svg new file mode 100644 index 00000000..c0f5b575 --- /dev/null +++ b/icons/mocha/deno.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/deno_lock.svg b/icons/mocha/deno_lock.svg new file mode 100644 index 00000000..19d326ff --- /dev/null +++ b/icons/mocha/deno_lock.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/dependabot.svg b/icons/mocha/dependabot.svg new file mode 100644 index 00000000..3a80194e --- /dev/null +++ b/icons/mocha/dependabot.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/dhall.svg b/icons/mocha/dhall.svg new file mode 100644 index 00000000..c74f75b8 --- /dev/null +++ b/icons/mocha/dhall.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/diff.svg b/icons/mocha/diff.svg new file mode 100644 index 00000000..0469a095 --- /dev/null +++ b/icons/mocha/diff.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/mocha/django.svg b/icons/mocha/django.svg new file mode 100644 index 00000000..5e1e3e30 --- /dev/null +++ b/icons/mocha/django.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/docker-compose.svg b/icons/mocha/docker-compose.svg new file mode 100644 index 00000000..75e080f0 --- /dev/null +++ b/icons/mocha/docker-compose.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/docker-ignore.svg b/icons/mocha/docker-ignore.svg new file mode 100644 index 00000000..3ef25c15 --- /dev/null +++ b/icons/mocha/docker-ignore.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/docker.svg b/icons/mocha/docker.svg new file mode 100644 index 00000000..02a91617 --- /dev/null +++ b/icons/mocha/docker.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/drawio.svg b/icons/mocha/drawio.svg new file mode 100644 index 00000000..a9ee11f3 --- /dev/null +++ b/icons/mocha/drawio.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/editorconfig.svg b/icons/mocha/editorconfig.svg new file mode 100644 index 00000000..dd5770f9 --- /dev/null +++ b/icons/mocha/editorconfig.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/ejs.svg b/icons/mocha/ejs.svg new file mode 100644 index 00000000..4c3cf629 --- /dev/null +++ b/icons/mocha/ejs.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/elixir.svg b/icons/mocha/elixir.svg new file mode 100644 index 00000000..19ed9c8f --- /dev/null +++ b/icons/mocha/elixir.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/elm.svg b/icons/mocha/elm.svg new file mode 100644 index 00000000..05dfce06 --- /dev/null +++ b/icons/mocha/elm.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/ember.svg b/icons/mocha/ember.svg new file mode 100644 index 00000000..c0f1d941 --- /dev/null +++ b/icons/mocha/ember.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/env.svg b/icons/mocha/env.svg new file mode 100644 index 00000000..4a444fda --- /dev/null +++ b/icons/mocha/env.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/erlang.svg b/icons/mocha/erlang.svg new file mode 100644 index 00000000..f071f4a3 --- /dev/null +++ b/icons/mocha/erlang.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/esbuild.svg b/icons/mocha/esbuild.svg new file mode 100644 index 00000000..7d146353 --- /dev/null +++ b/icons/mocha/esbuild.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/eslint-ignore.svg b/icons/mocha/eslint-ignore.svg new file mode 100644 index 00000000..cf217080 --- /dev/null +++ b/icons/mocha/eslint-ignore.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/eslint.svg b/icons/mocha/eslint.svg new file mode 100644 index 00000000..1543d1b1 --- /dev/null +++ b/icons/mocha/eslint.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/exe.svg b/icons/mocha/exe.svg new file mode 100644 index 00000000..4f3f4bf6 --- /dev/null +++ b/icons/mocha/exe.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/fastlane.svg b/icons/mocha/fastlane.svg new file mode 100644 index 00000000..aaa50312 --- /dev/null +++ b/icons/mocha/fastlane.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/icons/mocha/favicon.svg b/icons/mocha/favicon.svg new file mode 100644 index 00000000..dd6b4093 --- /dev/null +++ b/icons/mocha/favicon.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/figma.svg b/icons/mocha/figma.svg new file mode 100644 index 00000000..fa03857f --- /dev/null +++ b/icons/mocha/figma.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/mocha/firebase.svg b/icons/mocha/firebase.svg new file mode 100644 index 00000000..871553b4 --- /dev/null +++ b/icons/mocha/firebase.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/folder_admin.svg b/icons/mocha/folder_admin.svg new file mode 100644 index 00000000..6b3038e6 --- /dev/null +++ b/icons/mocha/folder_admin.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_admin_open.svg b/icons/mocha/folder_admin_open.svg new file mode 100644 index 00000000..4095fd99 --- /dev/null +++ b/icons/mocha/folder_admin_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_android.svg b/icons/mocha/folder_android.svg new file mode 100644 index 00000000..beec76e8 --- /dev/null +++ b/icons/mocha/folder_android.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_android__open.svg b/icons/mocha/folder_android__open.svg new file mode 100644 index 00000000..83d63851 --- /dev/null +++ b/icons/mocha/folder_android__open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_animation.svg b/icons/mocha/folder_animation.svg new file mode 100644 index 00000000..e2322629 --- /dev/null +++ b/icons/mocha/folder_animation.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_animation_open.svg b/icons/mocha/folder_animation_open.svg new file mode 100644 index 00000000..1e95ae34 --- /dev/null +++ b/icons/mocha/folder_animation_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_api.svg b/icons/mocha/folder_api.svg new file mode 100644 index 00000000..ccc8c3eb --- /dev/null +++ b/icons/mocha/folder_api.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_api_open.svg b/icons/mocha/folder_api_open.svg new file mode 100644 index 00000000..005319d6 --- /dev/null +++ b/icons/mocha/folder_api_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_app.svg b/icons/mocha/folder_app.svg new file mode 100644 index 00000000..e1561b97 --- /dev/null +++ b/icons/mocha/folder_app.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/mocha/folder_app_open.svg b/icons/mocha/folder_app_open.svg new file mode 100644 index 00000000..b9ebcd87 --- /dev/null +++ b/icons/mocha/folder_app_open.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/mocha/folder_audio.svg b/icons/mocha/folder_audio.svg new file mode 100644 index 00000000..73acba95 --- /dev/null +++ b/icons/mocha/folder_audio.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/mocha/folder_audio_open.svg b/icons/mocha/folder_audio_open.svg new file mode 100644 index 00000000..cc7c4f50 --- /dev/null +++ b/icons/mocha/folder_audio_open.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/mocha/folder_aws.svg b/icons/mocha/folder_aws.svg new file mode 100644 index 00000000..ad313f6f --- /dev/null +++ b/icons/mocha/folder_aws.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/mocha/folder_aws_open.svg b/icons/mocha/folder_aws_open.svg new file mode 100644 index 00000000..58f429fe --- /dev/null +++ b/icons/mocha/folder_aws_open.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/mocha/folder_benchmark.svg b/icons/mocha/folder_benchmark.svg new file mode 100644 index 00000000..f16cc030 --- /dev/null +++ b/icons/mocha/folder_benchmark.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_benchmark_open.svg b/icons/mocha/folder_benchmark_open.svg new file mode 100644 index 00000000..ddb9800a --- /dev/null +++ b/icons/mocha/folder_benchmark_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_circle-ci.svg b/icons/mocha/folder_circle-ci.svg new file mode 100644 index 00000000..5318b7f5 --- /dev/null +++ b/icons/mocha/folder_circle-ci.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/mocha/folder_circle-ci_open.svg b/icons/mocha/folder_circle-ci_open.svg new file mode 100644 index 00000000..9b470434 --- /dev/null +++ b/icons/mocha/folder_circle-ci_open.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/mocha/folder_client.svg b/icons/mocha/folder_client.svg new file mode 100644 index 00000000..3c3c4207 --- /dev/null +++ b/icons/mocha/folder_client.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_client_open.svg b/icons/mocha/folder_client_open.svg new file mode 100644 index 00000000..643f0b05 --- /dev/null +++ b/icons/mocha/folder_client_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_cloud.svg b/icons/mocha/folder_cloud.svg new file mode 100644 index 00000000..596441a8 --- /dev/null +++ b/icons/mocha/folder_cloud.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_cloud_open.svg b/icons/mocha/folder_cloud_open.svg new file mode 100644 index 00000000..62bb4d16 --- /dev/null +++ b/icons/mocha/folder_cloud_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_command.svg b/icons/mocha/folder_command.svg new file mode 100644 index 00000000..dcadcad9 --- /dev/null +++ b/icons/mocha/folder_command.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_command_open.svg b/icons/mocha/folder_command_open.svg new file mode 100644 index 00000000..785a43e3 --- /dev/null +++ b/icons/mocha/folder_command_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_components.svg b/icons/mocha/folder_components.svg new file mode 100644 index 00000000..61551936 --- /dev/null +++ b/icons/mocha/folder_components.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_components_open.svg b/icons/mocha/folder_components_open.svg new file mode 100644 index 00000000..0acf6cca --- /dev/null +++ b/icons/mocha/folder_components_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_composables.svg b/icons/mocha/folder_composables.svg new file mode 100644 index 00000000..12ca5697 --- /dev/null +++ b/icons/mocha/folder_composables.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_composables_open.svg b/icons/mocha/folder_composables_open.svg new file mode 100644 index 00000000..b675dbcd --- /dev/null +++ b/icons/mocha/folder_composables_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_config.svg b/icons/mocha/folder_config.svg new file mode 100644 index 00000000..1f0b655f --- /dev/null +++ b/icons/mocha/folder_config.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_config_open.svg b/icons/mocha/folder_config_open.svg new file mode 100644 index 00000000..f549bf7c --- /dev/null +++ b/icons/mocha/folder_config_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_connection.svg b/icons/mocha/folder_connection.svg new file mode 100644 index 00000000..ab7d2f68 --- /dev/null +++ b/icons/mocha/folder_connection.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_connection_open.svg b/icons/mocha/folder_connection_open.svg new file mode 100644 index 00000000..8dd1235b --- /dev/null +++ b/icons/mocha/folder_connection_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_constant.svg b/icons/mocha/folder_constant.svg new file mode 100644 index 00000000..ac756b22 --- /dev/null +++ b/icons/mocha/folder_constant.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_constant_open.svg b/icons/mocha/folder_constant_open.svg new file mode 100644 index 00000000..02ef5337 --- /dev/null +++ b/icons/mocha/folder_constant_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_controllers.svg b/icons/mocha/folder_controllers.svg new file mode 100644 index 00000000..52250f2f --- /dev/null +++ b/icons/mocha/folder_controllers.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_controllers_open.svg b/icons/mocha/folder_controllers_open.svg new file mode 100644 index 00000000..6b205989 --- /dev/null +++ b/icons/mocha/folder_controllers_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_core.svg b/icons/mocha/folder_core.svg new file mode 100644 index 00000000..7c6b0afb --- /dev/null +++ b/icons/mocha/folder_core.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_core_open.svg b/icons/mocha/folder_core_open.svg new file mode 100644 index 00000000..c0e4461e --- /dev/null +++ b/icons/mocha/folder_core_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_coverage.svg b/icons/mocha/folder_coverage.svg new file mode 100644 index 00000000..faeb5d73 --- /dev/null +++ b/icons/mocha/folder_coverage.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_coverage_open.svg b/icons/mocha/folder_coverage_open.svg new file mode 100644 index 00000000..f2533f21 --- /dev/null +++ b/icons/mocha/folder_coverage_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_cypress.svg b/icons/mocha/folder_cypress.svg new file mode 100644 index 00000000..2bc7ee93 --- /dev/null +++ b/icons/mocha/folder_cypress.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_cypress__open.svg b/icons/mocha/folder_cypress__open.svg new file mode 100644 index 00000000..d10dcd2d --- /dev/null +++ b/icons/mocha/folder_cypress__open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_database.svg b/icons/mocha/folder_database.svg new file mode 100644 index 00000000..46b0e4cd --- /dev/null +++ b/icons/mocha/folder_database.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_database_open.svg b/icons/mocha/folder_database_open.svg new file mode 100644 index 00000000..83066b47 --- /dev/null +++ b/icons/mocha/folder_database_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_debug.svg b/icons/mocha/folder_debug.svg new file mode 100644 index 00000000..0b800f15 --- /dev/null +++ b/icons/mocha/folder_debug.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_debug_open.svg b/icons/mocha/folder_debug_open.svg new file mode 100644 index 00000000..a76dcfdd --- /dev/null +++ b/icons/mocha/folder_debug_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_dist.svg b/icons/mocha/folder_dist.svg new file mode 100644 index 00000000..c0cd095f --- /dev/null +++ b/icons/mocha/folder_dist.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_dist_open.svg b/icons/mocha/folder_dist_open.svg new file mode 100644 index 00000000..a56fe1c4 --- /dev/null +++ b/icons/mocha/folder_dist_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_docker.svg b/icons/mocha/folder_docker.svg new file mode 100644 index 00000000..56a49e99 --- /dev/null +++ b/icons/mocha/folder_docker.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/mocha/folder_docker_open.svg b/icons/mocha/folder_docker_open.svg new file mode 100644 index 00000000..e692fffb --- /dev/null +++ b/icons/mocha/folder_docker_open.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/mocha/folder_docs.svg b/icons/mocha/folder_docs.svg new file mode 100644 index 00000000..bf8026de --- /dev/null +++ b/icons/mocha/folder_docs.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_docs__open.svg b/icons/mocha/folder_docs__open.svg new file mode 100644 index 00000000..ac36aed7 --- /dev/null +++ b/icons/mocha/folder_docs__open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_download.svg b/icons/mocha/folder_download.svg new file mode 100644 index 00000000..034f754c --- /dev/null +++ b/icons/mocha/folder_download.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_download_open.svg b/icons/mocha/folder_download_open.svg new file mode 100644 index 00000000..f013a72b --- /dev/null +++ b/icons/mocha/folder_download_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_examples.svg b/icons/mocha/folder_examples.svg new file mode 100644 index 00000000..4a6c5e27 --- /dev/null +++ b/icons/mocha/folder_examples.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_examples_open.svg b/icons/mocha/folder_examples_open.svg new file mode 100644 index 00000000..840d7bfb --- /dev/null +++ b/icons/mocha/folder_examples_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_firebase.svg b/icons/mocha/folder_firebase.svg new file mode 100644 index 00000000..2a50c387 --- /dev/null +++ b/icons/mocha/folder_firebase.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_firebase_open.svg b/icons/mocha/folder_firebase_open.svg new file mode 100644 index 00000000..35a39c33 --- /dev/null +++ b/icons/mocha/folder_firebase_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_fonts.svg b/icons/mocha/folder_fonts.svg new file mode 100644 index 00000000..0320b883 --- /dev/null +++ b/icons/mocha/folder_fonts.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_fonts_open.svg b/icons/mocha/folder_fonts_open.svg new file mode 100644 index 00000000..b663ad4b --- /dev/null +++ b/icons/mocha/folder_fonts_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_functions.svg b/icons/mocha/folder_functions.svg new file mode 100644 index 00000000..4af84973 --- /dev/null +++ b/icons/mocha/folder_functions.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_functions_open.svg b/icons/mocha/folder_functions_open.svg new file mode 100644 index 00000000..9b9672c7 --- /dev/null +++ b/icons/mocha/folder_functions_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_git.svg b/icons/mocha/folder_git.svg new file mode 100644 index 00000000..e7cd1a9f --- /dev/null +++ b/icons/mocha/folder_git.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_git_open.svg b/icons/mocha/folder_git_open.svg new file mode 100644 index 00000000..2e541866 --- /dev/null +++ b/icons/mocha/folder_git_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_github.svg b/icons/mocha/folder_github.svg new file mode 100644 index 00000000..09a634e6 --- /dev/null +++ b/icons/mocha/folder_github.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_github_open.svg b/icons/mocha/folder_github_open.svg new file mode 100644 index 00000000..b770b818 --- /dev/null +++ b/icons/mocha/folder_github_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_gitlab.svg b/icons/mocha/folder_gitlab.svg new file mode 100644 index 00000000..ec1a2b4d --- /dev/null +++ b/icons/mocha/folder_gitlab.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_gitlab_open.svg b/icons/mocha/folder_gitlab_open.svg new file mode 100644 index 00000000..d5cf2010 --- /dev/null +++ b/icons/mocha/folder_gitlab_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_husky.svg b/icons/mocha/folder_husky.svg new file mode 100644 index 00000000..6aec9648 --- /dev/null +++ b/icons/mocha/folder_husky.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/mocha/folder_husky_open.svg b/icons/mocha/folder_husky_open.svg new file mode 100644 index 00000000..239c5ffa --- /dev/null +++ b/icons/mocha/folder_husky_open.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/mocha/folder_images.svg b/icons/mocha/folder_images.svg new file mode 100644 index 00000000..8c42571b --- /dev/null +++ b/icons/mocha/folder_images.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/mocha/folder_images_open.svg b/icons/mocha/folder_images_open.svg new file mode 100644 index 00000000..5808cba0 --- /dev/null +++ b/icons/mocha/folder_images_open.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/mocha/folder_kubernetes.svg b/icons/mocha/folder_kubernetes.svg new file mode 100644 index 00000000..84f314a7 --- /dev/null +++ b/icons/mocha/folder_kubernetes.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/mocha/folder_kubernetes_open.svg b/icons/mocha/folder_kubernetes_open.svg new file mode 100644 index 00000000..bd415eb3 --- /dev/null +++ b/icons/mocha/folder_kubernetes_open.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/mocha/folder_layouts.svg b/icons/mocha/folder_layouts.svg new file mode 100644 index 00000000..85c356f5 --- /dev/null +++ b/icons/mocha/folder_layouts.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_layouts_open.svg b/icons/mocha/folder_layouts_open.svg new file mode 100644 index 00000000..f309b9f7 --- /dev/null +++ b/icons/mocha/folder_layouts_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_locales.svg b/icons/mocha/folder_locales.svg new file mode 100644 index 00000000..4f70571a --- /dev/null +++ b/icons/mocha/folder_locales.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_locales_open.svg b/icons/mocha/folder_locales_open.svg new file mode 100644 index 00000000..47f1cae6 --- /dev/null +++ b/icons/mocha/folder_locales_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_middleware.svg b/icons/mocha/folder_middleware.svg new file mode 100644 index 00000000..2bf54fa0 --- /dev/null +++ b/icons/mocha/folder_middleware.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_middleware_open.svg b/icons/mocha/folder_middleware_open.svg new file mode 100644 index 00000000..bca866cb --- /dev/null +++ b/icons/mocha/folder_middleware_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_mocks.svg b/icons/mocha/folder_mocks.svg new file mode 100644 index 00000000..fab7a733 --- /dev/null +++ b/icons/mocha/folder_mocks.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_mocks_open.svg b/icons/mocha/folder_mocks_open.svg new file mode 100644 index 00000000..41f8d32e --- /dev/null +++ b/icons/mocha/folder_mocks_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_next.svg b/icons/mocha/folder_next.svg new file mode 100644 index 00000000..de6f428e --- /dev/null +++ b/icons/mocha/folder_next.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_next_open.svg b/icons/mocha/folder_next_open.svg new file mode 100644 index 00000000..ccffc940 --- /dev/null +++ b/icons/mocha/folder_next_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_node.svg b/icons/mocha/folder_node.svg new file mode 100644 index 00000000..12fb8593 --- /dev/null +++ b/icons/mocha/folder_node.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_node_open.svg b/icons/mocha/folder_node_open.svg new file mode 100644 index 00000000..5d2c3279 --- /dev/null +++ b/icons/mocha/folder_node_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_nuxt.svg b/icons/mocha/folder_nuxt.svg new file mode 100644 index 00000000..95d817ba --- /dev/null +++ b/icons/mocha/folder_nuxt.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_nuxt_open.svg b/icons/mocha/folder_nuxt_open.svg new file mode 100644 index 00000000..22520a6d --- /dev/null +++ b/icons/mocha/folder_nuxt_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_packages.svg b/icons/mocha/folder_packages.svg new file mode 100644 index 00000000..f7efb2e7 --- /dev/null +++ b/icons/mocha/folder_packages.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_packages_open.svg b/icons/mocha/folder_packages_open.svg new file mode 100644 index 00000000..b080d76f --- /dev/null +++ b/icons/mocha/folder_packages_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_plugins.svg b/icons/mocha/folder_plugins.svg new file mode 100644 index 00000000..8b0dc9b2 --- /dev/null +++ b/icons/mocha/folder_plugins.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_plugins_open.svg b/icons/mocha/folder_plugins_open.svg new file mode 100644 index 00000000..2514b8ed --- /dev/null +++ b/icons/mocha/folder_plugins_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_prisma.svg b/icons/mocha/folder_prisma.svg new file mode 100644 index 00000000..e07667ad --- /dev/null +++ b/icons/mocha/folder_prisma.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_prisma_open.svg b/icons/mocha/folder_prisma_open.svg new file mode 100644 index 00000000..d5570cf5 --- /dev/null +++ b/icons/mocha/folder_prisma_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_public.svg b/icons/mocha/folder_public.svg new file mode 100644 index 00000000..ddcae094 --- /dev/null +++ b/icons/mocha/folder_public.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_public_open.svg b/icons/mocha/folder_public_open.svg new file mode 100644 index 00000000..08e99f92 --- /dev/null +++ b/icons/mocha/folder_public_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_queue.svg b/icons/mocha/folder_queue.svg new file mode 100644 index 00000000..f7a1de5b --- /dev/null +++ b/icons/mocha/folder_queue.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_queue_open.svg b/icons/mocha/folder_queue_open.svg new file mode 100644 index 00000000..875ca2e3 --- /dev/null +++ b/icons/mocha/folder_queue_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_redux.svg b/icons/mocha/folder_redux.svg new file mode 100644 index 00000000..0f4af6d5 --- /dev/null +++ b/icons/mocha/folder_redux.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_redux_open.svg b/icons/mocha/folder_redux_open.svg new file mode 100644 index 00000000..ae441caf --- /dev/null +++ b/icons/mocha/folder_redux_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_routes.svg b/icons/mocha/folder_routes.svg new file mode 100644 index 00000000..80a60583 --- /dev/null +++ b/icons/mocha/folder_routes.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_routes_open.svg b/icons/mocha/folder_routes_open.svg new file mode 100644 index 00000000..118cd863 --- /dev/null +++ b/icons/mocha/folder_routes_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_sass.svg b/icons/mocha/folder_sass.svg new file mode 100644 index 00000000..7342a575 --- /dev/null +++ b/icons/mocha/folder_sass.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_sass_open.svg b/icons/mocha/folder_sass_open.svg new file mode 100644 index 00000000..324aed00 --- /dev/null +++ b/icons/mocha/folder_sass_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_scripts.svg b/icons/mocha/folder_scripts.svg new file mode 100644 index 00000000..6c09136a --- /dev/null +++ b/icons/mocha/folder_scripts.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_scripts_open.svg b/icons/mocha/folder_scripts_open.svg new file mode 100644 index 00000000..a2d392ca --- /dev/null +++ b/icons/mocha/folder_scripts_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_server.svg b/icons/mocha/folder_server.svg new file mode 100644 index 00000000..0d5815ef --- /dev/null +++ b/icons/mocha/folder_server.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_server_open.svg b/icons/mocha/folder_server_open.svg new file mode 100644 index 00000000..39d9b570 --- /dev/null +++ b/icons/mocha/folder_server_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_src.svg b/icons/mocha/folder_src.svg new file mode 100644 index 00000000..8158f13f --- /dev/null +++ b/icons/mocha/folder_src.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_src_open.svg b/icons/mocha/folder_src_open.svg new file mode 100644 index 00000000..1089b7f9 --- /dev/null +++ b/icons/mocha/folder_src_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_storybook.svg b/icons/mocha/folder_storybook.svg new file mode 100644 index 00000000..f43004e6 --- /dev/null +++ b/icons/mocha/folder_storybook.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_storybook_open.svg b/icons/mocha/folder_storybook_open.svg new file mode 100644 index 00000000..5d4f7a94 --- /dev/null +++ b/icons/mocha/folder_storybook_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_styles.svg b/icons/mocha/folder_styles.svg new file mode 100644 index 00000000..8c3425c3 --- /dev/null +++ b/icons/mocha/folder_styles.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_styles_open.svg b/icons/mocha/folder_styles_open.svg new file mode 100644 index 00000000..04f19b6f --- /dev/null +++ b/icons/mocha/folder_styles_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_svg.svg b/icons/mocha/folder_svg.svg new file mode 100644 index 00000000..4573cc83 --- /dev/null +++ b/icons/mocha/folder_svg.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_svg_open.svg b/icons/mocha/folder_svg_open.svg new file mode 100644 index 00000000..ff76d220 --- /dev/null +++ b/icons/mocha/folder_svg_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_tauri.svg b/icons/mocha/folder_tauri.svg new file mode 100644 index 00000000..28660ff5 --- /dev/null +++ b/icons/mocha/folder_tauri.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/mocha/folder_tauri_open.svg b/icons/mocha/folder_tauri_open.svg new file mode 100644 index 00000000..a977e2f5 --- /dev/null +++ b/icons/mocha/folder_tauri_open.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/mocha/folder_temp.svg b/icons/mocha/folder_temp.svg new file mode 100644 index 00000000..f13ecf9b --- /dev/null +++ b/icons/mocha/folder_temp.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_temp_open.svg b/icons/mocha/folder_temp_open.svg new file mode 100644 index 00000000..5fe464b7 --- /dev/null +++ b/icons/mocha/folder_temp_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_templates.svg b/icons/mocha/folder_templates.svg new file mode 100644 index 00000000..6137c664 --- /dev/null +++ b/icons/mocha/folder_templates.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_templates_open.svg b/icons/mocha/folder_templates_open.svg new file mode 100644 index 00000000..d9194485 --- /dev/null +++ b/icons/mocha/folder_templates_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_tests.svg b/icons/mocha/folder_tests.svg new file mode 100644 index 00000000..48955d75 --- /dev/null +++ b/icons/mocha/folder_tests.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_tests_open.svg b/icons/mocha/folder_tests_open.svg new file mode 100644 index 00000000..1dc6a207 --- /dev/null +++ b/icons/mocha/folder_tests_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_types.svg b/icons/mocha/folder_types.svg new file mode 100644 index 00000000..e7bfbcb6 --- /dev/null +++ b/icons/mocha/folder_types.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_types_open.svg b/icons/mocha/folder_types_open.svg new file mode 100644 index 00000000..d4dde51c --- /dev/null +++ b/icons/mocha/folder_types_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_upload.svg b/icons/mocha/folder_upload.svg new file mode 100644 index 00000000..2708236f --- /dev/null +++ b/icons/mocha/folder_upload.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/mocha/folder_upload_open.svg b/icons/mocha/folder_upload_open.svg new file mode 100644 index 00000000..e6f83a83 --- /dev/null +++ b/icons/mocha/folder_upload_open.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/mocha/folder_utils.svg b/icons/mocha/folder_utils.svg new file mode 100644 index 00000000..e8ed965b --- /dev/null +++ b/icons/mocha/folder_utils.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_utils_open.svg b/icons/mocha/folder_utils_open.svg new file mode 100644 index 00000000..1b25bdac --- /dev/null +++ b/icons/mocha/folder_utils_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_vercel.svg b/icons/mocha/folder_vercel.svg new file mode 100644 index 00000000..ba801243 --- /dev/null +++ b/icons/mocha/folder_vercel.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_vercel_open.svg b/icons/mocha/folder_vercel_open.svg new file mode 100644 index 00000000..1e672eb8 --- /dev/null +++ b/icons/mocha/folder_vercel_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_video.svg b/icons/mocha/folder_video.svg new file mode 100644 index 00000000..bf10921c --- /dev/null +++ b/icons/mocha/folder_video.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_video_open.svg b/icons/mocha/folder_video_open.svg new file mode 100644 index 00000000..7728a692 --- /dev/null +++ b/icons/mocha/folder_video_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_views.svg b/icons/mocha/folder_views.svg new file mode 100644 index 00000000..69307682 --- /dev/null +++ b/icons/mocha/folder_views.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_views_open.svg b/icons/mocha/folder_views_open.svg new file mode 100644 index 00000000..3b46e596 --- /dev/null +++ b/icons/mocha/folder_views_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_vscode.svg b/icons/mocha/folder_vscode.svg new file mode 100644 index 00000000..6ec465e6 --- /dev/null +++ b/icons/mocha/folder_vscode.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_vscode_open.svg b/icons/mocha/folder_vscode_open.svg new file mode 100644 index 00000000..802df141 --- /dev/null +++ b/icons/mocha/folder_vscode_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_workflows.svg b/icons/mocha/folder_workflows.svg new file mode 100644 index 00000000..73639a61 --- /dev/null +++ b/icons/mocha/folder_workflows.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/folder_workflows_open.svg b/icons/mocha/folder_workflows_open.svg new file mode 100644 index 00000000..cc3c48ea --- /dev/null +++ b/icons/mocha/folder_workflows_open.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/font.svg b/icons/mocha/font.svg new file mode 100644 index 00000000..113c3262 --- /dev/null +++ b/icons/mocha/font.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/fortran.svg b/icons/mocha/fortran.svg new file mode 100644 index 00000000..db8fbac4 --- /dev/null +++ b/icons/mocha/fortran.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/fsharp.svg b/icons/mocha/fsharp.svg new file mode 100644 index 00000000..fc65a8c1 --- /dev/null +++ b/icons/mocha/fsharp.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/gatsby.svg b/icons/mocha/gatsby.svg new file mode 100644 index 00000000..c05ceac5 --- /dev/null +++ b/icons/mocha/gatsby.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/git.svg b/icons/mocha/git.svg new file mode 100644 index 00000000..f66c6e51 --- /dev/null +++ b/icons/mocha/git.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/gitlab.svg b/icons/mocha/gitlab.svg new file mode 100644 index 00000000..c87c49d6 --- /dev/null +++ b/icons/mocha/gitlab.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/gitpod.svg b/icons/mocha/gitpod.svg new file mode 100644 index 00000000..a40f1143 --- /dev/null +++ b/icons/mocha/gitpod.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/go-mod.svg b/icons/mocha/go-mod.svg new file mode 100644 index 00000000..5cc22b60 --- /dev/null +++ b/icons/mocha/go-mod.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/go.svg b/icons/mocha/go.svg new file mode 100644 index 00000000..9c402b3e --- /dev/null +++ b/icons/mocha/go.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/godot-assets.svg b/icons/mocha/godot-assets.svg new file mode 100644 index 00000000..bba5ad08 --- /dev/null +++ b/icons/mocha/godot-assets.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/godot.svg b/icons/mocha/godot.svg new file mode 100644 index 00000000..2680cd32 --- /dev/null +++ b/icons/mocha/godot.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/gradle.svg b/icons/mocha/gradle.svg new file mode 100644 index 00000000..3aefed8b --- /dev/null +++ b/icons/mocha/gradle.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/graphql.svg b/icons/mocha/graphql.svg new file mode 100644 index 00000000..6425cd4b --- /dev/null +++ b/icons/mocha/graphql.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/groovy.svg b/icons/mocha/groovy.svg new file mode 100644 index 00000000..0d9bfe51 --- /dev/null +++ b/icons/mocha/groovy.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/gulp.svg b/icons/mocha/gulp.svg new file mode 100644 index 00000000..c7ac7ae4 --- /dev/null +++ b/icons/mocha/gulp.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/haml.svg b/icons/mocha/haml.svg new file mode 100644 index 00000000..97985ee6 --- /dev/null +++ b/icons/mocha/haml.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/mocha/handlebars.svg b/icons/mocha/handlebars.svg new file mode 100644 index 00000000..0d9007f2 --- /dev/null +++ b/icons/mocha/handlebars.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/haskell.svg b/icons/mocha/haskell.svg new file mode 100644 index 00000000..26f16e99 --- /dev/null +++ b/icons/mocha/haskell.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/haxe.svg b/icons/mocha/haxe.svg new file mode 100644 index 00000000..77fe5e77 --- /dev/null +++ b/icons/mocha/haxe.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/helm.svg b/icons/mocha/helm.svg new file mode 100644 index 00000000..fd945293 --- /dev/null +++ b/icons/mocha/helm.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/heroku.svg b/icons/mocha/heroku.svg new file mode 100644 index 00000000..f57b93a9 --- /dev/null +++ b/icons/mocha/heroku.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/histoire.svg b/icons/mocha/histoire.svg new file mode 100644 index 00000000..277f1865 --- /dev/null +++ b/icons/mocha/histoire.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/html.svg b/icons/mocha/html.svg new file mode 100644 index 00000000..756a2515 --- /dev/null +++ b/icons/mocha/html.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/http.svg b/icons/mocha/http.svg new file mode 100644 index 00000000..2395acbf --- /dev/null +++ b/icons/mocha/http.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/husky.svg b/icons/mocha/husky.svg new file mode 100644 index 00000000..d3e46d3f --- /dev/null +++ b/icons/mocha/husky.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/image.svg b/icons/mocha/image.svg new file mode 100644 index 00000000..565e4eeb --- /dev/null +++ b/icons/mocha/image.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/mocha/ionic.svg b/icons/mocha/ionic.svg new file mode 100644 index 00000000..5a95179a --- /dev/null +++ b/icons/mocha/ionic.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/java-class.svg b/icons/mocha/java-class.svg new file mode 100644 index 00000000..5e1953e6 --- /dev/null +++ b/icons/mocha/java-class.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/mocha/java-jar.svg b/icons/mocha/java-jar.svg new file mode 100644 index 00000000..8503fef0 --- /dev/null +++ b/icons/mocha/java-jar.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/mocha/java.svg b/icons/mocha/java.svg new file mode 100644 index 00000000..26468189 --- /dev/null +++ b/icons/mocha/java.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/mocha/javascript-config.svg b/icons/mocha/javascript-config.svg new file mode 100644 index 00000000..0f543347 --- /dev/null +++ b/icons/mocha/javascript-config.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/mocha/javascript-map.svg b/icons/mocha/javascript-map.svg new file mode 100644 index 00000000..d8415706 --- /dev/null +++ b/icons/mocha/javascript-map.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/mocha/javascript-react.svg b/icons/mocha/javascript-react.svg new file mode 100644 index 00000000..f350d827 --- /dev/null +++ b/icons/mocha/javascript-react.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/mocha/javascript-test.svg b/icons/mocha/javascript-test.svg new file mode 100644 index 00000000..3c6b5aa3 --- /dev/null +++ b/icons/mocha/javascript-test.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/javascript.svg b/icons/mocha/javascript.svg new file mode 100644 index 00000000..eb339208 --- /dev/null +++ b/icons/mocha/javascript.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/jest.svg b/icons/mocha/jest.svg new file mode 100644 index 00000000..dab134c4 --- /dev/null +++ b/icons/mocha/jest.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/mocha/jinja.svg b/icons/mocha/jinja.svg new file mode 100644 index 00000000..24a0f217 --- /dev/null +++ b/icons/mocha/jinja.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/json.svg b/icons/mocha/json.svg new file mode 100644 index 00000000..1b7b2bd7 --- /dev/null +++ b/icons/mocha/json.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/julia.svg b/icons/mocha/julia.svg new file mode 100644 index 00000000..1782bacc --- /dev/null +++ b/icons/mocha/julia.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/mocha/jupyter.svg b/icons/mocha/jupyter.svg new file mode 100644 index 00000000..da829082 --- /dev/null +++ b/icons/mocha/jupyter.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/just.svg b/icons/mocha/just.svg new file mode 100644 index 00000000..5c9a05cf --- /dev/null +++ b/icons/mocha/just.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/icons/mocha/key.svg b/icons/mocha/key.svg new file mode 100644 index 00000000..88027901 --- /dev/null +++ b/icons/mocha/key.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/kotlin.svg b/icons/mocha/kotlin.svg new file mode 100644 index 00000000..32c2d33b --- /dev/null +++ b/icons/mocha/kotlin.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/mocha/laravel.svg b/icons/mocha/laravel.svg new file mode 100644 index 00000000..0a499b65 --- /dev/null +++ b/icons/mocha/laravel.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/mocha/latex.svg b/icons/mocha/latex.svg new file mode 100644 index 00000000..180f9ab7 --- /dev/null +++ b/icons/mocha/latex.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/lerna.svg b/icons/mocha/lerna.svg new file mode 100644 index 00000000..418e22fc --- /dev/null +++ b/icons/mocha/lerna.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/less.svg b/icons/mocha/less.svg new file mode 100644 index 00000000..ce504e23 --- /dev/null +++ b/icons/mocha/less.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/lib.svg b/icons/mocha/lib.svg new file mode 100644 index 00000000..18386ea4 --- /dev/null +++ b/icons/mocha/lib.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/license.svg b/icons/mocha/license.svg new file mode 100644 index 00000000..08ad5bf3 --- /dev/null +++ b/icons/mocha/license.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/lint-staged.svg b/icons/mocha/lint-staged.svg new file mode 100644 index 00000000..b7287db2 --- /dev/null +++ b/icons/mocha/lint-staged.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/mocha/lisp.svg b/icons/mocha/lisp.svg new file mode 100644 index 00000000..06c1b7d7 --- /dev/null +++ b/icons/mocha/lisp.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/log.svg b/icons/mocha/log.svg new file mode 100644 index 00000000..a5d03c57 --- /dev/null +++ b/icons/mocha/log.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/lua.svg b/icons/mocha/lua.svg new file mode 100644 index 00000000..6912d718 --- /dev/null +++ b/icons/mocha/lua.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/makefile.svg b/icons/mocha/makefile.svg new file mode 100644 index 00000000..7e1fc1cf --- /dev/null +++ b/icons/mocha/makefile.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/markdown-mdx.svg b/icons/mocha/markdown-mdx.svg new file mode 100644 index 00000000..996d35fb --- /dev/null +++ b/icons/mocha/markdown-mdx.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/markdown.svg b/icons/mocha/markdown.svg new file mode 100644 index 00000000..5aef18a9 --- /dev/null +++ b/icons/mocha/markdown.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/marko.svg b/icons/mocha/marko.svg new file mode 100644 index 00000000..f21ff1a2 --- /dev/null +++ b/icons/mocha/marko.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/mocha/matlab.svg b/icons/mocha/matlab.svg new file mode 100644 index 00000000..75a64199 --- /dev/null +++ b/icons/mocha/matlab.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/maven.svg b/icons/mocha/maven.svg new file mode 100644 index 00000000..319f7103 --- /dev/null +++ b/icons/mocha/maven.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/mocha/mermaid.svg b/icons/mocha/mermaid.svg new file mode 100644 index 00000000..57ef9c65 --- /dev/null +++ b/icons/mocha/mermaid.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/meson.svg b/icons/mocha/meson.svg new file mode 100644 index 00000000..671121af --- /dev/null +++ b/icons/mocha/meson.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/mjml.svg b/icons/mocha/mjml.svg new file mode 100644 index 00000000..f97ce3de --- /dev/null +++ b/icons/mocha/mjml.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/modernizr.svg b/icons/mocha/modernizr.svg new file mode 100644 index 00000000..408d0f8c --- /dev/null +++ b/icons/mocha/modernizr.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/ms-excel.svg b/icons/mocha/ms-excel.svg new file mode 100644 index 00000000..a12948d4 --- /dev/null +++ b/icons/mocha/ms-excel.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/ms-powerpoint.svg b/icons/mocha/ms-powerpoint.svg new file mode 100644 index 00000000..07d9c11c --- /dev/null +++ b/icons/mocha/ms-powerpoint.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/ms-word.svg b/icons/mocha/ms-word.svg new file mode 100644 index 00000000..5c86c172 --- /dev/null +++ b/icons/mocha/ms-word.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/nativescript.svg b/icons/mocha/nativescript.svg new file mode 100644 index 00000000..c40d95c5 --- /dev/null +++ b/icons/mocha/nativescript.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/nest.svg b/icons/mocha/nest.svg new file mode 100644 index 00000000..ae754840 --- /dev/null +++ b/icons/mocha/nest.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/netlify.svg b/icons/mocha/netlify.svg new file mode 100644 index 00000000..abafd673 --- /dev/null +++ b/icons/mocha/netlify.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/next.svg b/icons/mocha/next.svg new file mode 100644 index 00000000..f5ccf157 --- /dev/null +++ b/icons/mocha/next.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/nextflow.svg b/icons/mocha/nextflow.svg new file mode 100644 index 00000000..bb84a054 --- /dev/null +++ b/icons/mocha/nextflow.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/nginx.svg b/icons/mocha/nginx.svg new file mode 100644 index 00000000..652f4438 --- /dev/null +++ b/icons/mocha/nginx.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/nim.svg b/icons/mocha/nim.svg new file mode 100644 index 00000000..576cdef8 --- /dev/null +++ b/icons/mocha/nim.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/ninja.svg b/icons/mocha/ninja.svg new file mode 100644 index 00000000..e1a385ea --- /dev/null +++ b/icons/mocha/ninja.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/nix-lock.svg b/icons/mocha/nix-lock.svg new file mode 100644 index 00000000..805d76fb --- /dev/null +++ b/icons/mocha/nix-lock.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/icons/mocha/nix.svg b/icons/mocha/nix.svg new file mode 100644 index 00000000..373393f7 --- /dev/null +++ b/icons/mocha/nix.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/icons/mocha/nodemon.svg b/icons/mocha/nodemon.svg new file mode 100644 index 00000000..8e5aeec5 --- /dev/null +++ b/icons/mocha/nodemon.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/npm-ignore.svg b/icons/mocha/npm-ignore.svg new file mode 100644 index 00000000..ad21fe31 --- /dev/null +++ b/icons/mocha/npm-ignore.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/npm-lock.svg b/icons/mocha/npm-lock.svg new file mode 100644 index 00000000..9e131268 --- /dev/null +++ b/icons/mocha/npm-lock.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/mocha/npm.svg b/icons/mocha/npm.svg new file mode 100644 index 00000000..38e7b9c7 --- /dev/null +++ b/icons/mocha/npm.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/nuget.svg b/icons/mocha/nuget.svg new file mode 100644 index 00000000..ec173d6a --- /dev/null +++ b/icons/mocha/nuget.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/nunjucks.svg b/icons/mocha/nunjucks.svg new file mode 100644 index 00000000..dfe5d206 --- /dev/null +++ b/icons/mocha/nunjucks.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/nuxt-ignore.svg b/icons/mocha/nuxt-ignore.svg new file mode 100644 index 00000000..6faf3711 --- /dev/null +++ b/icons/mocha/nuxt-ignore.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/nuxt.svg b/icons/mocha/nuxt.svg new file mode 100644 index 00000000..0d1ef11c --- /dev/null +++ b/icons/mocha/nuxt.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/ocaml.svg b/icons/mocha/ocaml.svg new file mode 100644 index 00000000..a6702991 --- /dev/null +++ b/icons/mocha/ocaml.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/mocha/package-json.svg b/icons/mocha/package-json.svg new file mode 100644 index 00000000..cd3328ef --- /dev/null +++ b/icons/mocha/package-json.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/panda-css.svg b/icons/mocha/panda-css.svg new file mode 100644 index 00000000..bee30fda --- /dev/null +++ b/icons/mocha/panda-css.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/pdf.svg b/icons/mocha/pdf.svg new file mode 100644 index 00000000..c5c055eb --- /dev/null +++ b/icons/mocha/pdf.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/perl.svg b/icons/mocha/perl.svg new file mode 100644 index 00000000..d1798052 --- /dev/null +++ b/icons/mocha/perl.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/phrase.svg b/icons/mocha/phrase.svg new file mode 100644 index 00000000..ca1bfa10 --- /dev/null +++ b/icons/mocha/phrase.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/playwright.svg b/icons/mocha/playwright.svg new file mode 100644 index 00000000..594514de --- /dev/null +++ b/icons/mocha/playwright.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/mocha/plop.svg b/icons/mocha/plop.svg new file mode 100644 index 00000000..bda4fc76 --- /dev/null +++ b/icons/mocha/plop.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/pnpm-lock.svg b/icons/mocha/pnpm-lock.svg new file mode 100644 index 00000000..1614ce16 --- /dev/null +++ b/icons/mocha/pnpm-lock.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/icons/mocha/pnpm.svg b/icons/mocha/pnpm.svg new file mode 100644 index 00000000..5489e51c --- /dev/null +++ b/icons/mocha/pnpm.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/mocha/postcss.svg b/icons/mocha/postcss.svg new file mode 100644 index 00000000..2d29ddfd --- /dev/null +++ b/icons/mocha/postcss.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/mocha/powershell.svg b/icons/mocha/powershell.svg new file mode 100644 index 00000000..62f3b4a0 --- /dev/null +++ b/icons/mocha/powershell.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/premake.svg b/icons/mocha/premake.svg new file mode 100644 index 00000000..d4e63b98 --- /dev/null +++ b/icons/mocha/premake.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/mocha/prettier-ignore.svg b/icons/mocha/prettier-ignore.svg new file mode 100644 index 00000000..b02d394b --- /dev/null +++ b/icons/mocha/prettier-ignore.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/prettier.svg b/icons/mocha/prettier.svg new file mode 100644 index 00000000..d986ddba --- /dev/null +++ b/icons/mocha/prettier.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/mocha/prisma.svg b/icons/mocha/prisma.svg new file mode 100644 index 00000000..ba189ae0 --- /dev/null +++ b/icons/mocha/prisma.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/prolog.svg b/icons/mocha/prolog.svg new file mode 100644 index 00000000..754536f7 --- /dev/null +++ b/icons/mocha/prolog.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/properties.svg b/icons/mocha/properties.svg new file mode 100644 index 00000000..5d94cf20 --- /dev/null +++ b/icons/mocha/properties.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/proto.svg b/icons/mocha/proto.svg new file mode 100644 index 00000000..6ec677a9 --- /dev/null +++ b/icons/mocha/proto.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/mocha/pug.svg b/icons/mocha/pug.svg new file mode 100644 index 00000000..1b381af7 --- /dev/null +++ b/icons/mocha/pug.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/python-compiled.svg b/icons/mocha/python-compiled.svg new file mode 100644 index 00000000..c9655719 --- /dev/null +++ b/icons/mocha/python-compiled.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/mocha/python.svg b/icons/mocha/python.svg new file mode 100644 index 00000000..c7100c09 --- /dev/null +++ b/icons/mocha/python.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/mocha/r.svg b/icons/mocha/r.svg new file mode 100644 index 00000000..7bab4609 --- /dev/null +++ b/icons/mocha/r.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/racket.svg b/icons/mocha/racket.svg new file mode 100644 index 00000000..129d1703 --- /dev/null +++ b/icons/mocha/racket.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/razor.svg b/icons/mocha/razor.svg new file mode 100644 index 00000000..4395fb13 --- /dev/null +++ b/icons/mocha/razor.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/readme.svg b/icons/mocha/readme.svg new file mode 100644 index 00000000..6ef8c40a --- /dev/null +++ b/icons/mocha/readme.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/reason.svg b/icons/mocha/reason.svg new file mode 100644 index 00000000..9a1f77d1 --- /dev/null +++ b/icons/mocha/reason.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/redwood.svg b/icons/mocha/redwood.svg new file mode 100644 index 00000000..1bd5df98 --- /dev/null +++ b/icons/mocha/redwood.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/remix.svg b/icons/mocha/remix.svg new file mode 100644 index 00000000..3690acdf --- /dev/null +++ b/icons/mocha/remix.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/renovate.svg b/icons/mocha/renovate.svg new file mode 100644 index 00000000..30a1fbe2 --- /dev/null +++ b/icons/mocha/renovate.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/rescript.svg b/icons/mocha/rescript.svg new file mode 100644 index 00000000..e0609a71 --- /dev/null +++ b/icons/mocha/rescript.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/robots.svg b/icons/mocha/robots.svg new file mode 100644 index 00000000..fcb9f7e7 --- /dev/null +++ b/icons/mocha/robots.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/rollup.svg b/icons/mocha/rollup.svg new file mode 100644 index 00000000..0135be54 --- /dev/null +++ b/icons/mocha/rollup.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/ruby-gem-lock.svg b/icons/mocha/ruby-gem-lock.svg new file mode 100644 index 00000000..11fb6ee9 --- /dev/null +++ b/icons/mocha/ruby-gem-lock.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/mocha/ruby-gem.svg b/icons/mocha/ruby-gem.svg new file mode 100644 index 00000000..4c83742c --- /dev/null +++ b/icons/mocha/ruby-gem.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/ruby.svg b/icons/mocha/ruby.svg new file mode 100644 index 00000000..1718aec7 --- /dev/null +++ b/icons/mocha/ruby.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/rust.svg b/icons/mocha/rust.svg new file mode 100644 index 00000000..898f91cb --- /dev/null +++ b/icons/mocha/rust.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/sass.svg b/icons/mocha/sass.svg new file mode 100644 index 00000000..314f7a84 --- /dev/null +++ b/icons/mocha/sass.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/scala.svg b/icons/mocha/scala.svg new file mode 100644 index 00000000..63e7a317 --- /dev/null +++ b/icons/mocha/scala.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/search.svg b/icons/mocha/search.svg new file mode 100644 index 00000000..6b0248b3 --- /dev/null +++ b/icons/mocha/search.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/semantic-release.svg b/icons/mocha/semantic-release.svg new file mode 100644 index 00000000..770bf53e --- /dev/null +++ b/icons/mocha/semantic-release.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/semgrep-ignore.svg b/icons/mocha/semgrep-ignore.svg new file mode 100644 index 00000000..6f4e602c --- /dev/null +++ b/icons/mocha/semgrep-ignore.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/semgrep.svg b/icons/mocha/semgrep.svg new file mode 100644 index 00000000..4cafb3ef --- /dev/null +++ b/icons/mocha/semgrep.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/sentry.svg b/icons/mocha/sentry.svg new file mode 100644 index 00000000..55ef7fb7 --- /dev/null +++ b/icons/mocha/sentry.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/serverless.svg b/icons/mocha/serverless.svg new file mode 100644 index 00000000..b35dbadd --- /dev/null +++ b/icons/mocha/serverless.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/shader.svg b/icons/mocha/shader.svg new file mode 100644 index 00000000..57882933 --- /dev/null +++ b/icons/mocha/shader.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/sketch.svg b/icons/mocha/sketch.svg new file mode 100644 index 00000000..f480916e --- /dev/null +++ b/icons/mocha/sketch.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/snowpack.svg b/icons/mocha/snowpack.svg new file mode 100644 index 00000000..e113235c --- /dev/null +++ b/icons/mocha/snowpack.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/solidity.svg b/icons/mocha/solidity.svg new file mode 100644 index 00000000..468ab055 --- /dev/null +++ b/icons/mocha/solidity.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/sonar-cloud.svg b/icons/mocha/sonar-cloud.svg new file mode 100644 index 00000000..2c98e50f --- /dev/null +++ b/icons/mocha/sonar-cloud.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/mocha/stackblitz.svg b/icons/mocha/stackblitz.svg new file mode 100644 index 00000000..75c57517 --- /dev/null +++ b/icons/mocha/stackblitz.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/stencil.svg b/icons/mocha/stencil.svg new file mode 100644 index 00000000..35033bfd --- /dev/null +++ b/icons/mocha/stencil.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/stitches.svg b/icons/mocha/stitches.svg new file mode 100644 index 00000000..b9f307bf --- /dev/null +++ b/icons/mocha/stitches.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/mocha/storybook-svelte.svg b/icons/mocha/storybook-svelte.svg new file mode 100644 index 00000000..dea0879d --- /dev/null +++ b/icons/mocha/storybook-svelte.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/storybook-vue.svg b/icons/mocha/storybook-vue.svg new file mode 100644 index 00000000..805ad494 --- /dev/null +++ b/icons/mocha/storybook-vue.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/storybook.svg b/icons/mocha/storybook.svg new file mode 100644 index 00000000..bbea9353 --- /dev/null +++ b/icons/mocha/storybook.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/stylelint-ignore.svg b/icons/mocha/stylelint-ignore.svg new file mode 100644 index 00000000..e683f83e --- /dev/null +++ b/icons/mocha/stylelint-ignore.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/mocha/stylelint.svg b/icons/mocha/stylelint.svg new file mode 100644 index 00000000..d65ca64e --- /dev/null +++ b/icons/mocha/stylelint.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/mocha/sublime.svg b/icons/mocha/sublime.svg new file mode 100644 index 00000000..e7a8b10a --- /dev/null +++ b/icons/mocha/sublime.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/svelte-config.svg b/icons/mocha/svelte-config.svg new file mode 100644 index 00000000..16169cd6 --- /dev/null +++ b/icons/mocha/svelte-config.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/svelte.svg b/icons/mocha/svelte.svg new file mode 100644 index 00000000..0e2a54ba --- /dev/null +++ b/icons/mocha/svelte.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/svg.svg b/icons/mocha/svg.svg new file mode 100644 index 00000000..5d05596b --- /dev/null +++ b/icons/mocha/svg.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/swift.svg b/icons/mocha/swift.svg new file mode 100644 index 00000000..61a3e9d3 --- /dev/null +++ b/icons/mocha/swift.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/tailwind.svg b/icons/mocha/tailwind.svg new file mode 100644 index 00000000..d3980d25 --- /dev/null +++ b/icons/mocha/tailwind.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/tauri-ignore.svg b/icons/mocha/tauri-ignore.svg new file mode 100644 index 00000000..71af2d14 --- /dev/null +++ b/icons/mocha/tauri-ignore.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/tauri.svg b/icons/mocha/tauri.svg new file mode 100644 index 00000000..1a00772a --- /dev/null +++ b/icons/mocha/tauri.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/mocha/terraform.svg b/icons/mocha/terraform.svg new file mode 100644 index 00000000..e9e082ea --- /dev/null +++ b/icons/mocha/terraform.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/text.svg b/icons/mocha/text.svg new file mode 100644 index 00000000..1c93214c --- /dev/null +++ b/icons/mocha/text.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/todo.svg b/icons/mocha/todo.svg new file mode 100644 index 00000000..1259312b --- /dev/null +++ b/icons/mocha/todo.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/toml.svg b/icons/mocha/toml.svg new file mode 100644 index 00000000..b386cbc1 --- /dev/null +++ b/icons/mocha/toml.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/twine.svg b/icons/mocha/twine.svg new file mode 100644 index 00000000..0d9afb52 --- /dev/null +++ b/icons/mocha/twine.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/typescript-config.svg b/icons/mocha/typescript-config.svg new file mode 100644 index 00000000..58cee24f --- /dev/null +++ b/icons/mocha/typescript-config.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/mocha/typescript-def.svg b/icons/mocha/typescript-def.svg new file mode 100644 index 00000000..b817eae6 --- /dev/null +++ b/icons/mocha/typescript-def.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/mocha/typescript-react.svg b/icons/mocha/typescript-react.svg new file mode 100644 index 00000000..d4951441 --- /dev/null +++ b/icons/mocha/typescript-react.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/mocha/typescript-test.svg b/icons/mocha/typescript-test.svg new file mode 100644 index 00000000..f7b3f34e --- /dev/null +++ b/icons/mocha/typescript-test.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/typescript.svg b/icons/mocha/typescript.svg new file mode 100644 index 00000000..2ddb5d73 --- /dev/null +++ b/icons/mocha/typescript.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/unity.svg b/icons/mocha/unity.svg new file mode 100644 index 00000000..f31fd7e3 --- /dev/null +++ b/icons/mocha/unity.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/unocss.svg b/icons/mocha/unocss.svg new file mode 100644 index 00000000..61c29cf3 --- /dev/null +++ b/icons/mocha/unocss.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/url.svg b/icons/mocha/url.svg new file mode 100644 index 00000000..3e5e5cc1 --- /dev/null +++ b/icons/mocha/url.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/v.svg b/icons/mocha/v.svg new file mode 100644 index 00000000..9013e676 --- /dev/null +++ b/icons/mocha/v.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/vercel-ignore.svg b/icons/mocha/vercel-ignore.svg new file mode 100644 index 00000000..0350c64f --- /dev/null +++ b/icons/mocha/vercel-ignore.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/vercel.svg b/icons/mocha/vercel.svg new file mode 100644 index 00000000..467e1ab4 --- /dev/null +++ b/icons/mocha/vercel.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/verilog.svg b/icons/mocha/verilog.svg new file mode 100644 index 00000000..24a91de4 --- /dev/null +++ b/icons/mocha/verilog.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/video.svg b/icons/mocha/video.svg new file mode 100644 index 00000000..22a612ce --- /dev/null +++ b/icons/mocha/video.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/vim.svg b/icons/mocha/vim.svg new file mode 100644 index 00000000..38510982 --- /dev/null +++ b/icons/mocha/vim.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/visual-studio.svg b/icons/mocha/visual-studio.svg new file mode 100644 index 00000000..77b8966a --- /dev/null +++ b/icons/mocha/visual-studio.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/vite.svg b/icons/mocha/vite.svg new file mode 100644 index 00000000..23f1c8e4 --- /dev/null +++ b/icons/mocha/vite.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/vitest.svg b/icons/mocha/vitest.svg new file mode 100644 index 00000000..7576282f --- /dev/null +++ b/icons/mocha/vitest.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/vs-codium.svg b/icons/mocha/vs-codium.svg new file mode 100644 index 00000000..0e3d5f0f --- /dev/null +++ b/icons/mocha/vs-codium.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/mocha/vscode-ignore.svg b/icons/mocha/vscode-ignore.svg new file mode 100644 index 00000000..34e356fb --- /dev/null +++ b/icons/mocha/vscode-ignore.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/vscode.svg b/icons/mocha/vscode.svg new file mode 100644 index 00000000..b64cc1fe --- /dev/null +++ b/icons/mocha/vscode.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/vue-config.svg b/icons/mocha/vue-config.svg new file mode 100644 index 00000000..c7646c3b --- /dev/null +++ b/icons/mocha/vue-config.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/vue.svg b/icons/mocha/vue.svg new file mode 100644 index 00000000..4ce08c7a --- /dev/null +++ b/icons/mocha/vue.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/web-assembly.svg b/icons/mocha/web-assembly.svg new file mode 100644 index 00000000..b13928fa --- /dev/null +++ b/icons/mocha/web-assembly.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/mocha/webpack.svg b/icons/mocha/webpack.svg new file mode 100644 index 00000000..957d0491 --- /dev/null +++ b/icons/mocha/webpack.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/mocha/windi.svg b/icons/mocha/windi.svg new file mode 100644 index 00000000..261c2769 --- /dev/null +++ b/icons/mocha/windi.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/workflow.svg b/icons/mocha/workflow.svg new file mode 100644 index 00000000..d8faf0aa --- /dev/null +++ b/icons/mocha/workflow.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/xaml.svg b/icons/mocha/xaml.svg new file mode 100644 index 00000000..7134f09e --- /dev/null +++ b/icons/mocha/xaml.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/icons/mocha/xmake.svg b/icons/mocha/xmake.svg new file mode 100644 index 00000000..36da79e0 --- /dev/null +++ b/icons/mocha/xmake.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/icons/mocha/xml.svg b/icons/mocha/xml.svg new file mode 100644 index 00000000..69044ec2 --- /dev/null +++ b/icons/mocha/xml.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/yaml.svg b/icons/mocha/yaml.svg new file mode 100644 index 00000000..74a560e3 --- /dev/null +++ b/icons/mocha/yaml.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/yarn-lock.svg b/icons/mocha/yarn-lock.svg new file mode 100644 index 00000000..69131341 --- /dev/null +++ b/icons/mocha/yarn-lock.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/icons/mocha/yarn.svg b/icons/mocha/yarn.svg new file mode 100644 index 00000000..019dfe29 --- /dev/null +++ b/icons/mocha/yarn.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/mocha/zig.svg b/icons/mocha/zig.svg new file mode 100644 index 00000000..0f124638 --- /dev/null +++ b/icons/mocha/zig.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/netlify.svg b/icons/netlify.svg deleted file mode 100644 index 946b1d6d..00000000 --- a/icons/netlify.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/next.svg b/icons/next.svg deleted file mode 100644 index fe942f52..00000000 --- a/icons/next.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/nextflow.svg b/icons/nextflow.svg deleted file mode 100644 index 6a4e67e7..00000000 --- a/icons/nextflow.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/nginx.svg b/icons/nginx.svg deleted file mode 100644 index 6c8abd9f..00000000 --- a/icons/nginx.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/nim.svg b/icons/nim.svg deleted file mode 100644 index 72b8d925..00000000 --- a/icons/nim.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/ninja.svg b/icons/ninja.svg deleted file mode 100644 index efa1e7de..00000000 --- a/icons/ninja.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/nix.svg b/icons/nix.svg deleted file mode 100644 index db4e770b..00000000 --- a/icons/nix.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/nix_flake_lock.svg b/icons/nix_flake_lock.svg deleted file mode 100644 index 9e0057f8..00000000 --- a/icons/nix_flake_lock.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/icons/npm.svg b/icons/npm.svg deleted file mode 100644 index 2cc07c6f..00000000 --- a/icons/npm.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/npm_ignore.svg b/icons/npm_ignore.svg deleted file mode 100644 index 218c6765..00000000 --- a/icons/npm_ignore.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/npm_lock.svg b/icons/npm_lock.svg deleted file mode 100644 index 2ffd3196..00000000 --- a/icons/npm_lock.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/nunjucks.svg b/icons/nunjucks.svg deleted file mode 100644 index ca630da6..00000000 --- a/icons/nunjucks.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/nuxt.svg b/icons/nuxt.svg deleted file mode 100644 index 2ba14aca..00000000 --- a/icons/nuxt.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/nuxt_ignore.svg b/icons/nuxt_ignore.svg deleted file mode 100644 index 5c5c0259..00000000 --- a/icons/nuxt_ignore.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/nx.svg b/icons/nx.svg deleted file mode 100644 index d893d691..00000000 --- a/icons/nx.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/ocaml.svg b/icons/ocaml.svg deleted file mode 100644 index c63754ad..00000000 --- a/icons/ocaml.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/package_json.svg b/icons/package_json.svg deleted file mode 100644 index c371bcc6..00000000 --- a/icons/package_json.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/panda.svg b/icons/panda.svg deleted file mode 100644 index 80f7fbe8..00000000 --- a/icons/panda.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/pdf.svg b/icons/pdf.svg deleted file mode 100644 index 207fd934..00000000 --- a/icons/pdf.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/perl.svg b/icons/perl.svg deleted file mode 100644 index 3ae34492..00000000 --- a/icons/perl.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/php.svg b/icons/php.svg deleted file mode 100644 index 21f83a6a..00000000 --- a/icons/php.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/playwright.svg b/icons/playwright.svg deleted file mode 100644 index 6bf8490a..00000000 --- a/icons/playwright.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/plop.svg b/icons/plop.svg deleted file mode 100644 index 623cce8a..00000000 --- a/icons/plop.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/pnpm.svg b/icons/pnpm.svg deleted file mode 100644 index b062fe2d..00000000 --- a/icons/pnpm.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/pnpm_lock.svg b/icons/pnpm_lock.svg deleted file mode 100644 index db4427bd..00000000 --- a/icons/pnpm_lock.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/powershell.svg b/icons/powershell.svg deleted file mode 100644 index cfce86dc..00000000 --- a/icons/powershell.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/premake.svg b/icons/premake.svg deleted file mode 100644 index 9c70d285..00000000 --- a/icons/premake.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/prettier.svg b/icons/prettier.svg deleted file mode 100644 index 33b2fb6b..00000000 --- a/icons/prettier.svg +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - - - - diff --git a/icons/prettier_ignore.svg b/icons/prettier_ignore.svg deleted file mode 100644 index 885bd7e3..00000000 --- a/icons/prettier_ignore.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/prisma.svg b/icons/prisma.svg deleted file mode 100644 index 52bf4c4a..00000000 --- a/icons/prisma.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/properties.svg b/icons/properties.svg deleted file mode 100644 index 745a0b21..00000000 --- a/icons/properties.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/protobuf.svg b/icons/protobuf.svg deleted file mode 100644 index 2384fc33..00000000 --- a/icons/protobuf.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/python.svg b/icons/python.svg deleted file mode 100644 index bbca4108..00000000 --- a/icons/python.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/icons/python_compiled.svg b/icons/python_compiled.svg deleted file mode 100644 index bb4410ad..00000000 --- a/icons/python_compiled.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/icons/r.svg b/icons/r.svg deleted file mode 100644 index ad173f78..00000000 --- a/icons/r.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/racket.svg b/icons/racket.svg deleted file mode 100644 index 42728d3b..00000000 --- a/icons/racket.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/razor.svg b/icons/razor.svg deleted file mode 100644 index ba77de53..00000000 --- a/icons/razor.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/readme.svg b/icons/readme.svg deleted file mode 100644 index b2da8df4..00000000 --- a/icons/readme.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/reason.svg b/icons/reason.svg deleted file mode 100644 index 4c94945b..00000000 --- a/icons/reason.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/redwood.svg b/icons/redwood.svg deleted file mode 100644 index 62042428..00000000 --- a/icons/redwood.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/remix.svg b/icons/remix.svg deleted file mode 100644 index 2ebb6a8a..00000000 --- a/icons/remix.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/renovate.svg b/icons/renovate.svg deleted file mode 100644 index 1b94f641..00000000 --- a/icons/renovate.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/rescript.svg b/icons/rescript.svg deleted file mode 100644 index 5b176fd9..00000000 --- a/icons/rescript.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/robots.svg b/icons/robots.svg deleted file mode 100644 index 708bc2ce..00000000 --- a/icons/robots.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/icons/rollup.svg b/icons/rollup.svg deleted file mode 100644 index 847c49a4..00000000 --- a/icons/rollup.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/rome.svg b/icons/rome.svg deleted file mode 100644 index 9c4ef8e4..00000000 --- a/icons/rome.svg +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/icons/ruby.svg b/icons/ruby.svg deleted file mode 100644 index 601e56dd..00000000 --- a/icons/ruby.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/ruby_gem.svg b/icons/ruby_gem.svg deleted file mode 100644 index f54fecc0..00000000 --- a/icons/ruby_gem.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/rust.svg b/icons/rust.svg deleted file mode 100644 index 1f4cd6c4..00000000 --- a/icons/rust.svg +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - diff --git a/icons/sass.svg b/icons/sass.svg deleted file mode 100644 index 7a269fcb..00000000 --- a/icons/sass.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/scala.svg b/icons/scala.svg deleted file mode 100644 index 54de423d..00000000 --- a/icons/scala.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/search.svg b/icons/search.svg deleted file mode 100644 index b4d3067d..00000000 --- a/icons/search.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/sentry.svg b/icons/sentry.svg deleted file mode 100644 index c52826e2..00000000 --- a/icons/sentry.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/shader.svg b/icons/shader.svg deleted file mode 100644 index 8258538a..00000000 --- a/icons/shader.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/slide.svg b/icons/slide.svg deleted file mode 100644 index 415ecf64..00000000 --- a/icons/slide.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/solidity.svg b/icons/solidity.svg deleted file mode 100644 index 02679ea4..00000000 --- a/icons/solidity.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/icons/sonar_cloud.svg b/icons/sonar_cloud.svg deleted file mode 100644 index c62b244e..00000000 --- a/icons/sonar_cloud.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/spreadsheet.svg b/icons/spreadsheet.svg deleted file mode 100644 index 15ff55a8..00000000 --- a/icons/spreadsheet.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/stackblitz.svg b/icons/stackblitz.svg deleted file mode 100644 index cb02875b..00000000 --- a/icons/stackblitz.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/stencil.svg b/icons/stencil.svg deleted file mode 100644 index d517e22e..00000000 --- a/icons/stencil.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/stitches.svg b/icons/stitches.svg deleted file mode 100644 index 2022c49a..00000000 --- a/icons/stitches.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/icons/storybook.svg b/icons/storybook.svg deleted file mode 100644 index f72367ff..00000000 --- a/icons/storybook.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/storybook_svelte.svg b/icons/storybook_svelte.svg deleted file mode 100644 index d57e5756..00000000 --- a/icons/storybook_svelte.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/storybook_vue.svg b/icons/storybook_vue.svg deleted file mode 100644 index 450ccc33..00000000 --- a/icons/storybook_vue.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/stylelint.svg b/icons/stylelint.svg deleted file mode 100644 index 002db9f4..00000000 --- a/icons/stylelint.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/stylelint_ignore.svg b/icons/stylelint_ignore.svg deleted file mode 100644 index cd4c45a2..00000000 --- a/icons/stylelint_ignore.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/svelte.svg b/icons/svelte.svg deleted file mode 100644 index 0334bef7..00000000 --- a/icons/svelte.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/svelte_config.svg b/icons/svelte_config.svg deleted file mode 100644 index 0fab71c2..00000000 --- a/icons/svelte_config.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/icons/svg.svg b/icons/svg.svg deleted file mode 100644 index d309f38a..00000000 --- a/icons/svg.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/icons/swift.svg b/icons/swift.svg deleted file mode 100644 index 0b05a543..00000000 --- a/icons/swift.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/tailwind.svg b/icons/tailwind.svg deleted file mode 100644 index 04a1893c..00000000 --- a/icons/tailwind.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/tauri.svg b/icons/tauri.svg deleted file mode 100644 index cb57c5ca..00000000 --- a/icons/tauri.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/terraform.svg b/icons/terraform.svg deleted file mode 100644 index 896a0fcf..00000000 --- a/icons/terraform.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/todo.svg b/icons/todo.svg deleted file mode 100644 index 786732dc..00000000 --- a/icons/todo.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/toml.svg b/icons/toml.svg deleted file mode 100644 index e26a0817..00000000 --- a/icons/toml.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/txt.svg b/icons/txt.svg deleted file mode 100644 index b763053a..00000000 --- a/icons/txt.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/typescript.svg b/icons/typescript.svg deleted file mode 100644 index 642cf473..00000000 --- a/icons/typescript.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/typescript_config.svg b/icons/typescript_config.svg deleted file mode 100644 index 86f773ab..00000000 --- a/icons/typescript_config.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/icons/typescript_def.svg b/icons/typescript_def.svg deleted file mode 100644 index 4b2f4dbe..00000000 --- a/icons/typescript_def.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/icons/typescript_react.svg b/icons/typescript_react.svg deleted file mode 100644 index 7a1c91d0..00000000 --- a/icons/typescript_react.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/typescript_test.svg b/icons/typescript_test.svg deleted file mode 100644 index bcd63379..00000000 --- a/icons/typescript_test.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/icons/unity.svg b/icons/unity.svg deleted file mode 100644 index 640cfaa1..00000000 --- a/icons/unity.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/unocss.svg b/icons/unocss.svg deleted file mode 100644 index 4f384d8d..00000000 --- a/icons/unocss.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/v.svg b/icons/v.svg deleted file mode 100644 index 743db174..00000000 --- a/icons/v.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/vercel.svg b/icons/vercel.svg deleted file mode 100644 index d42ee668..00000000 --- a/icons/vercel.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/vercel_ignore.svg b/icons/vercel_ignore.svg deleted file mode 100644 index a45c47b9..00000000 --- a/icons/vercel_ignore.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/visual_studio.svg b/icons/visual_studio.svg deleted file mode 100644 index b1f9c0fd..00000000 --- a/icons/visual_studio.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/vite.svg b/icons/vite.svg deleted file mode 100644 index 98797b0f..00000000 --- a/icons/vite.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/vitest.svg b/icons/vitest.svg deleted file mode 100644 index 3eef4908..00000000 --- a/icons/vitest.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/vs_code.svg b/icons/vs_code.svg deleted file mode 100644 index e9e83a0d..00000000 --- a/icons/vs_code.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/vs_code_ignore.svg b/icons/vs_code_ignore.svg deleted file mode 100644 index 377103c2..00000000 --- a/icons/vs_code_ignore.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/vs_codium.svg b/icons/vs_codium.svg deleted file mode 100644 index 8a264276..00000000 --- a/icons/vs_codium.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/icons/vue.svg b/icons/vue.svg deleted file mode 100644 index d789ce38..00000000 --- a/icons/vue.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/vue_config.svg b/icons/vue_config.svg deleted file mode 100644 index acecb2dd..00000000 --- a/icons/vue_config.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/web_assembly.svg b/icons/web_assembly.svg deleted file mode 100644 index 002cecfe..00000000 --- a/icons/web_assembly.svg +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/icons/webpack.svg b/icons/webpack.svg deleted file mode 100644 index 70d860f0..00000000 --- a/icons/webpack.svg +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/icons/windi.svg b/icons/windi.svg deleted file mode 100644 index b19e9e0a..00000000 --- a/icons/windi.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/icons/workflow.svg b/icons/workflow.svg deleted file mode 100644 index 0fc032cc..00000000 --- a/icons/workflow.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/xaml.svg b/icons/xaml.svg deleted file mode 100644 index 8b2b0ded..00000000 --- a/icons/xaml.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/xmake.svg b/icons/xmake.svg deleted file mode 100644 index 91d565e8..00000000 --- a/icons/xmake.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/icons/xml.svg b/icons/xml.svg deleted file mode 100644 index 7959711b..00000000 --- a/icons/xml.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/icons/yaml.svg b/icons/yaml.svg deleted file mode 100644 index 846e8b73..00000000 --- a/icons/yaml.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/yarn.svg b/icons/yarn.svg deleted file mode 100644 index 8a89ef4e..00000000 --- a/icons/yarn.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/icons/yarn_lock.svg b/icons/yarn_lock.svg deleted file mode 100644 index fd898f89..00000000 --- a/icons/yarn_lock.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/icons/zig.svg b/icons/zig.svg deleted file mode 100644 index ae55f352..00000000 --- a/icons/zig.svg +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/icons/zip.svg b/icons/zip.svg deleted file mode 100644 index 74911af3..00000000 --- a/icons/zip.svg +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/package.json b/package.json index c28d2f8e..99b1b252 100644 --- a/package.json +++ b/package.json @@ -3,8 +3,10 @@ "name": "catppuccin-vsc-icons", "displayName": "Catppuccin Icons for VSCode", "type": "module", - "version": "0.33.0", - "description": "🦌 Soothing pastel icon theme for VSCode", + "version": "0.34.0", + "private": true, + "packageManager": "pnpm@8.14.3", + "description": "🦊 Soothing pastel icon theme for VSCode", "author": "prazdevs", "license": "MIT", "repository": { @@ -24,75 +26,72 @@ "categories": [ "Themes" ], - "icon": "logo.png", - "files": [ - "dist" + "main": "dist/index.cjs", + "icon": "assets/icon.png", + "extensionKind": [ + "ui", + "workspace" ], "engines": { - "vscode": "^1.69.0" + "vscode": "^1.83.0", + "node": ">=20.0.0" }, + "activationEvents": [ + "onStartupFinished" + ], "contributes": { "iconThemes": [ { "id": "catppuccin-mocha", "label": "Catppuccin Mocha", - "path": "themes/mocha/theme.json" + "path": "./dist/mocha/theme.json" }, { "id": "catppuccin-latte", "label": "Catppuccin Latte", - "path": "themes/latte/theme.json" + "path": "./dist/latte/theme.json" }, { "id": "catppuccin-frappe", "label": "Catppuccin Frappé", - "path": "themes/frappe/theme.json" + "path": "./dist/frappe/theme.json" }, { "id": "catppuccin-macchiato", "label": "Catppuccin Macchiato", - "path": "themes/macchiato/theme.json" + "path": "./dist/macchiato/theme.json" } ] }, "scripts": { - "build": "yarn build:themes && yarn build:preview", - "build:icons": "tsx scripts/icons.ts", - "build:themes": "tsx scripts/themes.ts", - "build:preview": "tsx scripts/preview.ts", + "build": "tsx scripts/build.ts", "catwalk": "tsx scripts/catwalk.ts", - "dev": "chokidar \"src/**/*\" -c \"yarn build\"", - "integrity": "tsx scripts/integrity.ts", + "icons:associations": "tsx scripts/associations.ts", + "icons:generate": "tsx scripts/generate.ts", + "icons:optimize": "tsx scripts/optimize.ts", + "icons:preview": "tsx scripts/preview.ts", "lint": "eslint .", "lint:fix": "eslint . --fix", - "package": "vsce package --no-dependencies -o dist", - "release": "bumpp -t \"v%s\" -c \"chore: release v\"" + "pack": "vsce package --no-dependencies" }, "devDependencies": { - "@antfu/eslint-config": "^0.38.6", - "@catppuccin/palette": "^0.1.8", - "@types/fs-extra": "^11.0.1", - "@types/node": "^18.16.5", - "@vscode/vsce": "^2.19.0", - "bumpp": "^9.1.0", - "chokidar-cli": "^3.0.0", - "colorsea": "^1.2.1", - "consola": "^3.1.0", - "eslint": "^8.40.0", - "fs-extra": "^11.1.1", - "lint-staged": "^15.2.0", - "pathe": "^1.1.0", - "puppeteer": "^20.1.2", - "scule": "^1.0.0", - "simple-git-hooks": "^2.9.0", - "svgo": "^3.0.2", - "tsx": "^3.12.7", - "typescript": "^5.0.4" - }, - "simple-git-hooks": { - "pre-commit": "pnpm lint-staged" - }, - "lint-staged": { - "*": "eslint --fix" + "@antfu/eslint-config": "^2.6.3", + "@catppuccin/palette": "^1.0.3", + "@iconify/tools": "^4.0.0", + "@types/node": "^20.10.8", + "@types/vscode": "^1.83.0", + "@vscode/vsce": "^2.22.0", + "bumpp": "^9.3.0", + "changelogen": "^0.5.5", + "defu": "^6.1.4", + "eslint": "^8.56.0", + "lookpath": "^1.2.2", + "magic-regexp": "^0.7.0", + "puppeteer": "^21.9.0", + "rimraf": "^5.0.5", + "tempy": "^3.1.0", + "tsup": "^8.0.1", + "tsx": "^4.7.0", + "typescript": "^5.3.3" } } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml new file mode 100644 index 00000000..55cf205f --- /dev/null +++ b/pnpm-lock.yaml @@ -0,0 +1,4899 @@ +lockfileVersion: '6.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +devDependencies: + '@antfu/eslint-config': + specifier: ^2.6.3 + version: 2.6.3(@vue/compiler-sfc@3.4.15)(eslint@8.56.0)(typescript@5.3.3) + '@catppuccin/palette': + specifier: ^1.0.3 + version: 1.0.3 + '@iconify/tools': + specifier: ^4.0.0 + version: 4.0.0 + '@types/node': + specifier: ^20.10.8 + version: 20.11.6 + '@types/vscode': + specifier: ^1.83.0 + version: 1.85.0 + '@vscode/vsce': + specifier: ^2.22.0 + version: 2.22.0 + bumpp: + specifier: ^9.3.0 + version: 9.3.0 + changelogen: + specifier: ^0.5.5 + version: 0.5.5 + defu: + specifier: ^6.1.4 + version: 6.1.4 + eslint: + specifier: ^8.56.0 + version: 8.56.0 + lookpath: + specifier: ^1.2.2 + version: 1.2.2 + magic-regexp: + specifier: ^0.7.0 + version: 0.7.0 + puppeteer: + specifier: ^21.9.0 + version: 21.9.0(typescript@5.3.3) + rimraf: + specifier: ^5.0.5 + version: 5.0.5 + tempy: + specifier: ^3.1.0 + version: 3.1.0 + tsup: + specifier: ^8.0.1 + version: 8.0.1(typescript@5.3.3) + tsx: + specifier: ^4.7.0 + version: 4.7.0 + typescript: + specifier: ^5.3.3 + version: 5.3.3 + +packages: + + /@aashutoshrathi/word-wrap@1.2.6: + resolution: {integrity: sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==} + engines: {node: '>=0.10.0'} + dev: true + + /@antfu/eslint-config@2.6.3(@vue/compiler-sfc@3.4.15)(eslint@8.56.0)(typescript@5.3.3): + resolution: {integrity: sha512-sfkamrOatMwMZkp14mBerHKIw8FY0SD1iCb5UZ6Y5hgb+FeDpNQPlVA0i2PN95TQ8NSYyPC1QnoM+UA5NSl0Kg==} + hasBin: true + peerDependencies: + '@unocss/eslint-plugin': '>=0.50.0' + eslint: '>=8.40.0' + eslint-plugin-format: '>=0.1.0' + eslint-plugin-react: ^7.33.2 + eslint-plugin-react-hooks: ^4.6.0 + eslint-plugin-react-refresh: ^0.4.4 + eslint-plugin-svelte: ^2.34.1 + svelte-eslint-parser: ^0.33.1 + peerDependenciesMeta: + '@unocss/eslint-plugin': + optional: true + eslint-plugin-format: + optional: true + eslint-plugin-react: + optional: true + eslint-plugin-react-hooks: + optional: true + eslint-plugin-react-refresh: + optional: true + eslint-plugin-svelte: + optional: true + svelte-eslint-parser: + optional: true + dependencies: + '@antfu/eslint-define-config': 1.23.0-2 + '@antfu/install-pkg': 0.3.1 + '@eslint-types/jsdoc': 46.8.2-1 + '@eslint-types/typescript-eslint': 6.18.1 + '@eslint-types/unicorn': 50.0.1 + '@stylistic/eslint-plugin': 1.5.4(eslint@8.56.0)(typescript@5.3.3) + '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1)(eslint@8.56.0)(typescript@5.3.3) + '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.3.3) + eslint: 8.56.0 + eslint-config-flat-gitignore: 0.1.2 + eslint-merge-processors: 0.1.0(eslint@8.56.0) + eslint-plugin-antfu: 2.1.2(eslint@8.56.0) + eslint-plugin-eslint-comments: 3.2.0(eslint@8.56.0) + eslint-plugin-i: 2.29.1(@typescript-eslint/parser@6.19.1)(eslint@8.56.0) + eslint-plugin-jsdoc: 48.0.3(eslint@8.56.0) + eslint-plugin-jsonc: 2.13.0(eslint@8.56.0) + eslint-plugin-markdown: 3.0.1(eslint@8.56.0) + eslint-plugin-n: 16.6.2(eslint@8.56.0) + eslint-plugin-no-only-tests: 3.1.0 + eslint-plugin-perfectionist: 2.5.0(eslint@8.56.0)(typescript@5.3.3)(vue-eslint-parser@9.4.2) + eslint-plugin-toml: 0.9.2(eslint@8.56.0) + eslint-plugin-unicorn: 50.0.1(eslint@8.56.0) + eslint-plugin-unused-imports: 3.0.0(@typescript-eslint/eslint-plugin@6.19.1)(eslint@8.56.0) + eslint-plugin-vitest: 0.3.20(@typescript-eslint/eslint-plugin@6.19.1)(eslint@8.56.0)(typescript@5.3.3) + eslint-plugin-vue: 9.20.1(eslint@8.56.0) + eslint-plugin-yml: 1.12.2(eslint@8.56.0) + eslint-processor-vue-blocks: 0.1.1(@vue/compiler-sfc@3.4.15)(eslint@8.56.0) + globals: 13.24.0 + jsonc-eslint-parser: 2.4.0 + local-pkg: 0.5.0 + parse-gitignore: 2.0.0 + picocolors: 1.0.0 + prompts: 2.4.2 + toml-eslint-parser: 0.9.3 + vue-eslint-parser: 9.4.2(eslint@8.56.0) + yaml-eslint-parser: 1.2.2 + yargs: 17.7.2 + transitivePeerDependencies: + - '@vue/compiler-sfc' + - astro-eslint-parser + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - supports-color + - svelte + - typescript + - vitest + dev: true + + /@antfu/eslint-define-config@1.23.0-2: + resolution: {integrity: sha512-LvxY21+ZhpuBf/aHeBUtGQhSEfad4PkNKXKvDOSvukaM3XVTfBhwmHX2EKwAsdq5DlfjbT3qqYyMiueBIO5iDQ==} + engines: {node: '>=18.0.0', npm: '>=9.0.0', pnpm: '>= 8.6.0'} + dev: true + + /@antfu/install-pkg@0.1.1: + resolution: {integrity: sha512-LyB/8+bSfa0DFGC06zpCEfs89/XoWZwws5ygEa5D+Xsm3OfI+aXQ86VgVG7Acyef+rSZ5HE7J8rrxzrQeM3PjQ==} + dependencies: + execa: 5.1.1 + find-up: 5.0.0 + dev: true + + /@antfu/install-pkg@0.3.1: + resolution: {integrity: sha512-A3zWY9VeTPnxlMiZtsGHw2lSd3ghwvL8s9RiGOtqvDxhhFfZ781ynsGBa/iUnDJ5zBrmTFQrJDud3TGgRISaxw==} + dependencies: + execa: 8.0.1 + dev: true + + /@antfu/utils@0.7.7: + resolution: {integrity: sha512-gFPqTG7otEJ8uP6wrhDv6mqwGWYZKNvAcCq6u9hOj0c+IKCEsY4L1oC9trPq2SaWIzAfHvqfBDxF591JkMf+kg==} + dev: true + + /@babel/code-frame@7.23.5: + resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/highlight': 7.23.4 + chalk: 2.4.2 + dev: true + + /@babel/helper-string-parser@7.23.4: + resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==} + engines: {node: '>=6.9.0'} + dev: true + + /@babel/helper-validator-identifier@7.22.20: + resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} + engines: {node: '>=6.9.0'} + dev: true + + /@babel/highlight@7.23.4: + resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-validator-identifier': 7.22.20 + chalk: 2.4.2 + js-tokens: 4.0.0 + dev: true + + /@babel/parser@7.23.6: + resolution: {integrity: sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==} + engines: {node: '>=6.0.0'} + hasBin: true + dependencies: + '@babel/types': 7.23.6 + dev: true + + /@babel/types@7.23.6: + resolution: {integrity: sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==} + engines: {node: '>=6.9.0'} + dependencies: + '@babel/helper-string-parser': 7.23.4 + '@babel/helper-validator-identifier': 7.22.20 + to-fast-properties: 2.0.0 + dev: true + + /@catppuccin/palette@1.0.3: + resolution: {integrity: sha512-L3jclhx8z7Oyv4b1x9TCXjikvLbKd+dwksNOJsi6W811PPGdP38PYiX5h4/renukOp8lUEkPIPv07S/5HA3tVg==} + dev: true + + /@es-joy/jsdoccomment@0.41.0: + resolution: {integrity: sha512-aKUhyn1QI5Ksbqcr3fFJj16p99QdjUxXAEuFst1Z47DRyoiMwivIH9MV/ARcJOCXVjPfjITciej8ZD2O/6qUmw==} + engines: {node: '>=16'} + dependencies: + comment-parser: 1.4.1 + esquery: 1.5.0 + jsdoc-type-pratt-parser: 4.0.0 + dev: true + + /@esbuild/aix-ppc64@0.19.12: + resolution: {integrity: sha512-bmoCYyWdEL3wDQIVbcyzRyeKLgk2WtWLTWz1ZIAZF/EGbNOwSA6ew3PftJ1PqMiOOGu0OyFMzG53L0zqIpPeNA==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [aix] + requiresBuild: true + dev: true + optional: true + + /@esbuild/android-arm64@0.19.12: + resolution: {integrity: sha512-P0UVNGIienjZv3f5zq0DP3Nt2IE/3plFzuaS96vihvD0Hd6H/q4WXUGpCxD/E8YrSXfNyRPbpTq+T8ZQioSuPA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@esbuild/android-arm@0.19.12: + resolution: {integrity: sha512-qg/Lj1mu3CdQlDEEiWrlC4eaPZ1KztwGJ9B6J+/6G+/4ewxJg7gqj8eVYWvao1bXrqGiW2rsBZFSX3q2lcW05w==} + engines: {node: '>=12'} + cpu: [arm] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@esbuild/android-x64@0.19.12: + resolution: {integrity: sha512-3k7ZoUW6Q6YqhdhIaq/WZ7HwBpnFBlW905Fa4s4qWJyiNOgT1dOqDiVAQFwBH7gBRZr17gLrlFCRzF6jFh7Kew==} + engines: {node: '>=12'} + cpu: [x64] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@esbuild/darwin-arm64@0.19.12: + resolution: {integrity: sha512-B6IeSgZgtEzGC42jsI+YYu9Z3HKRxp8ZT3cqhvliEHovq8HSX2YX8lNocDn79gCKJXOSaEot9MVYky7AKjCs8g==} + engines: {node: '>=12'} + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@esbuild/darwin-x64@0.19.12: + resolution: {integrity: sha512-hKoVkKzFiToTgn+41qGhsUJXFlIjxI/jSYeZf3ugemDYZldIXIxhvwN6erJGlX4t5h417iFuheZ7l+YVn05N3A==} + engines: {node: '>=12'} + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@esbuild/freebsd-arm64@0.19.12: + resolution: {integrity: sha512-4aRvFIXmwAcDBw9AueDQ2YnGmz5L6obe5kmPT8Vd+/+x/JMVKCgdcRwH6APrbpNXsPz+K653Qg8HB/oXvXVukA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/freebsd-x64@0.19.12: + resolution: {integrity: sha512-EYoXZ4d8xtBoVN7CEwWY2IN4ho76xjYXqSXMNccFSx2lgqOG/1TBPW0yPx1bJZk94qu3tX0fycJeeQsKovA8gg==} + engines: {node: '>=12'} + cpu: [x64] + os: [freebsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-arm64@0.19.12: + resolution: {integrity: sha512-EoTjyYyLuVPfdPLsGVVVC8a0p1BFFvtpQDB/YLEhaXyf/5bczaGeN15QkR+O4S5LeJ92Tqotve7i1jn35qwvdA==} + engines: {node: '>=12'} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-arm@0.19.12: + resolution: {integrity: sha512-J5jPms//KhSNv+LO1S1TX1UWp1ucM6N6XuL6ITdKWElCu8wXP72l9MM0zDTzzeikVyqFE6U8YAV9/tFyj0ti+w==} + engines: {node: '>=12'} + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-ia32@0.19.12: + resolution: {integrity: sha512-Thsa42rrP1+UIGaWz47uydHSBOgTUnwBwNq59khgIwktK6x60Hivfbux9iNR0eHCHzOLjLMLfUMLCypBkZXMHA==} + engines: {node: '>=12'} + cpu: [ia32] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-loong64@0.19.12: + resolution: {integrity: sha512-LiXdXA0s3IqRRjm6rV6XaWATScKAXjI4R4LoDlvO7+yQqFdlr1Bax62sRwkVvRIrwXxvtYEHHI4dm50jAXkuAA==} + engines: {node: '>=12'} + cpu: [loong64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-mips64el@0.19.12: + resolution: {integrity: sha512-fEnAuj5VGTanfJ07ff0gOA6IPsvrVHLVb6Lyd1g2/ed67oU1eFzL0r9WL7ZzscD+/N6i3dWumGE1Un4f7Amf+w==} + engines: {node: '>=12'} + cpu: [mips64el] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-ppc64@0.19.12: + resolution: {integrity: sha512-nYJA2/QPimDQOh1rKWedNOe3Gfc8PabU7HT3iXWtNUbRzXS9+vgB0Fjaqr//XNbd82mCxHzik2qotuI89cfixg==} + engines: {node: '>=12'} + cpu: [ppc64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-riscv64@0.19.12: + resolution: {integrity: sha512-2MueBrlPQCw5dVJJpQdUYgeqIzDQgw3QtiAHUC4RBz9FXPrskyyU3VI1hw7C0BSKB9OduwSJ79FTCqtGMWqJHg==} + engines: {node: '>=12'} + cpu: [riscv64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-s390x@0.19.12: + resolution: {integrity: sha512-+Pil1Nv3Umes4m3AZKqA2anfhJiVmNCYkPchwFJNEJN5QxmTs1uzyy4TvmDrCRNT2ApwSari7ZIgrPeUx4UZDg==} + engines: {node: '>=12'} + cpu: [s390x] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/linux-x64@0.19.12: + resolution: {integrity: sha512-B71g1QpxfwBvNrfyJdVDexenDIt1CiDN1TIXLbhOw0KhJzE78KIFGX6OJ9MrtC0oOqMWf+0xop4qEU8JrJTwCg==} + engines: {node: '>=12'} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@esbuild/netbsd-x64@0.19.12: + resolution: {integrity: sha512-3ltjQ7n1owJgFbuC61Oj++XhtzmymoCihNFgT84UAmJnxJfm4sYCiSLTXZtE00VWYpPMYc+ZQmB6xbSdVh0JWA==} + engines: {node: '>=12'} + cpu: [x64] + os: [netbsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/openbsd-x64@0.19.12: + resolution: {integrity: sha512-RbrfTB9SWsr0kWmb9srfF+L933uMDdu9BIzdA7os2t0TXhCRjrQyCeOt6wVxr79CKD4c+p+YhCj31HBkYcXebw==} + engines: {node: '>=12'} + cpu: [x64] + os: [openbsd] + requiresBuild: true + dev: true + optional: true + + /@esbuild/sunos-x64@0.19.12: + resolution: {integrity: sha512-HKjJwRrW8uWtCQnQOz9qcU3mUZhTUQvi56Q8DPTLLB+DawoiQdjsYq+j+D3s9I8VFtDr+F9CjgXKKC4ss89IeA==} + engines: {node: '>=12'} + cpu: [x64] + os: [sunos] + requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-arm64@0.19.12: + resolution: {integrity: sha512-URgtR1dJnmGvX864pn1B2YUYNzjmXkuJOIqG2HdU62MVS4EHpU2946OZoTMnRUHklGtJdJZ33QfzdjGACXhn1A==} + engines: {node: '>=12'} + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-ia32@0.19.12: + resolution: {integrity: sha512-+ZOE6pUkMOJfmxmBZElNOx72NKpIa/HFOMGzu8fqzQJ5kgf6aTGrcJaFsNiVMH4JKpMipyK+7k0n2UXN7a8YKQ==} + engines: {node: '>=12'} + cpu: [ia32] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@esbuild/win32-x64@0.19.12: + resolution: {integrity: sha512-T1QyPSDCyMXaO3pzBkF96E8xMkiRYbUEZADd29SyPGabqxMViNoii+NcK7eWJAEoU6RZyEm5lVSIjTmcdoB9HA==} + engines: {node: '>=12'} + cpu: [x64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@eslint-community/eslint-utils@4.4.0(eslint@8.56.0): + resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 + dependencies: + eslint: 8.56.0 + eslint-visitor-keys: 3.4.3 + dev: true + + /@eslint-community/regexpp@4.10.0: + resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + dev: true + + /@eslint-types/jsdoc@46.8.2-1: + resolution: {integrity: sha512-FwD7V0xX0jyaqj8Ul5ZY+TAAPohDfVqtbuXJNHb+OIv1aTIqZi5+Zn3F2UwQ5O3BnQd2mTduyK0+HjGx3/AMFg==} + dev: true + + /@eslint-types/typescript-eslint@6.18.1: + resolution: {integrity: sha512-sROyc1rWhtvSdszkR3VAv2fioXIyKNFFRbIgoiije2FA+iNn4FEDhP2+kvbq8wPda2adcrNhSZyWSEFsef+lbg==} + dev: true + + /@eslint-types/unicorn@50.0.1: + resolution: {integrity: sha512-nuJuipTNcg9f+oxZ+3QZw4tuDLmir4RJOPfM/oujgToiy1s+tePDZhwg5jUGc3q8OzTtPbVpsFSYX7QApjO3EA==} + dev: true + + /@eslint/eslintrc@2.1.4: + resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + ajv: 6.12.6 + debug: 4.3.4 + espree: 9.6.1 + globals: 13.24.0 + ignore: 5.3.0 + import-fresh: 3.3.0 + js-yaml: 4.1.0 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + dev: true + + /@eslint/js@8.56.0: + resolution: {integrity: sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dev: true + + /@humanwhocodes/config-array@0.11.14: + resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==} + engines: {node: '>=10.10.0'} + dependencies: + '@humanwhocodes/object-schema': 2.0.2 + debug: 4.3.4 + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@humanwhocodes/module-importer@1.0.1: + resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==} + engines: {node: '>=12.22'} + dev: true + + /@humanwhocodes/object-schema@2.0.2: + resolution: {integrity: sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw==} + dev: true + + /@iconify/tools@4.0.0: + resolution: {integrity: sha512-/NMAuWm9njrEpTfxIgTapaHW2JdgcEAOQgpWMHPD4/gOgmK7qrVjPkGj9pPcoBjEDotISsffv51F6nj4QvaJ6Q==} + dependencies: + '@iconify/types': 2.0.0 + '@iconify/utils': 2.1.16 + '@types/tar': 6.1.10 + axios: 1.6.5 + cheerio: 1.0.0-rc.12 + extract-zip: 2.0.1 + local-pkg: 0.5.0 + pathe: 1.1.2 + svgo: 3.2.0 + tar: 6.2.0 + transitivePeerDependencies: + - debug + - supports-color + dev: true + + /@iconify/types@2.0.0: + resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==} + dev: true + + /@iconify/utils@2.1.16: + resolution: {integrity: sha512-2q2POA+bg1iKFMT3ZAeS8+Lo2PcbTXH2QKdQ9XwxSyCUg+XHA0ZW7mBoW8v0cU/SgitnM2OheEouPw7mRwY+Bg==} + dependencies: + '@antfu/install-pkg': 0.1.1 + '@antfu/utils': 0.7.7 + '@iconify/types': 2.0.0 + debug: 4.3.4 + kolorist: 1.8.0 + local-pkg: 0.4.3 + transitivePeerDependencies: + - supports-color + dev: true + + /@isaacs/cliui@8.0.2: + resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} + engines: {node: '>=12'} + 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 + dev: true + + /@jridgewell/gen-mapping@0.3.3: + resolution: {integrity: sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==} + engines: {node: '>=6.0.0'} + dependencies: + '@jridgewell/set-array': 1.1.2 + '@jridgewell/sourcemap-codec': 1.4.15 + '@jridgewell/trace-mapping': 0.3.22 + dev: true + + /@jridgewell/resolve-uri@3.1.1: + resolution: {integrity: sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==} + engines: {node: '>=6.0.0'} + dev: true + + /@jridgewell/set-array@1.1.2: + resolution: {integrity: sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==} + engines: {node: '>=6.0.0'} + dev: true + + /@jridgewell/sourcemap-codec@1.4.15: + resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==} + dev: true + + /@jridgewell/trace-mapping@0.3.22: + resolution: {integrity: sha512-Wf963MzWtA2sjrNt+g18IAln9lKnlRp+K2eH4jjIoF1wYeq3aMREpG09xhlhdzS0EjwU7qmUJYangWa+151vZw==} + dependencies: + '@jridgewell/resolve-uri': 3.1.1 + '@jridgewell/sourcemap-codec': 1.4.15 + dev: true + + /@jsdevtools/ez-spawn@3.0.4: + resolution: {integrity: sha512-f5DRIOZf7wxogefH03RjMPMdBF7ADTWUMoOs9kaJo06EfwF+aFhMZMDZxHg/Xe12hptN9xoZjGso2fdjapBRIA==} + engines: {node: '>=10'} + dependencies: + call-me-maybe: 1.0.2 + cross-spawn: 7.0.3 + string-argv: 0.3.2 + type-detect: 4.0.8 + dev: true + + /@nodelib/fs.scandir@2.1.5: + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} + engines: {node: '>= 8'} + dependencies: + '@nodelib/fs.stat': 2.0.5 + run-parallel: 1.2.0 + dev: true + + /@nodelib/fs.stat@2.0.5: + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} + engines: {node: '>= 8'} + dev: true + + /@nodelib/fs.walk@1.2.8: + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} + engines: {node: '>= 8'} + dependencies: + '@nodelib/fs.scandir': 2.1.5 + fastq: 1.16.0 + dev: true + + /@pkgjs/parseargs@0.11.0: + resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} + engines: {node: '>=14'} + requiresBuild: true + dev: true + optional: true + + /@puppeteer/browsers@1.9.1: + resolution: {integrity: sha512-PuvK6xZzGhKPvlx3fpfdM2kYY3P/hB1URtK8wA7XUJ6prn6pp22zvJHu48th0SGcHL9SutbPHrFuQgfXTFobWA==} + engines: {node: '>=16.3.0'} + hasBin: true + dependencies: + debug: 4.3.4 + extract-zip: 2.0.1 + progress: 2.0.3 + proxy-agent: 6.3.1 + tar-fs: 3.0.4 + unbzip2-stream: 1.4.3 + yargs: 17.7.2 + transitivePeerDependencies: + - supports-color + dev: true + + /@rollup/rollup-android-arm-eabi@4.9.6: + resolution: {integrity: sha512-MVNXSSYN6QXOulbHpLMKYi60ppyO13W9my1qogeiAqtjb2yR4LSmfU2+POvDkLzhjYLXz9Rf9+9a3zFHW1Lecg==} + cpu: [arm] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-android-arm64@4.9.6: + resolution: {integrity: sha512-T14aNLpqJ5wzKNf5jEDpv5zgyIqcpn1MlwCrUXLrwoADr2RkWA0vOWP4XxbO9aiO3dvMCQICZdKeDrFl7UMClw==} + cpu: [arm64] + os: [android] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-darwin-arm64@4.9.6: + resolution: {integrity: sha512-CqNNAyhRkTbo8VVZ5R85X73H3R5NX9ONnKbXuHisGWC0qRbTTxnF1U4V9NafzJbgGM0sHZpdO83pLPzq8uOZFw==} + cpu: [arm64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-darwin-x64@4.9.6: + resolution: {integrity: sha512-zRDtdJuRvA1dc9Mp6BWYqAsU5oeLixdfUvkTHuiYOHwqYuQ4YgSmi6+/lPvSsqc/I0Omw3DdICx4Tfacdzmhog==} + cpu: [x64] + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-linux-arm-gnueabihf@4.9.6: + resolution: {integrity: sha512-oNk8YXDDnNyG4qlNb6is1ojTOGL/tRhbbKeE/YuccItzerEZT68Z9gHrY3ROh7axDc974+zYAPxK5SH0j/G+QQ==} + cpu: [arm] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-linux-arm64-gnu@4.9.6: + resolution: {integrity: sha512-Z3O60yxPtuCYobrtzjo0wlmvDdx2qZfeAWTyfOjEDqd08kthDKexLpV97KfAeUXPosENKd8uyJMRDfFMxcYkDQ==} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-linux-arm64-musl@4.9.6: + resolution: {integrity: sha512-gpiG0qQJNdYEVad+1iAsGAbgAnZ8j07FapmnIAQgODKcOTjLEWM9sRb+MbQyVsYCnA0Im6M6QIq6ax7liws6eQ==} + cpu: [arm64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-linux-riscv64-gnu@4.9.6: + resolution: {integrity: sha512-+uCOcvVmFUYvVDr27aiyun9WgZk0tXe7ThuzoUTAukZJOwS5MrGbmSlNOhx1j80GdpqbOty05XqSl5w4dQvcOA==} + cpu: [riscv64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-linux-x64-gnu@4.9.6: + resolution: {integrity: sha512-HUNqM32dGzfBKuaDUBqFB7tP6VMN74eLZ33Q9Y1TBqRDn+qDonkAUyKWwF9BR9unV7QUzffLnz9GrnKvMqC/fw==} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-linux-x64-musl@4.9.6: + resolution: {integrity: sha512-ch7M+9Tr5R4FK40FHQk8VnML0Szi2KRujUgHXd/HjuH9ifH72GUmw6lStZBo3c3GB82vHa0ZoUfjfcM7JiiMrQ==} + cpu: [x64] + os: [linux] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-win32-arm64-msvc@4.9.6: + resolution: {integrity: sha512-VD6qnR99dhmTQ1mJhIzXsRcTBvTjbfbGGwKAHcu+52cVl15AC/kplkhxzW/uT0Xl62Y/meBKDZvoJSJN+vTeGA==} + cpu: [arm64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-win32-ia32-msvc@4.9.6: + resolution: {integrity: sha512-J9AFDq/xiRI58eR2NIDfyVmTYGyIZmRcvcAoJ48oDld/NTR8wyiPUu2X/v1navJ+N/FGg68LEbX3Ejd6l8B7MQ==} + cpu: [ia32] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@rollup/rollup-win32-x64-msvc@4.9.6: + resolution: {integrity: sha512-jqzNLhNDvIZOrt69Ce4UjGRpXJBzhUBzawMwnaDAwyHriki3XollsewxWzOzz+4yOFDkuJHtTsZFwMxhYJWmLQ==} + cpu: [x64] + os: [win32] + requiresBuild: true + dev: true + optional: true + + /@stylistic/eslint-plugin-js@1.5.4(eslint@8.56.0): + resolution: {integrity: sha512-3ctWb3NvJNV1MsrZN91cYp2EGInLPSoZKphXIbIRx/zjZxKwLDr9z4LMOWtqjq14li/OgqUUcMq5pj8fgbLoTw==} + engines: {node: ^16.0.0 || >=18.0.0} + peerDependencies: + eslint: '>=8.40.0' + dependencies: + acorn: 8.11.3 + escape-string-regexp: 4.0.0 + eslint: 8.56.0 + eslint-visitor-keys: 3.4.3 + espree: 9.6.1 + dev: true + + /@stylistic/eslint-plugin-jsx@1.5.4(eslint@8.56.0): + resolution: {integrity: sha512-JUfrpCkeBCqt1IZ4QsP4WgxGza4PhK4LPbc0VnCjHKygl+rgqoDAovqOuzFJ49wJ4Ix3r6OIHFuwiBGswZEVvg==} + engines: {node: ^16.0.0 || >=18.0.0} + peerDependencies: + eslint: '>=8.40.0' + dependencies: + '@stylistic/eslint-plugin-js': 1.5.4(eslint@8.56.0) + eslint: 8.56.0 + estraverse: 5.3.0 + dev: true + + /@stylistic/eslint-plugin-plus@1.5.4(eslint@8.56.0)(typescript@5.3.3): + resolution: {integrity: sha512-dI0Cs5vYX/0uMhQDY+NK0cKQ0Pe9B6jWYxd0Ndud+mNloDaVLrsmJocK4zn+YfhGEDs1E4Nk5uAPZEumIpDuSg==} + peerDependencies: + eslint: '*' + dependencies: + '@typescript-eslint/utils': 6.19.1(eslint@8.56.0)(typescript@5.3.3) + eslint: 8.56.0 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@stylistic/eslint-plugin-ts@1.5.4(eslint@8.56.0)(typescript@5.3.3): + resolution: {integrity: sha512-NZDFVIlVNjuPvhT+0Cidm5IS3emtx338xbJTqs2xfOVRDGTpYwRHhNVEGa1rFOpYHmv0sAj6+OXbMDn7ul0K/g==} + engines: {node: ^16.0.0 || >=18.0.0} + peerDependencies: + eslint: '>=8.40.0' + dependencies: + '@stylistic/eslint-plugin-js': 1.5.4(eslint@8.56.0) + '@typescript-eslint/utils': 6.19.1(eslint@8.56.0)(typescript@5.3.3) + eslint: 8.56.0 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@stylistic/eslint-plugin@1.5.4(eslint@8.56.0)(typescript@5.3.3): + resolution: {integrity: sha512-zWPXr+O67GC9KDAFkbL1U9UVqE6Iv69YMKhkIECCmE0GvClUJwdfsimm4XebEDondV7kfjMrTDZaYfrI5aS0Jg==} + engines: {node: ^16.0.0 || >=18.0.0} + peerDependencies: + eslint: '>=8.40.0' + dependencies: + '@stylistic/eslint-plugin-js': 1.5.4(eslint@8.56.0) + '@stylistic/eslint-plugin-jsx': 1.5.4(eslint@8.56.0) + '@stylistic/eslint-plugin-plus': 1.5.4(eslint@8.56.0)(typescript@5.3.3) + '@stylistic/eslint-plugin-ts': 1.5.4(eslint@8.56.0)(typescript@5.3.3) + eslint: 8.56.0 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@tootallnate/quickjs-emscripten@0.23.0: + resolution: {integrity: sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==} + dev: true + + /@trysound/sax@0.2.0: + resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} + engines: {node: '>=10.13.0'} + dev: true + + /@types/estree@1.0.5: + resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} + dev: true + + /@types/json-schema@7.0.15: + resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} + dev: true + + /@types/mdast@3.0.15: + resolution: {integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==} + dependencies: + '@types/unist': 2.0.10 + dev: true + + /@types/node@20.11.6: + resolution: {integrity: sha512-+EOokTnksGVgip2PbYbr3xnR7kZigh4LbybAfBAw5BpnQ+FqBYUsvCEjYd70IXKlbohQ64mzEYmMtlWUY8q//Q==} + dependencies: + undici-types: 5.26.5 + dev: true + + /@types/normalize-package-data@2.4.4: + resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} + dev: true + + /@types/semver@7.5.6: + resolution: {integrity: sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==} + dev: true + + /@types/tar@6.1.10: + resolution: {integrity: sha512-60ZO+W0tRKJ3ggdzJKp75xKVlNogKYMqGvr2bMH/+k3T0BagfYTnbmVDFMJB1BFttz6yRgP5MDGP27eh7brrqw==} + dependencies: + '@types/node': 20.11.6 + minipass: 4.2.8 + dev: true + + /@types/unist@2.0.10: + resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==} + dev: true + + /@types/vscode@1.85.0: + resolution: {integrity: sha512-CF/RBon/GXwdfmnjZj0WTUMZN5H6YITOfBCP4iEZlOtVQXuzw6t7Le7+cR+7JzdMrnlm7Mfp49Oj2TuSXIWo3g==} + dev: true + + /@types/yauzl@2.10.3: + resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==} + requiresBuild: true + dependencies: + '@types/node': 20.11.6 + dev: true + optional: true + + /@typescript-eslint/eslint-plugin@6.19.1(@typescript-eslint/parser@6.19.1)(eslint@8.56.0)(typescript@5.3.3): + resolution: {integrity: sha512-roQScUGFruWod9CEyoV5KlCYrubC/fvG8/1zXuT0WTcxX87GnMMmnksMwSg99lo1xiKrBzw2icsJPMAw1OtKxg==} + engines: {node: ^16.0.0 || >=18.0.0} + peerDependencies: + '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha + eslint: ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@eslint-community/regexpp': 4.10.0 + '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.3.3) + '@typescript-eslint/scope-manager': 6.19.1 + '@typescript-eslint/type-utils': 6.19.1(eslint@8.56.0)(typescript@5.3.3) + '@typescript-eslint/utils': 6.19.1(eslint@8.56.0)(typescript@5.3.3) + '@typescript-eslint/visitor-keys': 6.19.1 + debug: 4.3.4 + eslint: 8.56.0 + graphemer: 1.4.0 + ignore: 5.3.0 + natural-compare: 1.4.0 + semver: 7.5.4 + ts-api-utils: 1.0.3(typescript@5.3.3) + typescript: 5.3.3 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/parser@6.19.1(eslint@8.56.0)(typescript@5.3.3): + resolution: {integrity: sha512-WEfX22ziAh6pRE9jnbkkLGp/4RhTpffr2ZK5bJ18M8mIfA8A+k97U9ZyaXCEJRlmMHh7R9MJZWXp/r73DzINVQ==} + engines: {node: ^16.0.0 || >=18.0.0} + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/scope-manager': 6.19.1 + '@typescript-eslint/types': 6.19.1 + '@typescript-eslint/typescript-estree': 6.19.1(typescript@5.3.3) + '@typescript-eslint/visitor-keys': 6.19.1 + debug: 4.3.4 + eslint: 8.56.0 + typescript: 5.3.3 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/scope-manager@6.19.1: + resolution: {integrity: sha512-4CdXYjKf6/6aKNMSly/BP4iCSOpvMmqtDzRtqFyyAae3z5kkqEjKndR5vDHL8rSuMIIWP8u4Mw4VxLyxZW6D5w==} + engines: {node: ^16.0.0 || >=18.0.0} + dependencies: + '@typescript-eslint/types': 6.19.1 + '@typescript-eslint/visitor-keys': 6.19.1 + dev: true + + /@typescript-eslint/type-utils@6.19.1(eslint@8.56.0)(typescript@5.3.3): + resolution: {integrity: sha512-0vdyld3ecfxJuddDjACUvlAeYNrHP/pDeQk2pWBR2ESeEzQhg52DF53AbI9QCBkYE23lgkhLCZNkHn2hEXXYIg==} + engines: {node: ^16.0.0 || >=18.0.0} + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/typescript-estree': 6.19.1(typescript@5.3.3) + '@typescript-eslint/utils': 6.19.1(eslint@8.56.0)(typescript@5.3.3) + debug: 4.3.4 + eslint: 8.56.0 + ts-api-utils: 1.0.3(typescript@5.3.3) + typescript: 5.3.3 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/types@6.19.1: + resolution: {integrity: sha512-6+bk6FEtBhvfYvpHsDgAL3uo4BfvnTnoge5LrrCj2eJN8g3IJdLTD4B/jK3Q6vo4Ql/Hoip9I8aB6fF+6RfDqg==} + engines: {node: ^16.0.0 || >=18.0.0} + dev: true + + /@typescript-eslint/typescript-estree@6.19.1(typescript@5.3.3): + resolution: {integrity: sha512-aFdAxuhzBFRWhy+H20nYu19+Km+gFfwNO4TEqyszkMcgBDYQjmPJ61erHxuT2ESJXhlhrO7I5EFIlZ+qGR8oVA==} + engines: {node: ^16.0.0 || >=18.0.0} + peerDependencies: + typescript: '*' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + '@typescript-eslint/types': 6.19.1 + '@typescript-eslint/visitor-keys': 6.19.1 + debug: 4.3.4 + globby: 11.1.0 + is-glob: 4.0.3 + minimatch: 9.0.3 + semver: 7.5.4 + ts-api-utils: 1.0.3(typescript@5.3.3) + typescript: 5.3.3 + transitivePeerDependencies: + - supports-color + dev: true + + /@typescript-eslint/utils@6.19.1(eslint@8.56.0)(typescript@5.3.3): + resolution: {integrity: sha512-JvjfEZuP5WoMqwh9SPAPDSHSg9FBHHGhjPugSRxu5jMfjvBpq5/sGTD+9M9aQ5sh6iJ8AY/Kk/oUYVEMAPwi7w==} + engines: {node: ^16.0.0 || >=18.0.0} + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) + '@types/json-schema': 7.0.15 + '@types/semver': 7.5.6 + '@typescript-eslint/scope-manager': 6.19.1 + '@typescript-eslint/types': 6.19.1 + '@typescript-eslint/typescript-estree': 6.19.1(typescript@5.3.3) + eslint: 8.56.0 + semver: 7.5.4 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /@typescript-eslint/visitor-keys@6.19.1: + resolution: {integrity: sha512-gkdtIO+xSO/SmI0W68DBg4u1KElmIUo3vXzgHyGPs6cxgB0sa3TlptRAAE0hUY1hM6FcDKEv7aIwiTGm76cXfQ==} + engines: {node: ^16.0.0 || >=18.0.0} + dependencies: + '@typescript-eslint/types': 6.19.1 + eslint-visitor-keys: 3.4.3 + dev: true + + /@ungap/structured-clone@1.2.0: + resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} + dev: true + + /@vscode/vsce@2.22.0: + resolution: {integrity: sha512-8df4uJiM3C6GZ2Sx/KilSKVxsetrTBBIUb3c0W4B1EWHcddioVs5mkyDKtMNP0khP/xBILVSzlXxhV+nm2rC9A==} + engines: {node: '>= 14'} + hasBin: true + dependencies: + azure-devops-node-api: 11.2.0 + chalk: 2.4.2 + cheerio: 1.0.0-rc.12 + commander: 6.2.1 + glob: 7.2.3 + hosted-git-info: 4.1.0 + jsonc-parser: 3.2.1 + leven: 3.1.0 + markdown-it: 12.3.2 + mime: 1.6.0 + minimatch: 3.1.2 + parse-semver: 1.1.1 + read: 1.0.7 + semver: 7.5.4 + tmp: 0.2.1 + typed-rest-client: 1.8.11 + url-join: 4.0.1 + xml2js: 0.5.0 + yauzl: 2.10.0 + yazl: 2.5.1 + optionalDependencies: + keytar: 7.9.0 + dev: true + + /@vue/compiler-core@3.4.15: + resolution: {integrity: sha512-XcJQVOaxTKCnth1vCxEChteGuwG6wqnUHxAm1DO3gCz0+uXKaJNx8/digSz4dLALCy8n2lKq24jSUs8segoqIw==} + dependencies: + '@babel/parser': 7.23.6 + '@vue/shared': 3.4.15 + entities: 4.5.0 + estree-walker: 2.0.2 + source-map-js: 1.0.2 + dev: true + + /@vue/compiler-dom@3.4.15: + resolution: {integrity: sha512-wox0aasVV74zoXyblarOM3AZQz/Z+OunYcIHe1OsGclCHt8RsRm04DObjefaI82u6XDzv+qGWZ24tIsRAIi5MQ==} + dependencies: + '@vue/compiler-core': 3.4.15 + '@vue/shared': 3.4.15 + dev: true + + /@vue/compiler-sfc@3.4.15: + resolution: {integrity: sha512-LCn5M6QpkpFsh3GQvs2mJUOAlBQcCco8D60Bcqmf3O3w5a+KWS5GvYbrrJBkgvL1BDnTp+e8q0lXCLgHhKguBA==} + dependencies: + '@babel/parser': 7.23.6 + '@vue/compiler-core': 3.4.15 + '@vue/compiler-dom': 3.4.15 + '@vue/compiler-ssr': 3.4.15 + '@vue/shared': 3.4.15 + estree-walker: 2.0.2 + magic-string: 0.30.5 + postcss: 8.4.33 + source-map-js: 1.0.2 + dev: true + + /@vue/compiler-ssr@3.4.15: + resolution: {integrity: sha512-1jdeQyiGznr8gjFDadVmOJqZiLNSsMa5ZgqavkPZ8O2wjHv0tVuAEsw5hTdUoUW4232vpBbL/wJhzVW/JwY1Uw==} + dependencies: + '@vue/compiler-dom': 3.4.15 + '@vue/shared': 3.4.15 + dev: true + + /@vue/shared@3.4.15: + resolution: {integrity: sha512-KzfPTxVaWfB+eGcGdbSf4CWdaXcGDqckoeXUh7SB3fZdEtzPCK2Vq9B/lRRL3yutax/LWITz+SwvgyOxz5V75g==} + dev: true + + /acorn-jsx@5.3.2(acorn@8.11.3): + resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} + peerDependencies: + acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + acorn: 8.11.3 + dev: true + + /acorn@8.11.3: + resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==} + engines: {node: '>=0.4.0'} + hasBin: true + dev: true + + /agent-base@7.1.0: + resolution: {integrity: sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==} + engines: {node: '>= 14'} + dependencies: + debug: 4.3.4 + transitivePeerDependencies: + - supports-color + dev: true + + /ajv@6.12.6: + resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==} + 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 + dev: true + + /ansi-regex@5.0.1: + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} + engines: {node: '>=8'} + dev: true + + /ansi-regex@6.0.1: + resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} + engines: {node: '>=12'} + dev: true + + /ansi-styles@3.2.1: + resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==} + engines: {node: '>=4'} + dependencies: + color-convert: 1.9.3 + dev: true + + /ansi-styles@4.3.0: + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} + engines: {node: '>=8'} + dependencies: + color-convert: 2.0.1 + dev: true + + /ansi-styles@6.2.1: + resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} + engines: {node: '>=12'} + dev: true + + /any-promise@1.3.0: + resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==} + dev: true + + /anymatch@3.1.3: + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} + engines: {node: '>= 8'} + dependencies: + normalize-path: 3.0.0 + picomatch: 2.3.1 + dev: true + + /are-docs-informative@0.0.2: + resolution: {integrity: sha512-ixiS0nLNNG5jNQzgZJNoUpBKdo9yTYZMGJ+QgT2jmjR7G7+QHRCc4v6LQ3NgE7EBJq+o0ams3waJwkrlBom8Ig==} + engines: {node: '>=14'} + dev: true + + /argparse@2.0.1: + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} + dev: true + + /array-union@2.1.0: + resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==} + engines: {node: '>=8'} + dev: true + + /ast-types@0.13.4: + resolution: {integrity: sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==} + engines: {node: '>=4'} + dependencies: + tslib: 2.6.2 + dev: true + + /asynckit@0.4.0: + resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + dev: true + + /axios@1.6.5: + resolution: {integrity: sha512-Ii012v05KEVuUoFWmMW/UQv9aRIc3ZwkWDcM+h5Il8izZCtRVpDUfwpoFf7eOtajT3QiGR4yDUx7lPqHJULgbg==} + dependencies: + follow-redirects: 1.15.5 + form-data: 4.0.0 + proxy-from-env: 1.1.0 + transitivePeerDependencies: + - debug + dev: true + + /azure-devops-node-api@11.2.0: + resolution: {integrity: sha512-XdiGPhrpaT5J8wdERRKs5g8E0Zy1pvOYTli7z9E8nmOn3YGp4FhtjhrOyFmX/8veWCwdI69mCHKJw6l+4J/bHA==} + dependencies: + tunnel: 0.0.6 + typed-rest-client: 1.8.11 + dev: true + + /b4a@1.6.4: + resolution: {integrity: sha512-fpWrvyVHEKyeEvbKZTVOeZF3VSKKWtJxFIxX/jaVPf+cLbGUSitjb49pHLqPV2BUNNZ0LcoeEGfE/YCpyDYHIw==} + dev: true + + /balanced-match@1.0.2: + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + dev: true + + /base64-js@1.5.1: + resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} + dev: true + + /basic-ftp@5.0.4: + resolution: {integrity: sha512-8PzkB0arJFV4jJWSGOYR+OEic6aeKMu/osRhBULN6RY0ykby6LKhbmuQ5ublvaas5BOwboah5D87nrHyuh8PPA==} + engines: {node: '>=10.0.0'} + dev: true + + /big-integer@1.6.52: + resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==} + engines: {node: '>=0.6'} + dev: true + + /binary-extensions@2.2.0: + resolution: {integrity: sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==} + engines: {node: '>=8'} + dev: true + + /bl@4.1.0: + resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==} + requiresBuild: true + dependencies: + buffer: 5.7.1 + inherits: 2.0.4 + readable-stream: 3.6.2 + dev: true + optional: true + + /boolbase@1.0.0: + resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==} + dev: true + + /bplist-parser@0.2.0: + resolution: {integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==} + engines: {node: '>= 5.10.0'} + dependencies: + big-integer: 1.6.52 + dev: true + + /brace-expansion@1.1.11: + resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==} + dependencies: + balanced-match: 1.0.2 + concat-map: 0.0.1 + dev: true + + /brace-expansion@2.0.1: + resolution: {integrity: sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==} + dependencies: + balanced-match: 1.0.2 + dev: true + + /braces@3.0.2: + resolution: {integrity: sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==} + engines: {node: '>=8'} + dependencies: + fill-range: 7.0.1 + dev: true + + /browserslist@4.22.2: + resolution: {integrity: sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==} + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} + hasBin: true + dependencies: + caniuse-lite: 1.0.30001579 + electron-to-chromium: 1.4.645 + node-releases: 2.0.14 + update-browserslist-db: 1.0.13(browserslist@4.22.2) + dev: true + + /buffer-crc32@0.2.13: + resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==} + dev: true + + /buffer@5.7.1: + resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} + dependencies: + base64-js: 1.5.1 + ieee754: 1.2.1 + dev: true + + /builtin-modules@3.3.0: + resolution: {integrity: sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==} + engines: {node: '>=6'} + dev: true + + /builtins@5.0.1: + resolution: {integrity: sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==} + dependencies: + semver: 7.5.4 + dev: true + + /bumpp@9.3.0: + resolution: {integrity: sha512-P46VikoEZadYCqx7mbClKlaJnOyvc+JfRJPRf1YwlOjwqeYmutgFe1w9hvfXe819VhpU0N0TNXtxyVAUlAgaNA==} + engines: {node: '>=10'} + hasBin: true + dependencies: + '@jsdevtools/ez-spawn': 3.0.4 + c12: 1.6.1 + cac: 6.7.14 + fast-glob: 3.3.2 + js-yaml: 4.1.0 + prompts: 2.4.2 + semver: 7.5.4 + dev: true + + /bundle-name@3.0.0: + resolution: {integrity: sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==} + engines: {node: '>=12'} + dependencies: + run-applescript: 5.0.0 + dev: true + + /bundle-require@4.0.2(esbuild@0.19.12): + resolution: {integrity: sha512-jwzPOChofl67PSTW2SGubV9HBQAhhR2i6nskiOThauo9dzwDUgOWQScFVaJkjEfYX+UXiD+LEx8EblQMc2wIag==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + peerDependencies: + esbuild: '>=0.17' + dependencies: + esbuild: 0.19.12 + load-tsconfig: 0.2.5 + dev: true + + /c12@1.6.1: + resolution: {integrity: sha512-fAZOi3INDvIbmjuwAVVggusyRTxwNdTAnwLay8IsXwhFzDwPPGzFxzrx6L55CPFGPulUSZI0eyFUvRDXveoE3g==} + dependencies: + chokidar: 3.5.3 + defu: 6.1.4 + dotenv: 16.4.1 + giget: 1.2.1 + jiti: 1.21.0 + mlly: 1.5.0 + ohash: 1.1.3 + pathe: 1.1.2 + perfect-debounce: 1.0.0 + pkg-types: 1.0.3 + rc9: 2.1.1 + dev: true + + /cac@6.7.14: + resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} + engines: {node: '>=8'} + dev: true + + /call-bind@1.0.5: + resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==} + dependencies: + function-bind: 1.1.2 + get-intrinsic: 1.2.2 + set-function-length: 1.2.0 + dev: true + + /call-me-maybe@1.0.2: + resolution: {integrity: sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==} + dev: true + + /callsites@3.1.0: + resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==} + engines: {node: '>=6'} + dev: true + + /caniuse-lite@1.0.30001579: + resolution: {integrity: sha512-u5AUVkixruKHJjw/pj9wISlcMpgFWzSrczLZbrqBSxukQixmg0SJ5sZTpvaFvxU0HoQKd4yoyAogyrAz9pzJnA==} + dev: true + + /chalk@2.4.2: + resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} + engines: {node: '>=4'} + dependencies: + ansi-styles: 3.2.1 + escape-string-regexp: 1.0.5 + supports-color: 5.5.0 + dev: true + + /chalk@4.1.2: + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} + engines: {node: '>=10'} + dependencies: + ansi-styles: 4.3.0 + supports-color: 7.2.0 + dev: true + + /changelogen@0.5.5: + resolution: {integrity: sha512-IzgToIJ/R9NhVKmL+PW33ozYkv53bXvufDNUSH3GTKXq1iCHGgkbgbtqEWbo8tnWNnt7nPDpjL8PwSG2iS8RVw==} + hasBin: true + dependencies: + c12: 1.6.1 + colorette: 2.0.20 + consola: 3.2.3 + convert-gitmoji: 0.1.3 + execa: 8.0.1 + mri: 1.2.0 + node-fetch-native: 1.6.1 + ofetch: 1.3.3 + open: 9.1.0 + pathe: 1.1.2 + pkg-types: 1.0.3 + scule: 1.2.0 + semver: 7.5.4 + std-env: 3.7.0 + yaml: 2.3.4 + dev: true + + /character-entities-legacy@1.1.4: + resolution: {integrity: sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA==} + dev: true + + /character-entities@1.2.4: + resolution: {integrity: sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw==} + dev: true + + /character-reference-invalid@1.1.4: + resolution: {integrity: sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg==} + dev: true + + /cheerio-select@2.1.0: + resolution: {integrity: sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g==} + dependencies: + boolbase: 1.0.0 + css-select: 5.1.0 + css-what: 6.1.0 + domelementtype: 2.3.0 + domhandler: 5.0.3 + domutils: 3.1.0 + dev: true + + /cheerio@1.0.0-rc.12: + resolution: {integrity: sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q==} + engines: {node: '>= 6'} + dependencies: + cheerio-select: 2.1.0 + dom-serializer: 2.0.0 + domhandler: 5.0.3 + domutils: 3.1.0 + htmlparser2: 8.0.2 + parse5: 7.1.2 + parse5-htmlparser2-tree-adapter: 7.0.0 + dev: true + + /chokidar@3.5.3: + resolution: {integrity: sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==} + engines: {node: '>= 8.10.0'} + dependencies: + anymatch: 3.1.3 + braces: 3.0.2 + glob-parent: 5.1.2 + is-binary-path: 2.1.0 + is-glob: 4.0.3 + normalize-path: 3.0.0 + readdirp: 3.6.0 + optionalDependencies: + fsevents: 2.3.3 + dev: true + + /chownr@1.1.4: + resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} + requiresBuild: true + dev: true + optional: true + + /chownr@2.0.0: + resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} + engines: {node: '>=10'} + dev: true + + /chromium-bidi@0.5.4(devtools-protocol@0.0.1232444): + resolution: {integrity: sha512-p9CdiHl0xNh4P7oVa44zXgJJw+pvnHXFDB+tVdo25xaPLgQDVf2kQO+TDxD2fp2Evqi7vs/vGRINMzl1qJrWiw==} + peerDependencies: + devtools-protocol: '*' + dependencies: + devtools-protocol: 0.0.1232444 + mitt: 3.0.1 + urlpattern-polyfill: 9.0.0 + dev: true + + /ci-info@4.0.0: + resolution: {integrity: sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==} + engines: {node: '>=8'} + dev: true + + /citty@0.1.5: + resolution: {integrity: sha512-AS7n5NSc0OQVMV9v6wt3ByujNIrne0/cTjiC2MYqhvao57VNfiuVksTSr2p17nVOhEr2KtqiAkGwHcgMC/qUuQ==} + dependencies: + consola: 3.2.3 + dev: true + + /clean-regexp@1.0.0: + resolution: {integrity: sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw==} + engines: {node: '>=4'} + dependencies: + escape-string-regexp: 1.0.5 + dev: true + + /cliui@8.0.1: + resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} + engines: {node: '>=12'} + dependencies: + string-width: 4.2.3 + strip-ansi: 6.0.1 + wrap-ansi: 7.0.0 + dev: true + + /color-convert@1.9.3: + resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==} + dependencies: + color-name: 1.1.3 + dev: true + + /color-convert@2.0.1: + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} + engines: {node: '>=7.0.0'} + dependencies: + color-name: 1.1.4 + dev: true + + /color-name@1.1.3: + resolution: {integrity: sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==} + dev: true + + /color-name@1.1.4: + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} + dev: true + + /colorette@2.0.20: + resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} + dev: true + + /combined-stream@1.0.8: + resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} + engines: {node: '>= 0.8'} + dependencies: + delayed-stream: 1.0.0 + dev: true + + /commander@4.1.1: + resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==} + engines: {node: '>= 6'} + dev: true + + /commander@6.2.1: + resolution: {integrity: sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==} + engines: {node: '>= 6'} + dev: true + + /commander@7.2.0: + resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} + engines: {node: '>= 10'} + dev: true + + /comment-parser@1.4.1: + resolution: {integrity: sha512-buhp5kePrmda3vhc5B9t7pUQXAb2Tnd0qgpkIhPhkHXxJpiPJ11H0ZEU0oBpJ2QztSbzG/ZxMj/CHsYJqRHmyg==} + engines: {node: '>= 12.0.0'} + dev: true + + /concat-map@0.0.1: + resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} + dev: true + + /consola@3.2.3: + resolution: {integrity: sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==} + engines: {node: ^14.18.0 || >=16.10.0} + dev: true + + /convert-gitmoji@0.1.3: + resolution: {integrity: sha512-t5yxPyI8h8KPvRwrS/sRrfIpT2gJbmBAY0TFokyUBy3PM44RuFRpZwHdACz+GTSPLRLo3s4qsscOMLjHiXBwzw==} + dev: true + + /core-js-compat@3.35.1: + resolution: {integrity: sha512-sftHa5qUJY3rs9Zht1WEnmkvXputCyDBczPnr7QDgL8n3qrF3CMXY4VPSYtOLLiOUJcah2WNXREd48iOl6mQIw==} + dependencies: + browserslist: 4.22.2 + dev: true + + /cosmiconfig@9.0.0(typescript@5.3.3): + resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==} + engines: {node: '>=14'} + peerDependencies: + typescript: '>=4.9.5' + peerDependenciesMeta: + typescript: + optional: true + dependencies: + env-paths: 2.2.1 + import-fresh: 3.3.0 + js-yaml: 4.1.0 + parse-json: 5.2.0 + typescript: 5.3.3 + dev: true + + /cross-fetch@4.0.0: + resolution: {integrity: sha512-e4a5N8lVvuLgAWgnCrLr2PP0YyDOTHa9H/Rj54dirp61qXnNq46m82bRhNqIA5VccJtWBvPTFRV3TtvHUKPB1g==} + dependencies: + node-fetch: 2.7.0 + transitivePeerDependencies: + - encoding + dev: true + + /cross-spawn@7.0.3: + resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} + engines: {node: '>= 8'} + dependencies: + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 + dev: true + + /crypto-random-string@4.0.0: + resolution: {integrity: sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==} + engines: {node: '>=12'} + dependencies: + type-fest: 1.4.0 + dev: true + + /css-select@5.1.0: + resolution: {integrity: sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==} + dependencies: + boolbase: 1.0.0 + css-what: 6.1.0 + domhandler: 5.0.3 + domutils: 3.1.0 + nth-check: 2.1.1 + dev: true + + /css-tree@2.2.1: + resolution: {integrity: sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} + dependencies: + mdn-data: 2.0.28 + source-map-js: 1.0.2 + dev: true + + /css-tree@2.3.1: + resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} + dependencies: + mdn-data: 2.0.30 + source-map-js: 1.0.2 + dev: true + + /css-what@6.1.0: + resolution: {integrity: sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==} + engines: {node: '>= 6'} + dev: true + + /cssesc@3.0.0: + resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} + engines: {node: '>=4'} + hasBin: true + dev: true + + /csso@5.0.5: + resolution: {integrity: sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==} + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0, npm: '>=7.0.0'} + dependencies: + css-tree: 2.2.1 + dev: true + + /data-uri-to-buffer@6.0.1: + resolution: {integrity: sha512-MZd3VlchQkp8rdend6vrx7MmVDJzSNTBvghvKjirLkD+WTChA3KUf0jkE68Q4UyctNqI11zZO9/x2Yx+ub5Cvg==} + engines: {node: '>= 14'} + dev: true + + /debug@3.2.7: + resolution: {integrity: sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.3 + dev: true + + /debug@4.3.4: + resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==} + engines: {node: '>=6.0'} + peerDependencies: + supports-color: '*' + peerDependenciesMeta: + supports-color: + optional: true + dependencies: + ms: 2.1.2 + dev: true + + /decompress-response@6.0.0: + resolution: {integrity: sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==} + engines: {node: '>=10'} + requiresBuild: true + dependencies: + mimic-response: 3.1.0 + dev: true + optional: true + + /deep-extend@0.6.0: + resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==} + engines: {node: '>=4.0.0'} + requiresBuild: true + dev: true + optional: true + + /deep-is@0.1.4: + resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} + dev: true + + /default-browser-id@3.0.0: + resolution: {integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==} + engines: {node: '>=12'} + dependencies: + bplist-parser: 0.2.0 + untildify: 4.0.0 + dev: true + + /default-browser@4.0.0: + resolution: {integrity: sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==} + engines: {node: '>=14.16'} + dependencies: + bundle-name: 3.0.0 + default-browser-id: 3.0.0 + execa: 7.2.0 + titleize: 3.0.0 + dev: true + + /define-data-property@1.1.1: + resolution: {integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==} + engines: {node: '>= 0.4'} + dependencies: + get-intrinsic: 1.2.2 + gopd: 1.0.1 + has-property-descriptors: 1.0.1 + dev: true + + /define-lazy-prop@3.0.0: + resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==} + engines: {node: '>=12'} + dev: true + + /defu@6.1.4: + resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==} + dev: true + + /degenerator@5.0.1: + resolution: {integrity: sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==} + engines: {node: '>= 14'} + dependencies: + ast-types: 0.13.4 + escodegen: 2.1.0 + esprima: 4.0.1 + dev: true + + /delayed-stream@1.0.0: + resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} + engines: {node: '>=0.4.0'} + dev: true + + /destr@2.0.2: + resolution: {integrity: sha512-65AlobnZMiCET00KaFFjUefxDX0khFA/E4myqZ7a6Sq1yZtR8+FVIvilVX66vF2uobSumxooYZChiRPCKNqhmg==} + dev: true + + /detect-libc@2.0.2: + resolution: {integrity: sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==} + engines: {node: '>=8'} + requiresBuild: true + dev: true + optional: true + + /devtools-protocol@0.0.1232444: + resolution: {integrity: sha512-pM27vqEfxSxRkTMnF+XCmxSEb6duO5R+t8A9DEEJgy4Wz2RVanje2mmj99B6A3zv2r/qGfYlOvYznUhuokizmg==} + dev: true + + /dir-glob@3.0.1: + resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==} + engines: {node: '>=8'} + dependencies: + path-type: 4.0.0 + dev: true + + /doctrine@3.0.0: + resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} + engines: {node: '>=6.0.0'} + dependencies: + esutils: 2.0.3 + dev: true + + /dom-serializer@2.0.0: + resolution: {integrity: sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==} + dependencies: + domelementtype: 2.3.0 + domhandler: 5.0.3 + entities: 4.5.0 + dev: true + + /domelementtype@2.3.0: + resolution: {integrity: sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==} + dev: true + + /domhandler@5.0.3: + resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==} + engines: {node: '>= 4'} + dependencies: + domelementtype: 2.3.0 + dev: true + + /domutils@3.1.0: + resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==} + dependencies: + dom-serializer: 2.0.0 + domelementtype: 2.3.0 + domhandler: 5.0.3 + dev: true + + /dotenv@16.4.1: + resolution: {integrity: sha512-CjA3y+Dr3FyFDOAMnxZEGtnW9KBR2M0JvvUtXNW+dYJL5ROWxP9DUHCwgFqpMk0OXCc0ljhaNTr2w/kutYIcHQ==} + engines: {node: '>=12'} + dev: true + + /eastasianwidth@0.2.0: + resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} + dev: true + + /electron-to-chromium@1.4.645: + resolution: {integrity: sha512-EeS1oQDCmnYsRDRy2zTeC336a/4LZ6WKqvSaM1jLocEk5ZuyszkQtCpsqvuvaIXGOUjwtvF6LTcS8WueibXvSw==} + dev: true + + /emoji-regex@8.0.0: + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} + dev: true + + /emoji-regex@9.2.2: + resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + dev: true + + /end-of-stream@1.4.4: + resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==} + requiresBuild: true + dependencies: + once: 1.4.0 + dev: true + + /entities@2.1.0: + resolution: {integrity: sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==} + dev: true + + /entities@4.5.0: + resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==} + engines: {node: '>=0.12'} + dev: true + + /env-paths@2.2.1: + resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==} + engines: {node: '>=6'} + dev: true + + /error-ex@1.3.2: + resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==} + dependencies: + is-arrayish: 0.2.1 + dev: true + + /esbuild@0.19.12: + resolution: {integrity: sha512-aARqgq8roFBj054KvQr5f1sFu0D65G+miZRCuJyJ0G13Zwx7vRar5Zhn2tkQNzIXcBrNVsv/8stehpj+GAjgbg==} + engines: {node: '>=12'} + hasBin: true + requiresBuild: true + optionalDependencies: + '@esbuild/aix-ppc64': 0.19.12 + '@esbuild/android-arm': 0.19.12 + '@esbuild/android-arm64': 0.19.12 + '@esbuild/android-x64': 0.19.12 + '@esbuild/darwin-arm64': 0.19.12 + '@esbuild/darwin-x64': 0.19.12 + '@esbuild/freebsd-arm64': 0.19.12 + '@esbuild/freebsd-x64': 0.19.12 + '@esbuild/linux-arm': 0.19.12 + '@esbuild/linux-arm64': 0.19.12 + '@esbuild/linux-ia32': 0.19.12 + '@esbuild/linux-loong64': 0.19.12 + '@esbuild/linux-mips64el': 0.19.12 + '@esbuild/linux-ppc64': 0.19.12 + '@esbuild/linux-riscv64': 0.19.12 + '@esbuild/linux-s390x': 0.19.12 + '@esbuild/linux-x64': 0.19.12 + '@esbuild/netbsd-x64': 0.19.12 + '@esbuild/openbsd-x64': 0.19.12 + '@esbuild/sunos-x64': 0.19.12 + '@esbuild/win32-arm64': 0.19.12 + '@esbuild/win32-ia32': 0.19.12 + '@esbuild/win32-x64': 0.19.12 + dev: true + + /escalade@3.1.1: + resolution: {integrity: sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==} + engines: {node: '>=6'} + dev: true + + /escape-string-regexp@1.0.5: + resolution: {integrity: sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==} + engines: {node: '>=0.8.0'} + dev: true + + /escape-string-regexp@4.0.0: + resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} + engines: {node: '>=10'} + dev: true + + /escodegen@2.1.0: + resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==} + engines: {node: '>=6.0'} + hasBin: true + dependencies: + esprima: 4.0.1 + estraverse: 5.3.0 + esutils: 2.0.3 + optionalDependencies: + source-map: 0.6.1 + dev: true + + /eslint-compat-utils@0.1.2(eslint@8.56.0): + resolution: {integrity: sha512-Jia4JDldWnFNIru1Ehx1H5s9/yxiRHY/TimCuUc0jNexew3cF1gI6CYZil1ociakfWO3rRqFjl1mskBblB3RYg==} + engines: {node: '>=12'} + peerDependencies: + eslint: '>=6.0.0' + dependencies: + eslint: 8.56.0 + dev: true + + /eslint-compat-utils@0.4.1(eslint@8.56.0): + resolution: {integrity: sha512-5N7ZaJG5pZxUeNNJfUchurLVrunD1xJvyg5kYOIVF8kg1f3ajTikmAu/5fZ9w100omNPOoMjngRszh/Q/uFGMg==} + engines: {node: '>=12'} + peerDependencies: + eslint: '>=6.0.0' + dependencies: + eslint: 8.56.0 + semver: 7.5.4 + dev: true + + /eslint-config-flat-gitignore@0.1.2: + resolution: {integrity: sha512-PcBsqtd5QHEZH4ROvpnRN4EP0qcHh9voCCHgtyHxnJZHGspJREcZn7oPqRG/GfWt9m3C0fkC2l5CuBtMig2wXQ==} + dependencies: + parse-gitignore: 2.0.0 + dev: true + + /eslint-import-resolver-node@0.3.9: + resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==} + dependencies: + debug: 3.2.7 + is-core-module: 2.13.1 + resolve: 1.22.8 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-merge-processors@0.1.0(eslint@8.56.0): + resolution: {integrity: sha512-IvRXXtEajLeyssvW4wJcZ2etxkR9mUf4zpNwgI+m/Uac9RfXHskuJefkHUcawVzePnd6xp24enp5jfgdHzjRdQ==} + peerDependencies: + eslint: '*' + dependencies: + eslint: 8.56.0 + dev: true + + /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.19.1)(eslint-import-resolver-node@0.3.9)(eslint@8.56.0): + resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} + 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 + dependencies: + '@typescript-eslint/parser': 6.19.1(eslint@8.56.0)(typescript@5.3.3) + debug: 3.2.7 + eslint: 8.56.0 + eslint-import-resolver-node: 0.3.9 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-plugin-antfu@2.1.2(eslint@8.56.0): + resolution: {integrity: sha512-s7ZTOM3uq0iqpp6gF0UEotnvup7f2PHBUftCytLZX0+6C9j9KadKZQh6bVVngAyFgsmeD9+gcBopOYLClb2oDg==} + peerDependencies: + eslint: '*' + dependencies: + eslint: 8.56.0 + dev: true + + /eslint-plugin-es-x@7.5.0(eslint@8.56.0): + resolution: {integrity: sha512-ODswlDSO0HJDzXU0XvgZ3lF3lS3XAZEossh15Q2UHjwrJggWeBoKqqEsLTZLXl+dh5eOAozG0zRcYtuE35oTuQ==} + engines: {node: ^14.18.0 || >=16.0.0} + peerDependencies: + eslint: '>=8' + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) + '@eslint-community/regexpp': 4.10.0 + eslint: 8.56.0 + eslint-compat-utils: 0.1.2(eslint@8.56.0) + dev: true + + /eslint-plugin-eslint-comments@3.2.0(eslint@8.56.0): + resolution: {integrity: sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ==} + engines: {node: '>=6.5.0'} + peerDependencies: + eslint: '>=4.19.1' + dependencies: + escape-string-regexp: 1.0.5 + eslint: 8.56.0 + ignore: 5.3.0 + dev: true + + /eslint-plugin-i@2.29.1(@typescript-eslint/parser@6.19.1)(eslint@8.56.0): + resolution: {integrity: sha512-ORizX37MelIWLbMyqI7hi8VJMf7A0CskMmYkB+lkCX3aF4pkGV7kwx5bSEb4qx7Yce2rAf9s34HqDRPjGRZPNQ==} + engines: {node: '>=12'} + peerDependencies: + eslint: ^7.2.0 || ^8 + dependencies: + debug: 4.3.4 + doctrine: 3.0.0 + eslint: 8.56.0 + eslint-import-resolver-node: 0.3.9 + eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.19.1)(eslint-import-resolver-node@0.3.9)(eslint@8.56.0) + get-tsconfig: 4.7.2 + is-glob: 4.0.3 + minimatch: 3.1.2 + semver: 7.5.4 + transitivePeerDependencies: + - '@typescript-eslint/parser' + - eslint-import-resolver-typescript + - eslint-import-resolver-webpack + - supports-color + dev: true + + /eslint-plugin-jsdoc@48.0.3(eslint@8.56.0): + resolution: {integrity: sha512-+vQWLZ9QmT23yU+8yolfga6p9AtC6dUCwtVoJe4+DClvhnoGswKZcOqw+tMA/lkj5zbgr67PYWwgMvQftPx7Dw==} + engines: {node: '>=18'} + peerDependencies: + eslint: ^7.0.0 || ^8.0.0 || ^9.0.0 + dependencies: + '@es-joy/jsdoccomment': 0.41.0 + are-docs-informative: 0.0.2 + comment-parser: 1.4.1 + debug: 4.3.4 + escape-string-regexp: 4.0.0 + eslint: 8.56.0 + esquery: 1.5.0 + is-builtin-module: 3.2.1 + semver: 7.5.4 + spdx-expression-parse: 4.0.0 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-plugin-jsonc@2.13.0(eslint@8.56.0): + resolution: {integrity: sha512-2wWdJfpO/UbZzPDABuUVvlUQjfMJa2p2iQfYt/oWxOMpXCcjuiMUSaA02gtY/Dbu82vpaSqc+O7Xq6ECHwtIxA==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: '>=6.0.0' + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) + eslint: 8.56.0 + eslint-compat-utils: 0.4.1(eslint@8.56.0) + espree: 9.6.1 + graphemer: 1.4.0 + jsonc-eslint-parser: 2.4.0 + natural-compare: 1.4.0 + synckit: 0.6.2 + dev: true + + /eslint-plugin-markdown@3.0.1(eslint@8.56.0): + resolution: {integrity: sha512-8rqoc148DWdGdmYF6WSQFT3uQ6PO7zXYgeBpHAOAakX/zpq+NvFYbDA/H7PYzHajwtmaOzAwfxyl++x0g1/N9A==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + dependencies: + eslint: 8.56.0 + mdast-util-from-markdown: 0.8.5 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-plugin-n@16.6.2(eslint@8.56.0): + resolution: {integrity: sha512-6TyDmZ1HXoFQXnhCTUjVFULReoBPOAjpuiKELMkeP40yffI/1ZRO+d9ug/VC6fqISo2WkuIBk3cvuRPALaWlOQ==} + engines: {node: '>=16.0.0'} + peerDependencies: + eslint: '>=7.0.0' + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) + builtins: 5.0.1 + eslint: 8.56.0 + eslint-plugin-es-x: 7.5.0(eslint@8.56.0) + get-tsconfig: 4.7.2 + globals: 13.24.0 + ignore: 5.3.0 + is-builtin-module: 3.2.1 + is-core-module: 2.13.1 + minimatch: 3.1.2 + resolve: 1.22.8 + semver: 7.5.4 + dev: true + + /eslint-plugin-no-only-tests@3.1.0: + resolution: {integrity: sha512-Lf4YW/bL6Un1R6A76pRZyE1dl1vr31G/ev8UzIc/geCgFWyrKil8hVjYqWVKGB/UIGmb6Slzs9T0wNezdSVegw==} + engines: {node: '>=5.0.0'} + dev: true + + /eslint-plugin-perfectionist@2.5.0(eslint@8.56.0)(typescript@5.3.3)(vue-eslint-parser@9.4.2): + resolution: {integrity: sha512-F6XXcq4mKKUe/SREoMGQqzgw6cgCgf3pFzkFfQVIGtqD1yXVpQjnhTepzhBeZfxZwgMzR9HO4yH4CUhIQ2WBcQ==} + peerDependencies: + astro-eslint-parser: ^0.16.0 + eslint: '>=8.0.0' + svelte: '>=3.0.0' + svelte-eslint-parser: ^0.33.0 + vue-eslint-parser: '>=9.0.0' + peerDependenciesMeta: + astro-eslint-parser: + optional: true + svelte: + optional: true + svelte-eslint-parser: + optional: true + vue-eslint-parser: + optional: true + dependencies: + '@typescript-eslint/utils': 6.19.1(eslint@8.56.0)(typescript@5.3.3) + eslint: 8.56.0 + minimatch: 9.0.3 + natural-compare-lite: 1.4.0 + vue-eslint-parser: 9.4.2(eslint@8.56.0) + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /eslint-plugin-toml@0.9.2(eslint@8.56.0): + resolution: {integrity: sha512-ri0xf63PYf3pIq/WY9BIwrqxZmGTIwSkAO0bHddI0ajUwN4KGz6W8vOvdXFHOpRdRfzxlmXze/vfsY/aTEXESg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: '>=6.0.0' + dependencies: + debug: 4.3.4 + eslint: 8.56.0 + eslint-compat-utils: 0.4.1(eslint@8.56.0) + lodash: 4.17.21 + toml-eslint-parser: 0.9.3 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-plugin-unicorn@50.0.1(eslint@8.56.0): + resolution: {integrity: sha512-KxenCZxqSYW0GWHH18okDlOQcpezcitm5aOSz6EnobyJ6BIByiPDviQRjJIUAjG/tMN11958MxaQ+qCoU6lfDA==} + engines: {node: '>=16'} + peerDependencies: + eslint: '>=8.56.0' + dependencies: + '@babel/helper-validator-identifier': 7.22.20 + '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) + '@eslint/eslintrc': 2.1.4 + ci-info: 4.0.0 + clean-regexp: 1.0.0 + core-js-compat: 3.35.1 + eslint: 8.56.0 + esquery: 1.5.0 + indent-string: 4.0.0 + is-builtin-module: 3.2.1 + jsesc: 3.0.2 + pluralize: 8.0.0 + read-pkg-up: 7.0.1 + regexp-tree: 0.1.27 + regjsparser: 0.10.0 + semver: 7.5.4 + strip-indent: 3.0.0 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-plugin-unused-imports@3.0.0(@typescript-eslint/eslint-plugin@6.19.1)(eslint@8.56.0): + resolution: {integrity: sha512-sduiswLJfZHeeBJ+MQaG+xYzSWdRXoSw61DpU13mzWumCkR0ufD0HmO4kdNokjrkluMHpj/7PJeN35pgbhW3kw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + '@typescript-eslint/eslint-plugin': ^6.0.0 + eslint: ^8.0.0 + peerDependenciesMeta: + '@typescript-eslint/eslint-plugin': + optional: true + dependencies: + '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1)(eslint@8.56.0)(typescript@5.3.3) + eslint: 8.56.0 + eslint-rule-composer: 0.3.0 + dev: true + + /eslint-plugin-vitest@0.3.20(@typescript-eslint/eslint-plugin@6.19.1)(eslint@8.56.0)(typescript@5.3.3): + resolution: {integrity: sha512-O05k4j9TGMOkkghj9dRgpeLDyOSiVIxQWgNDPfhYPm5ioJsehcYV/zkRLekQs+c8+RBCVXucSED3fYOyy2EoWA==} + engines: {node: ^18.0.0 || >= 20.0.0} + peerDependencies: + '@typescript-eslint/eslint-plugin': '*' + eslint: '>=8.0.0' + vitest: '*' + peerDependenciesMeta: + '@typescript-eslint/eslint-plugin': + optional: true + vitest: + optional: true + dependencies: + '@typescript-eslint/eslint-plugin': 6.19.1(@typescript-eslint/parser@6.19.1)(eslint@8.56.0)(typescript@5.3.3) + '@typescript-eslint/utils': 6.19.1(eslint@8.56.0)(typescript@5.3.3) + eslint: 8.56.0 + transitivePeerDependencies: + - supports-color + - typescript + dev: true + + /eslint-plugin-vue@9.20.1(eslint@8.56.0): + resolution: {integrity: sha512-GyCs8K3lkEvoyC1VV97GJhP1SvqsKCiWGHnbn0gVUYiUhaH2+nB+Dv1uekv1THFMPbBfYxukrzQdltw950k+LQ==} + engines: {node: ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) + eslint: 8.56.0 + natural-compare: 1.4.0 + nth-check: 2.1.1 + postcss-selector-parser: 6.0.15 + semver: 7.5.4 + vue-eslint-parser: 9.4.2(eslint@8.56.0) + xml-name-validator: 4.0.0 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-plugin-yml@1.12.2(eslint@8.56.0): + resolution: {integrity: sha512-hvS9p08FhPT7i/ynwl7/Wt7ke7Rf4P2D6fT8lZlL43peZDTsHtH2A0SIFQ7Kt7+mJ6if6P+FX3iJhMkdnxQwpg==} + engines: {node: ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: '>=6.0.0' + dependencies: + debug: 4.3.4 + eslint: 8.56.0 + eslint-compat-utils: 0.4.1(eslint@8.56.0) + lodash: 4.17.21 + natural-compare: 1.4.0 + yaml-eslint-parser: 1.2.2 + transitivePeerDependencies: + - supports-color + dev: true + + /eslint-processor-vue-blocks@0.1.1(@vue/compiler-sfc@3.4.15)(eslint@8.56.0): + resolution: {integrity: sha512-9+dU5lU881log570oBwpelaJmOfOzSniben7IWEDRYQPPWwlvaV7NhOtsTuUWDqpYT+dtKKWPsgz4OkOi+aZnA==} + peerDependencies: + '@vue/compiler-sfc': ^3.3.0 + eslint: ^8.50.0 + dependencies: + '@vue/compiler-sfc': 3.4.15 + eslint: 8.56.0 + dev: true + + /eslint-rule-composer@0.3.0: + resolution: {integrity: sha512-bt+Sh8CtDmn2OajxvNO+BX7Wn4CIWMpTRm3MaiKPCQcnnlm0CS2mhui6QaoeQugs+3Kj2ESKEEGJUdVafwhiCg==} + engines: {node: '>=4.0.0'} + dev: true + + /eslint-scope@7.2.2: + resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + esrecurse: 4.3.0 + estraverse: 5.3.0 + dev: true + + /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} + dev: true + + /eslint@8.56.0: + resolution: {integrity: sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + hasBin: true + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0) + '@eslint-community/regexpp': 4.10.0 + '@eslint/eslintrc': 2.1.4 + '@eslint/js': 8.56.0 + '@humanwhocodes/config-array': 0.11.14 + '@humanwhocodes/module-importer': 1.0.1 + '@nodelib/fs.walk': 1.2.8 + '@ungap/structured-clone': 1.2.0 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.3 + debug: 4.3.4 + 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.5.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.0 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + is-path-inside: 3.0.3 + js-yaml: 4.1.0 + json-stable-stringify-without-jsonify: 1.0.1 + levn: 0.4.1 + lodash.merge: 4.6.2 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.3 + strip-ansi: 6.0.1 + text-table: 0.2.0 + transitivePeerDependencies: + - supports-color + dev: true + + /espree@9.6.1: + resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + acorn: 8.11.3 + acorn-jsx: 5.3.2(acorn@8.11.3) + eslint-visitor-keys: 3.4.3 + dev: true + + /esprima@4.0.1: + resolution: {integrity: sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==} + engines: {node: '>=4'} + hasBin: true + dev: true + + /esquery@1.5.0: + resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==} + engines: {node: '>=0.10'} + dependencies: + estraverse: 5.3.0 + dev: true + + /esrecurse@4.3.0: + resolution: {integrity: sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==} + engines: {node: '>=4.0'} + dependencies: + estraverse: 5.3.0 + dev: true + + /estraverse@5.3.0: + resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==} + engines: {node: '>=4.0'} + dev: true + + /estree-walker@2.0.2: + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} + dev: true + + /estree-walker@3.0.3: + resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} + dependencies: + '@types/estree': 1.0.5 + dev: true + + /esutils@2.0.3: + resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==} + engines: {node: '>=0.10.0'} + dev: true + + /execa@5.1.1: + resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} + engines: {node: '>=10'} + dependencies: + cross-spawn: 7.0.3 + get-stream: 6.0.1 + human-signals: 2.1.0 + is-stream: 2.0.1 + merge-stream: 2.0.0 + npm-run-path: 4.0.1 + onetime: 5.1.2 + signal-exit: 3.0.7 + strip-final-newline: 2.0.0 + dev: true + + /execa@7.2.0: + resolution: {integrity: sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==} + engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0} + dependencies: + cross-spawn: 7.0.3 + get-stream: 6.0.1 + human-signals: 4.3.1 + is-stream: 3.0.0 + merge-stream: 2.0.0 + npm-run-path: 5.2.0 + onetime: 6.0.0 + signal-exit: 3.0.7 + strip-final-newline: 3.0.0 + dev: true + + /execa@8.0.1: + resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} + engines: {node: '>=16.17'} + dependencies: + cross-spawn: 7.0.3 + get-stream: 8.0.1 + human-signals: 5.0.0 + is-stream: 3.0.0 + merge-stream: 2.0.0 + npm-run-path: 5.2.0 + onetime: 6.0.0 + signal-exit: 4.1.0 + strip-final-newline: 3.0.0 + dev: true + + /expand-template@2.0.3: + resolution: {integrity: sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==} + engines: {node: '>=6'} + requiresBuild: true + dev: true + optional: true + + /extract-zip@2.0.1: + resolution: {integrity: sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==} + engines: {node: '>= 10.17.0'} + hasBin: true + dependencies: + debug: 4.3.4 + get-stream: 5.2.0 + yauzl: 2.10.0 + optionalDependencies: + '@types/yauzl': 2.10.3 + transitivePeerDependencies: + - supports-color + dev: true + + /fast-deep-equal@3.1.3: + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + dev: true + + /fast-fifo@1.3.2: + resolution: {integrity: sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==} + dev: true + + /fast-glob@3.3.2: + resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} + engines: {node: '>=8.6.0'} + 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.5 + dev: true + + /fast-json-stable-stringify@2.1.0: + resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==} + dev: true + + /fast-levenshtein@2.0.6: + resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==} + dev: true + + /fastq@1.16.0: + resolution: {integrity: sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==} + dependencies: + reusify: 1.0.4 + dev: true + + /fd-slicer@1.1.0: + resolution: {integrity: sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==} + dependencies: + pend: 1.2.0 + dev: true + + /file-entry-cache@6.0.1: + resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} + engines: {node: ^10.12.0 || >=12.0.0} + dependencies: + flat-cache: 3.2.0 + dev: true + + /fill-range@7.0.1: + resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} + engines: {node: '>=8'} + dependencies: + to-regex-range: 5.0.1 + dev: true + + /find-up@4.1.0: + resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==} + engines: {node: '>=8'} + dependencies: + locate-path: 5.0.0 + path-exists: 4.0.0 + dev: true + + /find-up@5.0.0: + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} + engines: {node: '>=10'} + dependencies: + locate-path: 6.0.0 + path-exists: 4.0.0 + dev: true + + /flat-cache@3.2.0: + resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} + engines: {node: ^10.12.0 || >=12.0.0} + dependencies: + flatted: 3.2.9 + keyv: 4.5.4 + rimraf: 3.0.2 + dev: true + + /flat@5.0.2: + resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} + hasBin: true + dev: true + + /flatted@3.2.9: + resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==} + dev: true + + /follow-redirects@1.15.5: + resolution: {integrity: sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==} + engines: {node: '>=4.0'} + peerDependencies: + debug: '*' + peerDependenciesMeta: + debug: + optional: true + dev: true + + /foreground-child@3.1.1: + resolution: {integrity: sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==} + engines: {node: '>=14'} + dependencies: + cross-spawn: 7.0.3 + signal-exit: 4.1.0 + dev: true + + /form-data@4.0.0: + resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==} + engines: {node: '>= 6'} + dependencies: + asynckit: 0.4.0 + combined-stream: 1.0.8 + mime-types: 2.1.35 + dev: true + + /fs-constants@1.0.0: + resolution: {integrity: sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==} + requiresBuild: true + dev: true + optional: true + + /fs-extra@8.1.0: + resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==} + engines: {node: '>=6 <7 || >=8'} + dependencies: + graceful-fs: 4.2.11 + jsonfile: 4.0.0 + universalify: 0.1.2 + dev: true + + /fs-minipass@2.1.0: + resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} + engines: {node: '>= 8'} + dependencies: + minipass: 3.3.6 + dev: true + + /fs.realpath@1.0.0: + resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} + dev: true + + /fsevents@2.3.3: + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} + os: [darwin] + requiresBuild: true + dev: true + optional: true + + /function-bind@1.1.2: + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} + dev: true + + /get-caller-file@2.0.5: + resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} + engines: {node: 6.* || 8.* || >= 10.*} + dev: true + + /get-intrinsic@1.2.2: + resolution: {integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==} + dependencies: + function-bind: 1.1.2 + has-proto: 1.0.1 + has-symbols: 1.0.3 + hasown: 2.0.0 + dev: true + + /get-stream@5.2.0: + resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==} + engines: {node: '>=8'} + dependencies: + pump: 3.0.0 + dev: true + + /get-stream@6.0.1: + resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==} + engines: {node: '>=10'} + dev: true + + /get-stream@8.0.1: + resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==} + engines: {node: '>=16'} + dev: true + + /get-tsconfig@4.7.2: + resolution: {integrity: sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==} + dependencies: + resolve-pkg-maps: 1.0.0 + dev: true + + /get-uri@6.0.2: + resolution: {integrity: sha512-5KLucCJobh8vBY1K07EFV4+cPZH3mrV9YeAruUseCQKHB58SGjjT2l9/eA9LD082IiuMjSlFJEcdJ27TXvbZNw==} + engines: {node: '>= 14'} + dependencies: + basic-ftp: 5.0.4 + data-uri-to-buffer: 6.0.1 + debug: 4.3.4 + fs-extra: 8.1.0 + transitivePeerDependencies: + - supports-color + dev: true + + /giget@1.2.1: + resolution: {integrity: sha512-4VG22mopWtIeHwogGSy1FViXVo0YT+m6BrqZfz0JJFwbSsePsCdOzdLIIli5BtMp7Xe8f/o2OmBpQX2NBOC24g==} + hasBin: true + dependencies: + citty: 0.1.5 + consola: 3.2.3 + defu: 6.1.4 + node-fetch-native: 1.6.1 + nypm: 0.3.6 + ohash: 1.1.3 + pathe: 1.1.2 + tar: 6.2.0 + dev: true + + /github-from-package@0.0.0: + resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==} + requiresBuild: true + dev: true + optional: true + + /glob-parent@5.1.2: + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} + engines: {node: '>= 6'} + dependencies: + is-glob: 4.0.3 + dev: true + + /glob-parent@6.0.2: + resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==} + engines: {node: '>=10.13.0'} + dependencies: + is-glob: 4.0.3 + dev: true + + /glob@10.3.10: + resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==} + engines: {node: '>=16 || 14 >=14.17'} + hasBin: true + dependencies: + foreground-child: 3.1.1 + jackspeak: 2.3.6 + minimatch: 9.0.3 + minipass: 7.0.4 + path-scurry: 1.10.1 + dev: true + + /glob@7.2.3: + resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} + 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 + dev: true + + /globals@13.24.0: + resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} + engines: {node: '>=8'} + dependencies: + type-fest: 0.20.2 + dev: true + + /globby@11.1.0: + resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==} + engines: {node: '>=10'} + dependencies: + array-union: 2.1.0 + dir-glob: 3.0.1 + fast-glob: 3.3.2 + ignore: 5.3.0 + merge2: 1.4.1 + slash: 3.0.0 + dev: true + + /gopd@1.0.1: + resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} + dependencies: + get-intrinsic: 1.2.2 + dev: true + + /graceful-fs@4.2.11: + resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==} + dev: true + + /graphemer@1.4.0: + resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} + dev: true + + /has-flag@3.0.0: + resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==} + engines: {node: '>=4'} + dev: true + + /has-flag@4.0.0: + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} + engines: {node: '>=8'} + dev: true + + /has-property-descriptors@1.0.1: + resolution: {integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==} + dependencies: + get-intrinsic: 1.2.2 + dev: true + + /has-proto@1.0.1: + resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} + engines: {node: '>= 0.4'} + dev: true + + /has-symbols@1.0.3: + resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==} + engines: {node: '>= 0.4'} + dev: true + + /hasown@2.0.0: + resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==} + engines: {node: '>= 0.4'} + dependencies: + function-bind: 1.1.2 + dev: true + + /hosted-git-info@2.8.9: + resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==} + dev: true + + /hosted-git-info@4.1.0: + resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==} + engines: {node: '>=10'} + dependencies: + lru-cache: 6.0.0 + dev: true + + /htmlparser2@8.0.2: + resolution: {integrity: sha512-GYdjWKDkbRLkZ5geuHs5NY1puJ+PXwP7+fHPRz06Eirsb9ugf6d8kkXav6ADhcODhFFPMIXyxkxSuMf3D6NCFA==} + dependencies: + domelementtype: 2.3.0 + domhandler: 5.0.3 + domutils: 3.1.0 + entities: 4.5.0 + dev: true + + /http-proxy-agent@7.0.0: + resolution: {integrity: sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==} + engines: {node: '>= 14'} + dependencies: + agent-base: 7.1.0 + debug: 4.3.4 + transitivePeerDependencies: + - supports-color + dev: true + + /https-proxy-agent@7.0.2: + resolution: {integrity: sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==} + engines: {node: '>= 14'} + dependencies: + agent-base: 7.1.0 + debug: 4.3.4 + transitivePeerDependencies: + - supports-color + dev: true + + /human-signals@2.1.0: + resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} + engines: {node: '>=10.17.0'} + dev: true + + /human-signals@4.3.1: + resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==} + engines: {node: '>=14.18.0'} + dev: true + + /human-signals@5.0.0: + resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} + engines: {node: '>=16.17.0'} + dev: true + + /ieee754@1.2.1: + resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} + dev: true + + /ignore@5.3.0: + resolution: {integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==} + engines: {node: '>= 4'} + dev: true + + /import-fresh@3.3.0: + resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} + engines: {node: '>=6'} + dependencies: + parent-module: 1.0.1 + resolve-from: 4.0.0 + dev: true + + /imurmurhash@0.1.4: + resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==} + engines: {node: '>=0.8.19'} + dev: true + + /indent-string@4.0.0: + resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==} + engines: {node: '>=8'} + dev: true + + /inflight@1.0.6: + resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==} + dependencies: + once: 1.4.0 + wrappy: 1.0.2 + dev: true + + /inherits@2.0.4: + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} + dev: true + + /ini@1.3.8: + resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==} + requiresBuild: true + dev: true + optional: true + + /ip@1.1.8: + resolution: {integrity: sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==} + dev: true + + /ip@2.0.0: + resolution: {integrity: sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==} + dev: true + + /is-alphabetical@1.0.4: + resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==} + dev: true + + /is-alphanumerical@1.0.4: + resolution: {integrity: sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A==} + dependencies: + is-alphabetical: 1.0.4 + is-decimal: 1.0.4 + dev: true + + /is-arrayish@0.2.1: + resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==} + dev: true + + /is-binary-path@2.1.0: + resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==} + engines: {node: '>=8'} + dependencies: + binary-extensions: 2.2.0 + dev: true + + /is-builtin-module@3.2.1: + resolution: {integrity: sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==} + engines: {node: '>=6'} + dependencies: + builtin-modules: 3.3.0 + dev: true + + /is-core-module@2.13.1: + resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==} + dependencies: + hasown: 2.0.0 + dev: true + + /is-decimal@1.0.4: + resolution: {integrity: sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw==} + dev: true + + /is-docker@2.2.1: + resolution: {integrity: sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==} + engines: {node: '>=8'} + hasBin: true + dev: true + + /is-docker@3.0.0: + resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + hasBin: true + dev: true + + /is-extglob@2.1.1: + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} + engines: {node: '>=0.10.0'} + dev: true + + /is-fullwidth-code-point@3.0.0: + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} + engines: {node: '>=8'} + dev: true + + /is-glob@4.0.3: + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} + engines: {node: '>=0.10.0'} + dependencies: + is-extglob: 2.1.1 + dev: true + + /is-hexadecimal@1.0.4: + resolution: {integrity: sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw==} + dev: true + + /is-inside-container@1.0.0: + resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} + engines: {node: '>=14.16'} + hasBin: true + dependencies: + is-docker: 3.0.0 + dev: true + + /is-number@7.0.0: + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} + engines: {node: '>=0.12.0'} + dev: true + + /is-path-inside@3.0.3: + resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==} + engines: {node: '>=8'} + dev: true + + /is-stream@2.0.1: + resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==} + engines: {node: '>=8'} + dev: true + + /is-stream@3.0.0: + resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dev: true + + /is-wsl@2.2.0: + resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==} + engines: {node: '>=8'} + dependencies: + is-docker: 2.2.1 + dev: true + + /isexe@2.0.0: + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} + dev: true + + /jackspeak@2.3.6: + resolution: {integrity: sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==} + engines: {node: '>=14'} + dependencies: + '@isaacs/cliui': 8.0.2 + optionalDependencies: + '@pkgjs/parseargs': 0.11.0 + dev: true + + /jiti@1.21.0: + resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==} + hasBin: true + dev: true + + /joycon@3.1.1: + resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==} + engines: {node: '>=10'} + dev: true + + /js-tokens@4.0.0: + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} + dev: true + + /js-yaml@4.1.0: + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} + hasBin: true + dependencies: + argparse: 2.0.1 + dev: true + + /jsdoc-type-pratt-parser@4.0.0: + resolution: {integrity: sha512-YtOli5Cmzy3q4dP26GraSOeAhqecewG04hoO8DY56CH4KJ9Fvv5qKWUCCo3HZob7esJQHCv6/+bnTy72xZZaVQ==} + engines: {node: '>=12.0.0'} + dev: true + + /jsesc@0.5.0: + resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==} + hasBin: true + dev: true + + /jsesc@3.0.2: + resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==} + engines: {node: '>=6'} + hasBin: true + dev: true + + /json-buffer@3.0.1: + resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} + dev: true + + /json-parse-even-better-errors@2.3.1: + resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==} + dev: true + + /json-schema-traverse@0.4.1: + resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==} + dev: true + + /json-stable-stringify-without-jsonify@1.0.1: + resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==} + dev: true + + /jsonc-eslint-parser@2.4.0: + resolution: {integrity: sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + acorn: 8.11.3 + eslint-visitor-keys: 3.4.3 + espree: 9.6.1 + semver: 7.5.4 + dev: true + + /jsonc-parser@3.2.1: + resolution: {integrity: sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA==} + dev: true + + /jsonfile@4.0.0: + resolution: {integrity: sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==} + optionalDependencies: + graceful-fs: 4.2.11 + dev: true + + /keytar@7.9.0: + resolution: {integrity: sha512-VPD8mtVtm5JNtA2AErl6Chp06JBfy7diFQ7TQQhdpWOl6MrCRB+eRbvAZUsbGQS9kiMq0coJsy0W0vHpDCkWsQ==} + requiresBuild: true + dependencies: + node-addon-api: 4.3.0 + prebuild-install: 7.1.1 + dev: true + optional: true + + /keyv@4.5.4: + resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==} + dependencies: + json-buffer: 3.0.1 + dev: true + + /kleur@3.0.3: + resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} + engines: {node: '>=6'} + dev: true + + /kolorist@1.8.0: + resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==} + dev: true + + /leven@3.1.0: + resolution: {integrity: sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==} + engines: {node: '>=6'} + dev: true + + /levn@0.4.1: + resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==} + engines: {node: '>= 0.8.0'} + dependencies: + prelude-ls: 1.2.1 + type-check: 0.4.0 + dev: true + + /lilconfig@3.0.0: + resolution: {integrity: sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==} + engines: {node: '>=14'} + dev: true + + /lines-and-columns@1.2.4: + resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==} + dev: true + + /linkify-it@3.0.3: + resolution: {integrity: sha512-ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ==} + dependencies: + uc.micro: 1.0.6 + dev: true + + /load-tsconfig@0.2.5: + resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dev: true + + /local-pkg@0.4.3: + resolution: {integrity: sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==} + engines: {node: '>=14'} + dev: true + + /local-pkg@0.5.0: + resolution: {integrity: sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==} + engines: {node: '>=14'} + dependencies: + mlly: 1.5.0 + pkg-types: 1.0.3 + dev: true + + /locate-path@5.0.0: + resolution: {integrity: sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==} + engines: {node: '>=8'} + dependencies: + p-locate: 4.1.0 + dev: true + + /locate-path@6.0.0: + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} + engines: {node: '>=10'} + dependencies: + p-locate: 5.0.0 + dev: true + + /lodash.merge@4.6.2: + resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==} + dev: true + + /lodash.sortby@4.7.0: + resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==} + dev: true + + /lodash@4.17.21: + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + dev: true + + /lookpath@1.2.2: + resolution: {integrity: sha512-k2Gmn8iV6qdME3ztZC2spubmQISimFOPLuQKiPaLcVdRz0IpdxrNClVepMlyTJlhodm/zG/VfbkWERm3kUIh+Q==} + engines: {npm: '>=6.13.4'} + hasBin: true + dev: true + + /lru-cache@10.1.0: + resolution: {integrity: sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==} + engines: {node: 14 || >=16.14} + dev: true + + /lru-cache@6.0.0: + resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==} + engines: {node: '>=10'} + dependencies: + yallist: 4.0.0 + dev: true + + /lru-cache@7.18.3: + resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==} + engines: {node: '>=12'} + dev: true + + /magic-regexp@0.7.0: + resolution: {integrity: sha512-C9m5/JqFV1/CMrMFDf1PqmvMc8ohrssmlF5bdgea7nUqqn6D9xzKVTa6DIm0LReCqvEPS35o1UElmb7PmoSfHQ==} + dependencies: + estree-walker: 3.0.3 + magic-string: 0.30.5 + mlly: 1.5.0 + type-level-regexp: 0.1.17 + ufo: 1.3.2 + unplugin: 1.6.0 + dev: true + + /magic-string@0.30.5: + resolution: {integrity: sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==} + engines: {node: '>=12'} + dependencies: + '@jridgewell/sourcemap-codec': 1.4.15 + dev: true + + /markdown-it@12.3.2: + resolution: {integrity: sha512-TchMembfxfNVpHkbtriWltGWc+m3xszaRD0CZup7GFFhzIgQqxIfn3eGj1yZpfuflzPvfkt611B2Q/Bsk1YnGg==} + hasBin: true + dependencies: + argparse: 2.0.1 + entities: 2.1.0 + linkify-it: 3.0.3 + mdurl: 1.0.1 + uc.micro: 1.0.6 + dev: true + + /mdast-util-from-markdown@0.8.5: + resolution: {integrity: sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ==} + dependencies: + '@types/mdast': 3.0.15 + mdast-util-to-string: 2.0.0 + micromark: 2.11.4 + parse-entities: 2.0.0 + unist-util-stringify-position: 2.0.3 + transitivePeerDependencies: + - supports-color + dev: true + + /mdast-util-to-string@2.0.0: + resolution: {integrity: sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w==} + dev: true + + /mdn-data@2.0.28: + resolution: {integrity: sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==} + dev: true + + /mdn-data@2.0.30: + resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==} + dev: true + + /mdurl@1.0.1: + resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==} + dev: true + + /merge-stream@2.0.0: + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} + dev: true + + /merge2@1.4.1: + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} + engines: {node: '>= 8'} + dev: true + + /micromark@2.11.4: + resolution: {integrity: sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA==} + dependencies: + debug: 4.3.4 + parse-entities: 2.0.0 + transitivePeerDependencies: + - supports-color + dev: true + + /micromatch@4.0.5: + resolution: {integrity: sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==} + engines: {node: '>=8.6'} + dependencies: + braces: 3.0.2 + picomatch: 2.3.1 + dev: true + + /mime-db@1.52.0: + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} + dev: true + + /mime-types@2.1.35: + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} + dependencies: + mime-db: 1.52.0 + dev: true + + /mime@1.6.0: + resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} + engines: {node: '>=4'} + hasBin: true + dev: true + + /mimic-fn@2.1.0: + resolution: {integrity: sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==} + engines: {node: '>=6'} + dev: true + + /mimic-fn@4.0.0: + resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} + engines: {node: '>=12'} + dev: true + + /mimic-response@3.1.0: + resolution: {integrity: sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==} + engines: {node: '>=10'} + requiresBuild: true + dev: true + optional: true + + /min-indent@1.0.1: + resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==} + engines: {node: '>=4'} + dev: true + + /minimatch@3.1.2: + resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} + dependencies: + brace-expansion: 1.1.11 + dev: true + + /minimatch@9.0.3: + resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} + engines: {node: '>=16 || 14 >=14.17'} + dependencies: + brace-expansion: 2.0.1 + dev: true + + /minimist@1.2.8: + resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} + requiresBuild: true + dev: true + optional: true + + /minipass@3.3.6: + resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} + engines: {node: '>=8'} + dependencies: + yallist: 4.0.0 + dev: true + + /minipass@4.2.8: + resolution: {integrity: sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==} + engines: {node: '>=8'} + dev: true + + /minipass@5.0.0: + resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} + engines: {node: '>=8'} + dev: true + + /minipass@7.0.4: + resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==} + engines: {node: '>=16 || 14 >=14.17'} + dev: true + + /minizlib@2.1.2: + resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} + engines: {node: '>= 8'} + dependencies: + minipass: 3.3.6 + yallist: 4.0.0 + dev: true + + /mitt@3.0.1: + resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==} + dev: true + + /mkdirp-classic@0.5.3: + resolution: {integrity: sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==} + dev: true + + /mkdirp@1.0.4: + resolution: {integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==} + engines: {node: '>=10'} + hasBin: true + dev: true + + /mlly@1.5.0: + resolution: {integrity: sha512-NPVQvAY1xr1QoVeG0cy8yUYC7FQcOx6evl/RjT1wL5FvzPnzOysoqB/jmx/DhssT2dYa8nxECLAaFI/+gVLhDQ==} + dependencies: + acorn: 8.11.3 + pathe: 1.1.2 + pkg-types: 1.0.3 + ufo: 1.3.2 + dev: true + + /mri@1.2.0: + resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==} + engines: {node: '>=4'} + dev: true + + /ms@2.1.2: + resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==} + dev: true + + /ms@2.1.3: + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} + dev: true + + /mute-stream@0.0.8: + resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==} + dev: true + + /mz@2.7.0: + resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} + dependencies: + any-promise: 1.3.0 + object-assign: 4.1.1 + thenify-all: 1.6.0 + dev: true + + /nanoid@3.3.7: + resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==} + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} + hasBin: true + dev: true + + /napi-build-utils@1.0.2: + resolution: {integrity: sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==} + requiresBuild: true + dev: true + optional: true + + /natural-compare-lite@1.4.0: + resolution: {integrity: sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==} + dev: true + + /natural-compare@1.4.0: + resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==} + dev: true + + /netmask@2.0.2: + resolution: {integrity: sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==} + engines: {node: '>= 0.4.0'} + dev: true + + /node-abi@3.54.0: + resolution: {integrity: sha512-p7eGEiQil0YUV3ItH4/tBb781L5impVmmx2E9FRKF7d18XXzp4PGT2tdYMFY6wQqgxD0IwNZOiSJ0/K0fSi/OA==} + engines: {node: '>=10'} + requiresBuild: true + dependencies: + semver: 7.5.4 + dev: true + optional: true + + /node-addon-api@4.3.0: + resolution: {integrity: sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ==} + requiresBuild: true + dev: true + optional: true + + /node-fetch-native@1.6.1: + resolution: {integrity: sha512-bW9T/uJDPAJB2YNYEpWzE54U5O3MQidXsOyTfnbKYtTtFexRvGzb1waphBN4ZwP6EcIvYYEOwW0b72BpAqydTw==} + dev: true + + /node-fetch@2.7.0: + resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} + engines: {node: 4.x || >=6.0.0} + peerDependencies: + encoding: ^0.1.0 + peerDependenciesMeta: + encoding: + optional: true + dependencies: + whatwg-url: 5.0.0 + dev: true + + /node-releases@2.0.14: + resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==} + dev: true + + /normalize-package-data@2.5.0: + resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} + dependencies: + hosted-git-info: 2.8.9 + resolve: 1.22.8 + semver: 5.7.2 + validate-npm-package-license: 3.0.4 + dev: true + + /normalize-path@3.0.0: + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} + engines: {node: '>=0.10.0'} + dev: true + + /npm-run-path@4.0.1: + resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==} + engines: {node: '>=8'} + dependencies: + path-key: 3.1.1 + dev: true + + /npm-run-path@5.2.0: + resolution: {integrity: sha512-W4/tgAXFqFA0iL7fk0+uQ3g7wkL8xJmx3XdK0VGb4cHW//eZTtKGvFBBoRKVTpY7n6ze4NL9ly7rgXcHufqXKg==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + dependencies: + path-key: 4.0.0 + dev: true + + /nth-check@2.1.1: + resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} + dependencies: + boolbase: 1.0.0 + dev: true + + /nypm@0.3.6: + resolution: {integrity: sha512-2CATJh3pd6CyNfU5VZM7qSwFu0ieyabkEdnogE30Obn1czrmOYiZ8DOZLe1yBdLKWoyD3Mcy2maUs+0MR3yVjQ==} + engines: {node: ^14.16.0 || >=16.10.0} + hasBin: true + dependencies: + citty: 0.1.5 + execa: 8.0.1 + pathe: 1.1.2 + ufo: 1.3.2 + dev: true + + /object-assign@4.1.1: + resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==} + engines: {node: '>=0.10.0'} + dev: true + + /object-inspect@1.13.1: + resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==} + dev: true + + /ofetch@1.3.3: + resolution: {integrity: sha512-s1ZCMmQWXy4b5K/TW9i/DtiN8Ku+xCiHcjQ6/J/nDdssirrQNOoB165Zu8EqLMA2lln1JUth9a0aW9Ap2ctrUg==} + dependencies: + destr: 2.0.2 + node-fetch-native: 1.6.1 + ufo: 1.3.2 + dev: true + + /ohash@1.1.3: + resolution: {integrity: sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==} + dev: true + + /once@1.4.0: + resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} + dependencies: + wrappy: 1.0.2 + dev: true + + /onetime@5.1.2: + resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==} + engines: {node: '>=6'} + dependencies: + mimic-fn: 2.1.0 + dev: true + + /onetime@6.0.0: + resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} + engines: {node: '>=12'} + dependencies: + mimic-fn: 4.0.0 + dev: true + + /open@9.1.0: + resolution: {integrity: sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==} + engines: {node: '>=14.16'} + dependencies: + default-browser: 4.0.0 + define-lazy-prop: 3.0.0 + is-inside-container: 1.0.0 + is-wsl: 2.2.0 + dev: true + + /optionator@0.9.3: + resolution: {integrity: sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==} + engines: {node: '>= 0.8.0'} + dependencies: + '@aashutoshrathi/word-wrap': 1.2.6 + deep-is: 0.1.4 + fast-levenshtein: 2.0.6 + levn: 0.4.1 + prelude-ls: 1.2.1 + type-check: 0.4.0 + dev: true + + /p-limit@2.3.0: + resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} + engines: {node: '>=6'} + dependencies: + p-try: 2.2.0 + dev: true + + /p-limit@3.1.0: + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} + engines: {node: '>=10'} + dependencies: + yocto-queue: 0.1.0 + dev: true + + /p-locate@4.1.0: + resolution: {integrity: sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==} + engines: {node: '>=8'} + dependencies: + p-limit: 2.3.0 + dev: true + + /p-locate@5.0.0: + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} + engines: {node: '>=10'} + dependencies: + p-limit: 3.1.0 + dev: true + + /p-try@2.2.0: + resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==} + engines: {node: '>=6'} + dev: true + + /pac-proxy-agent@7.0.1: + resolution: {integrity: sha512-ASV8yU4LLKBAjqIPMbrgtaKIvxQri/yh2OpI+S6hVa9JRkUI3Y3NPFbfngDtY7oFtSMD3w31Xns89mDa3Feo5A==} + engines: {node: '>= 14'} + dependencies: + '@tootallnate/quickjs-emscripten': 0.23.0 + agent-base: 7.1.0 + debug: 4.3.4 + get-uri: 6.0.2 + http-proxy-agent: 7.0.0 + https-proxy-agent: 7.0.2 + pac-resolver: 7.0.0 + socks-proxy-agent: 8.0.2 + transitivePeerDependencies: + - supports-color + dev: true + + /pac-resolver@7.0.0: + resolution: {integrity: sha512-Fd9lT9vJbHYRACT8OhCbZBbxr6KRSawSovFpy8nDGshaK99S/EBhVIHp9+crhxrsZOuvLpgL1n23iyPg6Rl2hg==} + engines: {node: '>= 14'} + dependencies: + degenerator: 5.0.1 + ip: 1.1.8 + netmask: 2.0.2 + dev: true + + /parent-module@1.0.1: + resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==} + engines: {node: '>=6'} + dependencies: + callsites: 3.1.0 + dev: true + + /parse-entities@2.0.0: + resolution: {integrity: sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ==} + dependencies: + character-entities: 1.2.4 + character-entities-legacy: 1.1.4 + character-reference-invalid: 1.1.4 + is-alphanumerical: 1.0.4 + is-decimal: 1.0.4 + is-hexadecimal: 1.0.4 + dev: true + + /parse-gitignore@2.0.0: + resolution: {integrity: sha512-RmVuCHWsfu0QPNW+mraxh/xjQVw/lhUCUru8Zni3Ctq3AoMhpDTq0OVdKS6iesd6Kqb7viCV3isAL43dciOSog==} + engines: {node: '>=14'} + dev: true + + /parse-json@5.2.0: + resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} + engines: {node: '>=8'} + dependencies: + '@babel/code-frame': 7.23.5 + error-ex: 1.3.2 + json-parse-even-better-errors: 2.3.1 + lines-and-columns: 1.2.4 + dev: true + + /parse-semver@1.1.1: + resolution: {integrity: sha512-Eg1OuNntBMH0ojvEKSrvDSnwLmvVuUOSdylH/pSCPNMIspLlweJyIWXCE+k/5hm3cj/EBUYwmWkjhBALNP4LXQ==} + dependencies: + semver: 5.7.2 + dev: true + + /parse5-htmlparser2-tree-adapter@7.0.0: + resolution: {integrity: sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g==} + dependencies: + domhandler: 5.0.3 + parse5: 7.1.2 + dev: true + + /parse5@7.1.2: + resolution: {integrity: sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==} + dependencies: + entities: 4.5.0 + dev: true + + /path-exists@4.0.0: + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} + engines: {node: '>=8'} + dev: true + + /path-is-absolute@1.0.1: + resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==} + engines: {node: '>=0.10.0'} + dev: true + + /path-key@3.1.1: + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} + engines: {node: '>=8'} + dev: true + + /path-key@4.0.0: + resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} + engines: {node: '>=12'} + dev: true + + /path-parse@1.0.7: + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} + dev: true + + /path-scurry@1.10.1: + resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==} + engines: {node: '>=16 || 14 >=14.17'} + dependencies: + lru-cache: 10.1.0 + minipass: 7.0.4 + dev: true + + /path-type@4.0.0: + resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==} + engines: {node: '>=8'} + dev: true + + /pathe@1.1.2: + resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} + dev: true + + /pend@1.2.0: + resolution: {integrity: sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==} + dev: true + + /perfect-debounce@1.0.0: + resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==} + dev: true + + /picocolors@1.0.0: + resolution: {integrity: sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==} + dev: true + + /picomatch@2.3.1: + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} + engines: {node: '>=8.6'} + dev: true + + /pirates@4.0.6: + resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} + engines: {node: '>= 6'} + dev: true + + /pkg-types@1.0.3: + resolution: {integrity: sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==} + dependencies: + jsonc-parser: 3.2.1 + mlly: 1.5.0 + pathe: 1.1.2 + dev: true + + /pluralize@8.0.0: + resolution: {integrity: sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==} + engines: {node: '>=4'} + dev: true + + /postcss-load-config@4.0.2: + resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==} + engines: {node: '>= 14'} + peerDependencies: + postcss: '>=8.0.9' + ts-node: '>=9.0.0' + peerDependenciesMeta: + postcss: + optional: true + ts-node: + optional: true + dependencies: + lilconfig: 3.0.0 + yaml: 2.3.4 + dev: true + + /postcss-selector-parser@6.0.15: + resolution: {integrity: sha512-rEYkQOMUCEMhsKbK66tbEU9QVIxbhN18YiniAwA7XQYTVBqrBy+P2p5JcdqsHgKM2zWylp8d7J6eszocfds5Sw==} + engines: {node: '>=4'} + dependencies: + cssesc: 3.0.0 + util-deprecate: 1.0.2 + dev: true + + /postcss@8.4.33: + resolution: {integrity: sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==} + engines: {node: ^10 || ^12 || >=14} + dependencies: + nanoid: 3.3.7 + picocolors: 1.0.0 + source-map-js: 1.0.2 + dev: true + + /prebuild-install@7.1.1: + resolution: {integrity: sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw==} + engines: {node: '>=10'} + hasBin: true + requiresBuild: true + dependencies: + detect-libc: 2.0.2 + expand-template: 2.0.3 + github-from-package: 0.0.0 + minimist: 1.2.8 + mkdirp-classic: 0.5.3 + napi-build-utils: 1.0.2 + node-abi: 3.54.0 + pump: 3.0.0 + rc: 1.2.8 + simple-get: 4.0.1 + tar-fs: 2.1.1 + tunnel-agent: 0.6.0 + dev: true + optional: true + + /prelude-ls@1.2.1: + resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} + engines: {node: '>= 0.8.0'} + dev: true + + /progress@2.0.3: + resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==} + engines: {node: '>=0.4.0'} + dev: true + + /prompts@2.4.2: + resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} + engines: {node: '>= 6'} + dependencies: + kleur: 3.0.3 + sisteransi: 1.0.5 + dev: true + + /proxy-agent@6.3.1: + resolution: {integrity: sha512-Rb5RVBy1iyqOtNl15Cw/llpeLH8bsb37gM1FUfKQ+Wck6xHlbAhWGUFiTRHtkjqGTA5pSHz6+0hrPW/oECihPQ==} + engines: {node: '>= 14'} + dependencies: + agent-base: 7.1.0 + debug: 4.3.4 + http-proxy-agent: 7.0.0 + https-proxy-agent: 7.0.2 + lru-cache: 7.18.3 + pac-proxy-agent: 7.0.1 + proxy-from-env: 1.1.0 + socks-proxy-agent: 8.0.2 + transitivePeerDependencies: + - supports-color + dev: true + + /proxy-from-env@1.1.0: + resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} + dev: true + + /pump@3.0.0: + resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==} + dependencies: + end-of-stream: 1.4.4 + once: 1.4.0 + dev: true + + /punycode@2.3.1: + resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==} + engines: {node: '>=6'} + dev: true + + /puppeteer-core@21.9.0: + resolution: {integrity: sha512-QgowcczLAoLWlV38s3y3VuEvjJGfKU5rR6Q23GUbiGOaiQi+QpaWQ+aXdzP9LHVSUPmHdAaWhcvMztYSw3f8gQ==} + engines: {node: '>=16.13.2'} + dependencies: + '@puppeteer/browsers': 1.9.1 + chromium-bidi: 0.5.4(devtools-protocol@0.0.1232444) + cross-fetch: 4.0.0 + debug: 4.3.4 + devtools-protocol: 0.0.1232444 + ws: 8.16.0 + transitivePeerDependencies: + - bufferutil + - encoding + - supports-color + - utf-8-validate + dev: true + + /puppeteer@21.9.0(typescript@5.3.3): + resolution: {integrity: sha512-vcLR81Rp+MBrgqhiXZfpwEBbyKTa88Hd+8Al3+emWzcJb9evLLSfUYli0QUqhofPFrXsO2A/dAF9OunyOivL6w==} + engines: {node: '>=16.13.2'} + hasBin: true + requiresBuild: true + dependencies: + '@puppeteer/browsers': 1.9.1 + cosmiconfig: 9.0.0(typescript@5.3.3) + puppeteer-core: 21.9.0 + transitivePeerDependencies: + - bufferutil + - encoding + - supports-color + - typescript + - utf-8-validate + dev: true + + /qs@6.11.2: + resolution: {integrity: sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==} + engines: {node: '>=0.6'} + dependencies: + side-channel: 1.0.4 + dev: true + + /queue-microtask@1.2.3: + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} + dev: true + + /queue-tick@1.0.1: + resolution: {integrity: sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==} + dev: true + + /rc9@2.1.1: + resolution: {integrity: sha512-lNeOl38Ws0eNxpO3+wD1I9rkHGQyj1NU1jlzv4go2CtEnEQEUfqnIvZG7W+bC/aXdJ27n5x/yUjb6RoT9tko+Q==} + dependencies: + defu: 6.1.4 + destr: 2.0.2 + flat: 5.0.2 + dev: true + + /rc@1.2.8: + resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==} + hasBin: true + requiresBuild: true + dependencies: + deep-extend: 0.6.0 + ini: 1.3.8 + minimist: 1.2.8 + strip-json-comments: 2.0.1 + dev: true + optional: true + + /read-pkg-up@7.0.1: + resolution: {integrity: sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==} + engines: {node: '>=8'} + dependencies: + find-up: 4.1.0 + read-pkg: 5.2.0 + type-fest: 0.8.1 + dev: true + + /read-pkg@5.2.0: + resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==} + engines: {node: '>=8'} + dependencies: + '@types/normalize-package-data': 2.4.4 + normalize-package-data: 2.5.0 + parse-json: 5.2.0 + type-fest: 0.6.0 + dev: true + + /read@1.0.7: + resolution: {integrity: sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ==} + engines: {node: '>=0.8'} + dependencies: + mute-stream: 0.0.8 + dev: true + + /readable-stream@3.6.2: + resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} + engines: {node: '>= 6'} + requiresBuild: true + dependencies: + inherits: 2.0.4 + string_decoder: 1.3.0 + util-deprecate: 1.0.2 + dev: true + optional: true + + /readdirp@3.6.0: + resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==} + engines: {node: '>=8.10.0'} + dependencies: + picomatch: 2.3.1 + dev: true + + /regexp-tree@0.1.27: + resolution: {integrity: sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA==} + hasBin: true + dev: true + + /regjsparser@0.10.0: + resolution: {integrity: sha512-qx+xQGZVsy55CH0a1hiVwHmqjLryfh7wQyF5HO07XJ9f7dQMY/gPQHhlyDkIzJKC+x2fUCpCcUODUUUFrm7SHA==} + hasBin: true + dependencies: + jsesc: 0.5.0 + dev: true + + /require-directory@2.1.1: + resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} + engines: {node: '>=0.10.0'} + dev: true + + /resolve-from@4.0.0: + resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==} + engines: {node: '>=4'} + dev: true + + /resolve-from@5.0.0: + resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} + engines: {node: '>=8'} + dev: true + + /resolve-pkg-maps@1.0.0: + resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} + dev: true + + /resolve@1.22.8: + resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} + hasBin: true + dependencies: + is-core-module: 2.13.1 + path-parse: 1.0.7 + supports-preserve-symlinks-flag: 1.0.0 + dev: true + + /reusify@1.0.4: + resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==} + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} + dev: true + + /rimraf@3.0.2: + resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==} + hasBin: true + dependencies: + glob: 7.2.3 + dev: true + + /rimraf@5.0.5: + resolution: {integrity: sha512-CqDakW+hMe/Bz202FPEymy68P+G50RfMQK+Qo5YUqc9SPipvbGjCGKd0RSKEelbsfQuw3g5NZDSrlZZAJurH1A==} + engines: {node: '>=14'} + hasBin: true + dependencies: + glob: 10.3.10 + dev: true + + /rollup@4.9.6: + resolution: {integrity: sha512-05lzkCS2uASX0CiLFybYfVkwNbKZG5NFQ6Go0VWyogFTXXbR039UVsegViTntkk4OglHBdF54ccApXRRuXRbsg==} + engines: {node: '>=18.0.0', npm: '>=8.0.0'} + hasBin: true + dependencies: + '@types/estree': 1.0.5 + optionalDependencies: + '@rollup/rollup-android-arm-eabi': 4.9.6 + '@rollup/rollup-android-arm64': 4.9.6 + '@rollup/rollup-darwin-arm64': 4.9.6 + '@rollup/rollup-darwin-x64': 4.9.6 + '@rollup/rollup-linux-arm-gnueabihf': 4.9.6 + '@rollup/rollup-linux-arm64-gnu': 4.9.6 + '@rollup/rollup-linux-arm64-musl': 4.9.6 + '@rollup/rollup-linux-riscv64-gnu': 4.9.6 + '@rollup/rollup-linux-x64-gnu': 4.9.6 + '@rollup/rollup-linux-x64-musl': 4.9.6 + '@rollup/rollup-win32-arm64-msvc': 4.9.6 + '@rollup/rollup-win32-ia32-msvc': 4.9.6 + '@rollup/rollup-win32-x64-msvc': 4.9.6 + fsevents: 2.3.3 + dev: true + + /run-applescript@5.0.0: + resolution: {integrity: sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==} + engines: {node: '>=12'} + dependencies: + execa: 5.1.1 + dev: true + + /run-parallel@1.2.0: + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} + dependencies: + queue-microtask: 1.2.3 + dev: true + + /safe-buffer@5.2.1: + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} + requiresBuild: true + dev: true + optional: true + + /sax@1.3.0: + resolution: {integrity: sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==} + dev: true + + /scule@1.2.0: + resolution: {integrity: sha512-CRCmi5zHQnSoeCik9565PONMg0kfkvYmcSqrbOJY4txFfy1wvVULV4FDaiXhUblUgahdqz3F2NwHZ8i4eBTwUw==} + dev: true + + /semver@5.7.2: + resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} + hasBin: true + dev: true + + /semver@7.5.4: + resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} + engines: {node: '>=10'} + hasBin: true + dependencies: + lru-cache: 6.0.0 + dev: true + + /set-function-length@1.2.0: + resolution: {integrity: sha512-4DBHDoyHlM1IRPGYcoxexgh67y4ueR53FKV1yyxwFMY7aCqcN/38M1+SwZ/qJQ8iLv7+ck385ot4CcisOAPT9w==} + engines: {node: '>= 0.4'} + dependencies: + define-data-property: 1.1.1 + function-bind: 1.1.2 + get-intrinsic: 1.2.2 + gopd: 1.0.1 + has-property-descriptors: 1.0.1 + dev: true + + /shebang-command@2.0.0: + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} + engines: {node: '>=8'} + dependencies: + shebang-regex: 3.0.0 + dev: true + + /shebang-regex@3.0.0: + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} + engines: {node: '>=8'} + dev: true + + /side-channel@1.0.4: + resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} + dependencies: + call-bind: 1.0.5 + get-intrinsic: 1.2.2 + object-inspect: 1.13.1 + dev: true + + /signal-exit@3.0.7: + resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} + dev: true + + /signal-exit@4.1.0: + resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} + engines: {node: '>=14'} + dev: true + + /simple-concat@1.0.1: + resolution: {integrity: sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==} + requiresBuild: true + dev: true + optional: true + + /simple-get@4.0.1: + resolution: {integrity: sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==} + requiresBuild: true + dependencies: + decompress-response: 6.0.0 + once: 1.4.0 + simple-concat: 1.0.1 + dev: true + optional: true + + /sisteransi@1.0.5: + resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} + dev: true + + /slash@3.0.0: + resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==} + engines: {node: '>=8'} + dev: true + + /smart-buffer@4.2.0: + resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==} + engines: {node: '>= 6.0.0', npm: '>= 3.0.0'} + dev: true + + /socks-proxy-agent@8.0.2: + resolution: {integrity: sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g==} + engines: {node: '>= 14'} + dependencies: + agent-base: 7.1.0 + debug: 4.3.4 + socks: 2.7.1 + transitivePeerDependencies: + - supports-color + dev: true + + /socks@2.7.1: + resolution: {integrity: sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==} + engines: {node: '>= 10.13.0', npm: '>= 3.0.0'} + dependencies: + ip: 2.0.0 + smart-buffer: 4.2.0 + dev: true + + /source-map-js@1.0.2: + resolution: {integrity: sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==} + engines: {node: '>=0.10.0'} + dev: true + + /source-map@0.6.1: + resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==} + engines: {node: '>=0.10.0'} + requiresBuild: true + dev: true + optional: true + + /source-map@0.8.0-beta.0: + resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==} + engines: {node: '>= 8'} + dependencies: + whatwg-url: 7.1.0 + dev: true + + /spdx-correct@3.2.0: + resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==} + dependencies: + spdx-expression-parse: 3.0.1 + spdx-license-ids: 3.0.16 + dev: true + + /spdx-exceptions@2.4.0: + resolution: {integrity: sha512-hcjppoJ68fhxA/cjbN4T8N6uCUejN8yFw69ttpqtBeCbF3u13n7mb31NB9jKwGTTWWnt9IbRA/mf1FprYS8wfw==} + dev: true + + /spdx-expression-parse@3.0.1: + resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==} + dependencies: + spdx-exceptions: 2.4.0 + spdx-license-ids: 3.0.16 + dev: true + + /spdx-expression-parse@4.0.0: + resolution: {integrity: sha512-Clya5JIij/7C6bRR22+tnGXbc4VKlibKSVj2iHvVeX5iMW7s1SIQlqu699JkODJJIhh/pUu8L0/VLh8xflD+LQ==} + dependencies: + spdx-exceptions: 2.4.0 + spdx-license-ids: 3.0.16 + dev: true + + /spdx-license-ids@3.0.16: + resolution: {integrity: sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==} + dev: true + + /std-env@3.7.0: + resolution: {integrity: sha512-JPbdCEQLj1w5GilpiHAx3qJvFndqybBysA3qUOnznweH4QbNYUsW/ea8QzSrnh0vNsezMMw5bcVool8lM0gwzg==} + dev: true + + /streamx@2.15.6: + resolution: {integrity: sha512-q+vQL4AAz+FdfT137VF69Cc/APqUbxy+MDOImRrMvchJpigHj9GksgDU2LYbO9rx7RX6osWgxJB2WxhYv4SZAw==} + dependencies: + fast-fifo: 1.3.2 + queue-tick: 1.0.1 + dev: true + + /string-argv@0.3.2: + resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==} + engines: {node: '>=0.6.19'} + dev: true + + /string-width@4.2.3: + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} + engines: {node: '>=8'} + dependencies: + emoji-regex: 8.0.0 + is-fullwidth-code-point: 3.0.0 + strip-ansi: 6.0.1 + dev: true + + /string-width@5.1.2: + resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==} + engines: {node: '>=12'} + dependencies: + eastasianwidth: 0.2.0 + emoji-regex: 9.2.2 + strip-ansi: 7.1.0 + dev: true + + /string_decoder@1.3.0: + resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} + requiresBuild: true + dependencies: + safe-buffer: 5.2.1 + dev: true + optional: true + + /strip-ansi@6.0.1: + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} + engines: {node: '>=8'} + dependencies: + ansi-regex: 5.0.1 + dev: true + + /strip-ansi@7.1.0: + resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==} + engines: {node: '>=12'} + dependencies: + ansi-regex: 6.0.1 + dev: true + + /strip-final-newline@2.0.0: + resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==} + engines: {node: '>=6'} + dev: true + + /strip-final-newline@3.0.0: + resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} + engines: {node: '>=12'} + dev: true + + /strip-indent@3.0.0: + resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==} + engines: {node: '>=8'} + dependencies: + min-indent: 1.0.1 + dev: true + + /strip-json-comments@2.0.1: + resolution: {integrity: sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==} + engines: {node: '>=0.10.0'} + requiresBuild: true + dev: true + optional: true + + /strip-json-comments@3.1.1: + resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==} + engines: {node: '>=8'} + dev: true + + /sucrase@3.35.0: + resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==} + engines: {node: '>=16 || 14 >=14.17'} + hasBin: true + dependencies: + '@jridgewell/gen-mapping': 0.3.3 + commander: 4.1.1 + glob: 10.3.10 + lines-and-columns: 1.2.4 + mz: 2.7.0 + pirates: 4.0.6 + ts-interface-checker: 0.1.13 + dev: true + + /supports-color@5.5.0: + resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==} + engines: {node: '>=4'} + dependencies: + has-flag: 3.0.0 + dev: true + + /supports-color@7.2.0: + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} + engines: {node: '>=8'} + dependencies: + has-flag: 4.0.0 + dev: true + + /supports-preserve-symlinks-flag@1.0.0: + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} + engines: {node: '>= 0.4'} + dev: true + + /svgo@3.2.0: + resolution: {integrity: sha512-4PP6CMW/V7l/GmKRKzsLR8xxjdHTV4IMvhTnpuHwwBazSIlw5W/5SmPjN8Dwyt7lKbSJrRDgp4t9ph0HgChFBQ==} + engines: {node: '>=14.0.0'} + hasBin: true + dependencies: + '@trysound/sax': 0.2.0 + commander: 7.2.0 + css-select: 5.1.0 + css-tree: 2.3.1 + css-what: 6.1.0 + csso: 5.0.5 + picocolors: 1.0.0 + dev: true + + /synckit@0.6.2: + resolution: {integrity: sha512-Vhf+bUa//YSTYKseDiiEuQmhGCoIF3CVBhunm3r/DQnYiGT4JssmnKQc44BIyOZRK2pKjXXAgbhfmbeoC9CJpA==} + engines: {node: '>=12.20'} + dependencies: + tslib: 2.6.2 + dev: true + + /tar-fs@2.1.1: + resolution: {integrity: sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==} + requiresBuild: true + dependencies: + chownr: 1.1.4 + mkdirp-classic: 0.5.3 + pump: 3.0.0 + tar-stream: 2.2.0 + dev: true + optional: true + + /tar-fs@3.0.4: + resolution: {integrity: sha512-5AFQU8b9qLfZCX9zp2duONhPmZv0hGYiBPJsyUdqMjzq/mqVpy/rEUSeHk1+YitmxugaptgBh5oDGU3VsAJq4w==} + dependencies: + mkdirp-classic: 0.5.3 + pump: 3.0.0 + tar-stream: 3.1.7 + dev: true + + /tar-stream@2.2.0: + resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} + engines: {node: '>=6'} + requiresBuild: true + dependencies: + bl: 4.1.0 + end-of-stream: 1.4.4 + fs-constants: 1.0.0 + inherits: 2.0.4 + readable-stream: 3.6.2 + dev: true + optional: true + + /tar-stream@3.1.7: + resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==} + dependencies: + b4a: 1.6.4 + fast-fifo: 1.3.2 + streamx: 2.15.6 + dev: true + + /tar@6.2.0: + resolution: {integrity: sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==} + engines: {node: '>=10'} + dependencies: + chownr: 2.0.0 + fs-minipass: 2.1.0 + minipass: 5.0.0 + minizlib: 2.1.2 + mkdirp: 1.0.4 + yallist: 4.0.0 + dev: true + + /temp-dir@3.0.0: + resolution: {integrity: sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==} + engines: {node: '>=14.16'} + dev: true + + /tempy@3.1.0: + resolution: {integrity: sha512-7jDLIdD2Zp0bDe5r3D2qtkd1QOCacylBuL7oa4udvN6v2pqr4+LcCr67C8DR1zkpaZ8XosF5m1yQSabKAW6f2g==} + engines: {node: '>=14.16'} + dependencies: + is-stream: 3.0.0 + temp-dir: 3.0.0 + type-fest: 2.19.0 + unique-string: 3.0.0 + dev: true + + /text-table@0.2.0: + resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==} + dev: true + + /thenify-all@1.6.0: + resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==} + engines: {node: '>=0.8'} + dependencies: + thenify: 3.3.1 + dev: true + + /thenify@3.3.1: + resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} + dependencies: + any-promise: 1.3.0 + dev: true + + /through@2.3.8: + resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} + dev: true + + /titleize@3.0.0: + resolution: {integrity: sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==} + engines: {node: '>=12'} + dev: true + + /tmp@0.2.1: + resolution: {integrity: sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ==} + engines: {node: '>=8.17.0'} + dependencies: + rimraf: 3.0.2 + dev: true + + /to-fast-properties@2.0.0: + resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==} + engines: {node: '>=4'} + dev: true + + /to-regex-range@5.0.1: + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} + engines: {node: '>=8.0'} + dependencies: + is-number: 7.0.0 + dev: true + + /toml-eslint-parser@0.9.3: + resolution: {integrity: sha512-moYoCvkNUAPCxSW9jmHmRElhm4tVJpHL8ItC/+uYD0EpPSFXbck7yREz9tNdJVTSpHVod8+HoipcpbQ0oE6gsw==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + dependencies: + eslint-visitor-keys: 3.4.3 + dev: true + + /tr46@0.0.3: + resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} + dev: true + + /tr46@1.0.1: + resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==} + dependencies: + punycode: 2.3.1 + dev: true + + /tree-kill@1.2.2: + resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} + hasBin: true + dev: true + + /ts-api-utils@1.0.3(typescript@5.3.3): + resolution: {integrity: sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==} + engines: {node: '>=16.13.0'} + peerDependencies: + typescript: '>=4.2.0' + dependencies: + typescript: 5.3.3 + dev: true + + /ts-interface-checker@0.1.13: + resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} + dev: true + + /tslib@2.6.2: + resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} + dev: true + + /tsup@8.0.1(typescript@5.3.3): + resolution: {integrity: sha512-hvW7gUSG96j53ZTSlT4j/KL0q1Q2l6TqGBFc6/mu/L46IoNWqLLUzLRLP1R8Q7xrJTmkDxxDoojV5uCVs1sVOg==} + engines: {node: '>=18'} + hasBin: true + peerDependencies: + '@microsoft/api-extractor': ^7.36.0 + '@swc/core': ^1 + postcss: ^8.4.12 + typescript: '>=4.5.0' + peerDependenciesMeta: + '@microsoft/api-extractor': + optional: true + '@swc/core': + optional: true + postcss: + optional: true + typescript: + optional: true + dependencies: + bundle-require: 4.0.2(esbuild@0.19.12) + cac: 6.7.14 + chokidar: 3.5.3 + debug: 4.3.4 + esbuild: 0.19.12 + execa: 5.1.1 + globby: 11.1.0 + joycon: 3.1.1 + postcss-load-config: 4.0.2 + resolve-from: 5.0.0 + rollup: 4.9.6 + source-map: 0.8.0-beta.0 + sucrase: 3.35.0 + tree-kill: 1.2.2 + typescript: 5.3.3 + transitivePeerDependencies: + - supports-color + - ts-node + dev: true + + /tsx@4.7.0: + resolution: {integrity: sha512-I+t79RYPlEYlHn9a+KzwrvEwhJg35h/1zHsLC2JXvhC2mdynMv6Zxzvhv5EMV6VF5qJlLlkSnMVvdZV3PSIGcg==} + engines: {node: '>=18.0.0'} + hasBin: true + dependencies: + esbuild: 0.19.12 + get-tsconfig: 4.7.2 + optionalDependencies: + fsevents: 2.3.3 + dev: true + + /tunnel-agent@0.6.0: + resolution: {integrity: sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==} + requiresBuild: true + dependencies: + safe-buffer: 5.2.1 + dev: true + optional: true + + /tunnel@0.0.6: + resolution: {integrity: sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg==} + engines: {node: '>=0.6.11 <=0.7.0 || >=0.7.3'} + dev: true + + /type-check@0.4.0: + resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==} + engines: {node: '>= 0.8.0'} + dependencies: + prelude-ls: 1.2.1 + dev: true + + /type-detect@4.0.8: + resolution: {integrity: sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==} + engines: {node: '>=4'} + dev: true + + /type-fest@0.20.2: + resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==} + engines: {node: '>=10'} + dev: true + + /type-fest@0.6.0: + resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==} + engines: {node: '>=8'} + dev: true + + /type-fest@0.8.1: + resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==} + engines: {node: '>=8'} + dev: true + + /type-fest@1.4.0: + resolution: {integrity: sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==} + engines: {node: '>=10'} + dev: true + + /type-fest@2.19.0: + resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==} + engines: {node: '>=12.20'} + dev: true + + /type-level-regexp@0.1.17: + resolution: {integrity: sha512-wTk4DH3cxwk196uGLK/E9pE45aLfeKJacKmcEgEOA/q5dnPGNxXt0cfYdFxb57L+sEpf1oJH4Dnx/pnRcku9jg==} + dev: true + + /typed-rest-client@1.8.11: + resolution: {integrity: sha512-5UvfMpd1oelmUPRbbaVnq+rHP7ng2cE4qoQkQeAqxRL6PklkxsM0g32/HL0yfvruK6ojQ5x8EE+HF4YV6DtuCA==} + dependencies: + qs: 6.11.2 + tunnel: 0.0.6 + underscore: 1.13.6 + dev: true + + /typescript@5.3.3: + resolution: {integrity: sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==} + engines: {node: '>=14.17'} + hasBin: true + dev: true + + /uc.micro@1.0.6: + resolution: {integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==} + dev: true + + /ufo@1.3.2: + resolution: {integrity: sha512-o+ORpgGwaYQXgqGDwd+hkS4PuZ3QnmqMMxRuajK/a38L6fTpcE5GPIfrf+L/KemFzfUpeUQc1rRS1iDBozvnFA==} + dev: true + + /unbzip2-stream@1.4.3: + resolution: {integrity: sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==} + dependencies: + buffer: 5.7.1 + through: 2.3.8 + dev: true + + /underscore@1.13.6: + resolution: {integrity: sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A==} + dev: true + + /undici-types@5.26.5: + resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==} + dev: true + + /unique-string@3.0.0: + resolution: {integrity: sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==} + engines: {node: '>=12'} + dependencies: + crypto-random-string: 4.0.0 + dev: true + + /unist-util-stringify-position@2.0.3: + resolution: {integrity: sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g==} + dependencies: + '@types/unist': 2.0.10 + dev: true + + /universalify@0.1.2: + resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} + engines: {node: '>= 4.0.0'} + dev: true + + /unplugin@1.6.0: + resolution: {integrity: sha512-BfJEpWBu3aE/AyHx8VaNE/WgouoQxgH9baAiH82JjX8cqVyi3uJQstqwD5J+SZxIK326SZIhsSZlALXVBCknTQ==} + dependencies: + acorn: 8.11.3 + chokidar: 3.5.3 + webpack-sources: 3.2.3 + webpack-virtual-modules: 0.6.1 + dev: true + + /untildify@4.0.0: + resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==} + engines: {node: '>=8'} + dev: true + + /update-browserslist-db@1.0.13(browserslist@4.22.2): + resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==} + hasBin: true + peerDependencies: + browserslist: '>= 4.21.0' + dependencies: + browserslist: 4.22.2 + escalade: 3.1.1 + picocolors: 1.0.0 + dev: true + + /uri-js@4.4.1: + resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} + dependencies: + punycode: 2.3.1 + dev: true + + /url-join@4.0.1: + resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==} + dev: true + + /urlpattern-polyfill@9.0.0: + resolution: {integrity: sha512-WHN8KDQblxd32odxeIgo83rdVDE2bvdkb86it7bMhYZwWKJz0+O0RK/eZiHYnM+zgt/U7hAHOlCQGfjjvSkw2g==} + dev: true + + /util-deprecate@1.0.2: + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} + dev: true + + /validate-npm-package-license@3.0.4: + resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==} + dependencies: + spdx-correct: 3.2.0 + spdx-expression-parse: 3.0.1 + dev: true + + /vue-eslint-parser@9.4.2(eslint@8.56.0): + resolution: {integrity: sha512-Ry9oiGmCAK91HrKMtCrKFWmSFWvYkpGglCeFAIqDdr9zdXmMMpJOmUJS7WWsW7fX81h6mwHmUZCQQ1E0PkSwYQ==} + engines: {node: ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: '>=6.0.0' + dependencies: + debug: 4.3.4 + eslint: 8.56.0 + eslint-scope: 7.2.2 + eslint-visitor-keys: 3.4.3 + espree: 9.6.1 + esquery: 1.5.0 + lodash: 4.17.21 + semver: 7.5.4 + transitivePeerDependencies: + - supports-color + dev: true + + /webidl-conversions@3.0.1: + resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} + dev: true + + /webidl-conversions@4.0.2: + resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==} + dev: true + + /webpack-sources@3.2.3: + resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==} + engines: {node: '>=10.13.0'} + dev: true + + /webpack-virtual-modules@0.6.1: + resolution: {integrity: sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg==} + dev: true + + /whatwg-url@5.0.0: + resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} + dependencies: + tr46: 0.0.3 + webidl-conversions: 3.0.1 + dev: true + + /whatwg-url@7.1.0: + resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==} + dependencies: + lodash.sortby: 4.7.0 + tr46: 1.0.1 + webidl-conversions: 4.0.2 + dev: true + + /which@2.0.2: + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} + engines: {node: '>= 8'} + hasBin: true + dependencies: + isexe: 2.0.0 + dev: true + + /wrap-ansi@7.0.0: + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} + engines: {node: '>=10'} + dependencies: + ansi-styles: 4.3.0 + string-width: 4.2.3 + strip-ansi: 6.0.1 + dev: true + + /wrap-ansi@8.1.0: + resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} + engines: {node: '>=12'} + dependencies: + ansi-styles: 6.2.1 + string-width: 5.1.2 + strip-ansi: 7.1.0 + dev: true + + /wrappy@1.0.2: + resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} + dev: true + + /ws@8.16.0: + resolution: {integrity: sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==} + 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 + dev: true + + /xml-name-validator@4.0.0: + resolution: {integrity: sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw==} + engines: {node: '>=12'} + dev: true + + /xml2js@0.5.0: + resolution: {integrity: sha512-drPFnkQJik/O+uPKpqSgr22mpuFHqKdbS835iAQrUC73L2F5WkboIRd63ai/2Yg6I1jzifPFKH2NTK+cfglkIA==} + engines: {node: '>=4.0.0'} + dependencies: + sax: 1.3.0 + xmlbuilder: 11.0.1 + dev: true + + /xmlbuilder@11.0.1: + resolution: {integrity: sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==} + engines: {node: '>=4.0'} + dev: true + + /y18n@5.0.8: + resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} + engines: {node: '>=10'} + dev: true + + /yallist@4.0.0: + resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==} + dev: true + + /yaml-eslint-parser@1.2.2: + resolution: {integrity: sha512-pEwzfsKbTrB8G3xc/sN7aw1v6A6c/pKxLAkjclnAyo5g5qOh6eL9WGu0o3cSDQZKrTNk4KL4lQSwZW+nBkANEg==} + engines: {node: ^14.17.0 || >=16.0.0} + dependencies: + eslint-visitor-keys: 3.4.3 + lodash: 4.17.21 + yaml: 2.3.4 + dev: true + + /yaml@2.3.4: + resolution: {integrity: sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==} + engines: {node: '>= 14'} + dev: true + + /yargs-parser@21.1.1: + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} + engines: {node: '>=12'} + dev: true + + /yargs@17.7.2: + resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} + engines: {node: '>=12'} + dependencies: + cliui: 8.0.1 + escalade: 3.1.1 + 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 + dev: true + + /yauzl@2.10.0: + resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==} + dependencies: + buffer-crc32: 0.2.13 + fd-slicer: 1.1.0 + dev: true + + /yazl@2.5.1: + resolution: {integrity: sha512-phENi2PLiHnHb6QBVot+dJnaAZ0xosj7p3fWl+znIjBDlnMI2PsZCJZ306BPTFOaHf5qdDEI8x5qFrSOBN5vrw==} + dependencies: + buffer-crc32: 0.2.13 + dev: true + + /yocto-queue@0.1.0: + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} + engines: {node: '>=10'} + dev: true diff --git a/scripts/build.ts b/scripts/build.ts new file mode 100644 index 00000000..7ddd6cd8 --- /dev/null +++ b/scripts/build.ts @@ -0,0 +1,49 @@ +import { cp, readdir, writeFile } from 'node:fs/promises' +import { basename, join } from 'node:path' +import { flavorEntries } from '@catppuccin/palette' +import { build } from 'tsup' +import { rimraf } from 'rimraf' +import { defaults } from '~/defaults' +import { createVscTheme } from '~/hooks/generateThemes' + +const DIST = 'dist' +const flavors = flavorEntries.map(([f]) => f) + +// CLEANUP +await rimraf(DIST) + +// COPY ICONS TO DIST +await Promise.all(flavors.map(async (f) => { + await cp(join('icons', f), join(DIST, f, 'icons'), { recursive: true }) +})) + +// GENERATE ICON DEFINITIONS AND SAVE THEM TO DIST +const icons = await readdir(join(DIST, flavors[0], 'icons')) +const iconDefinitions = icons.reduce((d, i) => ({ + ...d, + [basename(i, '.svg')]: { iconPath: `./icons/${i}` }, +}), {} as Record) +await writeFile( + join(DIST, 'iconDefinitions.json'), + JSON.stringify(iconDefinitions, null, 2), +) + +// CREATE THEME AND INJECT ICON DEFINITIONS +const theme = createVscTheme(defaults, iconDefinitions) + +// WRITE THEMES +await Promise.all(flavors.map(async (f) => { + await writeFile( + join(DIST, f, 'theme.json'), + JSON.stringify(theme, null, 2), + ) +})) + +// BUILD EXTENSION RUNTIME +await build({ + entry: ['src/index.ts'], + format: ['cjs'], + external: ['vscode'], + minify: true, + shims: true, +}) diff --git a/scripts/catppuccinize.ts b/scripts/catppuccinize.ts deleted file mode 100644 index 8ce77ca8..00000000 --- a/scripts/catppuccinize.ts +++ /dev/null @@ -1,32 +0,0 @@ -import colorsea from 'colorsea' -import { variants } from '@catppuccin/palette' -import { labelToHex } from '@/palettes' - -const mocha = variants.mocha - -//* avoid overlay1 being considered in deltaE -const { overlay1: _, ...catppuccinColors } = labelToHex.mocha -const catppuccinPalette = Object.values(catppuccinColors) as string [] - -function deltaE(c1: string, c2: string) { - return colorsea(c1).deltaE(colorsea(c2), 'cie2000') -} - -function catppuccinizeColor(color: string) { - switch (color) { - case '#fff': - case '#ffffff': return mocha.text.hex - case '#808080': return mocha.overlay1.hex - default: return [...catppuccinPalette].sort( - (c1, c2) => deltaE(color, c1) - deltaE(color, c2), - ).at(0) - } -} - -/** - * Change SVG colors to Catppuccin Mocha palette colors - * @param svg SVG as string - */ -export function catppuccinizeSvg(svg: string) { - return svg.replaceAll(/#(([a-fA-F0-9]{3}){1,2})/gi, catppuccinizeColor) -} diff --git a/scripts/catwalk.ts b/scripts/catwalk.ts index f00d6508..ec7ec1f9 100644 --- a/scripts/catwalk.ts +++ b/scripts/catwalk.ts @@ -1,21 +1,82 @@ import { exec } from 'node:child_process' -import consola from 'consola' +import { readdir, writeFile } from 'node:fs/promises' +import { join, resolve } from 'node:path' +import { exit } from 'node:process' +import { promisify } from 'node:util' +import type { FlavorName } from '@catppuccin/palette' +import { flavorEntries, flavors } from '@catppuccin/palette' +import { lookpath } from 'lookpath' +import { launch } from 'puppeteer' +import { temporaryDirectoryTask } from 'tempy' -const cmd = [ - 'catwalk', - 'assets/previews/latte-icons.png', - 'assets/previews/frappe-icons.png', - 'assets/previews/macchiato-icons.png', - 'assets/previews/mocha-icons.png', - '-o assets/preview.webp', - '-l composite', -].join(' ') +if (!await lookpath('catwalk')) { + console.error('Catwalk not installed.') + exit() +} -consola.info('Runing `catwalk` to generate preview...') +const OUT = 'assets/catwalk.png' -exec(cmd, (err, _out) => { - if (err) - consola.error(err) - else - consola.success('Successfully built catwalk preview!') +const allIcons = await readdir('icons/latte') +const fileIcons = allIcons + .filter(i => !i.startsWith('folder_') && !i.startsWith('_')) + .toSorted(() => 0.5 - Math.random()) + +function generateIcons(flavor: FlavorName) { + return Array(6) + .fill(fileIcons.map(i => `${resolve(join('icons', flavor, i))}`)) + .flat() +} + +function generateHtml(flavor: FlavorName) { + const icons = generateIcons(flavor) + return ` + + + + + +
+ ${icons.map(i => ``).join('\n')} +
+ + +` +} + +await temporaryDirectoryTask(async (tmp) => { + const images = await Promise.all(flavorEntries.map(async ([flavor]) => { + const htmlPath = join(tmp, `${flavor}.html`) + const screenshotPath = join(tmp, `${flavor}.png`) + await writeFile(htmlPath, generateHtml(flavor)) + const browser = await launch({ headless: 'new' }) + const page = await browser.newPage() + await page.setViewport({ + height: 400, + width: 700, + deviceScaleFactor: 3, + }) + await page.goto(join('file:', htmlPath)) + await page.screenshot({ path: screenshotPath }) + await browser.close() + return screenshotPath + })) + await promisify(exec)(`catwalk ${images.join(' ')} --output="${OUT}"`) }) diff --git a/scripts/generate.ts b/scripts/generate.ts new file mode 100644 index 00000000..afb70605 --- /dev/null +++ b/scripts/generate.ts @@ -0,0 +1,37 @@ +/** + * Generate missing icons from existing ones from other palettes. + * If an icon exists in `icons/latte`, it will create its counterparts for other palettes. + */ + +import { readFileSync, readdirSync, writeFileSync } from 'node:fs' +import { resolve } from 'node:path' +import { SVG, parseColors } from '@iconify/tools' +import { palettes } from '../src/palettes' + +const flavors = Object.keys(palettes) as Array + +for (const origin of flavors) { + const originPath = resolve('icons', origin) + const originSvgs = readdirSync(originPath) + + for (const dest of flavors.filter(f => f !== origin)) { + const destPath = resolve('icons', dest) + const destSvgs = readdirSync(destPath) + originSvgs.filter(s => !destSvgs.includes(s)).forEach(async (i) => { + const svg = new SVG(readFileSync(resolve(originPath, i), 'utf8')) + parseColors(svg, { + callback(attr, color) { + if (attr === 'stroke') { + const newColorName = palettes[origin].find(v => v[1] === color.toLowerCase())?.[0] + const newColor = palettes[dest].find(v => v[0] === newColorName)?.[1] + if (!newColor) + throw new Error(`Color '${color}' found in '${i}' is not in ${origin} palette.`) + return newColor + } + return color + }, + }) + writeFileSync(resolve(destPath, i), svg.toPrettyString()) + }) + } +} diff --git a/scripts/icons.ts b/scripts/icons.ts deleted file mode 100644 index 24c7312c..00000000 --- a/scripts/icons.ts +++ /dev/null @@ -1,54 +0,0 @@ -import { readFile, readdir, writeFile } from 'node:fs/promises' -import { parseArgs } from 'node:util' -import consola from 'consola' -import { ensureDir } from 'fs-extra' -import { join, resolve } from 'pathe' - -import { catppuccinizeSvg } from './catppuccinize' -import { optimizeSvg } from './optimize' -import { injectPalette } from './inject' - -const { positionals, values } = parseArgs({ - allowPositionals: true, - options: { - all: { - type: 'boolean', - short: 'a', - }, - new: { - type: 'boolean', - short: 'n', - }, - }, -}) - -if (!positionals.length && !values.all && !values.new) { - consola.error('Missing icon name. Specify what icon(s) to build.') - process.exit() -} - -if (values.all) - consola.info('Building all icons from `src/icons`...') - -const SOURCE = resolve(join('src', 'icons')) -const DEST = resolve('icons') - -await ensureDir(DEST) - -const existing = await readdir(DEST) - -const icons = values.all - ? await readdir(SOURCE) - : values.new - ? (await readdir(SOURCE)).filter(x => !existing.includes(x)) - : positionals.map(p => `${p}.svg`) - -await Promise.all(icons.map(async (icon) => { - const svg = await readFile(resolve(join(SOURCE, icon)), 'utf8') - const catppuccinized = catppuccinizeSvg(svg) - const optimized = optimizeSvg(catppuccinized) - const injected = injectPalette(optimized) - await writeFile(join(DEST, icon), injected) -})) - -consola.success(`Done! Successfully built ${icons.length} icon(s).`) diff --git a/scripts/inject.ts b/scripts/inject.ts deleted file mode 100644 index 75bec4ea..00000000 --- a/scripts/inject.ts +++ /dev/null @@ -1,11 +0,0 @@ -import { cssVarStyleTags, hexToVar } from '@/palettes' - -/** - * Inject mocha palette as CSS variables and replace found colors in SVG - * @param svg SVG as string - */ -export function injectPalette(svg: string) { - const replaced = svg.replaceAll(/#([a-dA-F0-9]{6})/gi, m => `var(${hexToVar.mocha[m]})`) - const injected = replaced.replace(/\n/, cssVarStyleTags.mocha) - return injected -} diff --git a/scripts/integrity.ts b/scripts/integrity.ts deleted file mode 100644 index 6c847deb..00000000 --- a/scripts/integrity.ts +++ /dev/null @@ -1,86 +0,0 @@ -import { readdir } from 'node:fs/promises' -import { exit } from 'node:process' -import consola from 'consola' -import { join, resolve } from 'pathe' -import { filename } from 'pathe/utils' -import { extensions, files, folders, foldersExpanded, languages } from '@/associations' - -const RAW_ICONS = resolve(join('src', 'icons')) -const ICONS = resolve('icons') -const rawIcons = (await readdir(RAW_ICONS)).map(filename) -const icons = (await readdir(ICONS)).map(filename) - -consola.info('Checking for unused raw icons in `src/icons`...') -const unusedRawIcons = rawIcons.filter(i => !icons.includes(i)) -if (unusedRawIcons.length > 0) { - const unusedrawIconsStr = unusedRawIcons.reduce((s, i) => `${s}\n\t- ${i}`, '') - consola.warn(`Found ${unusedRawIcons.length} unused raw icon(s):${unusedrawIconsStr}`) -} -else { - consola.success('No unused raw icons found.') -} - -consola.info('Checking for missing language icons...') -const langIcons = Object.keys(languages) -const missingLangIcons = langIcons.filter(i => !icons.includes(i)) -if (missingLangIcons.length > 0) { - const missingLangIconsStr = missingLangIcons.reduce((s, i) => `${s}\n\t- ${i}`, '') - consola.error(`Found ${missingLangIcons.length} missing language icon(s):${missingLangIconsStr}`) -} -else { - consola.success('No missing language icons found.\n') -} - -consola.info('Checking for missing extension icons...') -const extIcons = Object.keys(extensions) -const missingExtIcons = extIcons.filter(i => !icons.includes(i)) -if (missingExtIcons.length > 0) { - const missingExtIconsStr = missingExtIcons.reduce((s, i) => `${s}\n\t- ${i}`, '') - consola.error(`Found ${missingExtIcons.length} missing extension icon(s):${missingExtIconsStr}`) -} -else { - consola.success('No missing extension icons found.\n') -} - -consola.info('Checking for missing file icons...') -const fileIcons = Object.keys(files) -const missingFileIcons = fileIcons.filter(i => !icons.includes(i)) -if (missingFileIcons.length > 0) { - const missingFileIconsStr = missingFileIcons.reduce((s, i) => `${s}\n\t- ${i}`, '') - consola.error(`Found ${missingFileIcons.length} missing file icon(s):${missingFileIconsStr}`) -} -else { - consola.success('No missing file icons found.\n') -} - -consola.info('Checking for missing folder icons...') -const folderIcons = Object.keys(folders) -const missingFolderIcons = folderIcons.filter(i => !icons.includes(i)) -if (missingFolderIcons.length > 0) { - const missingFolderIconsStr = missingFolderIcons.reduce((s, i) => `${s}\n\t- ${i}`, '') - consola.error(`Found ${missingFolderIcons.length} missing folder icon(s):${missingFolderIconsStr}`) -} -else { - consola.success('No missing folder icons found.\n') -} - -consola.info('Checking for missing expanded folder icons...') -const efolderIcons = Object.keys(foldersExpanded) -const missingEfolderIcons = efolderIcons.filter(i => !icons.includes(i)) -if (missingEfolderIcons.length > 0) { - const missingEfolderIconsStr = missingEfolderIcons.reduce((s, i) => `${s}\n\t- ${i}`, '') - consola.error(`Found ${missingEfolderIcons.length} missing expanded folder icon(s):${missingEfolderIconsStr}`) -} -else { - consola.success('No missing expanded folder icons found.\n') -} - -const missing = [ - missingLangIcons, - missingExtIcons, - missingFileIcons, - missingFolderIcons, - missingEfolderIcons, -].reduce((acc, cur) => acc + cur.length, 0) - -exit(missing) diff --git a/scripts/normalize.ts b/scripts/normalize.ts deleted file mode 100644 index 63b748cb..00000000 --- a/scripts/normalize.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { type CattppucinVariant, varToHex } from '@/palettes' - -/** - * Change css-var style colors to inline colors - * @param svg SVG as string - * @param variant Catppuccin variant to infer colors from - */ -export function normalizeSvg(svg: string, variant: CattppucinVariant) { - const unstyled = svg.replace(/ + + +
+ ${Array(3).fill(icons).flat().map(i => ``).join('\n')} +
+ + +` +await temporaryWriteTask(html, async (f) => { const browser = await launch({ headless: 'new' }) const page = await browser.newPage() - await page.setViewport({ height: 10, width: 1200, deviceScaleFactor: 2 }) - await page.goto(join('file:', FILE_PREVIEW)) - await page.screenshot({ - path: join(PREVIEWS, `${flavor}.png`), - fullPage: true, - omitBackground: true, + await page.setViewport({ + height: 300, + width: 600, + deviceScaleFactor: 3, }) - await page.setViewport({ height: 10, width: 800, deviceScaleFactor: 2 }) - await page.goto(join('file:', FILE_ICON_PREVIEW)) + await page.goto(join('file:', f)) await page.screenshot({ - path: join(PREVIEWS, `${flavor}-icons.png`), - fullPage: true, + path: join(`latte.png`), + // fullPage: true, omitBackground: true, + // captureBeyondViewport: true, }) await browser.close() - await unlink(FILE_PREVIEW) - await unlink(FILE_ICON_PREVIEW) -})) - -consola.success(`Built ${catppuccinVariants.length} preview files successfully!`) +}, { extension: 'html' }) +await writeFile('preview.html', html) diff --git a/scripts/resize.ts b/scripts/resize.ts deleted file mode 100644 index 878c85dc..00000000 --- a/scripts/resize.ts +++ /dev/null @@ -1,3 +0,0 @@ -export function changeViewbox(svg: string, viewBox: string) { - return svg.replace(/viewBox="[0-9 ]*"/, `viewBox="${viewBox}"`) -} diff --git a/scripts/themes.ts b/scripts/themes.ts deleted file mode 100644 index 04eef8af..00000000 --- a/scripts/themes.ts +++ /dev/null @@ -1,65 +0,0 @@ -import { readFile, readdir, writeFile } from 'node:fs/promises' -import consola from 'consola' -import { join, resolve } from 'pathe' -import { filename } from 'pathe/utils' -import { ensureDir, remove } from 'fs-extra' -import { normalizeSvg } from './normalize' -import { changeViewbox } from './resize' -import { catppuccinVariants } from '@/palettes' -import { - base, - extensions, - files, - folders, - foldersExpanded, - languages, -} from '@/associations' - -const ICONS = resolve('icons') -const THEMES = resolve('themes') - -const icons = await readdir(ICONS) -await remove(THEMES) - -const iconDefinitions = icons.reduce((d, i) => ({ - ...d, - [filename(i)]: { iconPath: `./icons/${i}` }, -}), {}) - -function flattenMap(map: IconMap) { - return Object.entries(map).reduce( - (acc, [icon, ids]) => ({ - ...acc, - ...ids.reduce((a, id) => ({ ...a, [id]: icon }), {}), - }), - {}, - ) -} - -const theme: Theme = { - ...base, - iconDefinitions, - languageIds: flattenMap(languages), - fileExtensions: flattenMap(extensions), - fileNames: flattenMap(files), - folderNames: flattenMap(folders), - folderNamesExpanded: flattenMap(foldersExpanded), -} -const themeString = JSON.stringify(theme, null, 2) - -consola.info(`Creating ${catppuccinVariants.length} themes...`) -await Promise.all(catppuccinVariants.map(async (variant) => { - await ensureDir(join(THEMES, variant, 'icons')) - await writeFile(join(THEMES, variant, 'theme.json'), themeString) -})) - -await Promise.all(icons.map(async (icon) => { - const svg = await readFile(join(ICONS, icon), 'utf8') - await Promise.all(catppuccinVariants.map(async (variant) => { - const normalized = normalizeSvg(svg, variant) - const resized = changeViewbox(normalized, icon.startsWith('folder') ? '0 0 100 100' : '-5 -5 110 110') - await writeFile(join(THEMES, variant, 'icons', icon), resized) - })) -})) - -consola.success(`Successfully built ${catppuccinVariants.length} themes with ${icons.length} each!`) diff --git a/shell.nix b/shell.nix deleted file mode 100644 index 592949ba..00000000 --- a/shell.nix +++ /dev/null @@ -1,15 +0,0 @@ -{pkgs ? import {}}: let - inherit (pkgs.stdenv) isLinux; - inherit (pkgs) lib; -in - pkgs.mkShell { - buildInputs = with pkgs; ([ - nodejs - yarn - ] - ++ lib.optionals isLinux [chromium]); - PUPPETEER_EXECUTABLE_PATH = - if isLinux - then "${pkgs.chromium}/bin/chromium" - else ""; - } diff --git a/src/associations/base.ts b/src/associations/base.ts deleted file mode 100644 index a34b696b..00000000 --- a/src/associations/base.ts +++ /dev/null @@ -1,8 +0,0 @@ -export const base: Base = { - hidesExplorerArrows: false, - file: 'file', - folder: 'folder', - folderExpanded: 'folder__open', - rootFolder: 'folder_root', - rootFolderExpanded: 'folder_root__open', -} diff --git a/src/associations/extensions.ts b/src/associations/extensions.ts deleted file mode 100644 index 414d6eb6..00000000 --- a/src/associations/extensions.ts +++ /dev/null @@ -1,411 +0,0 @@ -export const extensions: IconMap = { - angular: ['ng-template'], - apl: ['apl'], - apple: ['applescript', 'ipa'], - arduino: ['ino'], - assembly: [ - 'asm', - 'a51', - 'inc', - 'nasm', - 's', - 'ms', - 'agc', - 'ags', - 'aea', - 'argus', - 'mitigus', - 'binsource', - ], - astro: ['astro'], - bash: ['bash', 'sh', 'awk'], - bat: ['bat'], - c: ['c', 'i', 'mi'], - css: ['css'], - css_map: ['css.map'], - certificate: ['cer', 'cert', 'crt', 'pfx'], - clojure: ['clj', 'cljs', 'cljc'], - cmake: ['cmake'], - coffeescript: ['coffee', 'cson', 'iced'], - coq: ['g', 'v'], - cpp: ['cc', 'cpp', 'cxx', 'c++', 'cp', 'mm', 'mii', 'ii'], - csharp: ['cs', 'csx'], - csv: ['csv', 'tsv', 'psv'], - cucumber: ['feature', 'features'], - cuda: ['cu', 'cuh'], - d: ['d', 'di'], - dart: ['dart'], - dart_generated: ['freezed.dart', 'g.dart'], - database: [ - 'pdb', - 'sql', - 'pks', - 'pkb', - 'accdb', - 'mdb', - 'sqlite', - 'sqlite3', - 'pgsql', - 'postgres', - 'psql', - 'db', - 'db3', - ], - dhall: ['dhall'], - django: ['djt'], - doc: ['doc', 'docx', 'rtf', 'odt'], - docker: ['dockerfile'], - docker_ignore: ['dockerignore'], - elixir: ['ex', 'exs', 'eex', 'leex', 'heex'], - elm: ['elm'], - env: ['env'], - erlang: ['erl'], - font: [ - 'woff', - 'woff2', - 'ttf', - 'eot', - 'suit', - 'otf', - 'bmap', - 'fnt', - 'odttf', - 'ttc', - 'font', - 'fonts', - 'sui', - 'ntf', - 'mrf', - ], - fortran: [ - 'for', - 'f', - 'f77', - 'f90', - 'f03', - 'f08', - 'f18', - 'f23', - 'nml', - 'fpp', - 'fypp'], - fsharp: ['fs', 'fsx', 'fsi', 'fsproj'], - gnuplot: ['plt'], - go: ['go'], - godot: ['gd', 'godot', 'res', 'scn', 'tres', 'tscn'], - gradle: ['gradle'], - graphql: ['graphql', 'gql'], - groovy: ['groovy'], - h: ['h'], - haml: ['haml'], - handlebars: ['hbs', 'mustache'], - haskell: ['hs'], - haxe: ['hx', 'hxml'], - hpp: ['hh', 'hpp', 'hxx', 'h++', 'hp', 'tcc', 'inl'], - html: ['htm', 'html', 'xhtml', 'html_vm', 'asp'], - http: ['http', 'rest'], - image: [ - 'png', - 'jpeg', - 'jpg', - 'gif', - 'ico', - 'tif', - 'tiff', - 'psd', - 'psb', - 'ami', - 'apx', - 'avif', - 'bmp', - 'bpg', - 'brk', - 'cur', - 'dds', - 'dng', - 'exr', - 'fpx', - 'gbr', - 'img', - 'jbig2', - 'jb2', - 'jng', - 'jxr', - 'pgf', - 'pic', - 'raw', - 'webp', - 'eps', - 'afphoto', - 'ase', - 'aseprite', - 'clip', - 'cpt', - 'heif', - 'heic', - 'kra', - 'mdp', - 'ora', - 'pdn', - 'reb', - 'sai', - 'tga', - 'xcf', - 'jfif', - 'ppm', - 'pbm', - 'pgm', - 'pnm', - ], - java: ['java', 'jsp'], - java_class: ['class'], - java_jar: ['jar'], - javascript: ['js', 'cjs', 'esx', 'mjs'], - javascript_config: ['jsconfig.json'], - javascript_map: ['js.map', 'mjs.map', 'cjs.map'], - javascript_react: ['jsx'], - javascript_test: [ - 'spec.js', - 'spec.cjs', - 'spec.mjs', - 'e2e-spec.js', - 'e2e-spec.cjs', - 'e2e-spec.mjs', - 'test.js', - 'test.cjs', - 'test.mjs', - 'js.snap', - 'cy.js', - 'spec.jsx', - 'test.jsx', - 'jsx.snap', - 'cy.jsx', - ], - jinja: ['jinja', 'jinja2', 'j2', 'jinja-html'], - json: [ - 'json', - 'jsonc', - 'tsbuildinfo', - 'json5', - 'jsonl', - 'ndjson', - ], - julia: ['jl'], - jupyter: ['ipynb'], - key: ['pub', 'key', 'pem', 'asc', 'gpg', 'passwd'], - kotlin: ['kt', 'kts'], - laravel: ['blade.php', 'inky.php'], - latex: ['tex', 'sty', 'dtx', 'ltx'], - lib: ['lib', 'bib', 'dll', 'dlc'], - liquid: ['liquid'], - lisp: ['lisp', 'lsp', 'cl', 'fast'], - log: ['log'], - lua: ['lua'], - makefile: ['mk'], - markdown: ['md', 'markdown', 'rst'], - markdown_mdx: ['mdx'], - marko: ['marko'], - matlab: ['m', 'mat', 'mlx'], - meson: ['meson', 'wrap'], - nextflow: ['nf'], - nginx: ['nginx', 'nginxconfig'], - nim: ['nim', 'nimble'], - ninja: ['ninja'], - nix: ['nix'], - nunjucks: ['njk', 'nunjucks'], - ocaml: ['ml', 'mli', 'cmx'], - pdf: ['pdf'], - perl: ['pm', 'raku'], - php: ['php'], - powershell: ['ps1', 'psm1', 'psd1', 'ps1xml', 'psc1', 'pssc'], - prisma: ['prisma'], - properties: [ - 'ini', - 'dlc', - 'config', - 'conf', - 'properties', - 'prop', - 'settings', - 'option', - 'props', - 'prefs', - 'sln.dotsettings', - 'sln.dotsettings.user', - 'cfg', - ], - protobuf: ['proto'], - python: ['py'], - python_compiled: ['pyc', 'pyo', 'pyd'], - r: ['r', 'rmd'], - racket: ['rkt', 'rkts', 'rktd', 'rktl'], - razor: ['cshtml', 'vbhtml'], - reason: ['re', 'rei'], - rescript: ['res', 'resi'], - ruby: ['rb', 'erb'], - rust: ['rs', 'ron'], - sass: ['scss', 'sass'], - scala: ['scala', 'sc'], - search: ['code-search'], - shader: [ - 'glsl', - 'vert', - 'tesc', - 'tese', - 'geom', - 'frag', - 'comp', - 'vert.glsl', - 'tesc.glsl', - 'tese.glsl', - 'geom.glsl', - 'frag.glsl', - 'comp.glsl', - 'vertex.glsl', - 'geometry.glsl', - 'fragment.glsl', - 'compute.glsl', - 'ts.glsl', - 'gs.glsl', - 'vs.glsl', - 'fs.glsl', - 'shader', - 'vertexshader', - 'fragmentshader', - 'geometryshader', - 'computeshader', - 'hlsl', - 'pixel.hlsl', - 'geometry.hlsl', - 'compute.hlsl', - 'tessellation.hlsl', - 'px.hlsl', - 'geom.hlsl', - 'comp.hlsl', - 'tess.hlsl', - 'wgsl', - ], - slide: [ - 'pptx', - 'ppt', - 'pptm', - 'potx', - 'potm', - 'ppsx', - 'ppsm', - 'pps', - 'ppam', - 'ppa', - 'odp', - ], - solidity: ['sol'], - spreadsheet: ['xlsx', 'xlsm', 'xls', 'ods'], - storybook: [ - 'story.js', - 'story.ts', - 'stories.js', - 'stories.ts', - 'story.jsx', - 'stories.jsx', - 'story.tsx', - 'stories.tsx', - ], - storybook_svelte: ['story.svelte', 'stories.svelte'], - storybook_vue: ['story.vue', 'stories.vue'], - svelte: ['svelte'], - svg: ['svg'], - swift: ['swift'], - tauri: ['tauri'], - terraform: ['tf', 'tf.json', 'tfvars', 'tfstate'], - todo: ['todo'], - toml: ['toml'], - txt: ['txt'], - typescript: ['ts'], - typescript_config: ['tsconfig.json'], - typescript_def: ['d.ts', 'd.cts', 'd.mts'], - typescript_react: ['tsx'], - typescript_test: [ - 'spec-d.ts', - 'spec.ts', - 'spec.cts', - 'spec.mts', - 'cy.ts', - 'e2e-spec.ts', - 'e2e-spec.cts', - 'e2e-spec.mts', - 'test-d.ts', - 'test.ts', - 'test.cts', - 'test.mts', - 'ts.snap', - 'spec.tsx', - 'test.tsx', - 'tsx.snap', - 'cy.tsx', - ], - unity: ['unity'], - v: ['v'], - visual_studio: [ - 'csproj', - 'ruleset', - 'sln', - 'suo', - 'vb', - 'vbs', - 'vcxitems', - 'vcxitems.filters', - 'vcxproj', - 'vcxproj.filters', - ], - vue: ['vue'], - vs_code: [ - 'vsixmanifest', - 'vsix', - 'code-workplace', - 'code-workspace', - 'code-profile', - 'code-snippets', - ], - vs_code_ignore: ['vscodeignore'], - web_assembly: ['wat', 'wasm'], - workflow: ['workflows/yml', 'workflows/yaml'], - xaml: ['xaml'], - xml: [ - 'xml', - 'plist', - 'xsd', - 'dtd', - 'xsl', - 'xslt', - 'resx', - 'iml', - 'xquery', - 'tmLanguage', - 'manifest', - 'project', - 'xml.dist', - 'xml.dist.sample', - 'dmn', - 'jrxml', - ], - yaml: ['yml', 'yaml'], - zig: ['zig'], - zip: [ - 'zip', - 'tar', - 'gz', - 'xz', - 'lzma', - 'lz4', - 'br', - 'bz2', - 'bzip2', - 'gzip', - 'brotli', - '7z', - 'rar', - 'tz', - 'txz', - 'tgz', - ], -} diff --git a/src/associations/files.ts b/src/associations/files.ts deleted file mode 100644 index 050f202a..00000000 --- a/src/associations/files.ts +++ /dev/null @@ -1,761 +0,0 @@ -export const files: IconMap = { - adonis: ['.adonisrc.json', 'ace'], - alex: ['.alexrc', '.alexrc.yml', '.alexrc.yaml', 'alexrc.js'], - angular: ['angular-cli.json', '.angular-cli.json', 'angular.json'], - apollo: ['apollo.config.js', 'apollo.config.ts'], - appveyor: ['.appveyor.yml', 'appveyor.yml'], - astro: [ - 'astro.config.js', - 'astro.config.mjs', - 'astro.config.cjs', - 'astro.config.ts', - 'astro.config.cts', - 'astro.config.mts', - ], - babel: [ - '.babelrc', - '.babelrc.cjs', - '.babelrc.js', - '.babelrc.mjs', - '.babelrc.json', - 'babel.config.cjs', - 'babel.config.js', - 'babel.config.mjs', - 'babel.config.json', - 'babel-transform.js', - '.babel-plugin-macrosrc', - '.babel-plugin-macrosrc.json', - '.babel-plugin-macrosrc.yaml', - '.babel-plugin-macrosrc.yml', - '.babel-plugin-macrosrc.js', - 'babel-plugin-macros.config.js', - ], - bash: ['commit-msg', 'pre-commit', 'pre-push', 'post-merge'], - browserslist: ['browserslist', '.browserslistrc'], - bun: ['bunfig.toml'], - bun_lock: ['bun.lockb'], - caddy: ['Caddyfile'], - capacitor: ['capacitor.config.json', 'capacitor.config.ts'], - cargo: ['cargo.toml'], - cargo_lock: ['cargo.lock'], - changelog: [ - 'changelog', - 'changelog.md', - 'changelog.rst', - 'changelog.txt', - 'changes', - 'changes.md', - 'changes.rst', - 'changes.txt', - ], - cmake: ['cmakelists.txt', 'cmakecache.txt'], - code_of_conduct: [ - 'code_of_conduct.md', - 'code_of_conduct.txt', - 'code_of_conduct', - ], - code_climate: ['.codeclimate.yml'], - codecov: ['.codecov.yml', 'codecov.yml'], - codeowners: ['codeowners'], - commitlint: [ - '.commitlintrc', - '.commitlintrc.js', - '.commitlintrc.cjs', - '.commitlintrc.ts', - '.commitlintrc.cts', - '.commitlintrc.json', - '.commitlintrc.yaml', - '.commitlintrc.yml', - '.commitlint.yaml', - '.commitlint.yml', - 'commitlint.config.js', - 'commitlint.config.cjs', - 'commitlint.config.ts', - 'commitlint.config.cts', - ], - contributing: [ - 'contributing', - 'contributing.md', - 'contributing.rst', - 'contributing.txt', - ], - cypress: [ - 'cypress.json', - 'cypress.env.json', - 'cypress.config.ts', - 'cypress.config.js', - 'cypress.config.cjs', - 'cypress.config.mjs', - ], - dart: ['.pubignore'], - deno: ['deno.json', 'deno.jsonc'], - deno_lock: ['deno.lock'], - dependabot: ['dependabot.yml', 'dependabot.yaml'], - docker: [ - 'dockerfile', - 'dockerfile', - 'dockerfile.prod', - 'dockerfile.production', - 'dockerfile.alpha', - 'dockerfile.beta', - 'dockerfile.stage', - 'dockerfile.staging', - 'dockerfile.dev', - 'dockerfile.development', - 'dockerfile.local', - 'dockerfile.test', - 'dockerfile.testing', - 'dockerfile.ci', - 'dockerfile.web', - 'dockerfile.worker', - ], - docker_compose: [ - 'docker-compose.yml', - 'docker-compose.override.yml', - 'docker-compose.prod.yml', - 'docker-compose.production.yml', - 'docker-compose.alpha.yml', - 'docker-compose.beta.yml', - 'docker-compose.stage.yml', - 'docker-compose.staging.yml', - 'docker-compose.dev.yml', - 'docker-compose.development.yml', - 'docker-compose.local.yml', - 'docker-compose.test.yml', - 'docker-compose.testing.yml', - 'docker-compose.ci.yml', - 'docker-compose.web.yml', - 'docker-compose.worker.yml', - 'docker-compose.yaml', - 'docker-compose.override.yaml', - 'docker-compose.prod.yaml', - 'docker-compose.production.yaml', - 'docker-compose.alpha.yaml', - 'docker-compose.beta.yaml', - 'docker-compose.stage.yaml', - 'docker-compose.staging.yaml', - 'docker-compose.dev.yaml', - 'docker-compose.development.yaml', - 'docker-compose.local.yaml', - 'docker-compose.test.yaml', - 'docker-compose.testing.yaml', - 'docker-compose.ci.yaml', - 'docker-compose.web.yaml', - 'docker-compose.worker.yaml', - ], - docker_ignore: ['dockerignore', '.dockerignore'], - dub: ['dub.json', 'dub.sdl'], - dub_selections: ['dub.selections.json'], - editorconfig: ['.editorconfig'], - ember: ['.ember-cli', '.ember-cli.js', 'ember-cli-builds.js'], - env: [ - '.env', - '.env.defaults', - '.env.example', - '.env.sample', - '.env.template', - '.env.schema', - '.env.local', - '.env.dev', - '.env.development', - '.env.alpha', - '.env.e2e', - '.env.qa', - '.env.dist', - '.env.prod', - '.env.production', - '.env.stage', - '.env.staging', - '.env.preview', - '.env.test', - '.env.testing', - '.env.development.local', - '.env.qa.local', - '.env.production.local', - '.env.staging.local', - '.env.test.local', - '.env.uat', - '.env.cypress', - ], - eslint: [ - '.eslintrc.js', - '.eslintrc.cjs', - '.eslintrc.yaml', - '.eslintrc.yml', - '.eslintrc.json', - '.eslintrc-md.js', - '.eslintrc-jsdoc.js', - '.eslintrc', - 'eslint.config.js', - ], - eslint_ignore: ['.eslintignore', '.eslintcache'], - favicon: ['favicon.ico'], - firebase: [ - 'firebase.json', - '.firebaserc', - 'firestore.rules', - 'firestore.indexes.json', - ], - gatsby: [ - 'gatsby-config.js', - 'gatsby-config.mjs', - 'gatsby-config.ts', - 'gatsby-node.js', - 'gatsby-node.mjs', - 'gatsby-node.ts', - 'gatsby-browser.js', - 'gatsby-browser.tsx', - 'gatsby-ssr.js', - 'gatsby-ssr.tsx', - ], - git: [ - '.gitignore', - '.gitconfig', - '.gitattributes', - '.gitmodules', - '.gitkeep', - '.git-include', - ], - gitlab: ['.gitlab-ci.yml'], - gitpod: ['.gitpod.yml'], - go_mod: ['go.mod', 'go.sum', 'go.work', 'go.work.sum'], - gradle: ['gradle.properties', 'gradlew', 'gradle-wrapper.properties'], - graphql: [ - '.graphqlconfig', - '.graphqlrc', - '.graphqlrc.json', - '.graphqlrc.js', - '.graphqlrc.cjs', - '.graphqlrc.ts', - '.graphqlrc.toml', - '.graphqlrc.yaml', - '.graphqlrc.yml', - 'graphql.config.json', - 'graphql.config.js', - 'graphql.config.ts', - 'graphql.config.toml', - 'graphql.config.yaml', - 'graphql.config.yml', - ], - helm: ['.helmignore'], - heroku: ['procfile', 'procfile.windows'], - javascript_config: ['jsconfig.json'], - jest: [ - 'jest.config.js', - 'jest.config.cjs', - 'jest.config.mjs', - 'jest.config.ts', - 'jest.config.cts', - 'jest.config.mts', - 'jest.config.json', - 'jest.e2e.config.js', - 'jest.e2e.config.cjs', - 'jest.e2e.config.mjs', - 'jest.e2e.config.ts', - 'jest.e2e.config.cts', - 'jest.e2e.config.mts', - 'jest.e2e.config.json', - 'jest.e2e.json', - 'jest-unit.config.js', - 'jest-e2e.config.js', - 'jest-e2e.config.cjs', - 'jest-e2e.config.mjs', - 'jest-e2e.config.ts', - 'jest-e2e.config.cts', - 'jest-e2e.config.mts', - 'jest-e2e.config.json', - 'jest-e2e.json', - 'jest-github-actions-reporter.js', - 'jest.setup.js', - 'jest.setup.ts', - 'jest.json', - '.jestrc', - '.jestrc.js', - '.jestrc.json', - 'jest.teardown.js', - ], - histoire: [ - 'histoire.config.ts', - 'histoire.config.js', - '.histoire.js', - '.histoire.ts', - ], - husky: [ - '.huskyrc', - 'husky.config.js', - '.huskyrc.json', - '.huskyrc.js', - '.huskyrc.yaml', - '.huskyrc.yml', - ], - ionic: ['ionic.config.json', '.io-config.json'], - json: [ - '.jscsrc', - '.jshintrc', - 'composer.lock', - '.jsbeautifyrc', - '.esformatter', - 'cdp.pid', - '.lintstagedrc', - ], - laravel: ['artisan'], - lerna: ['lerna.json'], - license: [ - 'copying', - 'copying.md', - 'copying.rst', - 'copying.txt', - 'copyright', - 'copyright.md', - 'copyright.rst', - 'copyright.txt', - 'license', - 'license-agpl', - 'license-apache', - 'license-bsd', - 'license-mit', - 'license-gpl', - 'license-lgpl', - 'license.md', - 'license.rst', - 'license.txt', - 'licence', - 'licence-agpl', - 'licence-apache', - 'licence-bsd', - 'licence-mit', - 'licence-gpl', - 'licence-lgpl', - 'licence.md', - 'licence.rst', - 'licence.txt', - ], - lintstaged: [ - '.lintstagedrc', - '.lintstagedrc.json', - '.lintstagedrc.yaml', - '.lintstagedrc.yml', - '.lintstagedrc.mjs', - '.lintstagedrc.cjs', - '.lintstagedrc.js', - 'lint-staged.config.js', - 'lint-staged.config.mjs', - 'lint-staged.config.cjs', - ], - lua: ['.luacheckrc'], - liquid: ['.liquidrc', '.liquidrc.json'], - makefile: ['makefile', 'gnumakefile', 'kbuild'], - maven: ['maven.config', 'jvm.config', 'pom.xml'], - meson: ['meson.build', 'meson_options.txt'], - netlify: [ - 'netlify.json', - 'netlify.yml', - 'netlify.yaml', - 'netlify.toml', - ], - next: [ - 'next.config.js', - 'next.config.mjs', - 'next.config.ts', - 'next.config.mts', - ], - nginx: ['nginx.conf'], - nix_flake_lock: ['flake.lock'], - npm: ['.npmrc'], - npm_ignore: ['.npmignore'], - npm_lock: ['package-lock.json'], - nuxt: ['nuxt.config.js', 'nuxt.config.ts', '.nuxtrc'], - nuxt_ignore: ['.nuxtignore'], - package_json: [ - 'package.json', - '.nvmrc', - '.esmrc', - '.node-version', - ], - panda: [ - 'panda.config.ts', - 'panda.config.mjs', - 'panda.config.js', - ], - playwright: [ - 'playwright.config.js', - 'playwright.config.mjs', - 'playwright.config.ts', - 'playwright-ct.config.js', - 'playwright-ct.config.mjs', - 'playwright-ct.config.ts', - ], - plop: [ - 'plopfile.js', - 'plopfile.cjs', - 'plopfile.mjs', - 'plopfile.ts', - ], - pnpm: ['pnpm-workspace.yaml', '.pnpmfile.cjs'], - pnpm_lock: ['pnpm-lock.yaml'], - premake: ['premake4.lua', 'premake5.lua', 'premake.lua'], - prettier: [ - '.prettierrc', - 'prettier.config.js', - 'prettier.config.cjs', - '.prettierrc.js', - '.prettierrc.cjs', - '.prettierrc.json', - '.prettierrc.json5', - '.prettierrc.yaml', - '.prettierrc.yml', - '.prettierignore', - '.prettierrc.toml', - ], - prettier_ignore: ['.prettierignore'], - prisma: ['prisma.yml'], - properties: [ - '.clang-format', - '.clang-tidy', - ], - r: ['.Rhistory'], - readme: ['readme.md', 'readme.rst', 'readme.txt', 'readme'], - redwood: ['redwood.toml'], - remix: ['remix.config.js', 'remix.config.ts'], - renovate: [ - '.renovaterc', - '.renovaterc.json', - 'renovate-config.json', - 'renovate.json', - 'renovate.json5', - ], - robots: ['robots.txt'], - rollup: [ - 'rollup.config.js', - 'rollup.config.mjs', - 'rollup.config.ts', - 'rollup-config.js', - 'rollup-config.mjs', - 'rollup-config.ts', - 'rollup.config.common.js', - 'rollup.config.common.mjs', - 'rollup.config.common.ts', - 'rollup.config.base.js', - 'rollup.config.base.mjs', - 'rollup.config.base.ts', - 'rollup.config.prod.js', - 'rollup.config.prod.mjs', - 'rollup.config.prod.ts', - 'rollup.config.dev.js', - 'rollup.config.dev.mjs', - 'rollup.config.dev.ts', - 'rollup.config.prod.vendor.js', - 'rollup.config.prod.vendor.mjs', - 'rollup.config.prod.vendor.ts', - ], - rome: ['rome.json'], - ruby_gem: ['gemfile'], - sentry: ['.sentryclirc'], - sonar_cloud: [ - 'sonar-project.properties', - '.sonarcloud.properties', - 'sonarcloud.yaml', - ], - svelte: [ - 'svelte.config.js', - 'svelte.config.cjs', - 'svelte.config.ts', - ], - stackblitz: ['.stackblitzrc'], - stencil: ['stencil.config.js', 'stencil.config.ts'], - stitches: ['stitches.config.js', 'stitches.config.ts'], - stylelint: [ - '.stylelintrc', - 'stylelint.config.js', - 'stylelint.config.cjs', - '.stylelintrc.json', - '.stylelintrc.yaml', - '.stylelintrc.yml', - '.stylelintrc.js', - '.stylelintrc.cjs', - ], - stylelint_ignore: ['.stylelintignore', '.stylelintcache'], - tailwind: [ - 'tailwind.js', - 'tailwind.ts', - 'tailwind.config.js', - 'tailwind.config.cjs', - 'tailwind.config.ts', - 'tailwind.config.cts', - ], - tauri: [ - 'tauri.conf.json', - 'tauri.config.json', - 'tauri.linux.conf.json', - 'tauri.windows.conf.json', - 'tauri.macos.conf.json', - ], - todo: [ - 'todo.md', - 'todos.md', - 'todo.txt', - 'todos.txt', - ], - typescript_config: [ - 'tsconfig.json', - 'tsconfig.app.json', - 'tsconfig.editor.json', - 'tsconfig.spec.json', - 'tsconfig.base.json', - 'tsconfig.build.json', - 'tsconfig.eslint.json', - 'tsconfig.lib.json', - 'tsconfig.lib.prod.json', - 'tsconfig.node.json', - 'tsconfig.test.json', - 'tsconfig.e2e.json', - 'tsconfig.web.json', - 'tsconfig.webworker.json', - 'tsconfig.worker.json', - 'tsconfig.config.json', - 'tsconfig.vitest.json', - 'tsconfig.cjs.json', - 'tsconfig.esm.json', - 'tsconfig.mjs.json', - 'tsconfig.doc.json', - ], - unocss: [ - 'uno.config.js', - 'uno.config.ts', - 'unocss.config.js', - 'unocss.config.ts', - ], - v: ['vpkg.json', 'v.mod'], - vercel: ['vercel.json', 'now.json'], - vercel_ignore: ['.vercelignore', '.nowignore'], - vite: [ - 'vite.config.js', - 'vite.config.mjs', - 'vite.config.cjs', - 'vite.config.ts', - 'vite.config.cts', - 'vite.config.mts', - 'vite.config.js', - 'vite.config.mjs', - 'vite.config.cjs', - 'vite.config.ts', - 'vite.config.cts', - 'vite.config.mts', - ], - vitest: [ - 'vitest.config.js', - 'vitest.config.mjs', - 'vitest.config.cjs', - 'vitest.config.ts', - 'vitest.config.cts', - 'vitest.config.mts', - 'vitest.config.js', - 'vitest.config.mjs', - 'vitest.config.cjs', - 'vitest.config.ts', - 'vitest.config.cts', - 'vitest.config.mts', - ], - vue_config: [ - 'vue.config.js', - 'vue.config.ts', - 'vetur.config.js', - 'vetur.config.ts', - 'volar.config.js', - ], - webpack: [ - 'webpack.js', - 'webpack.cjs', - 'webpack.mjs', - 'webpack.ts', - 'webpack.cts', - 'webpack.mts', - 'webpack.base.js', - 'webpack.base.cjs', - 'webpack.base.mjs', - 'webpack.base.ts', - 'webpack.base.cts', - 'webpack.base.mts', - 'webpack.config.js', - 'webpack.config.cjs', - 'webpack.config.mjs', - 'webpack.config.ts', - 'webpack.config.cts', - 'webpack.config.mts', - 'webpack.common.js', - 'webpack.common.cjs', - 'webpack.common.mjs', - 'webpack.common.ts', - 'webpack.common.cts', - 'webpack.common.mts', - 'webpack.config.common.js', - 'webpack.config.common.cjs', - 'webpack.config.common.mjs', - 'webpack.config.common.ts', - 'webpack.config.common.cts', - 'webpack.config.common.mts', - 'webpack.config.common.babel.js', - 'webpack.config.common.babel.ts', - 'webpack.dev.js', - 'webpack.dev.cjs', - 'webpack.dev.mjs', - 'webpack.dev.ts', - 'webpack.dev.cts', - 'webpack.dev.mts', - 'webpack.development.js', - 'webpack.development.cjs', - 'webpack.development.mjs', - 'webpack.development.ts', - 'webpack.development.cts', - 'webpack.development.mts', - 'webpack.config.dev.js', - 'webpack.config.dev.cjs', - 'webpack.config.dev.mjs', - 'webpack.config.dev.ts', - 'webpack.config.dev.cts', - 'webpack.config.dev.mts', - 'webpack.config.dev.babel.js', - 'webpack.config.dev.babel.ts', - 'webpack.mix.js', - 'webpack.mix.cjs', - 'webpack.mix.mjs', - 'webpack.mix.ts', - 'webpack.mix.cts', - 'webpack.mix.mts', - 'webpack.prod.js', - 'webpack.prod.cjs', - 'webpack.prod.mjs', - 'webpack.prod.ts', - 'webpack.prod.cts', - 'webpack.prod.mts', - 'webpack.prod.config.js', - 'webpack.prod.config.cjs', - 'webpack.prod.config.mjs', - 'webpack.prod.config.ts', - 'webpack.prod.config.cts', - 'webpack.prod.config.mts', - 'webpack.production.js', - 'webpack.production.cjs', - 'webpack.production.mjs', - 'webpack.production.ts', - 'webpack.production.cts', - 'webpack.production.mts', - 'webpack.server.js', - 'webpack.server.cjs', - 'webpack.server.mjs', - 'webpack.server.ts', - 'webpack.server.cts', - 'webpack.server.mts', - 'webpack.client.js', - 'webpack.client.cjs', - 'webpack.client.mjs', - 'webpack.client.ts', - 'webpack.client.cts', - 'webpack.client.mts', - 'webpack.config.server.js', - 'webpack.config.server.cjs', - 'webpack.config.server.mjs', - 'webpack.config.server.ts', - 'webpack.config.server.cts', - 'webpack.config.server.mts', - 'webpack.config.client.js', - 'webpack.config.client.cjs', - 'webpack.config.client.mjs', - 'webpack.config.client.ts', - 'webpack.config.client.cts', - 'webpack.config.client.mts', - 'webpack.config.production.babel.js', - 'webpack.config.production.babel.ts', - 'webpack.config.prod.babel.js', - 'webpack.config.prod.babel.cjs', - 'webpack.config.prod.babel.mjs', - 'webpack.config.prod.babel.ts', - 'webpack.config.prod.babel.cts', - 'webpack.config.prod.babel.mts', - 'webpack.config.prod.js', - 'webpack.config.prod.cjs', - 'webpack.config.prod.mjs', - 'webpack.config.prod.ts', - 'webpack.config.prod.cts', - 'webpack.config.prod.mts', - 'webpack.config.production.js', - 'webpack.config.production.cjs', - 'webpack.config.production.mjs', - 'webpack.config.production.ts', - 'webpack.config.production.cts', - 'webpack.config.production.mts', - 'webpack.config.staging.js', - 'webpack.config.staging.cjs', - 'webpack.config.staging.mjs', - 'webpack.config.staging.ts', - 'webpack.config.staging.cts', - 'webpack.config.staging.mts', - 'webpack.config.babel.js', - 'webpack.config.babel.ts', - 'webpack.config.base.babel.js', - 'webpack.config.base.babel.ts', - 'webpack.config.base.js', - 'webpack.config.base.cjs', - 'webpack.config.base.mjs', - 'webpack.config.base.ts', - 'webpack.config.base.cts', - 'webpack.config.base.mts', - 'webpack.config.staging.babel.js', - 'webpack.config.staging.babel.ts', - 'webpack.config.coffee', - 'webpack.config.test.js', - 'webpack.config.test.cjs', - 'webpack.config.test.mjs', - 'webpack.config.test.ts', - 'webpack.config.test.cts', - 'webpack.config.test.mts', - 'webpack.config.vendor.js', - 'webpack.config.vendor.cjs', - 'webpack.config.vendor.mjs', - 'webpack.config.vendor.ts', - 'webpack.config.vendor.cts', - 'webpack.config.vendor.mts', - 'webpack.config.vendor.production.js', - 'webpack.config.vendor.production.cjs', - 'webpack.config.vendor.production.mjs', - 'webpack.config.vendor.production.ts', - 'webpack.config.vendor.production.cts', - 'webpack.config.vendor.production.mts', - 'webpack.test.js', - 'webpack.test.cjs', - 'webpack.test.mjs', - 'webpack.test.ts', - 'webpack.test.cts', - 'webpack.test.mts', - 'webpack.dist.js', - 'webpack.dist.cjs', - 'webpack.dist.mjs', - 'webpack.dist.ts', - 'webpack.dist.cts', - 'webpack.dist.mts', - 'webpackfile.js', - 'webpackfile.cjs', - 'webpackfile.mjs', - 'webpackfile.ts', - 'webpackfile.cts', - 'webpackfile.mts', - ], - windi: [ - 'windi.config.js', - 'windi.config.cjs', - 'windi.config.ts', - 'windi.config.cts', - 'windi.config.json', - ], - xmake: ['xmake.lua'], - yaml: ['.yamllint', '.yamllint.yml', '.yamllint.yaml'], - yarn: [ - '.yarnrc', - '.yarnclean', - '.yarn-integrity', - 'yarn-error.log', - '.yarnrc.yml', - '.yarnrc.yaml', - ], - yarn_lock: ['yarn.lock'], -} diff --git a/src/associations/folders.ts b/src/associations/folders.ts deleted file mode 100644 index 5ea51366..00000000 --- a/src/associations/folders.ts +++ /dev/null @@ -1,195 +0,0 @@ -export const folders: IconMap = { - folder_api: ['api', 'apis', 'restapi'], - folder_benchmarks: ['bench', 'benchs', 'benchmark', 'benchmarks'], - folder_client: ['client', 'clients', 'frontend', 'pwa'], - folder_components: ['components', 'widget', 'widgets', 'fragments'], - folder_composables: [ - 'hook', - 'hooks', - 'composable', - 'composables', - 'mixin', - 'mixins', - ], - folder_config: [ - 'cfg', - 'cfgs', - 'conf', - 'confs', - 'config', - 'configs', - 'configuration', - 'configurations', - 'setting', - '.setting', - 'settings', - '.settings', - 'META-INF', - ], - folder_controllers: [ - 'controller', - 'controllers', - 'service', - 'services', - 'provider', - 'providers', - 'handler', - 'handlers', - ], - folder_coverage: [ - 'coverage', - 'coverages', - '.nyc-output', - '.nyc_output', - ], - folder_cypress: ['cypress', '.cypress'], - folder_docs: ['doc', 'docs', 'document', 'documents', 'documentation'], - folder_dist: [ - '.output', - 'dist', - 'out', - 'output', - 'build', - 'release', - 'bin', - 'target', - 'storybook-static', - ], - folder_examples: [ - 'demo', - 'demos', - 'example', - 'examples', - 'sample', - 'samples', - 'sample-data', - ], - folder_fonts: ['font', 'fonts'], - folder_functions: [ - 'func', - 'funcs', - 'function', - 'functions', - 'lambda', - 'lambdas', - 'logic', - 'math', - 'maths', - 'calc', - 'calcs', - 'calculation', - 'calculations', - ], - folder_github: ['.github'], - folder_husky: ['husky', '.husky'], - folder_images: [ - 'asset', - 'assets', - 'images', - 'image', - 'imgs', - 'img', - 'icons', - 'icon', - 'icos', - 'ico', - 'figures', - 'figure', - 'figs', - 'fig', - 'screenshot', - 'screenshots', - 'screengrab', - 'screengrabs', - 'pic', - 'pics', - 'picture', - 'pictures', - ], - folder_layouts: ['layout', 'layouts', '_layouts'], - folder_locales: [ - 'i18n', - 'internationalization', - 'lang', - 'langs', - 'language', - 'languages', - 'locale', - 'locales', - 'l10n', - 'localization', - 'translation', - 'translate', - 'translations', - ], - folder_mocks: [ - 'mock', - 'mocks', - 'fixture', - 'fixtures', - 'draft', - 'drafts', - 'concept', - 'concepts', - 'sketch', - 'sketches', - 'stub', - 'stubs', - ], - folder_next: ['.next'], - folder_node: ['node_modules'], - folder_nuxt: ['.nuxt', 'nuxt'], - folder_packages: ['package', 'packages', 'pkg', 'pkgs'], - folder_playground: ['playground', 'playgrounds'], - folder_plugins: [ - 'plugin', - 'plugins', - '_plugins', - 'extension', - 'extensions', - 'addon', - 'addons', - 'module', - 'modules', - ], - folder_public: ['public', 'www', 'wwwroot', 'web', 'website', 'site'], - folder_routes: ['routes', 'router', 'routers'], - folder_sass: ['sass', '_sass', 'scss', '_scss'], - folder_scripts: ['scripts', 'script'], - folder_server: ['server', 'servers', 'backend'], - folder_src: ['src', 'srcs', 'source', 'sources', 'code'], - folder_storybook: ['.storybook', 'storybook', 'stories', '__stories__'], - folder_styles: [ - 'css', - 'stylesheet', - 'stylesheets', - 'style', - 'styles', - 'theme', - 'themes', - ], - folder_templates: ['template', 'templates', '_template', '_templates'], - folder_tests: [ - 'test', - 'tests', - 'testing', - '__tests__', - '__snapshots__', - '__mocks__', - '__fixtures__', - '__test__', - 'spec', - 'specs', - ], - folder_types: ['typings', '@types', 'types'], - folder_utils: ['tools', 'tooling', 'util', 'utils', 'utility', 'utilities'], - folder_views: ['view', 'views', 'screen', 'screens', 'page', 'pages', 'html'], - folder_vscode: ['.vscode', '.vscode-test'], - folder_workflows: ['workflow', 'workflows', 'ci', '.ci'], - folder_yarn: ['.yarn'], -} - -export const foldersExpanded: IconMap = Object.entries(folders).reduce( - (acc, [icon, langs]) => ({ ...acc, [`${icon}__open`]: langs }), - {}, -) diff --git a/src/associations/index.ts b/src/associations/index.ts deleted file mode 100644 index fa660322..00000000 --- a/src/associations/index.ts +++ /dev/null @@ -1,5 +0,0 @@ -export * from './base' -export * from './extensions' -export * from './files' -export * from './folders' -export * from './languages' diff --git a/src/associations/languages.ts b/src/associations/languages.ts deleted file mode 100644 index 317e7092..00000000 --- a/src/associations/languages.ts +++ /dev/null @@ -1,106 +0,0 @@ -export const languages: IconMap = { - angular: ['ng-template'], - apple: ['applescript'], - bash: ['awk', 'shellscript'], - bat: ['bat'], - binary: ['code-text-binary'], - c: ['c', 'objective-c', 'objective-cpp'], - clojure: ['clojure'], - coffeescript: ['coffeescript'], - coq: ['coq'], - cpp: ['cpp'], - csharp: ['csharp'], - css: ['css', 'less', 'postcss'], - csv: ['csv', 'tsv', 'psv'], - cucumber: ['cucumber'], - cuda: ['cuda-cpp'], - d: ['d'], - dart: ['dart'], - database: ['sql'], - dhall: ['dhall'], - diff: ['diff'], - django: ['django-html', 'django-txt'], - docker: ['dockerfile', 'dockercompose'], - editorconfig: ['editorconfig'], - elixir: ['elixir'], - elm: ['elm'], - env: ['dotenv'], - erlang: ['erlang'], - fsharp: ['fsharp'], - fortran: ['fortran'], - git: ['git', 'git-commit', 'git-rebase', 'ignore'], - gnuplot: ['gnuplot'], - godot: ['gdscript', 'gdresource'], - go: ['go'], - graphql: ['graphql'], - groovy: ['groovy'], - haml: ['haml'], - handlebars: ['handlebars'], - haskell: ['haskell'], - haxe: ['haxe', 'hxml'], - html: ['html'], - java: ['java'], - javascript: ['javascript'], - javascript_react: ['javascriptreact'], - jinja: ['jinja'], - json: ['json', 'jsonc', 'json5'], - julia: ['julia', 'juliamarkdown'], - jupyter: ['jupyter'], - latex: [ - 'bibtex', - 'bibtex-style', - 'tex', - 'doctex', - 'latex', - 'latex-expl3', - ], - liquid: ['liquid'], - log: ['log'], - lua: ['lua'], - makefile: ['makefile'], - markdown: ['markdown'], - matlab: ['matlab'], - nim: ['nim', 'nimble'], - nix: ['nix'], - nunjucks: ['nunjucks'], - pdf: ['pdf'], - perl: ['perl'], - php: ['php'], - powershell: ['powershell'], - properties: ['properties'], - protobuf: ['proto'], - python: ['python'], - r: ['r', 'rsweave'], - razor: ['razor', 'aspnetcorerazor'], - reason: ['reason', 'reason_lisp'], - rescript: ['rescript'], - ruby: ['ruby'], - sass: ['sass', 'scss'], - scala: ['scala'], - search: ['search-result'], - shader: ['hlsl', 'glsl', 'wgsl'], - solidity: ['solidity'], - svelte: ['svelte'], - svg: ['svg'], - swift: ['swift'], - tailwind: ['tailwindcss'], - toml: ['toml'], - txt: ['plaintext'], - typescript: ['typescript'], - typescript_react: ['typescriptreact'], - unity: ['shaderlab'], - v: ['v'], - visual_studio: ['vb', 'testOutput'], - vue: [ - 'vue', - 'vue-postcss', - 'vue-html', - 'vue-directives', - 'vue-injection-markdown', - 'vue-interpolations', - 'vue-sfc-style-variable-injection', - ], - windi: ['windi'], - xml: ['xml', 'xquery', 'xsl'], - yaml: ['yaml'], -} diff --git a/src/defaults/baseIcons.ts b/src/defaults/baseIcons.ts new file mode 100644 index 00000000..fa004122 --- /dev/null +++ b/src/defaults/baseIcons.ts @@ -0,0 +1,10 @@ +import type { BaseIcons } from '~/types' + +export const baseIcons: BaseIcons = { + file: '_file', + folder: '_folder', + folderExpanded: '_folder_open', + // TODO create proper root folder + rootFolder: '_folder', + rootFolderExpanded: '_folder_open', +} diff --git a/src/defaults/fileIcons.ts b/src/defaults/fileIcons.ts new file mode 100644 index 00000000..f109ff2c --- /dev/null +++ b/src/defaults/fileIcons.ts @@ -0,0 +1,2450 @@ +import type { FileIcons } from '~/types' + +export const fileIcons: FileIcons = { + 'adonis': { + fileNames: [ + '.adonisrc.json', + 'ace', + ], + }, + 'alex': { + fileNames: [ + '.alexrc', + '.alexrc.yaml', + '.alexrc.yml', + '.alexrc.js', + ], + }, + 'android': { + fileNames: ['androidmanifest.xml'], + fileExtensions: [ + 'apk', + 'smali', + 'dex', + ], + }, + 'antlr': { + fileExtensions: ['g4'], + }, + 'api-blueprint': { + fileExtensions: [ + 'apib', + 'apiblueprint', + ], + }, + 'apollo': { + fileNames: [ + 'apollo.config.js', + 'apollo.config.ts', + ], + }, + 'audio': { + fileExtensions: [ + 'mp3', + 'flac', + 'm4a', + 'wma', + 'aiff', + 'wav', + ], + }, + 'azure-pipelines': { + fileNames: [ + 'azure-pipelines.yml', + 'azure-pipelines.yaml', + 'azure-pipelines-main.yml', + 'azure-pipelines-main.yaml', + ], + fileExtensions: [ + 'azure-pipelines.yml', + 'azure-pipelines.yaml', + 'azure-pipelines-main.yml', + 'azure-pipelines-main.yaml', + ], + }, + 'babel': { + fileNames: [ + '.babelrc', + '.babelrc.cjs', + '.babelrc.js', + '.babelrc.mjs', + '.babelrc.json', + 'babel.config.cjs', + 'babel.config.js', + 'babel.config.mjs', + 'babel.config.json', + 'babel-transform.js', + '.babel-plugin-macrosrc', + '.babel-plugin-macrosrc.json', + '.babel-plugin-macrosrc.yaml', + '.babel-plugin-macrosrc.yml', + '.babel-plugin-macrosrc.js', + 'babel-plugin-macros.config.js', + ], + }, + 'bash': { + languageIds: [ + 'awk', + 'shellscript', + ], + fileExtensions: [ + 'sh', + 'ksh', + 'csh', + 'tcsh', + 'zsh', + 'bash', + 'awk', + 'fish', + ], + fileNames: [ + 'applypatch-msg', + 'pre-applypatch', + 'post-applypatch', + 'pre-commit', + 'prepare-commit-message', + 'commit-msg', + 'post-commit', + 'pre-rebase', + 'post-checkout', + 'post-merge', + 'pre-receive', + 'update', + 'post-receive', + 'post-update', + 'pre-auto-gc', + 'post-rewrite', + 'pre-push', + ], + }, + 'batch': { + languageIds: ['bat'], + fileExtensions: [ + 'bat', + 'cmd', + ], + }, + 'binary': { + languageIds: ['code-text-binary'], + fileExtensions: ['bin'], + }, + 'bitbucket': { + fileNames: [ + 'bitbucket-pipelines.yaml', + 'bitbucket-pipelines.yml', + ], + }, + 'blitz': { + fileNames: [ + 'blitz.config.js', + 'blitz.config.ts', + '.blitz.config.compiled.js', + ], + }, + 'bower': { + fileNames: [ + '.bowerrc', + 'bower.json', + ], + }, + 'browserslist': { + fileNames: [ + 'browserslist', + '.browserslistrc', + ], + }, + 'bun': { + fileNames: ['bunfig.toml'], + }, + 'bun-lock': { + fileNames: ['bun.lockb'], + }, + 'c': { + languageIds: ['c'], + fileExtensions: [ + 'c', + 'i', + 'mi', + ], + }, + 'c-header': { + fileExtensions: ['h'], + }, + 'caddy': { + fileNames: ['caddyfile'], + }, + 'capacitor': { + fileNames: [ + 'capacitor.config.json', + 'capacitor.config.ts', + ], + }, + 'certificate': { + fileExtensions: [ + 'cer', + 'cert', + 'crt', + 'pfx', + ], + }, + 'changelog': { + fileNames: [ + 'changelog', + 'changelog.md', + 'changelog.rst', + 'changelog.txt', + 'changes', + 'changes.md', + 'changes.rst', + 'changes.txt', + ], + }, + 'circle-ci': { + fileNames: ['circle.yml'], + }, + 'clojure': { + languageIds: ['clojure'], + fileExtensions: [ + 'clj', + 'cljs', + 'cljc', + ], + }, + 'cmake': { + fileExtensions: ['cmake'], + fileNames: [ + 'cmakelists.txt', + 'cmakecache.txt', + ], + }, + 'cobol': { + languageIds: ['cobol'], + fileExtensions: [ + 'cob', + 'cbl', + ], + }, + 'code-climate': { + fileNames: ['.codeclimate.yml'], + }, + 'code-of-conduct': { + fileNames: [ + 'code_of_conduct.md', + 'code_of_conduct.txt', + 'code_of_conduct', + ], + }, + 'coffeescript': { + languageIds: ['coffeescript'], + fileExtensions: [ + 'coffee', + 'cson', + 'iced', + ], + }, + 'commitlint': { + fileNames: [ + '.commitlintrc', + '.commitlintrc.js', + '.commitlintrc.cjs', + '.commitlintrc.ts', + '.commitlintrc.cts', + '.commitlintrc.json', + '.commitlintrc.yaml', + '.commitlintrc.yml', + '.commitlint.yaml', + '.commitlint.yml', + 'commitlint.config.js', + 'commitlint.config.cjs', + 'commitlint.config.ts', + 'commitlint.config.cts', + ], + }, + 'cpp': { + languageIds: ['cpp'], + fileExtensions: [ + 'cc', + 'cpp', + 'cxx', + 'c++', + 'cp', + 'mii', + 'ii', + ], + }, + 'cpp-header': { + fileExtensions: [ + 'hh', + 'hpp', + 'hxx', + 'h++', + 'hp', + 'tcc', + 'inl', + ], + }, + 'csharp': { + languageIds: ['csharp'], + fileExtensions: [ + 'cs', + 'csx', + 'csharp', + ], + }, + 'css': { + languageIds: ['css'], + fileExtensions: ['css'], + }, + 'css-map': { + fileExtensions: ['css.map'], + }, + 'csv': { + languageIds: [ + 'csv', + 'tsv', + 'psv', + + ], + fileExtensions: [ + 'csv', + 'tsv', + 'psv', + ], + }, + 'cucumber': { + languageIds: ['cucumber'], + fileExtensions: [ + 'feature', + 'features', + ], + }, + 'cuda': { + languageIds: ['cuda-cpp'], + fileExtensions: [ + 'cu', + 'cuh', + ], + }, + 'cypress': { + fileNames: [ + 'cypress.json', + 'cypress.env.json', + 'cypress.config.ts', + 'cypress.config.js', + 'cypress.config.cjs', + 'cypress.config.mjs', + ], + }, + 'd': { + languageIds: ['d'], + fileExtensions: ['d'], + }, + 'dart': { + languageIds: ['dart'], + fileExtensions: ['dart'], + }, + 'dart-generated': { + fileExtensions: [ + 'freezed.dart', + 'g.dart', + ], + }, + 'database': { + languageIds: ['sql'], + fileExtensions: [ + 'pdb', + 'sql', + 'pks', + 'pkb', + 'accdb', + 'mdb', + 'sqlite', + 'sqlite3', + 'pgsql', + 'postgres', + 'plpgsql', + 'psql', + 'db', + 'db3', + ], + }, + 'deno': { + fileNames: [ + 'deno.json', + 'deno.jsonc', + ], + }, + 'deno_lock': { + fileNames: ['deno.lock'], + }, + 'dependabot': { + fileNames: [ + 'dependabot.yml', + 'dependabot.yaml', + ], + }, + 'dhall': { + languageIds: ['dhall'], + fileExtensions: [ + 'dhall', + 'dhallb', + ], + }, + 'diff': { + languageIds: ['diff'], + }, + 'django': { + languageIds: [ + 'django-html', + 'django-txt', + ], + fileExtensions: ['djt'], + }, + 'docker': { + fileExtensions: [ + 'dockerfile', + 'containerfile', + ], + fileNames: [ + 'dockerfile', + 'dockerfile.prod', + 'dockerfile.production', + 'dockerfile.alpha', + 'dockerfile.beta', + 'dockerfile.stage', + 'dockerfile.staging', + 'dockerfile.dev', + 'dockerfile.development', + 'dockerfile.local', + 'dockerfile.test', + 'dockerfile.testing', + 'dockerfile.ci', + 'dockerfile.web', + 'dockerfile.worker', + + 'containerfile', + 'containerfile.prod', + 'containerfile.production', + 'containerfile.alpha', + 'containerfile.beta', + 'containerfile.stage', + 'containerfile.staging', + 'containerfile.dev', + 'containerfile.development', + 'containerfile.local', + 'containerfile.test', + 'containerfile.testing', + 'containerfile.ci', + 'containerfile.web', + 'containerfile.worker', + ], + }, + 'docker-compose': { + fileExtensions: [ + 'docker-compose.yml', + 'docker-compose.yaml', + + 'compose.yaml', + 'compose.yml', + ], + fileNames: [ + 'docker-compose.yml', + 'docker-compose.override.yml', + 'docker-compose.prod.yml', + 'docker-compose.production.yml', + 'docker-compose.alpha.yml', + 'docker-compose.beta.yml', + 'docker-compose.stage.yml', + 'docker-compose.staging.yml', + 'docker-compose.dev.yml', + 'docker-compose.development.yml', + 'docker-compose.local.yml', + 'docker-compose.test.yml', + 'docker-compose.testing.yml', + 'docker-compose.ci.yml', + 'docker-compose.web.yml', + 'docker-compose.worker.yml', + + 'docker-compose.yaml', + 'docker-compose.override.yaml', + 'docker-compose.prod.yaml', + 'docker-compose.production.yaml', + 'docker-compose.alpha.yaml', + 'docker-compose.beta.yaml', + 'docker-compose.stage.yaml', + 'docker-compose.staging.yaml', + 'docker-compose.dev.yaml', + 'docker-compose.development.yaml', + 'docker-compose.local.yaml', + 'docker-compose.test.yaml', + 'docker-compose.testing.yaml', + 'docker-compose.ci.yaml', + 'docker-compose.web.yaml', + 'docker-compose.worker.yaml', + + 'compose.yaml', + 'compose.override.yaml', + 'compose.prod.yaml', + 'compose.production.yaml', + 'compose.alpha.yaml', + 'compose.beta.yaml', + 'compose.stage.yaml', + 'compose.staging.yaml', + 'compose.dev.yaml', + 'compose.development.yaml', + 'compose.local.yaml', + 'compose.test.yaml', + 'compose.testing.yaml', + 'compose.ci.yaml', + 'compose.web.yaml', + 'compose.worker.yaml', + + 'compose.yml', + 'compose.override.yml', + 'compose.prod.yml', + 'compose.production.yml', + 'compose.alpha.yml', + 'compose.beta.yml', + 'compose.stage.yml', + 'compose.staging.yml', + 'compose.dev.yml', + 'compose.development.yml', + 'compose.local.yml', + 'compose.test.yml', + 'compose.testing.yml', + 'compose.ci.yml', + 'compose.web.yml', + 'compose.worker.yml', + ], + }, + 'docker-ignore': { + fileExtensions: [ + 'dockerignore', + 'containerignore', + ], + }, + 'drawio': { + fileExtensions: [ + 'drawio', + 'dio', + ], + }, + 'editorconfig': { + languageIds: ['editorconfig'], + fileNames: ['.editorconfig'], + }, + 'ejs': { + fileExtensions: ['ejs'], + }, + 'elixir': { + languageIds: ['elixir'], + fileExtensions: [ + 'ex', + 'exs', + 'eex', + 'leex', + 'heex', + ], + }, + 'elm': { + languageIds: ['elm'], + fileExtensions: ['elm'], + }, + 'ember': { + fileNames: [ + '.ember-cli', + '.ember-cli.js', + 'ember-cli-builds.js', + ], + }, + 'env': { + fileExtensions: ['env'], + fileNames: [ + '.env.defaults', + '.env.example', + '.env.sample', + '.env.template', + '.env.schema', + '.env.local', + '.env.dev', + '.env.development', + '.env.alpha', + '.env.e2e', + '.env.qa', + '.env.dist', + '.env.prod', + '.env.production', + '.env.stage', + '.env.staging', + '.env.preview', + '.env.test', + '.env.testing', + '.env.development.local', + '.env.qa.local', + '.env.production.local', + '.env.staging.local', + '.env.test.local', + '.env.uat', + ], + }, + 'erlang': { + languageIds: ['erlang'], + fileExtensions: ['erl'], + }, + 'esbuild': { + fileNames: [ + 'esbuild.js', + 'esbuild.ts', + 'esbuild.cjs', + 'esbuild.mjs', + 'esbuild.config.js', + 'esbuild.config.ts', + 'esbuild.config.cjs', + 'esbuild.config.mjs', + ], + }, + 'eslint': { + fileNames: [ + '.eslintrc.js', + '.eslintrc.cjs', + '.eslintrc.yaml', + '.eslintrc.yml', + '.eslintrc.json', + '.eslintrc-md.js', + '.eslintrc-jsdoc.js', + '.eslintrc', + + 'eslint.config.js', + 'eslint.config.cjs', + 'eslint.config.mjs', + 'eslint.config.ts', + ], + }, + 'eslint-ignore': { + fileNames: [ + '.eslintignore', + '.eslintcache,', + ], + }, + 'exe': { + fileExtensions: [ + 'exe', + 'msi', + ], + }, + 'fastlane': { + fileNames: [ + 'fastfile', + 'appfile', + ], + }, + 'favicon': { + fileNames: ['favicon.ico'], + }, + 'figma': { + fileExtensions: ['fig'], + }, + 'firebase': { + fileNames: [ + 'firebase.json', + '.firebaserc', + 'firestore.rules', + 'firestore.indexes.json', + ], + }, + 'font': { + fileExtensions: [ + 'woff', + 'woff2', + 'ttf', + 'eot', + 'suit', + 'otf', + 'bmap', + 'fnt', + 'odttf', + 'ttc', + 'font', + 'fonts', + 'sui', + 'ntf', + 'mrf', + ], + }, + 'fortran': { + fileExtensions: [ + 'f', + 'f77', + 'f90', + 'f95', + 'f03', + 'f08', + ], + }, + 'fsharp': { + languageIds: ['fsharp'], + fileExtensions: [ + 'fs', + 'fsx', + 'fsi', + 'fsproj', + ], + }, + 'gatsby': { + fileNames: [ + 'gatsby-config.js', + 'gatsby-config.mjs', + 'gatsby-config.ts', + 'gatsby-node.js', + 'gatsby-node.mjs', + 'gatsby-node.ts', + 'gatsby-browser.js', + 'gatsby-browser.tsx', + 'gatsby-ssr.js', + 'gatsby-ssr.tsx', + ], + }, + 'git': { + languageIds: [ + 'git', + 'git-commit', + 'git-rebase', + 'ignore', + ], + fileExtensions: ['patch'], + fileNames: [ + '.git', + '.gitignore', + '.gitmessage', + '.gitignore-global', + '.gitignore_global', + '.gitattributes', + '.gitattributes-global', + '.gitattributes_global', + '.gitconfig', + '.gitmodules', + '.gitkeep', + '.keep', + '.gitpreserve', + '.gitinclude', + '.git-blame-ignore', + '.git-blame-ignore-revs', + '.git-for-windows-updater', + 'git-history', + ], + }, + 'gitlab': { + fileExtensions: ['gitlab-ci.yml'], + }, + 'gitpod': { + fileNames: ['.gitpod.yml'], + }, + 'go': { + languageIds: ['go'], + fileExtensions: ['go'], + }, + 'go-mod': { + fileNames: [ + 'go.mod', + 'go.sum', + 'go.work', + 'go.work.sum', + ], + }, + 'godot': { + languageIds: ['gdscript'], + fileExtensions: ['gd'], + }, + 'godot-assets': { + fileExtensions: [ + 'godot', + 'tres', + 'tscn', + 'gdns', + 'gdnlib', + 'gdshader', + 'gdshaderinc', + 'gdextension', + ], + fileNames: [ + '.gdignore', + '._sc_', + '_sc_', + ], + }, + 'gradle': { + fileExtensions: ['gradle'], + fileNames: [ + 'gradle.properties', + 'gradlew', + 'gradle-wrapper.properties', + ], + }, + 'graphql': { + languageIds: ['graphql'], + fileExtensions: [ + 'graphql', + 'gql', + ], + fileNames: [ + '.graphqlconfig', + '.graphqlrc', + '.graphqlrc.json', + '.graphqlrc.js', + '.graphqlrc.cjs', + '.graphqlrc.ts', + '.graphqlrc.toml', + '.graphqlrc.yaml', + '.graphqlrc.yml', + 'graphql.config.json', + 'graphql.config.js', + 'graphql.config.cjs', + 'graphql.config.ts', + 'graphql.config.toml', + 'graphql.config.yaml', + 'graphql.config.yml', + ], + }, + 'groovy': { + languageIds: ['groovy'], + fileExtensions: ['groovy'], + }, + 'gulp': { + fileNames: [ + 'gulpfile.js', + 'gulpfile.mjs', + 'gulpfile.ts', + 'gulpfile.cts', + 'gulpfile.mts', + 'gulpfile.babel.js', + ], + }, + 'haml': { + languageIds: ['haml'], + fileExtensions: ['haml'], + }, + 'handlebars': { + languageIds: ['handlebars'], + fileExtensions: [ + 'hbs', + 'mustache', + ], + }, + 'haskell': { + languageIds: ['haskell'], + fileExtensions: ['hs'], + }, + 'haxe': { + languageIds: [ + 'haxe', + 'hxml', + ], + fileExtensions: ['hx'], + }, + 'helm': { + fileNames: [ + '.helmignore', + 'chart.lock', + ], + }, + 'heroku': { + fileNames: ['procfile'], + }, + 'histoire': { + fileNames: [ + 'histoire.config.ts', + 'histoire.config.js', + '.histoire.js', + '.histoire.ts', + ], + }, + 'html': { + languageIds: ['html'], + fileExtensions: [ + 'htm', + 'xhtml', + 'html_vm', + 'asp', + ], + }, + 'http': { + fileExtensions: [ + 'http', + 'rest', + ], + fileNames: ['CNAME'], + }, + 'husky': { + fileNames: [ + '.huskyrc', + 'husky.config.js', + '.huskyrc.json', + '.huskyrc.js', + '.huskyrc.yaml', + '.huskyrc.yml', + ], + }, + 'image': { + fileExtensions: [ + 'png', + 'jpeg', + 'jpg', + 'gif', + 'ico', + 'tif', + 'tiff', + 'psd', + 'psb', + 'ami', + 'apx', + 'avif', + 'bmp', + 'bpg', + 'brk', + 'cur', + 'dds', + 'dng', + 'exr', + 'fpx', + 'gbr', + 'img', + 'jbig2', + 'jb2', + 'jng', + 'jxr', + 'pgf', + 'pic', + 'raw', + 'webp', + 'eps', + 'afphoto', + 'ase', + 'aseprite', + 'clip', + 'cpt', + 'heif', + 'heic', + 'kra', + 'mdp', + 'ora', + 'pdn', + 'reb', + 'sai', + 'tga', + 'xcf', + 'jfif', + 'ppm', + 'pbm', + 'pgm', + 'pnm', + 'icns', + ], + }, + 'ionic': { + fileNames: [ + 'ionic.config.json', + '.io-config.json', + ], + }, + 'java': { + languageIds: ['java'], + fileExtensions: [ + 'java', + 'jsp', + ], + }, + 'java-class': { + fileExtensions: ['class'], + }, + 'java-jar': { + fileExtensions: ['jar'], + }, + 'javascript': { + languageIds: ['javascript'], + fileExtensions: [ + 'esx', + 'js', + 'cjs', + 'mjs', + ], + }, + 'javascript-config': { + fileNames: ['jsconfig.json'], + fileExtensions: ['jsconfig.json'], + }, + 'javascript-map': { + fileExtensions: [ + 'js.map', + 'mjs.map', + 'cjs.map', + ], + }, + 'javascript-react': { + languageIds: ['javascriptreact'], + fileExtensions: ['jsx'], + }, + 'javascript-test': { + fileExtensions: [ + 'spec.js', + 'spec.cjs', + 'spec.mjs', + 'e2e-spec.js', + 'e2e-spec.cjs', + 'e2e-spec.mjs', + 'test.js', + 'test.cjs', + 'test.mjs', + 'js.snap', + 'cy.js', + + 'spec.jsx', + 'test.jsx', + 'jsx.snap', + 'cy.jsx', + ], + }, + 'jest': { + fileNames: [ + 'jest.config.js', + 'jest.config.cjs', + 'jest.config.mjs', + 'jest.config.ts', + 'jest.config.cts', + 'jest.config.mts', + 'jest.config.json', + 'jest.e2e.config.js', + 'jest.e2e.config.cjs', + 'jest.e2e.config.mjs', + 'jest.e2e.config.ts', + 'jest.e2e.config.cts', + 'jest.e2e.config.mts', + 'jest.e2e.config.json', + 'jest.e2e.json', + 'jest-unit.config.js', + 'jest-e2e.config.js', + 'jest-e2e.config.cjs', + 'jest-e2e.config.mjs', + 'jest-e2e.config.ts', + 'jest-e2e.config.cts', + 'jest-e2e.config.mts', + 'jest-e2e.config.json', + 'jest-e2e.json', + 'jest-github-actions-reporter.js', + 'jest.setup.js', + 'jest.setup.ts', + 'jest.json', + '.jestrc', + '.jestrc.js', + '.jestrc.json', + 'jest.teardown.js', + 'jest-preset.json', + 'jest-preset.js', + 'jest-preset.cjs', + 'jest-preset.mjs', + 'jest.preset.js', + 'jest.preset.mjs', + 'jest.preset.cjs', + 'jest.preset.json', + ], + }, + 'jinja': { + languageIds: ['jinja'], + fileExtensions: [ + 'jinja', + 'jinja2', + 'j2', + 'jinja-html', + ], + }, + 'json': { + languageIds: ['hjson'], + fileExtensions: [ + 'json', + 'jsonc', + 'tsbuildinfo', + 'json5', + 'jsonl', + 'ndjson', + 'hjson', + ], + fileNames: [ + '.jscsrc', + '.jshintrc', + 'composer.lock', + '.jsbeautifyrc', + '.esformatter', + 'cdp.pid', + '.lintstagedrc', + '.whitesource', + ], + }, + 'julia': { + languageIds: ['julia'], + fileExtensions: ['jl'], + }, + 'jupyter': { + languageIds: ['jupyter'], + fileExtensions: ['ipynb'], + }, + 'just': { + fileNames: ['justfile'], + }, + 'key': { + fileExtensions: [ + 'pub', + 'key', + 'pem', + 'asc', + 'gpg', + 'passwd', + 'keystore', + ], + fileNames: ['.htpasswd'], + }, + 'kotlin': { + fileExtensions: [ + 'kt', + 'kts', + ], + }, + 'laravel': { + fileExtensions: [ + 'blade.php', + 'inky.php', + ], + fileNames: ['artisan'], + }, + 'latex': { + languageIds: [ + 'tex', + 'doctex', + 'latex', + 'latex-expl3', + ], + fileExtensions: [ + 'tex', + 'sty', + 'dtx', + 'ltx', + ], + }, + 'lerna': { + fileNames: ['lerna.json'], + }, + 'less': { + languageIds: ['less'], + fileExtensions: ['less'], + }, + 'lib': { + languageIds: [ + 'bibtex', + 'bibtex-style', + ], + fileExtensions: [ + 'lib', + 'bib', + ], + }, + 'license': { + fileNames: [ + 'copying', + 'copying.md', + 'copying.rst', + 'copying.txt', + 'copyright', + 'copyright.md', + 'copyright.rst', + 'copyright.txt', + 'license', + 'license-agpl', + 'license-apache', + 'license-bsd', + 'license-mit', + 'license-gpl', + 'license-lgpl', + 'license.md', + 'license.rst', + 'license.txt', + 'licence', + 'licence-agpl', + 'licence-apache', + 'licence-bsd', + 'licence-mit', + 'licence-gpl', + 'licence-lgpl', + 'licence.md', + 'licence.rst', + 'licence.txt', + ], + }, + 'lint-staged': { + fileNames: [ + '.lintstagedrc', + '.lintstagedrc.json', + '.lintstagedrc.yaml', + '.lintstagedrc.yml', + '.lintstagedrc.mjs', + '.lintstagedrc.cjs', + '.lintstagedrc.js', + 'lint-staged.config.js', + 'lint-staged.config.mjs', + 'lint-staged.config.cjs', + ], + }, + 'lisp': { + fileExtensions: [ + 'lisp', + 'lsp', + 'cl', + 'fast', + ], + }, + 'log': { + languageIds: ['log'], + fileExtensions: ['log'], + }, + 'lua': { + languageIds: ['lua'], + fileExtensions: ['lua'], + fileNames: ['.luacheckrc'], + }, + 'makefile': { + languageIds: ['makefile'], + fileExtensions: ['mk'], + fileNames: [ + 'makefile', + 'gnumakefile', + 'kbuild', + ], + }, + 'markdown': { + languageIds: ['markdown'], + fileExtensions: [ + 'md', + 'markdown', + 'rst', + ], + }, + 'markdown-mdx': { + fileExtensions: ['mdx'], + }, + 'marko': { + fileExtensions: ['marko'], + }, + 'matlab': { + languageIds: ['matlab'], + }, + 'maven': { + fileNames: [ + 'maven.config', + 'jvm.config', + 'pom.xml', + ], + }, + 'mermaid': { + fileExtensions: [ + 'mmd', + 'mermaid', + ], + }, + 'meson': { + fileNames: [ + 'meson.build', + 'meson_options.txt', + ], + fileExtensions: ['wrap'], + }, + 'mjml': { + fileExtensions: ['mjml'], + fileNames: ['.mjmlconfig'], + }, + 'modernizr': { + fileNames: [ + '.modernizrrc', + '.modernizrrc.js', + '.modernizrrc.json', + ], + }, + 'ms-excel': { + fileExtensions: [ + 'xlsx', + 'xlsm', + 'xls', + ], + }, + 'ms-powerpoint': { + fileExtensions: [ + 'pptx', + 'ppt', + 'pptm', + 'potx', + 'potm', + 'ppsx', + 'ppsm', + 'pps', + 'ppam', + 'ppa', + 'odp', + ], + }, + 'ms-word': { + fileExtensions: [ + 'doc', + 'docx', + 'rtf', + 'odt', + ], + }, + 'nativescript': { + fileNames: [ + 'nativescript.config.ts', + 'nativescript.config.js', + ], + }, + 'nest': { + fileNames: [ + 'nest-cli.json', + '.nest-cli.json', + 'nestconfig.json', + '.nestconfig.json', + ], + }, + 'netlify': { + fileNames: [ + 'netlify.json', + 'netlify.yml', + 'netlify.yaml', + 'netlify.toml', + ], + }, + 'next': { + fileNames: [ + 'next.config.js', + 'next.config.mjs', + 'next.config.ts', + 'next.config.mts', + ], + }, + 'nextflow': { + fileExtensions: ['nf'], + }, + 'nginx': { + fileNames: ['nginx.conf'], + fileExtensions: [ + 'nginx', + 'nginxconf', + 'nginxconfig', + ], + }, + 'nim': { + languageIds: [ + 'nim', + 'nimble', + ], + fileExtensions: [ + 'nim', + 'nimble', + ], + }, + 'ninja': { + fileExtensions: ['ninja'], + }, + 'nix': { + languageIds: ['nix'], + fileExtensions: ['nix'], + }, + 'nix-lock': { + fileNames: ['flake.lock'], + }, + 'nodemon': { + fileNames: [ + 'nodemon.json', + 'nodemon-debug.json', + ], + }, + 'npm': { + fileNames: ['.npmrc'], + }, + 'npm-ignore': { + fileNames: ['.npmignore'], + }, + 'npm-lock': { + fileNames: ['package-lock.json'], + }, + 'nuget': { + fileNames: [ + 'nuget.config', + '.nuspec', + 'nuget.exe', + ], + fileExtensions: ['nupkg'], + }, + 'nunjucks': { + languageIds: ['nunjucks'], + fileExtensions: [ + 'njk', + 'nunjucks', + ], + }, + 'nuxt': { + fileNames: [ + 'nuxt.config.js', + 'nuxt.config.ts', + ], + }, + 'nuxt-ignore': { + fileNames: ['.nuxtignore'], + }, + 'ocaml': { + fileExtensions: [ + 'ml', + 'mli', + 'cmx', + ], + }, + 'package-json': { + fileNames: [ + 'package.json', + '.nvmrc', + '.esmrc', + '.node-version', + ], + }, + 'panda-css': { + fileNames: [ + 'panda.config.ts', + 'panda.config.js', + 'panda.config.mjs', + 'panda.config.mts', + 'panda.config.cjs', + ], + }, + 'pdf': { + fileExtensions: ['pdf'], + }, + 'perl': { + languageIds: [ + 'perl', + 'perl6', + ], + fileExtensions: [ + 'pm', + 'raku', + ], + }, + 'phrase': { + fileNames: [ + '.phrase.yml', + '.phraseapp.yml', + '.phrase.yaml', + '.phraseapp.yaml', + ], + }, + 'playwright': { + fileNames: [ + 'playwright.config.js', + 'playwright.config.mjs', + 'playwright.config.ts', + 'playwright.config.base.js', + 'playwright.config.base.mjs', + 'playwright.config.base.ts', + 'playwright-ct.config.js', + 'playwright-ct.config.mjs', + 'playwright-ct.config.ts', + ], + }, + 'plop': { + fileNames: [ + 'plopfile.js', + 'plopfile.cjs', + 'plopfile.mjs', + 'plopfile.ts', + ], + }, + 'pnpm': { + fileNames: [ + 'pnpm-workspace.yaml', + '.pnpmfile.cjs', + ], + }, + 'pnpm-lock': { + fileNames: ['pnpm-lock.yaml'], + }, + 'postcss': { + languageIds: ['postcss'], + fileExtensions: [ + 'pcss', + 'sss', + ], + fileNames: [ + 'postcss.config.js', + 'postcss.config.cjs', + 'postcss.config.ts', + 'postcss.config.cts', + '.postcssrc.js', + '.postcssrc.cjs', + '.postcssrc.ts', + '.postcssrc.cts', + '.postcssrc', + '.postcssrc.json', + '.postcssrc.yaml', + '.postcssrc.yml', + ], + }, + 'powershell': { + languageIds: ['powershell'], + fileExtensions: [ + 'ps1', + 'psm1', + 'psd1', + 'ps1xml', + 'psc1', + 'pssc', + ], + }, + 'premake': { + fileNames: [ + 'premake4.lua', + 'premake5.lua', + 'premake.lua', + ], + }, + 'prettier': { + fileNames: [ + '.prettierrc', + 'prettier.config.js', + 'prettier.config.cjs', + '.prettierrc.js', + '.prettierrc.cjs', + '.prettierrc.json', + '.prettierrc.json5', + '.prettierrc.yaml', + '.prettierrc.yml', + '.prettierrc.toml', + 'prettier.config.mjs', + '.prettierrc.mjs', + ], + }, + 'prettier-ignore': { + fileNames: ['.prettierignore'], + }, + 'prisma': { + fileNames: ['prisma.yml'], + fileExtensions: ['prisma'], + }, + 'prolog': { + languageIds: ['prolog'], + fileExtensions: [ + 'p', + 'pro', + 'pl', + ], + }, + 'properties': { + languageIds: [ + 'ini', + 'properties', + 'spring-boot-properties', + ], + fileExtensions: [ + 'ini', + 'dlc', + 'config', + 'conf', + 'properties', + 'prop', + 'settings', + 'option', + 'props', + 'prefs', + 'sln.dotsettings', + 'sln.dotsettings.user', + 'cfg', + ], + }, + 'proto': { + languageIds: ['proto'], + fileExtensions: ['proto'], + }, + 'pug': { + languageIds: ['jade'], + fileExtensions: [ + 'jade', + 'pug', + ], + fileNames: [ + '.pug-lintrc', + '.pug-lintrc.js', + '.pug-lintrc.json', + ], + }, + 'python': { + languageIds: ['python'], + fileExtensions: ['py'], + }, + 'python-compiled': { + fileExtensions: [ + 'pyc', + 'pyo', + 'pyd', + ], + }, + 'r': { + languageIds: [ + 'r', + 'rsweave', + ], + fileExtensions: [ + 'r', + 'rmd', + ], + fileNames: ['.Rhistory'], + }, + 'racket': { + fileExtensions: ['rkt'], + }, + 'razor': { + languageIds: [ + 'razor', + 'aspnetcorerazor', + ], + fileExtensions: [ + 'cshtml', + 'vbhtml', + ], + }, + 'readme': { + fileNames: [ + 'readme.md', + 'readme.rst', + 'readme.txt', + 'readme', + ], + }, + 'reason': { + languageIds: [ + 'reason', + 'reason_lisp', + ], + fileExtensions: [ + 're', + 'rei', + ], + }, + 'redwood': { + fileNames: ['redwood.toml'], + }, + 'remix': { + fileNames: [ + 'remix.config.js', + 'remix.config.ts', + ], + }, + 'renovate': { + fileNames: [ + '.renovaterc', + '.renovaterc.json', + 'renovate-config.json', + 'renovate.json', + 'renovate.json5', + ], + }, + 'rescript': { + languageIds: ['rescript'], + fileExtensions: ['res'], + }, + 'robots': { + fileNames: ['robots.txt'], + }, + 'rollup': { + fileNames: [ + 'rollup.config.js', + 'rollup.config.mjs', + 'rollup.config.ts', + 'rollup-config.js', + 'rollup-config.mjs', + 'rollup-config.ts', + 'rollup.config.common.js', + 'rollup.config.common.mjs', + 'rollup.config.common.ts', + 'rollup.config.base.js', + 'rollup.config.base.mjs', + 'rollup.config.base.ts', + 'rollup.config.prod.js', + 'rollup.config.prod.mjs', + 'rollup.config.prod.ts', + 'rollup.config.dev.js', + 'rollup.config.dev.mjs', + 'rollup.config.dev.ts', + 'rollup.config.prod.vendor.js', + 'rollup.config.prod.vendor.mjs', + 'rollup.config.prod.vendor.ts', + ], + }, + 'ruby': { + languageIds: ['ruby'], + fileExtensions: [ + 'rb', + 'erb', + 'rbs', + ], + fileNames: ['.ruby-version'], + }, + 'ruby-gem': { + fileNames: ['gemfile'], + }, + 'ruby-gem-lock': { + fileNames: ['gemfile.lock'], + }, + 'rust': { + languageIds: ['rust'], + fileExtensions: [ + 'rs', + 'ron', + ], + }, + 'sass': { + languageIds: [ + 'sass', + 'scss', + ], + fileExtensions: [ + 'scss', + 'sass', + ], + }, + 'scala': { + languageIds: ['scala'], + fileExtensions: [ + 'scala', + 'sc', + ], + }, + 'search': { + languageIds: ['search-result'], + fileExtensions: ['code-search'], + }, + 'semantic-release': { + fileNames: [ + '.releaserc', + '.releaserc.yaml', + '.releaserc.yml', + '.releaserc.json', + '.releaserc.js', + '.releaserc.cjs', + 'release.config.js', + 'release.config.cjs', + ], + }, + 'semgrep': { + fileNames: ['semgrep.yml'], + }, + 'semgrep-ignore': { + fileNames: ['.semgrepignore'], + }, + 'sentry': { + fileNames: ['.sentryclirc'], + }, + 'serverless': { + fileNames: [ + 'serverless.yml', + 'serverless.yaml', + 'serverless.json', + 'serverless.js', + 'serverless.ts', + ], + }, + 'shader': { + languageIds: [ + 'hlsl', + 'glsl', + 'wgsl', + ], + fileExtensions: [ + 'glsl', + 'vert', + 'tesc', + 'tese', + 'geom', + 'frag', + 'comp', + 'vert.glsl', + 'tesc.glsl', + 'tese.glsl', + 'geom.glsl', + 'frag.glsl', + 'comp.glsl', + 'vertex.glsl', + 'geometry.glsl', + 'fragment.glsl', + 'compute.glsl', + 'ts.glsl', + 'gs.glsl', + 'vs.glsl', + 'fs.glsl', + 'shader', + 'vertexshader', + 'fragmentshader', + 'geometryshader', + 'computeshader', + 'hlsl', + 'pixel.hlsl', + 'geometry.hlsl', + 'compute.hlsl', + 'tessellation.hlsl', + 'px.hlsl', + 'geom.hlsl', + 'comp.hlsl', + 'tess.hlsl', + 'wgsl', + ], + }, + 'sketch': { + fileExtensions: ['sketch'], + }, + 'snowpack': { + fileNames: [ + 'snowpack.config.js', + 'snowpack.config.cjs', + 'snowpack.config.mjs', + 'snowpack.config.ts', + 'snowpack.config.cts', + 'snowpack.config.mts', + 'snowpack.deps.json', + 'snowpack.config.json', + ], + }, + 'solidity': { + languageIds: ['solidity'], + fileExtensions: ['sol'], + }, + 'sonar-cloud': { + fileNames: [ + 'sonar-project.properties', + '.sonarcloud.properties', + 'sonarcloud.yaml', + ], + }, + 'stackblitz': { + fileNames: ['.stackblitzrc'], + }, + 'stencil': { + fileNames: [ + 'stencil.config.js', + 'stencil.config.ts', + ], + }, + 'stitches': { + fileNames: [ + 'stitches.config.js', + 'stitches.config.ts', + ], + }, + 'storybook': { + fileExtensions: [ + 'stories.js', + 'stories.jsx', + 'stories.mdx', + 'story.js', + 'story.jsx', + 'stories.ts', + 'stories.tsx', + 'story.ts', + 'story.tsx', + 'story.mdx', + ], + }, + 'storybook-svelte': { + fileExtensions: [ + 'story.svelte', + 'stories.svelte', + ], + }, + 'storybook-vue': { + fileExtensions: [ + 'story.vue', + 'stories.vue', + ], + }, + 'stylelint': { + fileNames: [ + '.stylelintrc', + 'stylelint.config.js', + 'stylelint.config.cjs', + 'stylelint.config.mjs', + '.stylelintrc.json', + '.stylelintrc.yaml', + '.stylelintrc.yml', + '.stylelintrc.js', + '.stylelintrc.cjs', + '.stylelintrc.mjs', + ], + }, + 'stylelint-ignore': { + fileNames: [ + '.stylelintignore', + '.stylelintcache', + ], + }, + 'sublime': { + fileExtensions: [ + 'sublime-project', + 'sublime-workspace', + ], + }, + 'svelte': { + languageIds: ['svelte'], + fileExtensions: ['svelte'], + }, + 'svelte-config': { + fileNames: [ + 'svelte.config.js', + 'svelte.config.ts', + 'svelte.config.cjs', + 'svelte.config.mjs', + ], + }, + 'svg': { + languageIds: ['svg'], + fileExtensions: ['svg'], + }, + 'swift': { + languageIds: ['swift'], + fileExtensions: ['swift'], + }, + 'tailwind': { + fileNames: [ + 'tailwind.js', + 'tailwind.ts', + 'tailwind.config.js', + 'tailwind.config.cjs', + 'tailwind.config.mjs', + 'tailwind.config.ts', + 'tailwind.config.cts', + 'tailwind.config.mts', + ], + }, + 'tauri': { + fileNames: [ + 'tauri.conf.json', + 'tauri.config.json', + 'tauri.linux.conf.json', + 'tauri.windows.conf.json', + 'tauri.macos.conf.json', + ], + fileExtensions: ['tauri'], + }, + 'tauri-ignore': { + fileNames: ['.taurignore'], + }, + 'terraform': { + languageIds: ['terraform'], + fileExtensions: [ + 'tf', + 'tf.json', + 'tfvars', + 'tfstate', + 'tfbackend', + ], + }, + 'text': { + languageIds: ['plaintext'], + fileExtensions: ['txt'], + }, + 'todo': { + fileExtensions: ['todo'], + fileNames: [ + 'todo.md', + 'todos.md', + ], + }, + 'toml': { + languageIds: ['toml'], + fileExtensions: ['toml'], + }, + 'twine': { + languageIds: [ + 'twee3', + 'twee3-harlowe-3', + 'twee3-chapbook-1', + 'twee3-sugarcube-2', + ], + fileExtensions: [ + 'tw', + 'twee', + ], + }, + 'typescript': { + languageIds: ['typescript'], + fileExtensions: ['ts'], + }, + 'typescript-config': { + fileNames: [ + 'tsconfig.json', + 'tsconfig.app.json', + 'tsconfig.editor.json', + 'tsconfig.spec.json', + 'tsconfig.base.json', + 'tsconfig.build.json', + 'tsconfig.eslint.json', + 'tsconfig.lib.json', + 'tsconfig.lib.prod.json', + 'tsconfig.node.json', + 'tsconfig.test.json', + 'tsconfig.e2e.json', + 'tsconfig.web.json', + 'tsconfig.webworker.json', + 'tsconfig.worker.json', + 'tsconfig.config.json', + 'tsconfig.vitest.json', + 'tsconfig.cjs.json', + 'tsconfig.esm.json', + 'tsconfig.mjs.json', + 'tsconfig.doc.json', + 'tsconfig.paths.json', + 'tsconfig.main.json', + 'tsconfig.cypress-ct.json', + 'tsconfig.components.json', + ], + fileExtensions: ['tsconfig.json'], + }, + 'typescript-def': { + fileExtensions: [ + 'd.ts', + 'd.cts', + 'd.mts', + ], + }, + 'typescript-react': { + languageIds: ['typescriptreact'], + fileExtensions: ['tsx'], + }, + 'typescript-test': { + fileExtensions: [ + 'spec.ts', + 'spec.cts', + 'spec.mts', + 'cy.ts', + 'e2e-spec.ts', + 'e2e-spec.cts', + 'e2e-spec.mts', + 'test.ts', + 'test.cts', + 'test.mts', + 'ts.snap', + + 'spec-d.ts', + 'test-d.ts', + + 'spec.tsx', + 'test.tsx', + 'tsx.snap', + 'cy.tsx', + ], + }, + 'unity': { + languageIds: ['shaderlab'], + fileExtensions: ['unity'], + }, + 'unocss': { + fileNames: [ + 'uno.config.js', + 'uno.config.mjs', + 'uno.config.ts', + 'uno.config.mts', + 'unocss.config.js', + 'unocss.config.mjs', + 'unocss.config.ts', + 'unocss.config.mts', + ], + }, + 'url': { + fileExtensions: ['url'], + }, + 'v': { + languageIds: ['v'], + fileExtensions: ['v'], + fileNames: [ + 'vpkg.json', + 'v.mod', + ], + }, + 'vercel': { + fileNames: [ + 'vercel.json', + 'now.json', + ], + }, + 'vercel-ignore': { + fileNames: [ + '.vercelignore', + '.nowignore', + ], + }, + 'verilog': { + fileExtensions: [ + 'vhd', + 'sv', + 'svh', + ], + }, + 'video': { + fileExtensions: [ + 'webm', + 'mkv', + 'flv', + 'vob', + 'ogv', + 'ogg', + 'gifv', + 'avi', + 'mov', + 'qt', + 'wmv', + 'yuv', + 'rm', + 'rmvb', + 'mp4', + 'm4v', + 'mpg', + 'mp2', + 'mpeg', + 'mpe', + 'mpv', + 'm2v', + ], + }, + 'vim': { + languageIds: ['viml'], + fileExtensions: [ + 'vimrc', + 'gvimrc', + 'exrc', + 'vim', + 'viminfo', + ], + }, + 'visual-studio': { + languageIds: [ + 'testOutput', + 'vb', + ], + fileExtensions: [ + 'csproj', + 'ruleset', + 'sln', + 'suo', + 'vb', + 'vbs', + 'vcxitems', + 'vcxitems.filters', + 'vcxproj', + 'vcxproj.filters', + ], + }, + 'vite': { + fileNames: [ + 'vite.config.js', + 'vite.config.mjs', + 'vite.config.cjs', + 'vite.config.ts', + 'vite.config.cts', + 'vite.config.mts', + ], + }, + 'vitest': { + fileNames: [ + 'vitest.config.ts', + 'vitest.config.mts', + 'vitest.config.cts', + 'vitest.config.js', + 'vitest.config.mjs', + 'vitest.config.cjs', + ], + }, + 'vs-codium': { + }, + 'vscode': { + fileExtensions: [ + 'vsixmanifest', + 'vsix', + 'code-workplace', + 'code-workspace', + 'code-profile', + 'code-snippets', + ], + }, + 'vscode-ignore': { + fileNames: ['.vscodeignore'], + }, + 'vue': { + languageIds: ['vue'], + fileExtensions: ['vue'], + }, + 'vue-config': { + fileNames: [ + 'vue.config.js', + 'vue.config.ts', + ], + }, + 'web-assembly': { + fileExtensions: [ + 'wat', + 'wasm', + ], + }, + 'webpack': { + fileNames: [ + 'webpack.js', + 'webpack.cjs', + 'webpack.mjs', + 'webpack.ts', + 'webpack.cts', + 'webpack.mts', + 'webpack.base.js', + 'webpack.base.cjs', + 'webpack.base.mjs', + 'webpack.base.ts', + 'webpack.base.cts', + 'webpack.base.mts', + 'webpack.config.js', + 'webpack.config.cjs', + 'webpack.config.mjs', + 'webpack.config.ts', + 'webpack.config.cts', + 'webpack.config.mts', + 'webpack.common.js', + 'webpack.common.cjs', + 'webpack.common.mjs', + 'webpack.common.ts', + 'webpack.common.cts', + 'webpack.common.mts', + 'webpack.config.common.js', + 'webpack.config.common.cjs', + 'webpack.config.common.mjs', + 'webpack.config.common.ts', + 'webpack.config.common.cts', + 'webpack.config.common.mts', + 'webpack.config.common.babel.js', + 'webpack.config.common.babel.ts', + 'webpack.dev.js', + 'webpack.dev.cjs', + 'webpack.dev.mjs', + 'webpack.dev.ts', + 'webpack.dev.cts', + 'webpack.dev.mts', + 'webpack.development.js', + 'webpack.development.cjs', + 'webpack.development.mjs', + 'webpack.development.ts', + 'webpack.development.cts', + 'webpack.development.mts', + 'webpack.config.dev.js', + 'webpack.config.dev.cjs', + 'webpack.config.dev.mjs', + 'webpack.config.dev.ts', + 'webpack.config.dev.cts', + 'webpack.config.dev.mts', + 'webpack.config.dev.babel.js', + 'webpack.config.dev.babel.ts', + 'webpack.config.main.js', + 'webpack.config.renderer.ts', + 'webpack.mix.js', + 'webpack.mix.cjs', + 'webpack.mix.mjs', + 'webpack.mix.ts', + 'webpack.mix.cts', + 'webpack.mix.mts', + 'webpack.prod.js', + 'webpack.prod.cjs', + 'webpack.prod.mjs', + 'webpack.prod.ts', + 'webpack.prod.cts', + 'webpack.prod.mts', + 'webpack.prod.config.js', + 'webpack.prod.config.cjs', + 'webpack.prod.config.mjs', + 'webpack.prod.config.ts', + 'webpack.prod.config.cts', + 'webpack.prod.config.mts', + 'webpack.production.js', + 'webpack.production.cjs', + 'webpack.production.mjs', + 'webpack.production.ts', + 'webpack.production.cts', + 'webpack.production.mts', + 'webpack.server.js', + 'webpack.server.cjs', + 'webpack.server.mjs', + 'webpack.server.ts', + 'webpack.server.cts', + 'webpack.server.mts', + 'webpack.client.js', + 'webpack.client.cjs', + 'webpack.client.mjs', + 'webpack.client.ts', + 'webpack.client.cts', + 'webpack.client.mts', + 'webpack.config.server.js', + 'webpack.config.server.cjs', + 'webpack.config.server.mjs', + 'webpack.config.server.ts', + 'webpack.config.server.cts', + 'webpack.config.server.mts', + 'webpack.config.client.js', + 'webpack.config.client.cjs', + 'webpack.config.client.mjs', + 'webpack.config.client.ts', + 'webpack.config.client.cts', + 'webpack.config.client.mts', + 'webpack.config.production.babel.js', + 'webpack.config.production.babel.ts', + 'webpack.config.prod.babel.js', + 'webpack.config.prod.babel.cjs', + 'webpack.config.prod.babel.mjs', + 'webpack.config.prod.babel.ts', + 'webpack.config.prod.babel.cts', + 'webpack.config.prod.babel.mts', + 'webpack.config.prod.js', + 'webpack.config.prod.cjs', + 'webpack.config.prod.mjs', + 'webpack.config.prod.ts', + 'webpack.config.prod.cts', + 'webpack.config.prod.mts', + 'webpack.config.production.js', + 'webpack.config.production.cjs', + 'webpack.config.production.mjs', + 'webpack.config.production.ts', + 'webpack.config.production.cts', + 'webpack.config.production.mts', + 'webpack.config.staging.js', + 'webpack.config.staging.cjs', + 'webpack.config.staging.mjs', + 'webpack.config.staging.ts', + 'webpack.config.staging.cts', + 'webpack.config.staging.mts', + 'webpack.config.babel.js', + 'webpack.config.babel.ts', + 'webpack.config.base.babel.js', + 'webpack.config.base.babel.ts', + 'webpack.config.base.js', + 'webpack.config.base.cjs', + 'webpack.config.base.mjs', + 'webpack.config.base.ts', + 'webpack.config.base.cts', + 'webpack.config.base.mts', + 'webpack.config.staging.babel.js', + 'webpack.config.staging.babel.ts', + 'webpack.config.coffee', + 'webpack.config.test.js', + 'webpack.config.test.cjs', + 'webpack.config.test.mjs', + 'webpack.config.test.ts', + 'webpack.config.test.cts', + 'webpack.config.test.mts', + 'webpack.config.vendor.js', + 'webpack.config.vendor.cjs', + 'webpack.config.vendor.mjs', + 'webpack.config.vendor.ts', + 'webpack.config.vendor.cts', + 'webpack.config.vendor.mts', + 'webpack.config.vendor.production.js', + 'webpack.config.vendor.production.cjs', + 'webpack.config.vendor.production.mjs', + 'webpack.config.vendor.production.ts', + 'webpack.config.vendor.production.cts', + 'webpack.config.vendor.production.mts', + 'webpack.test.js', + 'webpack.test.cjs', + 'webpack.test.mjs', + 'webpack.test.ts', + 'webpack.test.cts', + 'webpack.test.mts', + 'webpack.dist.js', + 'webpack.dist.cjs', + 'webpack.dist.mjs', + 'webpack.dist.ts', + 'webpack.dist.cts', + 'webpack.dist.mts', + 'webpackfile.js', + 'webpackfile.cjs', + 'webpackfile.mjs', + 'webpackfile.ts', + 'webpackfile.cts', + 'webpackfile.mts', + ], + }, + 'windi': { + fileNames: [ + 'windi.config.js', + 'windi.config.cjs', + 'windi.config.ts', + 'windi.config.cts', + 'windi.config.json', + ], + fileExtensions: ['windi'], + }, + 'workflow': { + languageIds: ['github-actions-workflow'], + fileExtensions: [ + 'workflows/yml', + 'workflows/yaml', + ], + }, + 'xaml': { + fileExtensions: ['xaml'], + }, + 'xmake': { + fileNames: ['xmake.lua'], + }, + 'xml': { + fileExtensions: [ + 'xml', + 'plist', + 'xsd', + 'dtd', + 'xsl', + 'xslt', + 'resx', + 'iml', + 'xquery', + 'tmLanguage', + 'manifest', + 'project', + 'xml.dist', + 'xml.dist.sample', + 'dmn', + 'jrxml', + ], + fileNames: ['.htaccess'], + }, + 'yaml': { + languageIds: [ + 'yaml', + 'spring-boot-properties-yaml', + ], + fileExtensions: [ + 'yml', + 'yaml', + ], + }, + 'yarn': { + fileNames: [ + '.yarnrc', + '.yarnclean', + '.yarn-integrity', + 'yarn-error.log', + '.yarnrc.yml', + '.yarnrc.yaml', + ], + }, + 'yarn-lock': { + fileNames: ['yarn.lock'], + }, + 'zig': { + fileExtensions: ['zig'], + }, + +} + +export const fileIconEntries = Object.entries(fileIcons) diff --git a/src/defaults/folderIcons.ts b/src/defaults/folderIcons.ts new file mode 100644 index 00000000..8d8be9b5 --- /dev/null +++ b/src/defaults/folderIcons.ts @@ -0,0 +1,603 @@ +import type { FolderIcons } from '~/types' + +export const folderIcons: FolderIcons = { + 'admin': { + folderNames: [ + 'admin', + 'admins', + 'manager', + 'managers', + 'moderator', + 'moderators', + ], + }, + 'android': { + folderNames: ['android'], + }, + 'animation': { + folderNames: [ + 'anim', + 'anims', + 'animation', + 'animations', + 'animated', + ], + }, + 'api': { + folderNames: [ + 'api', + 'apis', + 'restapi', + ], + }, + 'app': { + folderNames: [ + 'app', + 'apps', + ], + }, + 'audio': { + folderNames: [ + 'aud', + 'auds', + 'audio', + 'audios', + 'music', + 'sound', + 'sounds', + ], + }, + 'aws': { + folderNames: [ + 'aws', + '.aws', + ], + }, + 'benchmark': { + folderNames: [ + 'benchmark', + 'benchmarks', + 'performance', + 'measure', + 'measures', + 'measurement', + ], + }, + 'circle-ci': { + folderNames: ['.circleci'], + }, + 'client': { + folderNames: [ + 'client', + 'clients', + 'frontend', + 'frontends', + 'pwa', + ], + }, + 'cloud': { + folderNames: ['cloud'], + }, + 'command': { + folderNames: [ + 'command', + 'commands', + 'cmd', + 'cli', + 'clis', + ], + }, + 'components': { + folderNames: [ + 'components', + 'widget', + 'widgets', + 'fragments', + ], + }, + 'composables': { + folderNames: [ + 'composable', + 'composables', + ], + }, + 'config': { + folderNames: [ + 'cfg', + 'cfgs', + 'conf', + 'confs', + '.config', + 'config', + 'configs', + 'configuration', + 'configurations', + 'setting', + '.setting', + 'settings', + '.settings', + 'META-INF', + 'option', + 'options', + ], + }, + 'connection': { + folderNames: [ + 'connection', + 'connections', + 'integration', + 'integrations', + ], + }, + 'constant': { + folderNames: [ + 'constant', + 'constants', + ], + }, + 'controllers': { + folderNames: [ + 'controller', + 'controllers', + 'service', + 'services', + 'provider', + 'providers', + 'handler', + 'handlers', + ], + }, + 'core': { + folderNames: ['core'], + }, + 'coverage': { + folderNames: [ + 'coverage', + '.nyc-output', + '.nyc_output', + 'e2e', + 'it', + 'integration-test', + 'integration-tests', + '__integration-test__', + '__integration-tests__', + ], + }, + 'cypress': { + folderNames: [ + 'cypress', + '.cypress', + ], + }, + 'database': { + folderNames: [ + 'db', + 'database', + 'databases', + 'sql', + 'data', + '_data', + ], + }, + 'debug': { + folderNames: [ + 'debug', + 'debugging', + ], + }, + 'dist': { + folderNames: [ + 'dist', + 'out', + 'build', + 'release', + 'bin', + '.output', + ], + }, + 'docker': { + folderNames: [ + 'docker', + 'dockerfiles', + '.docker', + ], + }, + 'docs': { + folderNames: [ + '_post', + '_posts', + 'doc', + 'docs', + 'document', + 'documents', + 'documentation', + 'post', + 'posts', + 'article', + 'articles', + ], + }, + 'download': { + folderNames: [ + 'downloads', + 'download', + ], + }, + 'examples': { + folderNames: [ + 'demo', + 'demos', + 'example', + 'examples', + 'sample', + 'samples', + 'sample-data', + ], + }, + 'firebase': { + folderNames: [ + 'firebase', + '.firebase', + ], + }, + 'fonts': { + folderNames: [ + 'font', + 'fonts', + ], + }, + 'functions': { + folderNames: [ + 'func', + 'funcs', + 'function', + 'functions', + 'lambda', + 'lambdas', + 'logic', + 'math', + 'maths', + 'calc', + 'calcs', + 'calculation', + 'calculations', + ], + }, + 'git': { + folderNames: [ + '.git', + 'patches', + 'githooks', + '.githooks', + 'submodules', + '.submodules', + ], + }, + 'github': { + folderNames: [ + '.github', + 'github', + ], + }, + 'gitlab': { + folderNames: ['.gitlab'], + }, + 'husky': { + folderNames: [ + 'husky', + '.husky', + ], + }, + 'images': { + folderNames: [ + '_images', + '_image', + '_imgs', + '_img', + 'images', + 'image', + 'imgs', + 'img', + 'icons', + 'icon', + 'icos', + 'ico', + 'figures', + 'figure', + 'figs', + 'fig', + 'screenshot', + 'screenshots', + 'screengrab', + 'screengrabs', + 'pic', + 'pics', + 'picture', + 'pictures', + 'photo', + 'photos', + 'photograph', + 'photographs', + ], + }, + 'kubernetes': { + folderNames: [ + 'kubernetes', + '.kubernetes', + 'k8s', + '.k8s', + ], + }, + 'layouts': { + folderNames: [ + 'layout', + 'layouts', + '_layouts', + ], + }, + 'locales': { + folderNames: [ + 'i18n', + 'internationalization', + 'lang', + 'langs', + 'language', + 'languages', + 'locale', + 'locales', + 'l10n', + 'localization', + 'translation', + 'translate', + 'translations', + '.tx', + ], + }, + 'middleware': { + folderNames: [ + 'middleware', + 'middlewares', + ], + }, + 'mocks': { + folderNames: [ + '_draft', + '_drafts', + 'mock', + 'mocks', + 'fixture', + 'fixtures', + 'draft', + 'drafts', + 'concept', + 'concepts', + 'sketch', + 'sketches', + ], + }, + 'next': { + folderNames: ['.next'], + }, + 'node': { + folderNames: ['node_modules'], + }, + 'nuxt': { + folderNames: [ + 'nuxt', + '.nuxt', + ], + }, + 'packages': { + folderNames: [ + 'package', + 'packages', + 'pkg', + 'pkgs', + ], + }, + 'plugins': { + folderNames: [ + 'plugin', + 'plugins', + '_plugins', + 'mod', + 'mods', + 'modding', + 'extension', + 'extensions', + 'addon', + 'addons', + 'module', + 'modules', + ], + }, + 'prisma': { + folderNames: ['prisma'], + }, + 'public': { + folderNames: [ + '_site', + 'public', + 'www', + 'wwwroot', + 'web', + 'website', + 'site', + 'browser', + 'browsers', + ], + }, + 'queue': { + folderNames: [ + 'queue', + 'queues', + 'bull', + 'mq', + ], + }, + 'redux': { + folderNames: ['redux'], + }, + 'routes': { + folderNames: [ + 'routes', + 'router', + 'routers', + ], + }, + 'sass': { + folderNames: [ + 'sass', + '_sass', + 'scss', + '_scss', + ], + }, + 'scripts': { + folderNames: [ + 'script', + 'scripts', + 'scripting', + ], + }, + 'server': { + folderNames: [ + 'server', + 'servers', + 'backend', + ], + }, + 'src': { + folderNames: [ + 'src', + 'srcs', + 'source', + 'sources', + 'code', + ], + }, + 'storybook': { + folderNames: [ + '.storybook', + 'storybook', + 'stories', + '__stories__', + ], + }, + 'styles': { + folderNames: [ + 'css', + 'stylesheet', + 'stylesheets', + 'style', + 'styles', + ], + }, + 'svg': { + folderNames: [ + 'svg', + 'svgs', + ], + }, + 'tauri': { + folderNames: ['src-tauri'], + }, + 'temp': { + folderNames: [ + 'temp', + '.temp', + 'tmp', + '.tmp', + 'cached', + 'cache', + '.cache', + ], + }, + 'templates': { + folderNames: [ + 'template', + 'templates', + ], + }, + 'tests': { + folderNames: [ + 'test', + 'tests', + 'testing', + '__tests__', + '__snapshots__', + '__mocks__', + '__fixtures__', + '__test__', + 'spec', + 'specs', + ], + }, + 'types': { + folderNames: [ + 'typings', + '@types', + 'types', + ], + }, + 'upload': { + folderNames: [ + 'uploads', + 'upload', + ], + }, + 'utils': { + folderNames: [ + 'util', + 'utils', + 'utility', + 'utilities', + ], + }, + 'vercel': { + folderNames: [ + 'vercel', + '.vercel', + 'now', + '.now', + ], + }, + 'video': { + folderNames: [ + 'vid', + 'vids', + 'video', + 'videos', + 'movie', + 'movies', + ], + }, + 'views': { + folderNames: [ + 'view', + 'views', + 'screen', + 'screens', + 'page', + 'pages', + 'public_html', + 'html', + ], + }, + 'vscode': { + folderNames: [ + '.vscode', + '.vscode-test', + ], + }, + 'workflows': { + folderNames: [ + 'workflow', + 'workflows', + 'ci', + '.ci', + ], + }, +} + +export const folderIconEntries = Object.entries(folderIcons) diff --git a/src/defaults/index.ts b/src/defaults/index.ts new file mode 100644 index 00000000..716b2351 --- /dev/null +++ b/src/defaults/index.ts @@ -0,0 +1,13 @@ +import { baseIcons } from './baseIcons' +import { fileIcons } from './fileIcons' +import { folderIcons } from './folderIcons' +import { options } from './options' + +import type { Theme } from '~/types' + +export const defaults: Theme = { + ...options, + ...baseIcons, + fileIcons, + folderIcons, +} diff --git a/src/defaults/options.ts b/src/defaults/options.ts new file mode 100644 index 00000000..b774fa48 --- /dev/null +++ b/src/defaults/options.ts @@ -0,0 +1,5 @@ +import type { Options } from '~/types' + +export const options: Options = { + hidesExplorerArrows: false, +} diff --git a/src/hooks/generateThemes.ts b/src/hooks/generateThemes.ts new file mode 100644 index 00000000..4aa1c748 --- /dev/null +++ b/src/hooks/generateThemes.ts @@ -0,0 +1,54 @@ +import type { IconDefinitions, Theme, VscTheme } from '~/types' + +export function createVscTheme(theme: Theme, iconDefinitions: IconDefinitions): VscTheme { + const { fileIcons, folderIcons, ...rest } = theme + + const { folderNames, folderNamesExpanded } = Object.entries(folderIcons).reduce( + ({ folderNames, folderNamesExpanded }, [name, icon]) => ({ + folderNames: { + ...folderNames, + ...icon.folderNames?.reduce((a, c) => ({ ...a, [c]: `folder_${name}` }), {}), + }, + folderNamesExpanded: { + ...folderNamesExpanded, + ...icon.folderNames?.reduce((a, c) => ({ ...a, [c]: `folder_${name}_open` }), {}), + }, + }), + { + folderNames: {}, + folderNamesExpanded: {}, + }, + ) + + const { languageIds, fileExtensions, fileNames } = Object.entries(fileIcons).reduce( + ({ languageIds, fileExtensions, fileNames }, [name, icon]) => ({ + languageIds: { + ...languageIds, + ...icon.languageIds?.reduce((a, c) => ({ ...a, [c]: name }), {}), + }, + fileExtensions: { + ...fileExtensions, + ...icon.fileExtensions?.reduce((a, c) => ({ ...a, [c]: name }), {}), + }, + fileNames: { + ...fileNames, + ...icon.fileNames?.reduce((a, c) => ({ ...a, [c]: name }), {}), + }, + }), + { + languageIds: {}, + fileExtensions: {}, + fileNames: {}, + }, + ) + + return { + ...rest, + languageIds, + fileExtensions, + fileNames, + folderNames, + folderNamesExpanded, + iconDefinitions, + } +} diff --git a/src/icons/adonis.svg b/src/icons/adonis.svg deleted file mode 100644 index 98dba092..00000000 --- a/src/icons/adonis.svg +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/alex.svg b/src/icons/alex.svg deleted file mode 100644 index c0e8c85b..00000000 --- a/src/icons/alex.svg +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/icons/angular.svg b/src/icons/angular.svg deleted file mode 100644 index bb92a1f9..00000000 --- a/src/icons/angular.svg +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/apl.svg b/src/icons/apl.svg deleted file mode 100644 index 91907dab..00000000 --- a/src/icons/apl.svg +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/icons/apollo.svg b/src/icons/apollo.svg deleted file mode 100644 index 0285d629..00000000 --- a/src/icons/apollo.svg +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/icons/apple.svg b/src/icons/apple.svg deleted file mode 100644 index edcb07e8..00000000 --- a/src/icons/apple.svg +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/appveyor.svg b/src/icons/appveyor.svg deleted file mode 100644 index af296948..00000000 --- a/src/icons/appveyor.svg +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/arduino.svg b/src/icons/arduino.svg deleted file mode 100644 index f480c59b..00000000 --- a/src/icons/arduino.svg +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/assembly.svg b/src/icons/assembly.svg deleted file mode 100644 index d14d1728..00000000 --- a/src/icons/assembly.svg +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/icons/astro.svg b/src/icons/astro.svg deleted file mode 100644 index 38a0d6c9..00000000 --- a/src/icons/astro.svg +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/astro_config.svg b/src/icons/astro_config.svg deleted file mode 100644 index a4a8bed8..00000000 --- a/src/icons/astro_config.svg +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/babel.svg b/src/icons/babel.svg deleted file mode 100644 index 8e72f9b4..00000000 --- a/src/icons/babel.svg +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/bash.svg b/src/icons/bash.svg deleted file mode 100644 index 4bdae974..00000000 --- a/src/icons/bash.svg +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/bat.svg b/src/icons/bat.svg deleted file mode 100644 index 315d437f..00000000 --- a/src/icons/bat.svg +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/binary.svg b/src/icons/binary.svg deleted file mode 100644 index 98efc761..00000000 --- a/src/icons/binary.svg +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/browserslist.svg b/src/icons/browserslist.svg deleted file mode 100644 index 39dcc014..00000000 --- a/src/icons/browserslist.svg +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/bun.svg b/src/icons/bun.svg deleted file mode 100644 index 508dc548..00000000 --- a/src/icons/bun.svg +++ /dev/null @@ -1,67 +0,0 @@ - - - - diff --git a/src/icons/bun_lock.svg b/src/icons/bun_lock.svg deleted file mode 100644 index 0283150b..00000000 --- a/src/icons/bun_lock.svg +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/icons/c.svg b/src/icons/c.svg deleted file mode 100644 index a345537b..00000000 --- a/src/icons/c.svg +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/caddy.svg b/src/icons/caddy.svg deleted file mode 100644 index 691d43c0..00000000 --- a/src/icons/caddy.svg +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/icons/capacitor.svg b/src/icons/capacitor.svg deleted file mode 100644 index 031d90bf..00000000 --- a/src/icons/capacitor.svg +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/icons/cargo.svg b/src/icons/cargo.svg deleted file mode 100644 index 4eb840ca..00000000 --- a/src/icons/cargo.svg +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/icons/cargo_lock.svg b/src/icons/cargo_lock.svg deleted file mode 100644 index 057226e6..00000000 --- a/src/icons/cargo_lock.svg +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/src/icons/certificate.svg b/src/icons/certificate.svg deleted file mode 100644 index 2f1b8834..00000000 --- a/src/icons/certificate.svg +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/changelog.svg b/src/icons/changelog.svg deleted file mode 100644 index d54fb943..00000000 --- a/src/icons/changelog.svg +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/clojure.svg b/src/icons/clojure.svg deleted file mode 100644 index cae77328..00000000 --- a/src/icons/clojure.svg +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/icons/cmake.svg b/src/icons/cmake.svg deleted file mode 100644 index f692a82f..00000000 --- a/src/icons/cmake.svg +++ /dev/null @@ -1,58 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/code_climate.svg b/src/icons/code_climate.svg deleted file mode 100644 index db54d566..00000000 --- a/src/icons/code_climate.svg +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/code_of_conduct.svg b/src/icons/code_of_conduct.svg deleted file mode 100644 index b75302df..00000000 --- a/src/icons/code_of_conduct.svg +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/codecov.svg b/src/icons/codecov.svg deleted file mode 100644 index 80f5630c..00000000 --- a/src/icons/codecov.svg +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/icons/codeowners.svg b/src/icons/codeowners.svg deleted file mode 100644 index 4c4db322..00000000 --- a/src/icons/codeowners.svg +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/coffeescript.svg b/src/icons/coffeescript.svg deleted file mode 100644 index ffb7a065..00000000 --- a/src/icons/coffeescript.svg +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/commitlint.svg b/src/icons/commitlint.svg deleted file mode 100644 index 5d0533c0..00000000 --- a/src/icons/commitlint.svg +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/icons/contributing.svg b/src/icons/contributing.svg deleted file mode 100644 index 6294c1cf..00000000 --- a/src/icons/contributing.svg +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/icons/coq.svg b/src/icons/coq.svg deleted file mode 100644 index 74733207..00000000 --- a/src/icons/coq.svg +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/cpp.svg b/src/icons/cpp.svg deleted file mode 100644 index 118caa31..00000000 --- a/src/icons/cpp.svg +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/csharp.svg b/src/icons/csharp.svg deleted file mode 100644 index b6ffede7..00000000 --- a/src/icons/csharp.svg +++ /dev/null @@ -1,64 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/css.svg b/src/icons/css.svg deleted file mode 100644 index 2c4e3932..00000000 --- a/src/icons/css.svg +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/css_map.svg b/src/icons/css_map.svg deleted file mode 100644 index 8f2c3eda..00000000 --- a/src/icons/css_map.svg +++ /dev/null @@ -1,65 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/icons/csv.svg b/src/icons/csv.svg deleted file mode 100644 index 69ef2d3a..00000000 --- a/src/icons/csv.svg +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/cucumber.svg b/src/icons/cucumber.svg deleted file mode 100644 index 2d80266d..00000000 --- a/src/icons/cucumber.svg +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/cuda.svg b/src/icons/cuda.svg deleted file mode 100644 index 7bcbe12b..00000000 --- a/src/icons/cuda.svg +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/cypress.svg b/src/icons/cypress.svg deleted file mode 100644 index 73ea0a7e..00000000 --- a/src/icons/cypress.svg +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/d.svg b/src/icons/d.svg deleted file mode 100644 index d7d7574d..00000000 --- a/src/icons/d.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/icons/dart.svg b/src/icons/dart.svg deleted file mode 100644 index a88c9388..00000000 --- a/src/icons/dart.svg +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/dart_generated.svg b/src/icons/dart_generated.svg deleted file mode 100644 index c2615b13..00000000 --- a/src/icons/dart_generated.svg +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/database.svg b/src/icons/database.svg deleted file mode 100644 index bf16848f..00000000 --- a/src/icons/database.svg +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/deno.svg b/src/icons/deno.svg deleted file mode 100644 index b2e3fe03..00000000 --- a/src/icons/deno.svg +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/deno_lock.svg b/src/icons/deno_lock.svg deleted file mode 100644 index 025d0aac..00000000 --- a/src/icons/deno_lock.svg +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/icons/dependabot.svg b/src/icons/dependabot.svg deleted file mode 100644 index 4d9c19f0..00000000 --- a/src/icons/dependabot.svg +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/icons/dhall.svg b/src/icons/dhall.svg deleted file mode 100644 index 682a088d..00000000 --- a/src/icons/dhall.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/icons/diff.svg b/src/icons/diff.svg deleted file mode 100644 index e0ba8ae6..00000000 --- a/src/icons/diff.svg +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/django.svg b/src/icons/django.svg deleted file mode 100644 index 311123b2..00000000 --- a/src/icons/django.svg +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/doc.svg b/src/icons/doc.svg deleted file mode 100644 index 2a9eca2d..00000000 --- a/src/icons/doc.svg +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/icons/docker.svg b/src/icons/docker.svg deleted file mode 100644 index 54f7a989..00000000 --- a/src/icons/docker.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/icons/docker_compose.svg b/src/icons/docker_compose.svg deleted file mode 100644 index df83b9c7..00000000 --- a/src/icons/docker_compose.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/icons/docker_ignore.svg b/src/icons/docker_ignore.svg deleted file mode 100644 index e1244106..00000000 --- a/src/icons/docker_ignore.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/icons/dub.svg b/src/icons/dub.svg deleted file mode 100644 index 4a37bf01..00000000 --- a/src/icons/dub.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/icons/dub_selections.svg b/src/icons/dub_selections.svg deleted file mode 100644 index 36b80df3..00000000 --- a/src/icons/dub_selections.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/icons/editorconfig.svg b/src/icons/editorconfig.svg deleted file mode 100644 index 4b673c9c..00000000 --- a/src/icons/editorconfig.svg +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/icons/elixir.svg b/src/icons/elixir.svg deleted file mode 100644 index 27a76811..00000000 --- a/src/icons/elixir.svg +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/elm.svg b/src/icons/elm.svg deleted file mode 100644 index a4fcd37c..00000000 --- a/src/icons/elm.svg +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/icons/ember.svg b/src/icons/ember.svg deleted file mode 100644 index c173ad2d..00000000 --- a/src/icons/ember.svg +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/env.svg b/src/icons/env.svg deleted file mode 100644 index ca9da6f7..00000000 --- a/src/icons/env.svg +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/icons/erlang.svg b/src/icons/erlang.svg deleted file mode 100644 index 13227d91..00000000 --- a/src/icons/erlang.svg +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/eslint.svg b/src/icons/eslint.svg deleted file mode 100644 index e5bfb505..00000000 --- a/src/icons/eslint.svg +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/eslint_ignore.svg b/src/icons/eslint_ignore.svg deleted file mode 100644 index a7172e6f..00000000 --- a/src/icons/eslint_ignore.svg +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/favicon.svg b/src/icons/favicon.svg deleted file mode 100644 index 6e0e2497..00000000 --- a/src/icons/favicon.svg +++ /dev/null @@ -1,70 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/icons/figma.svg b/src/icons/figma.svg deleted file mode 100644 index 9a66b68a..00000000 --- a/src/icons/figma.svg +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/icons/file.svg b/src/icons/file.svg deleted file mode 100644 index 94a86ea2..00000000 --- a/src/icons/file.svg +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/firebase.svg b/src/icons/firebase.svg deleted file mode 100644 index 8561864f..00000000 --- a/src/icons/firebase.svg +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/folder.svg b/src/icons/folder.svg deleted file mode 100644 index fc2e8c00..00000000 --- a/src/icons/folder.svg +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - - diff --git a/src/icons/folder__open.svg b/src/icons/folder__open.svg deleted file mode 100644 index 7e8276e3..00000000 --- a/src/icons/folder__open.svg +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - - diff --git a/src/icons/folder_api.svg b/src/icons/folder_api.svg deleted file mode 100644 index 4ca2b6af..00000000 --- a/src/icons/folder_api.svg +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_api__open.svg b/src/icons/folder_api__open.svg deleted file mode 100644 index 2893277c..00000000 --- a/src/icons/folder_api__open.svg +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_benchmarks.svg b/src/icons/folder_benchmarks.svg deleted file mode 100644 index d6f90e82..00000000 --- a/src/icons/folder_benchmarks.svg +++ /dev/null @@ -1,64 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_benchmarks__open.svg b/src/icons/folder_benchmarks__open.svg deleted file mode 100644 index 851b45e4..00000000 --- a/src/icons/folder_benchmarks__open.svg +++ /dev/null @@ -1,64 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_client.svg b/src/icons/folder_client.svg deleted file mode 100644 index b5a70681..00000000 --- a/src/icons/folder_client.svg +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_client__open.svg b/src/icons/folder_client__open.svg deleted file mode 100644 index a498273c..00000000 --- a/src/icons/folder_client__open.svg +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_components.svg b/src/icons/folder_components.svg deleted file mode 100644 index b781c061..00000000 --- a/src/icons/folder_components.svg +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_components__open.svg b/src/icons/folder_components__open.svg deleted file mode 100644 index a0cccae0..00000000 --- a/src/icons/folder_components__open.svg +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_composables.svg b/src/icons/folder_composables.svg deleted file mode 100644 index 6ab8a448..00000000 --- a/src/icons/folder_composables.svg +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_composables__open.svg b/src/icons/folder_composables__open.svg deleted file mode 100644 index 99ef79a0..00000000 --- a/src/icons/folder_composables__open.svg +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_config.svg b/src/icons/folder_config.svg deleted file mode 100644 index 00305a1c..00000000 --- a/src/icons/folder_config.svg +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/icons/folder_config__open.svg b/src/icons/folder_config__open.svg deleted file mode 100644 index 5056d636..00000000 --- a/src/icons/folder_config__open.svg +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/icons/folder_controllers.svg b/src/icons/folder_controllers.svg deleted file mode 100644 index 743962a5..00000000 --- a/src/icons/folder_controllers.svg +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/icons/folder_controllers__open.svg b/src/icons/folder_controllers__open.svg deleted file mode 100644 index 367ff01d..00000000 --- a/src/icons/folder_controllers__open.svg +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/icons/folder_coverage.svg b/src/icons/folder_coverage.svg deleted file mode 100644 index 75d68a79..00000000 --- a/src/icons/folder_coverage.svg +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/icons/folder_coverage__open.svg b/src/icons/folder_coverage__open.svg deleted file mode 100644 index fa0d6e3e..00000000 --- a/src/icons/folder_coverage__open.svg +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/icons/folder_cypress.svg b/src/icons/folder_cypress.svg deleted file mode 100644 index bc056acd..00000000 --- a/src/icons/folder_cypress.svg +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_cypress__open.svg b/src/icons/folder_cypress__open.svg deleted file mode 100644 index 5fc78697..00000000 --- a/src/icons/folder_cypress__open.svg +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_dist.svg b/src/icons/folder_dist.svg deleted file mode 100644 index d60bc8d6..00000000 --- a/src/icons/folder_dist.svg +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/icons/folder_dist__open.svg b/src/icons/folder_dist__open.svg deleted file mode 100644 index 2ed891be..00000000 --- a/src/icons/folder_dist__open.svg +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_docs.svg b/src/icons/folder_docs.svg deleted file mode 100644 index c3455dab..00000000 --- a/src/icons/folder_docs.svg +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_docs__open.svg b/src/icons/folder_docs__open.svg deleted file mode 100644 index 93619fa6..00000000 --- a/src/icons/folder_docs__open.svg +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_examples.svg b/src/icons/folder_examples.svg deleted file mode 100644 index d53e2548..00000000 --- a/src/icons/folder_examples.svg +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/icons/folder_examples__open.svg b/src/icons/folder_examples__open.svg deleted file mode 100644 index 3f52398a..00000000 --- a/src/icons/folder_examples__open.svg +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/icons/folder_fonts.svg b/src/icons/folder_fonts.svg deleted file mode 100644 index 08ff7e01..00000000 --- a/src/icons/folder_fonts.svg +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_fonts__open.svg b/src/icons/folder_fonts__open.svg deleted file mode 100644 index bdf9afb1..00000000 --- a/src/icons/folder_fonts__open.svg +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_functions.svg b/src/icons/folder_functions.svg deleted file mode 100644 index 30ec5719..00000000 --- a/src/icons/folder_functions.svg +++ /dev/null @@ -1,65 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/icons/folder_functions__open.svg b/src/icons/folder_functions__open.svg deleted file mode 100644 index 2355961f..00000000 --- a/src/icons/folder_functions__open.svg +++ /dev/null @@ -1,65 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/icons/folder_github.svg b/src/icons/folder_github.svg deleted file mode 100644 index 2f3a96fc..00000000 --- a/src/icons/folder_github.svg +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_github__open.svg b/src/icons/folder_github__open.svg deleted file mode 100644 index 20dfd175..00000000 --- a/src/icons/folder_github__open.svg +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_husky.svg b/src/icons/folder_husky.svg deleted file mode 100644 index 8c7433b0..00000000 --- a/src/icons/folder_husky.svg +++ /dev/null @@ -1,92 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/icons/folder_husky__open.svg b/src/icons/folder_husky__open.svg deleted file mode 100644 index 7600527d..00000000 --- a/src/icons/folder_husky__open.svg +++ /dev/null @@ -1,92 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/icons/folder_images.svg b/src/icons/folder_images.svg deleted file mode 100644 index efa995cf..00000000 --- a/src/icons/folder_images.svg +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/icons/folder_images__open.svg b/src/icons/folder_images__open.svg deleted file mode 100644 index ac7f2b41..00000000 --- a/src/icons/folder_images__open.svg +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/icons/folder_layouts.svg b/src/icons/folder_layouts.svg deleted file mode 100644 index 59c9040c..00000000 --- a/src/icons/folder_layouts.svg +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/icons/folder_layouts__open.svg b/src/icons/folder_layouts__open.svg deleted file mode 100644 index 7598a2f4..00000000 --- a/src/icons/folder_layouts__open.svg +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/icons/folder_locales.svg b/src/icons/folder_locales.svg deleted file mode 100644 index 23157f40..00000000 --- a/src/icons/folder_locales.svg +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_locales__open.svg b/src/icons/folder_locales__open.svg deleted file mode 100644 index 09658cb3..00000000 --- a/src/icons/folder_locales__open.svg +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_mocks.svg b/src/icons/folder_mocks.svg deleted file mode 100644 index 0a4dd837..00000000 --- a/src/icons/folder_mocks.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/icons/folder_mocks__open.svg b/src/icons/folder_mocks__open.svg deleted file mode 100644 index 962321d4..00000000 --- a/src/icons/folder_mocks__open.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/icons/folder_next.svg b/src/icons/folder_next.svg deleted file mode 100644 index da02fd06..00000000 --- a/src/icons/folder_next.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/icons/folder_next__open.svg b/src/icons/folder_next__open.svg deleted file mode 100644 index 81bddf06..00000000 --- a/src/icons/folder_next__open.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/icons/folder_node.svg b/src/icons/folder_node.svg deleted file mode 100644 index 2ef5385a..00000000 --- a/src/icons/folder_node.svg +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_node__open.svg b/src/icons/folder_node__open.svg deleted file mode 100644 index 53b5b9ef..00000000 --- a/src/icons/folder_node__open.svg +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_nuxt.svg b/src/icons/folder_nuxt.svg deleted file mode 100644 index 6a06adc5..00000000 --- a/src/icons/folder_nuxt.svg +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_nuxt__open.svg b/src/icons/folder_nuxt__open.svg deleted file mode 100644 index 66fe84d5..00000000 --- a/src/icons/folder_nuxt__open.svg +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_packages.svg b/src/icons/folder_packages.svg deleted file mode 100644 index b40ec1a1..00000000 --- a/src/icons/folder_packages.svg +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/icons/folder_packages__open.svg b/src/icons/folder_packages__open.svg deleted file mode 100644 index dc4ef833..00000000 --- a/src/icons/folder_packages__open.svg +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/icons/folder_playground.svg b/src/icons/folder_playground.svg deleted file mode 100644 index 3f3f4e82..00000000 --- a/src/icons/folder_playground.svg +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_playground__open.svg b/src/icons/folder_playground__open.svg deleted file mode 100644 index 59e0497c..00000000 --- a/src/icons/folder_playground__open.svg +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_plugins.svg b/src/icons/folder_plugins.svg deleted file mode 100644 index c4323f63..00000000 --- a/src/icons/folder_plugins.svg +++ /dev/null @@ -1,64 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_plugins__open.svg b/src/icons/folder_plugins__open.svg deleted file mode 100644 index c0e76609..00000000 --- a/src/icons/folder_plugins__open.svg +++ /dev/null @@ -1,64 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_public.svg b/src/icons/folder_public.svg deleted file mode 100644 index a24db466..00000000 --- a/src/icons/folder_public.svg +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_public__open.svg b/src/icons/folder_public__open.svg deleted file mode 100644 index 1e081d93..00000000 --- a/src/icons/folder_public__open.svg +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_root.svg b/src/icons/folder_root.svg deleted file mode 100644 index 799b84eb..00000000 --- a/src/icons/folder_root.svg +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - diff --git a/src/icons/folder_root__open.svg b/src/icons/folder_root__open.svg deleted file mode 100644 index 3d73a3c0..00000000 --- a/src/icons/folder_root__open.svg +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_routes.svg b/src/icons/folder_routes.svg deleted file mode 100644 index 068b0994..00000000 --- a/src/icons/folder_routes.svg +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/icons/folder_routes__open.svg b/src/icons/folder_routes__open.svg deleted file mode 100644 index cfcf817f..00000000 --- a/src/icons/folder_routes__open.svg +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/icons/folder_sass.svg b/src/icons/folder_sass.svg deleted file mode 100644 index 2de9c51b..00000000 --- a/src/icons/folder_sass.svg +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_sass__open.svg b/src/icons/folder_sass__open.svg deleted file mode 100644 index 8e97eea7..00000000 --- a/src/icons/folder_sass__open.svg +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_scripts.svg b/src/icons/folder_scripts.svg deleted file mode 100644 index 1de6986e..00000000 --- a/src/icons/folder_scripts.svg +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_scripts__open.svg b/src/icons/folder_scripts__open.svg deleted file mode 100644 index c3377729..00000000 --- a/src/icons/folder_scripts__open.svg +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_server.svg b/src/icons/folder_server.svg deleted file mode 100644 index e558685d..00000000 --- a/src/icons/folder_server.svg +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/icons/folder_server__open.svg b/src/icons/folder_server__open.svg deleted file mode 100644 index faa08bec..00000000 --- a/src/icons/folder_server__open.svg +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/icons/folder_src.svg b/src/icons/folder_src.svg deleted file mode 100644 index 74f9fc43..00000000 --- a/src/icons/folder_src.svg +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_src__open.svg b/src/icons/folder_src__open.svg deleted file mode 100644 index 6f9cdaeb..00000000 --- a/src/icons/folder_src__open.svg +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_storybook.svg b/src/icons/folder_storybook.svg deleted file mode 100644 index ef837a34..00000000 --- a/src/icons/folder_storybook.svg +++ /dev/null @@ -1,65 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/icons/folder_storybook__open.svg b/src/icons/folder_storybook__open.svg deleted file mode 100644 index 931b0378..00000000 --- a/src/icons/folder_storybook__open.svg +++ /dev/null @@ -1,65 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/icons/folder_styles.svg b/src/icons/folder_styles.svg deleted file mode 100644 index 5b48c7dd..00000000 --- a/src/icons/folder_styles.svg +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/icons/folder_styles__open.svg b/src/icons/folder_styles__open.svg deleted file mode 100644 index c5e7b863..00000000 --- a/src/icons/folder_styles__open.svg +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/icons/folder_templates.svg b/src/icons/folder_templates.svg deleted file mode 100644 index 2a8e621b..00000000 --- a/src/icons/folder_templates.svg +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/icons/folder_templates__open.svg b/src/icons/folder_templates__open.svg deleted file mode 100644 index 1dbd862a..00000000 --- a/src/icons/folder_templates__open.svg +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/icons/folder_tests.svg b/src/icons/folder_tests.svg deleted file mode 100644 index dc69735c..00000000 --- a/src/icons/folder_tests.svg +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/icons/folder_tests__open.svg b/src/icons/folder_tests__open.svg deleted file mode 100644 index 81d28c3c..00000000 --- a/src/icons/folder_tests__open.svg +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/icons/folder_types.svg b/src/icons/folder_types.svg deleted file mode 100644 index f12b2128..00000000 --- a/src/icons/folder_types.svg +++ /dev/null @@ -1,70 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/icons/folder_types__open.svg b/src/icons/folder_types__open.svg deleted file mode 100644 index 9ee897d6..00000000 --- a/src/icons/folder_types__open.svg +++ /dev/null @@ -1,70 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/icons/folder_utils.svg b/src/icons/folder_utils.svg deleted file mode 100644 index 813d94cc..00000000 --- a/src/icons/folder_utils.svg +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_utils__open.svg b/src/icons/folder_utils__open.svg deleted file mode 100644 index fc4b7f4f..00000000 --- a/src/icons/folder_utils__open.svg +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_views.svg b/src/icons/folder_views.svg deleted file mode 100644 index 88d4f99b..00000000 --- a/src/icons/folder_views.svg +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_views__open.svg b/src/icons/folder_views__open.svg deleted file mode 100644 index 9337bbf2..00000000 --- a/src/icons/folder_views__open.svg +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_vscode.svg b/src/icons/folder_vscode.svg deleted file mode 100644 index e9f577c7..00000000 --- a/src/icons/folder_vscode.svg +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_vscode__open.svg b/src/icons/folder_vscode__open.svg deleted file mode 100644 index 0f694397..00000000 --- a/src/icons/folder_vscode__open.svg +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/folder_workflows.svg b/src/icons/folder_workflows.svg deleted file mode 100644 index 6a544507..00000000 --- a/src/icons/folder_workflows.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/icons/folder_workflows__open.svg b/src/icons/folder_workflows__open.svg deleted file mode 100644 index 5c85046e..00000000 --- a/src/icons/folder_workflows__open.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/icons/folder_yarn.svg b/src/icons/folder_yarn.svg deleted file mode 100644 index 74fff0ba..00000000 --- a/src/icons/folder_yarn.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/icons/folder_yarn__open.svg b/src/icons/folder_yarn__open.svg deleted file mode 100644 index 43390978..00000000 --- a/src/icons/folder_yarn__open.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/icons/font.svg b/src/icons/font.svg deleted file mode 100644 index 21e2a040..00000000 --- a/src/icons/font.svg +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/fortran.svg b/src/icons/fortran.svg deleted file mode 100644 index 65280882..00000000 --- a/src/icons/fortran.svg +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/icons/fsharp.svg b/src/icons/fsharp.svg deleted file mode 100644 index f0e9184f..00000000 --- a/src/icons/fsharp.svg +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/gatsby.svg b/src/icons/gatsby.svg deleted file mode 100644 index ed7eaace..00000000 --- a/src/icons/gatsby.svg +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/icons/git.svg b/src/icons/git.svg deleted file mode 100644 index e061ea76..00000000 --- a/src/icons/git.svg +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/icons/gitlab.svg b/src/icons/gitlab.svg deleted file mode 100644 index 3ef0bf16..00000000 --- a/src/icons/gitlab.svg +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/gitpod.svg b/src/icons/gitpod.svg deleted file mode 100644 index e8a6b8f5..00000000 --- a/src/icons/gitpod.svg +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/gnuplot.svg b/src/icons/gnuplot.svg deleted file mode 100644 index 7e64e49c..00000000 --- a/src/icons/gnuplot.svg +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/icons/go.svg b/src/icons/go.svg deleted file mode 100644 index 4cafe48d..00000000 --- a/src/icons/go.svg +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/go_mod.svg b/src/icons/go_mod.svg deleted file mode 100644 index 5682a8fb..00000000 --- a/src/icons/go_mod.svg +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/godot.svg b/src/icons/godot.svg deleted file mode 100644 index 15726c2d..00000000 --- a/src/icons/godot.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/icons/gradle.svg b/src/icons/gradle.svg deleted file mode 100644 index 0ac80fde..00000000 --- a/src/icons/gradle.svg +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/graphql.svg b/src/icons/graphql.svg deleted file mode 100644 index 5292e281..00000000 --- a/src/icons/graphql.svg +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/src/icons/groovy.svg b/src/icons/groovy.svg deleted file mode 100644 index 995f4cb3..00000000 --- a/src/icons/groovy.svg +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/h.svg b/src/icons/h.svg deleted file mode 100644 index 7aa13c5b..00000000 --- a/src/icons/h.svg +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/haml.svg b/src/icons/haml.svg deleted file mode 100644 index fc3658db..00000000 --- a/src/icons/haml.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/icons/handlebars.svg b/src/icons/handlebars.svg deleted file mode 100644 index 6eac2c37..00000000 --- a/src/icons/handlebars.svg +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/haskell.svg b/src/icons/haskell.svg deleted file mode 100644 index d1e0312e..00000000 --- a/src/icons/haskell.svg +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/haxe.svg b/src/icons/haxe.svg deleted file mode 100644 index 82407224..00000000 --- a/src/icons/haxe.svg +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/helm.svg b/src/icons/helm.svg deleted file mode 100644 index d0648e8b..00000000 --- a/src/icons/helm.svg +++ /dev/null @@ -1,178 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/icons/heroku.svg b/src/icons/heroku.svg deleted file mode 100644 index fc2c4892..00000000 --- a/src/icons/heroku.svg +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/icons/histoire.svg b/src/icons/histoire.svg deleted file mode 100644 index e24d866d..00000000 --- a/src/icons/histoire.svg +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/hpp.svg b/src/icons/hpp.svg deleted file mode 100644 index ee51e7a2..00000000 --- a/src/icons/hpp.svg +++ /dev/null @@ -1,64 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/icons/html.svg b/src/icons/html.svg deleted file mode 100644 index 3ccdb93e..00000000 --- a/src/icons/html.svg +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/http.svg b/src/icons/http.svg deleted file mode 100644 index 45b3f52a..00000000 --- a/src/icons/http.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/icons/husky.svg b/src/icons/husky.svg deleted file mode 100644 index 4d30f3a9..00000000 --- a/src/icons/husky.svg +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/image.svg b/src/icons/image.svg deleted file mode 100644 index f70203a6..00000000 --- a/src/icons/image.svg +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/ionic.svg b/src/icons/ionic.svg deleted file mode 100644 index 31827bae..00000000 --- a/src/icons/ionic.svg +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/java.svg b/src/icons/java.svg deleted file mode 100644 index ddb8f1d4..00000000 --- a/src/icons/java.svg +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/java_class.svg b/src/icons/java_class.svg deleted file mode 100644 index 3d626508..00000000 --- a/src/icons/java_class.svg +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/java_jar.svg b/src/icons/java_jar.svg deleted file mode 100644 index 978bdf3e..00000000 --- a/src/icons/java_jar.svg +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/javascript.svg b/src/icons/javascript.svg deleted file mode 100644 index 0e881e3d..00000000 --- a/src/icons/javascript.svg +++ /dev/null @@ -1,58 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/javascript_config.svg b/src/icons/javascript_config.svg deleted file mode 100644 index 392ab08e..00000000 --- a/src/icons/javascript_config.svg +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/icons/javascript_map.svg b/src/icons/javascript_map.svg deleted file mode 100644 index 62275ccb..00000000 --- a/src/icons/javascript_map.svg +++ /dev/null @@ -1,70 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/icons/javascript_react.svg b/src/icons/javascript_react.svg deleted file mode 100644 index a3ff1758..00000000 --- a/src/icons/javascript_react.svg +++ /dev/null @@ -1,62 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/icons/javascript_test.svg b/src/icons/javascript_test.svg deleted file mode 100644 index 05e30cf4..00000000 --- a/src/icons/javascript_test.svg +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/icons/jest.svg b/src/icons/jest.svg deleted file mode 100644 index 254bcbce..00000000 --- a/src/icons/jest.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/icons/jinja.svg b/src/icons/jinja.svg deleted file mode 100644 index 54663d9b..00000000 --- a/src/icons/jinja.svg +++ /dev/null @@ -1,78 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/icons/json.svg b/src/icons/json.svg deleted file mode 100644 index ff0073a2..00000000 --- a/src/icons/json.svg +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/icons/julia.svg b/src/icons/julia.svg deleted file mode 100644 index c86a9ea6..00000000 --- a/src/icons/julia.svg +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/jupyter.svg b/src/icons/jupyter.svg deleted file mode 100644 index 70500d79..00000000 --- a/src/icons/jupyter.svg +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/icons/key.svg b/src/icons/key.svg deleted file mode 100644 index a998202c..00000000 --- a/src/icons/key.svg +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/kotlin.svg b/src/icons/kotlin.svg deleted file mode 100644 index 6025180d..00000000 --- a/src/icons/kotlin.svg +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/icons/laravel.svg b/src/icons/laravel.svg deleted file mode 100644 index fbd9ba61..00000000 --- a/src/icons/laravel.svg +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/latex.svg b/src/icons/latex.svg deleted file mode 100644 index 36d7f014..00000000 --- a/src/icons/latex.svg +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/lerna.svg b/src/icons/lerna.svg deleted file mode 100644 index 73d91cf9..00000000 --- a/src/icons/lerna.svg +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/lib.svg b/src/icons/lib.svg deleted file mode 100644 index df684f62..00000000 --- a/src/icons/lib.svg +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/license.svg b/src/icons/license.svg deleted file mode 100644 index 5b4990b0..00000000 --- a/src/icons/license.svg +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/lintstaged.svg b/src/icons/lintstaged.svg deleted file mode 100644 index 9801beaa..00000000 --- a/src/icons/lintstaged.svg +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/liquid.svg b/src/icons/liquid.svg deleted file mode 100644 index ac3a4113..00000000 --- a/src/icons/liquid.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/icons/lisp.svg b/src/icons/lisp.svg deleted file mode 100644 index 838e4fc0..00000000 --- a/src/icons/lisp.svg +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/icons/log.svg b/src/icons/log.svg deleted file mode 100644 index 1408cc74..00000000 --- a/src/icons/log.svg +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/lua.svg b/src/icons/lua.svg deleted file mode 100644 index 7016c7dc..00000000 --- a/src/icons/lua.svg +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/makefile.svg b/src/icons/makefile.svg deleted file mode 100644 index cf461e9c..00000000 --- a/src/icons/makefile.svg +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/markdown.svg b/src/icons/markdown.svg deleted file mode 100644 index 4f4ccfa1..00000000 --- a/src/icons/markdown.svg +++ /dev/null @@ -1,64 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/icons/markdown_mdx.svg b/src/icons/markdown_mdx.svg deleted file mode 100644 index 09405027..00000000 --- a/src/icons/markdown_mdx.svg +++ /dev/null @@ -1,64 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/icons/marko.svg b/src/icons/marko.svg deleted file mode 100644 index a75b05b6..00000000 --- a/src/icons/marko.svg +++ /dev/null @@ -1,267 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/icons/matlab.svg b/src/icons/matlab.svg deleted file mode 100644 index aceeea39..00000000 --- a/src/icons/matlab.svg +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/maven.svg b/src/icons/maven.svg deleted file mode 100644 index ec6f50e0..00000000 --- a/src/icons/maven.svg +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/icons/meson.svg b/src/icons/meson.svg deleted file mode 100644 index 6831a4ee..00000000 --- a/src/icons/meson.svg +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/netlify.svg b/src/icons/netlify.svg deleted file mode 100644 index df02ded5..00000000 --- a/src/icons/netlify.svg +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/next.svg b/src/icons/next.svg deleted file mode 100644 index 8f2b68b6..00000000 --- a/src/icons/next.svg +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/nextflow.svg b/src/icons/nextflow.svg deleted file mode 100644 index c2d54611..00000000 --- a/src/icons/nextflow.svg +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/nginx.svg b/src/icons/nginx.svg deleted file mode 100644 index e59bf7b6..00000000 --- a/src/icons/nginx.svg +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/nim.svg b/src/icons/nim.svg deleted file mode 100644 index 06150c53..00000000 --- a/src/icons/nim.svg +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/ninja.svg b/src/icons/ninja.svg deleted file mode 100644 index 6cd8bc61..00000000 --- a/src/icons/ninja.svg +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/icons/nix.svg b/src/icons/nix.svg deleted file mode 100644 index c4a0b860..00000000 --- a/src/icons/nix.svg +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/icons/nix_flake_lock.svg b/src/icons/nix_flake_lock.svg deleted file mode 100644 index 3032ed25..00000000 --- a/src/icons/nix_flake_lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/icons/npm.svg b/src/icons/npm.svg deleted file mode 100644 index 5884ca40..00000000 --- a/src/icons/npm.svg +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/npm_ignore.svg b/src/icons/npm_ignore.svg deleted file mode 100644 index c46c40e1..00000000 --- a/src/icons/npm_ignore.svg +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/npm_lock.svg b/src/icons/npm_lock.svg deleted file mode 100644 index 9a64c8f8..00000000 --- a/src/icons/npm_lock.svg +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/nunjucks.svg b/src/icons/nunjucks.svg deleted file mode 100644 index 871c5683..00000000 --- a/src/icons/nunjucks.svg +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/nuxt.svg b/src/icons/nuxt.svg deleted file mode 100644 index e6624fa5..00000000 --- a/src/icons/nuxt.svg +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/nuxt_ignore.svg b/src/icons/nuxt_ignore.svg deleted file mode 100644 index cb05817d..00000000 --- a/src/icons/nuxt_ignore.svg +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/nx.svg b/src/icons/nx.svg deleted file mode 100644 index 26ade1b6..00000000 --- a/src/icons/nx.svg +++ /dev/null @@ -1,64 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/icons/ocaml.svg b/src/icons/ocaml.svg deleted file mode 100644 index 34718c5d..00000000 --- a/src/icons/ocaml.svg +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/package_json.svg b/src/icons/package_json.svg deleted file mode 100644 index a8822545..00000000 --- a/src/icons/package_json.svg +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/panda.svg b/src/icons/panda.svg deleted file mode 100644 index ea16ea90..00000000 --- a/src/icons/panda.svg +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/pdf.svg b/src/icons/pdf.svg deleted file mode 100644 index 4e2390c0..00000000 --- a/src/icons/pdf.svg +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/perl.svg b/src/icons/perl.svg deleted file mode 100644 index 932b9fa2..00000000 --- a/src/icons/perl.svg +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/php.svg b/src/icons/php.svg deleted file mode 100644 index 935b55a4..00000000 --- a/src/icons/php.svg +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/playwright.svg b/src/icons/playwright.svg deleted file mode 100644 index d6793c38..00000000 --- a/src/icons/playwright.svg +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/plop.svg b/src/icons/plop.svg deleted file mode 100644 index 46bddb44..00000000 --- a/src/icons/plop.svg +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/pnpm.svg b/src/icons/pnpm.svg deleted file mode 100644 index caf36837..00000000 --- a/src/icons/pnpm.svg +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/pnpm_lock.svg b/src/icons/pnpm_lock.svg deleted file mode 100644 index 1150c4e4..00000000 --- a/src/icons/pnpm_lock.svg +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/icons/powershell.svg b/src/icons/powershell.svg deleted file mode 100644 index 2bfe95ad..00000000 --- a/src/icons/powershell.svg +++ /dev/null @@ -1,106 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/icons/premake.svg b/src/icons/premake.svg deleted file mode 100644 index 14596e21..00000000 --- a/src/icons/premake.svg +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/prettier.svg b/src/icons/prettier.svg deleted file mode 100644 index 0913549d..00000000 --- a/src/icons/prettier.svg +++ /dev/null @@ -1,84 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/icons/prettier_ignore.svg b/src/icons/prettier_ignore.svg deleted file mode 100644 index d0a158b5..00000000 --- a/src/icons/prettier_ignore.svg +++ /dev/null @@ -1,84 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/icons/prisma.svg b/src/icons/prisma.svg deleted file mode 100644 index 67c39828..00000000 --- a/src/icons/prisma.svg +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/icons/properties.svg b/src/icons/properties.svg deleted file mode 100644 index f65cfdff..00000000 --- a/src/icons/properties.svg +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/protobuf.svg b/src/icons/protobuf.svg deleted file mode 100644 index 21e16a65..00000000 --- a/src/icons/protobuf.svg +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/icons/python.svg b/src/icons/python.svg deleted file mode 100644 index 7d843e70..00000000 --- a/src/icons/python.svg +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/icons/python_compiled.svg b/src/icons/python_compiled.svg deleted file mode 100644 index 1afe79a6..00000000 --- a/src/icons/python_compiled.svg +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/icons/r.svg b/src/icons/r.svg deleted file mode 100644 index e402df42..00000000 --- a/src/icons/r.svg +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/racket.svg b/src/icons/racket.svg deleted file mode 100644 index 7304ef09..00000000 --- a/src/icons/racket.svg +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/razor.svg b/src/icons/razor.svg deleted file mode 100644 index aa81f6b1..00000000 --- a/src/icons/razor.svg +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/readme.svg b/src/icons/readme.svg deleted file mode 100644 index 8e4c71b6..00000000 --- a/src/icons/readme.svg +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/reason.svg b/src/icons/reason.svg deleted file mode 100644 index cb754fd5..00000000 --- a/src/icons/reason.svg +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/redwood.svg b/src/icons/redwood.svg deleted file mode 100644 index cff65c8f..00000000 --- a/src/icons/redwood.svg +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/remix.svg b/src/icons/remix.svg deleted file mode 100644 index c01cbfb1..00000000 --- a/src/icons/remix.svg +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/renovate.svg b/src/icons/renovate.svg deleted file mode 100644 index 32f7b855..00000000 --- a/src/icons/renovate.svg +++ /dev/null @@ -1,64 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/rescript.svg b/src/icons/rescript.svg deleted file mode 100644 index 2eb0de59..00000000 --- a/src/icons/rescript.svg +++ /dev/null @@ -1,63 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/robots.svg b/src/icons/robots.svg deleted file mode 100644 index 7b4a8d5c..00000000 --- a/src/icons/robots.svg +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/icons/rollup.svg b/src/icons/rollup.svg deleted file mode 100644 index 35d06090..00000000 --- a/src/icons/rollup.svg +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/rome.svg b/src/icons/rome.svg deleted file mode 100644 index 74e03a75..00000000 --- a/src/icons/rome.svg +++ /dev/null @@ -1,195 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/icons/ruby.svg b/src/icons/ruby.svg deleted file mode 100644 index 064a50e5..00000000 --- a/src/icons/ruby.svg +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/ruby_gem.svg b/src/icons/ruby_gem.svg deleted file mode 100644 index 07074932..00000000 --- a/src/icons/ruby_gem.svg +++ /dev/null @@ -1,64 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/rust.svg b/src/icons/rust.svg deleted file mode 100644 index 3268f93e..00000000 --- a/src/icons/rust.svg +++ /dev/null @@ -1,116 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/src/icons/sass.svg b/src/icons/sass.svg deleted file mode 100644 index dd53bdc5..00000000 --- a/src/icons/sass.svg +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/scala.svg b/src/icons/scala.svg deleted file mode 100644 index d11f0d63..00000000 --- a/src/icons/scala.svg +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/src/icons/search.svg b/src/icons/search.svg deleted file mode 100644 index 047c7df8..00000000 --- a/src/icons/search.svg +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/sentry.svg b/src/icons/sentry.svg deleted file mode 100644 index 6f48c781..00000000 --- a/src/icons/sentry.svg +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/shader.svg b/src/icons/shader.svg deleted file mode 100644 index ab3f995e..00000000 --- a/src/icons/shader.svg +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/slide.svg b/src/icons/slide.svg deleted file mode 100644 index efb85f76..00000000 --- a/src/icons/slide.svg +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/solidity.svg b/src/icons/solidity.svg deleted file mode 100644 index 5b989fd7..00000000 --- a/src/icons/solidity.svg +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/icons/sonar_cloud.svg b/src/icons/sonar_cloud.svg deleted file mode 100644 index 7e39abab..00000000 --- a/src/icons/sonar_cloud.svg +++ /dev/null @@ -1,58 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/spreadsheet.svg b/src/icons/spreadsheet.svg deleted file mode 100644 index 2f26c7ae..00000000 --- a/src/icons/spreadsheet.svg +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/stackblitz.svg b/src/icons/stackblitz.svg deleted file mode 100644 index 84438627..00000000 --- a/src/icons/stackblitz.svg +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/stencil.svg b/src/icons/stencil.svg deleted file mode 100644 index 82eec6cf..00000000 --- a/src/icons/stencil.svg +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/stitches.svg b/src/icons/stitches.svg deleted file mode 100644 index b6edd0f2..00000000 --- a/src/icons/stitches.svg +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/icons/storybook.svg b/src/icons/storybook.svg deleted file mode 100644 index f13bc6ed..00000000 --- a/src/icons/storybook.svg +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/storybook_svelte.svg b/src/icons/storybook_svelte.svg deleted file mode 100644 index abb51839..00000000 --- a/src/icons/storybook_svelte.svg +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/storybook_vue.svg b/src/icons/storybook_vue.svg deleted file mode 100644 index edff5a98..00000000 --- a/src/icons/storybook_vue.svg +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/stylelint.svg b/src/icons/stylelint.svg deleted file mode 100644 index 51ea4be2..00000000 --- a/src/icons/stylelint.svg +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/stylelint_ignore.svg b/src/icons/stylelint_ignore.svg deleted file mode 100644 index 6bacc69e..00000000 --- a/src/icons/stylelint_ignore.svg +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/svelte.svg b/src/icons/svelte.svg deleted file mode 100644 index 71771c86..00000000 --- a/src/icons/svelte.svg +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/svelte_config.svg b/src/icons/svelte_config.svg deleted file mode 100644 index d3c2de87..00000000 --- a/src/icons/svelte_config.svg +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/icons/svg.svg b/src/icons/svg.svg deleted file mode 100644 index 6d7b2f50..00000000 --- a/src/icons/svg.svg +++ /dev/null @@ -1,111 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/icons/swift.svg b/src/icons/swift.svg deleted file mode 100644 index bf31028d..00000000 --- a/src/icons/swift.svg +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/tailwind.svg b/src/icons/tailwind.svg deleted file mode 100644 index 4290218c..00000000 --- a/src/icons/tailwind.svg +++ /dev/null @@ -1,52 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/tauri.svg b/src/icons/tauri.svg deleted file mode 100644 index 5f9359cb..00000000 --- a/src/icons/tauri.svg +++ /dev/null @@ -1,121 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/src/icons/terraform.svg b/src/icons/terraform.svg deleted file mode 100644 index fb799c9e..00000000 --- a/src/icons/terraform.svg +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/todo.svg b/src/icons/todo.svg deleted file mode 100644 index 9b2b99c4..00000000 --- a/src/icons/todo.svg +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/toml.svg b/src/icons/toml.svg deleted file mode 100644 index 8b3e04c2..00000000 --- a/src/icons/toml.svg +++ /dev/null @@ -1,58 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/txt.svg b/src/icons/txt.svg deleted file mode 100644 index d4ffe3f6..00000000 --- a/src/icons/txt.svg +++ /dev/null @@ -1,64 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/typescript.svg b/src/icons/typescript.svg deleted file mode 100644 index e4ab7b48..00000000 --- a/src/icons/typescript.svg +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/typescript_config.svg b/src/icons/typescript_config.svg deleted file mode 100644 index baf52428..00000000 --- a/src/icons/typescript_config.svg +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/icons/typescript_def.svg b/src/icons/typescript_def.svg deleted file mode 100644 index 596d6c30..00000000 --- a/src/icons/typescript_def.svg +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - - - - - - - - - diff --git a/src/icons/typescript_react.svg b/src/icons/typescript_react.svg deleted file mode 100644 index dccaedb8..00000000 --- a/src/icons/typescript_react.svg +++ /dev/null @@ -1,61 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/icons/typescript_test.svg b/src/icons/typescript_test.svg deleted file mode 100644 index d3bc8e1a..00000000 --- a/src/icons/typescript_test.svg +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/src/icons/unity.svg b/src/icons/unity.svg deleted file mode 100644 index 465e289f..00000000 --- a/src/icons/unity.svg +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/unocss.svg b/src/icons/unocss.svg deleted file mode 100644 index 208e2a55..00000000 --- a/src/icons/unocss.svg +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/v.svg b/src/icons/v.svg deleted file mode 100644 index 4ec0cf31..00000000 --- a/src/icons/v.svg +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - - - - - diff --git a/src/icons/vercel.svg b/src/icons/vercel.svg deleted file mode 100644 index 898c9af8..00000000 --- a/src/icons/vercel.svg +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/vercel_ignore.svg b/src/icons/vercel_ignore.svg deleted file mode 100644 index fd9fba7b..00000000 --- a/src/icons/vercel_ignore.svg +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/visual_studio.svg b/src/icons/visual_studio.svg deleted file mode 100644 index 12f4afee..00000000 --- a/src/icons/visual_studio.svg +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/vite.svg b/src/icons/vite.svg deleted file mode 100644 index 2d0a5324..00000000 --- a/src/icons/vite.svg +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/vitest.svg b/src/icons/vitest.svg deleted file mode 100644 index 4b03cf5d..00000000 --- a/src/icons/vitest.svg +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/vs_code.svg b/src/icons/vs_code.svg deleted file mode 100644 index 8cf3fea2..00000000 --- a/src/icons/vs_code.svg +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/vs_code_ignore.svg b/src/icons/vs_code_ignore.svg deleted file mode 100644 index 2b78f3a0..00000000 --- a/src/icons/vs_code_ignore.svg +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/vs_codium.svg b/src/icons/vs_codium.svg deleted file mode 100644 index bf931d6c..00000000 --- a/src/icons/vs_codium.svg +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/icons/vue.svg b/src/icons/vue.svg deleted file mode 100644 index 47f7d900..00000000 --- a/src/icons/vue.svg +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/vue_config.svg b/src/icons/vue_config.svg deleted file mode 100644 index e63bf5a9..00000000 --- a/src/icons/vue_config.svg +++ /dev/null @@ -1,64 +0,0 @@ - - - - - - - - - - - - - diff --git a/src/icons/web_assembly.svg b/src/icons/web_assembly.svg deleted file mode 100644 index e75f790d..00000000 --- a/src/icons/web_assembly.svg +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/src/icons/webpack.svg b/src/icons/webpack.svg deleted file mode 100644 index 851f5784..00000000 --- a/src/icons/webpack.svg +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/src/icons/windi.svg b/src/icons/windi.svg deleted file mode 100644 index b5abde7a..00000000 --- a/src/icons/windi.svg +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/src/icons/workflow.svg b/src/icons/workflow.svg deleted file mode 100644 index 93e56016..00000000 --- a/src/icons/workflow.svg +++ /dev/null @@ -1,66 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/xaml.svg b/src/icons/xaml.svg deleted file mode 100644 index 8fbb2bd8..00000000 --- a/src/icons/xaml.svg +++ /dev/null @@ -1,64 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/xmake.svg b/src/icons/xmake.svg deleted file mode 100644 index 67e0b93d..00000000 --- a/src/icons/xmake.svg +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/xml.svg b/src/icons/xml.svg deleted file mode 100644 index aeb4853e..00000000 --- a/src/icons/xml.svg +++ /dev/null @@ -1,56 +0,0 @@ - - - - - - - - - - - - diff --git a/src/icons/yaml.svg b/src/icons/yaml.svg deleted file mode 100644 index b253947b..00000000 --- a/src/icons/yaml.svg +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/yarn.svg b/src/icons/yarn.svg deleted file mode 100644 index 4892c77a..00000000 --- a/src/icons/yarn.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/icons/yarn_lock.svg b/src/icons/yarn_lock.svg deleted file mode 100644 index f3b9ab5e..00000000 --- a/src/icons/yarn_lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/icons/zig.svg b/src/icons/zig.svg deleted file mode 100644 index 732c7de4..00000000 --- a/src/icons/zig.svg +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - diff --git a/src/icons/zip.svg b/src/icons/zip.svg deleted file mode 100644 index edc8c731..00000000 --- a/src/icons/zip.svg +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - diff --git a/src/index.ts b/src/index.ts new file mode 100644 index 00000000..77f40a85 --- /dev/null +++ b/src/index.ts @@ -0,0 +1,9 @@ +import type { ExtensionContext } from 'vscode' + +export async function activate(_context: ExtensionContext) { + +} + +export function deactivate() { + +} diff --git a/src/palettes.ts b/src/palettes.ts index 221a1d38..8ff9cf1d 100644 --- a/src/palettes.ts +++ b/src/palettes.ts @@ -1,56 +1,16 @@ -import { type labels, variants } from '@catppuccin/palette' +import type { AccentName, FlavorName, MonochromaticName } from '@catppuccin/palette' +import { flavorEntries, flavors } from '@catppuccin/palette' -export type CattppucinVariant = keyof typeof variants -export const catppuccinVariants = [ - 'latte', - 'frappe', - 'macchiato', - 'mocha', -] as const satisfies Readonly -export type CatppuccinColor = keyof typeof labels -export const catppuccinColors = [ - 'rosewater', - 'flamingo', - 'pink', - 'mauve', - 'red', - 'maroon', - 'peach', - 'yellow', - 'green', - 'teal', - 'sky', - 'sapphire', - 'blue', - 'lavender', - 'text', - 'overlay1', -] as const satisfies Readonly - -export const varToHex: Record>> = { - latte: catppuccinColors.reduce((acc, label) => ({ ...acc, [`--ctp-${label}`]: variants.latte[label].hex }), {}), - frappe: catppuccinColors.reduce((acc, label) => ({ ...acc, [`--ctp-${label}`]: variants.frappe[label].hex }), {}), - macchiato: catppuccinColors.reduce((acc, label) => ({ ...acc, [`--ctp-${label}`]: variants.macchiato[label].hex }), {}), - mocha: catppuccinColors.reduce((acc, label) => ({ ...acc, [`--ctp-${label}`]: variants.mocha[label].hex }), {}), -} - -export const labelToHex: Record>> = { - latte: Object.fromEntries(Object.entries(varToHex.latte).map(([label, hex]) => [label.slice(6), hex])), - frappe: Object.fromEntries(Object.entries(varToHex.frappe).map(([label, hex]) => [label.slice(6), hex])), - macchiato: Object.fromEntries(Object.entries(varToHex.macchiato).map(([label, hex]) => [label.slice(6), hex])), - mocha: Object.fromEntries(Object.entries(varToHex.mocha).map(([label, hex]) => [label.slice(6), hex])), -} - -export const hexToVar: Record>> = { - latte: Object.fromEntries(Object.entries(varToHex.latte).map(([label, hex]) => [hex, label])), - frappe: Object.fromEntries(Object.entries(varToHex.frappe).map(([label, hex]) => [hex, label])), - macchiato: Object.fromEntries(Object.entries(varToHex.macchiato).map(([label, hex]) => [hex, label])), - mocha: Object.fromEntries(Object.entries(varToHex.mocha).map(([label, hex]) => [hex, label])), -} - -export const cssVarStyleTags: Record = { - latte: `\n\n`, - frappe: `\n\n`, - macchiato: `\n\n`, - mocha: `\n\n`, +type Flavor = FlavorName | 'css-variables' +type ColorName = AccentName | Extract +export const palettes = { + ...flavorEntries.reduce((acc, [flavorName, flavor]) => ({ + ...acc, + [flavorName]: flavor.colorEntries + .filter(([color, { accent }]) => accent || ['text', 'overlay1'].includes(color)) + .map(([color, { hex }]) => [color, hex]), + }), {} as Record>), + 'css-variables': flavors.latte.colorEntries + .filter(([color, { accent }]) => accent || ['text', 'overlay1'].includes(color)) + .map(([color]) => ([color, `var(--vscode-ctp-${color})`])) as Array<[ColorName, string]>, } diff --git a/src/types.d.ts b/src/types.d.ts deleted file mode 100644 index c6c889e1..00000000 --- a/src/types.d.ts +++ /dev/null @@ -1,30 +0,0 @@ -export {} - -declare global { - type IconMap = Record - - type Base = { - hidesExplorerArrows: boolean - file: string - folder: string - folderExpanded: string - rootFolder: string - rootFolderExpanded: string - } - - type IconDefinitions = Record - type FileNames = Record - type FileExtensions = Record - type FolderNames = Record - type FolderNamesExpanded = Record - type LanguageIds = Record - - type Theme = Base & { - iconDefinitions: IconDefinitions - languageIds: LanguageIds - fileNames?: FileNames - fileExtensions?: FileExtensions - folderNames?: FolderNames - folderNamesExpanded?: FolderNamesExpanded - } -} diff --git a/src/types.ts b/src/types.ts new file mode 100644 index 00000000..9b9c4768 --- /dev/null +++ b/src/types.ts @@ -0,0 +1,47 @@ +export interface Options { + hidesExplorerArrows: boolean +} + +export interface BaseIcons { + file: string + folder: string + folderExpanded: string + rootFolder: string + rootFolderExpanded: string +} + +export type FileIcons = Record + +export type FolderIcons = Record + +export type Theme = Options & BaseIcons & { + fileIcons: FileIcons + folderIcons: FolderIcons +} + +export type IconDefinitions = Record + +export type VscTheme = Options & BaseIcons & { + hidesExplorerArrows: boolean + + file: string + folder: string + folderExpanded: string + rootFolder: string + rootFolderExpanded: string + + languageIds: Record + fileExtensions: Record + fileNames: Record + + folderNames: Record + folderNamesExpanded: Record + + iconDefinitions: IconDefinitions +} diff --git a/todo.md b/todo.md index 7380f442..32dcb4c3 100644 --- a/todo.md +++ b/todo.md @@ -1,5 +1,35 @@ -- android -- audio -- nest -- snowpack -- video +- [ ] hooks folder +- [ ] class folder +- [ ] decorators folder +- [ ] target folder +- [ ] pipe folder +- [ ] assets folder +- [ ] vuepress folder +- [ ] vitepress folder +- [ ] expo folder +- [ ] resource folder +- [ ] lib folder +- [ ] theme folder (palette?) +- [ ] logs folder +- [ ] extra/other/misc folder +- [ ] tasks folder +- [ ] tools folder +- [ ] helpers folder +- [ ] content folder +- [ ] env folder +- [ ] intellij folder (.idea) +- [ ] yarn folder +- [ ] netlify folder +- [ ] resolver folder + +- [ ] devcontainer folder +- [ ] devcontainer file +- [ ] puppeteer file + +- [ ] psd file +- [ ] illustrator file +- [ ] + +- [ ] change C icon (smaller) + + diff --git a/tsconfig.json b/tsconfig.json index 40efb3fe..76018dc4 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,12 +1,18 @@ { "compilerOptions": { + "target": "es2017", + "lib": ["esnext"], "baseUrl": ".", + "module": "esnext", + "moduleResolution": "node", "paths": { - "@/*": ["src/*"] + "~/*": ["./src/*"] }, - "moduleResolution": "node", - "module": "esnext", - "target": "esnext", - "typeRoots": ["./src/types"] + "resolveJsonModule": true, + "strict": true, + "strictNullChecks": true, + "esModuleInterop": true, + "skipDefaultLibCheck": true, + "skipLibCheck": true } } diff --git a/yarn.lock b/yarn.lock deleted file mode 100644 index 80466df8..00000000 --- a/yarn.lock +++ /dev/null @@ -1,4068 +0,0 @@ -# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. -# yarn lockfile v1 - - -"@antfu/eslint-config-basic@0.38.6": - version "0.38.6" - resolved "https://registry.yarnpkg.com/@antfu/eslint-config-basic/-/eslint-config-basic-0.38.6.tgz#d77d3f16a555d686589049a4fd341b9c81262a45" - integrity sha512-g5hxtS98MsQ6plCQ1rPx/K9+7ZZmUgdsWx84PJCwbaSuSklP1jZjuhMcjOPn/LW5t9QAPeb74T9+QsK3+IyNKQ== - dependencies: - eslint-plugin-antfu "0.38.6" - eslint-plugin-eslint-comments "^3.2.0" - eslint-plugin-html "^7.1.0" - eslint-plugin-import "^2.27.5" - eslint-plugin-jsonc "^2.7.0" - eslint-plugin-markdown "^3.0.0" - eslint-plugin-n "^15.7.0" - eslint-plugin-no-only-tests "^3.1.0" - eslint-plugin-promise "^6.1.1" - eslint-plugin-unicorn "^46.0.0" - eslint-plugin-unused-imports "^2.0.0" - eslint-plugin-yml "^1.5.0" - jsonc-eslint-parser "^2.2.0" - yaml-eslint-parser "^1.2.0" - -"@antfu/eslint-config-ts@0.38.6": - version "0.38.6" - resolved "https://registry.yarnpkg.com/@antfu/eslint-config-ts/-/eslint-config-ts-0.38.6.tgz#3a4c936efebb564e13e0a1434cb0b42def3611b4" - integrity sha512-a7PY1xpJwjZwIciu8gboLJ2yYxB1HMCKKshuKvH8vcGv+af5X9wk0eLN3Paa72yytSZZ2fqxfD0AwXTW0n+oiA== - dependencies: - "@antfu/eslint-config-basic" "0.38.6" - "@typescript-eslint/eslint-plugin" "^5.59.0" - "@typescript-eslint/parser" "^5.59.0" - eslint-plugin-jest "^27.2.1" - -"@antfu/eslint-config-vue@0.38.6": - version "0.38.6" - resolved "https://registry.yarnpkg.com/@antfu/eslint-config-vue/-/eslint-config-vue-0.38.6.tgz#73c6e08122161eacb52f21aed392ac1ad93c175e" - integrity sha512-mC+MA7/WFXGIPR4RbdvaSWXjYJvBiloDzPaOILgbfPxWqROi5KzgMAYbRfHkXz0TaG2P1+wFiuf41unc3rq3ew== - dependencies: - "@antfu/eslint-config-basic" "0.38.6" - "@antfu/eslint-config-ts" "0.38.6" - eslint-plugin-vue "^9.11.0" - local-pkg "^0.4.3" - -"@antfu/eslint-config@^0.38.6": - version "0.38.6" - resolved "https://registry.yarnpkg.com/@antfu/eslint-config/-/eslint-config-0.38.6.tgz#1535e34e0383e34e0aad6085a73cb721df26da13" - integrity sha512-QH9RwKLgumLjkVfKNIrxtISlp6VqfduXVIS2uNlOfrj1hSSObOMzj0olcsKR2pzgTMQ6d5Uu9nrxvKjs/oO6fg== - dependencies: - "@antfu/eslint-config-vue" "0.38.6" - "@typescript-eslint/eslint-plugin" "^5.59.0" - "@typescript-eslint/parser" "^5.59.0" - eslint-plugin-eslint-comments "^3.2.0" - eslint-plugin-html "^7.1.0" - eslint-plugin-import "^2.27.5" - eslint-plugin-jsonc "^2.7.0" - eslint-plugin-n "^15.7.0" - eslint-plugin-promise "^6.1.1" - eslint-plugin-unicorn "^46.0.0" - eslint-plugin-vue "^9.11.0" - eslint-plugin-yml "^1.5.0" - jsonc-eslint-parser "^2.2.0" - yaml-eslint-parser "^1.2.0" - -"@babel/code-frame@^7.0.0": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.18.6.tgz#3b25d38c89600baa2dcc219edfa88a74eb2c427a" - integrity sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q== - dependencies: - "@babel/highlight" "^7.18.6" - -"@babel/helper-validator-identifier@^7.18.6", "@babel/helper-validator-identifier@^7.19.1": - version "7.19.1" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz#7eea834cf32901ffdc1a7ee555e2f9c27e249ca2" - integrity sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w== - -"@babel/highlight@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.18.6.tgz#81158601e93e2563795adcbfbdf5d64be3f2ecdf" - integrity sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g== - dependencies: - "@babel/helper-validator-identifier" "^7.18.6" - chalk "^2.0.0" - js-tokens "^4.0.0" - -"@catppuccin/palette@^0.1.8": - version "0.1.8" - resolved "https://registry.yarnpkg.com/@catppuccin/palette/-/palette-0.1.8.tgz#2a47372d523213fc86c80462904265c56bb648b9" - integrity sha512-41quIj08vgPMy8kQxQb0+VqxuTlo2xfNYGSgOuiJXNojWnGuhLxBc61jgu2jiZYGNXVqgVNGWwmWEUf6s32jiA== - -"@esbuild-kit/cjs-loader@^2.4.2": - version "2.4.2" - resolved "https://registry.yarnpkg.com/@esbuild-kit/cjs-loader/-/cjs-loader-2.4.2.tgz#cb4dde00fbf744a68c4f20162ea15a8242d0fa54" - integrity sha512-BDXFbYOJzT/NBEtp71cvsrGPwGAMGRB/349rwKuoxNSiKjPraNNnlK6MIIabViCjqZugu6j+xeMDlEkWdHHJSg== - dependencies: - "@esbuild-kit/core-utils" "^3.0.0" - get-tsconfig "^4.4.0" - -"@esbuild-kit/core-utils@^3.0.0": - version "3.1.0" - resolved "https://registry.yarnpkg.com/@esbuild-kit/core-utils/-/core-utils-3.1.0.tgz#49945d533dbd5e1b7620aa0fc522c15e6ec089c5" - integrity sha512-Uuk8RpCg/7fdHSceR1M6XbSZFSuMrxcePFuGgyvsBn+u339dk5OeL4jv2EojwTN2st/unJGsVm4qHWjWNmJ/tw== - dependencies: - esbuild "~0.17.6" - source-map-support "^0.5.21" - -"@esbuild-kit/esm-loader@^2.5.5": - version "2.5.5" - resolved "https://registry.yarnpkg.com/@esbuild-kit/esm-loader/-/esm-loader-2.5.5.tgz#b82da14fcee3fc1d219869756c06f43f67d1ca71" - integrity sha512-Qwfvj/qoPbClxCRNuac1Du01r9gvNOT+pMYtJDapfB1eoGN1YlJ1BixLyL9WVENRx5RXgNLdfYdx/CuswlGhMw== - dependencies: - "@esbuild-kit/core-utils" "^3.0.0" - get-tsconfig "^4.4.0" - -"@esbuild/android-arm64@0.17.11": - version "0.17.11" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.17.11.tgz#52c3e6cabc19c5e4c1c0c01cb58f0442338e1c14" - integrity sha512-QnK4d/zhVTuV4/pRM4HUjcsbl43POALU2zvBynmrrqZt9LPcLA3x1fTZPBg2RRguBQnJcnU059yKr+bydkntjg== - -"@esbuild/android-arm@0.17.11": - version "0.17.11" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.17.11.tgz#f3fc768235aecbeb840d0049fdf13cd28592105f" - integrity sha512-CdyX6sRVh1NzFCsf5vw3kULwlAhfy9wVt8SZlrhQ7eL2qBjGbFhRBWkkAzuZm9IIEOCKJw4DXA6R85g+qc8RDw== - -"@esbuild/android-x64@0.17.11": - version "0.17.11" - resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.17.11.tgz#443ed47771a7e917e4282469ba350d117473550c" - integrity sha512-3PL3HKtsDIXGQcSCKtWD/dy+mgc4p2Tvo2qKgKHj9Yf+eniwFnuoQ0OUhlSfAEpKAFzF9N21Nwgnap6zy3L3MQ== - -"@esbuild/darwin-arm64@0.17.11": - version "0.17.11" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.17.11.tgz#0e8c78d94d5759a48521dbfd83189d2ed3499a16" - integrity sha512-pJ950bNKgzhkGNO3Z9TeHzIFtEyC2GDQL3wxkMApDEghYx5Qers84UTNc1bAxWbRkuJOgmOha5V0WUeh8G+YGw== - -"@esbuild/darwin-x64@0.17.11": - version "0.17.11" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.17.11.tgz#2405cfdf70eb961c7cf973463ca7263dc2004c88" - integrity sha512-iB0dQkIHXyczK3BZtzw1tqegf0F0Ab5texX2TvMQjiJIWXAfM4FQl7D909YfXWnB92OQz4ivBYQ2RlxBJrMJOw== - -"@esbuild/freebsd-arm64@0.17.11": - version "0.17.11" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.11.tgz#d5138e873e15f87bd4564c024dfa00ef37e623fd" - integrity sha512-7EFzUADmI1jCHeDRGKgbnF5sDIceZsQGapoO6dmw7r/ZBEKX7CCDnIz8m9yEclzr7mFsd+DyasHzpjfJnmBB1Q== - -"@esbuild/freebsd-x64@0.17.11": - version "0.17.11" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.17.11.tgz#e850b58b8fabf8e9ef0e125af3c25229ad2d6c38" - integrity sha512-iPgenptC8i8pdvkHQvXJFzc1eVMR7W2lBPrTE6GbhR54sLcF42mk3zBOjKPOodezzuAz/KSu8CPyFSjcBMkE9g== - -"@esbuild/linux-arm64@0.17.11": - version "0.17.11" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.17.11.tgz#2bfb93d0809ec2357c12ebb27736b750c9ae0aa5" - integrity sha512-Qxth3gsWWGKz2/qG2d5DsW/57SeA2AmpSMhdg9TSB5Svn2KDob3qxfQSkdnWjSd42kqoxIPy3EJFs+6w1+6Qjg== - -"@esbuild/linux-arm@0.17.11": - version "0.17.11" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.17.11.tgz#e56fb3b76828317a704f4a167c5bd790fe5314e7" - integrity sha512-M9iK/d4lgZH0U5M1R2p2gqhPV/7JPJcRz+8O8GBKVgqndTzydQ7B2XGDbxtbvFkvIs53uXTobOhv+RyaqhUiMg== - -"@esbuild/linux-ia32@0.17.11": - version "0.17.11" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.17.11.tgz#59fa1c49b271793d14eb5effc757e8c0d0cb2cab" - integrity sha512-dB1nGaVWtUlb/rRDHmuDQhfqazWE0LMro/AIbT2lWM3CDMHJNpLckH+gCddQyhhcLac2OYw69ikUMO34JLt3wA== - -"@esbuild/linux-loong64@0.17.11": - version "0.17.11" - resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.17.11.tgz#89575bc189099c03a36daa54f3f481780c7fd502" - integrity sha512-aCWlq70Q7Nc9WDnormntGS1ar6ZFvUpqr8gXtO+HRejRYPweAFQN615PcgaSJkZjhHp61+MNLhzyVALSF2/Q0g== - -"@esbuild/linux-mips64el@0.17.11": - version "0.17.11" - resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.17.11.tgz#0e18ca039dc7e4645efd8edc1b10952933eb6b1b" - integrity sha512-cGeGNdQxqY8qJwlYH1BP6rjIIiEcrM05H7k3tR7WxOLmD1ZxRMd6/QIOWMb8mD2s2YJFNRuNQ+wjMhgEL2oCEw== - -"@esbuild/linux-ppc64@0.17.11": - version "0.17.11" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.17.11.tgz#2d152cb3a253afb8c100a165ad132dc96f36cb11" - integrity sha512-BdlziJQPW/bNe0E8eYsHB40mYOluS+jULPCjlWiHzDgr+ZBRXPtgMV1nkLEGdpjrwgmtkZHEGEPaKdS/8faLDA== - -"@esbuild/linux-riscv64@0.17.11": - version "0.17.11" - resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.17.11.tgz#c6ac494a81221d53d65b33e665c7df1747952d3c" - integrity sha512-MDLwQbtF+83oJCI1Cixn68Et/ME6gelmhssPebC40RdJaect+IM+l7o/CuG0ZlDs6tZTEIoxUe53H3GmMn8oMA== - -"@esbuild/linux-s390x@0.17.11": - version "0.17.11" - resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.17.11.tgz#4bad33894bc7415cea4be8fa90fe456226a424ad" - integrity sha512-4N5EMESvws0Ozr2J94VoUD8HIRi7X0uvUv4c0wpTHZyZY9qpaaN7THjosdiW56irQ4qnJ6Lsc+i+5zGWnyqWqQ== - -"@esbuild/linux-x64@0.17.11": - version "0.17.11" - resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.17.11.tgz#903fda743459f530a16a6c6ee8d2c0f6c1a12fc7" - integrity sha512-rM/v8UlluxpytFSmVdbCe1yyKQd/e+FmIJE2oPJvbBo+D0XVWi1y/NQ4iTNx+436WmDHQBjVLrbnAQLQ6U7wlw== - -"@esbuild/netbsd-x64@0.17.11": - version "0.17.11" - resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.17.11.tgz#b589239fe7d9b16ee03c5e191f3f5b640f1518a1" - integrity sha512-4WaAhuz5f91h3/g43VBGdto1Q+X7VEZfpcWGtOFXnggEuLvjV+cP6DyLRU15IjiU9fKLLk41OoJfBFN5DhPvag== - -"@esbuild/openbsd-x64@0.17.11": - version "0.17.11" - resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.17.11.tgz#b355019754116bef39ec688f8fd2fe6471b9779b" - integrity sha512-UBj135Nx4FpnvtE+C8TWGp98oUgBcmNmdYgl5ToKc0mBHxVVqVE7FUS5/ELMImOp205qDAittL6Ezhasc2Ev/w== - -"@esbuild/sunos-x64@0.17.11": - version "0.17.11" - resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.17.11.tgz#2ea47fb592e68406e5025a7696dc714fc6a115dc" - integrity sha512-1/gxTifDC9aXbV2xOfCbOceh5AlIidUrPsMpivgzo8P8zUtczlq1ncFpeN1ZyQJ9lVs2hILy1PG5KPp+w8QPPg== - -"@esbuild/win32-arm64@0.17.11": - version "0.17.11" - resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.17.11.tgz#47e6fdab17c4c52e6e0d606dd9cb843b29826325" - integrity sha512-vtSfyx5yRdpiOW9yp6Ax0zyNOv9HjOAw8WaZg3dF5djEHKKm3UnoohftVvIJtRh0Ec7Hso0RIdTqZvPXJ7FdvQ== - -"@esbuild/win32-ia32@0.17.11": - version "0.17.11" - resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.17.11.tgz#a97273aa3164c8d8f501899f55cc75a4a79599a3" - integrity sha512-GFPSLEGQr4wHFTiIUJQrnJKZhZjjq4Sphf+mM76nQR6WkQn73vm7IsacmBRPkALfpOCHsopSvLgqdd4iUW2mYw== - -"@esbuild/win32-x64@0.17.11": - version "0.17.11" - resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.17.11.tgz#9be796d93ae27b636da32d960899a4912bca27a1" - integrity sha512-N9vXqLP3eRL8BqSy8yn4Y98cZI2pZ8fyuHx6lKjiG2WABpT2l01TXdzq5Ma2ZUBzfB7tx5dXVhge8X9u0S70ZQ== - -"@eslint-community/eslint-utils@^4.1.2", "@eslint-community/eslint-utils@^4.2.0": - version "4.2.0" - resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.2.0.tgz#a831e6e468b4b2b5ae42bf658bea015bf10bc518" - integrity sha512-gB8T4H4DEfX2IV9zGDJPOBgP1e/DbfCPDTtEqUMckpvzS1OYtva8JdFYBqMwYk7xAQ429WGF/UPqn8uQ//h2vQ== - dependencies: - eslint-visitor-keys "^3.3.0" - -"@eslint-community/eslint-utils@^4.3.0": - version "4.4.0" - resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59" - integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== - dependencies: - eslint-visitor-keys "^3.3.0" - -"@eslint-community/regexpp@^4.4.0": - version "4.4.0" - resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.4.0.tgz#3e61c564fcd6b921cb789838631c5ee44df09403" - integrity sha512-A9983Q0LnDGdLPjxyXQ00sbV+K+O+ko2Dr+CZigbHWtX9pNfxlaBkMR8X1CztI73zuEyEBXTVjx7CE+/VSwDiQ== - -"@eslint/eslintrc@^2.0.3": - version "2.0.3" - resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.0.3.tgz#4910db5505f4d503f27774bf356e3704818a0331" - integrity sha512-+5gy6OQfk+xx3q0d6jGZZC3f3KzAkXc/IanVxd1is/VIIziRqqt3ongQz0FiTUXqTk0c7aDB3OaFuKnuSoJicQ== - dependencies: - ajv "^6.12.4" - debug "^4.3.2" - espree "^9.5.2" - globals "^13.19.0" - ignore "^5.2.0" - import-fresh "^3.2.1" - js-yaml "^4.1.0" - minimatch "^3.1.2" - strip-json-comments "^3.1.1" - -"@eslint/js@8.40.0": - version "8.40.0" - resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.40.0.tgz#3ba73359e11f5a7bd3e407f70b3528abfae69cec" - integrity sha512-ElyB54bJIhXQYVKjDSvCkPO1iU1tSAeVQJbllWJq1XQSmmA4dgFk8CbiBGpiOPxleE48vDogxCtmMYku4HSVLA== - -"@humanwhocodes/config-array@^0.11.8": - version "0.11.8" - resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.8.tgz#03595ac2075a4dc0f191cc2131de14fbd7d410b9" - integrity sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g== - dependencies: - "@humanwhocodes/object-schema" "^1.2.1" - debug "^4.1.1" - minimatch "^3.0.5" - -"@humanwhocodes/module-importer@^1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" - integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== - -"@humanwhocodes/object-schema@^1.2.1": - version "1.2.1" - resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz#b520529ec21d8e5945a1851dfd1c32e94e39ff45" - integrity sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA== - -"@jsdevtools/ez-spawn@^3.0.4": - version "3.0.4" - resolved "https://registry.yarnpkg.com/@jsdevtools/ez-spawn/-/ez-spawn-3.0.4.tgz#5641eb26fee6d31ec29f6788eba849470c52c7ff" - integrity sha512-f5DRIOZf7wxogefH03RjMPMdBF7ADTWUMoOs9kaJo06EfwF+aFhMZMDZxHg/Xe12hptN9xoZjGso2fdjapBRIA== - dependencies: - call-me-maybe "^1.0.1" - cross-spawn "^7.0.3" - string-argv "^0.3.1" - type-detect "^4.0.8" - -"@nodelib/fs.scandir@2.1.5": - version "2.1.5" - resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" - integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== - dependencies: - "@nodelib/fs.stat" "2.0.5" - run-parallel "^1.1.9" - -"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": - version "2.0.5" - resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" - integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== - -"@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8": - version "1.2.8" - resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" - integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== - dependencies: - "@nodelib/fs.scandir" "2.1.5" - fastq "^1.6.0" - -"@puppeteer/browsers@1.1.0": - version "1.1.0" - resolved "https://registry.yarnpkg.com/@puppeteer/browsers/-/browsers-1.1.0.tgz#72342a0f3d83f34547ea655aaf579b73d1a69249" - integrity sha512-+Nfk52G9cRAKq/V2LEaOlKIMsIuERSofk8hXEy6kMQtjg9Te1iuKymWOR+iKwwzj1RCkZU0fuOoSIclR839MNw== - dependencies: - debug "4.3.4" - extract-zip "2.0.1" - http-proxy-agent "5.0.0" - https-proxy-agent "5.0.1" - progress "2.0.3" - proxy-from-env "1.1.0" - tar-fs "2.1.1" - unbzip2-stream "1.4.3" - yargs "17.7.1" - -"@tootallnate/once@2": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-2.0.0.tgz#f544a148d3ab35801c1f633a7441fd87c2e484bf" - integrity sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A== - -"@trysound/sax@0.2.0": - version "0.2.0" - resolved "https://registry.yarnpkg.com/@trysound/sax/-/sax-0.2.0.tgz#cccaab758af56761eb7bf37af6f03f326dd798ad" - integrity sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA== - -"@types/fs-extra@^11.0.1": - version "11.0.1" - resolved "https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-11.0.1.tgz#f542ec47810532a8a252127e6e105f487e0a6ea5" - integrity sha512-MxObHvNl4A69ofaTRU8DFqvgzzv8s9yRtaPPm5gud9HDNvpB3GPQFvNuTWAI59B9huVGV5jXYJwbCsmBsOGYWA== - dependencies: - "@types/jsonfile" "*" - "@types/node" "*" - -"@types/json-schema@^7.0.9": - version "7.0.11" - resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.11.tgz#d421b6c527a3037f7c84433fd2c4229e016863d3" - integrity sha512-wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ== - -"@types/json5@^0.0.29": - version "0.0.29" - resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" - integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== - -"@types/jsonfile@*": - version "6.1.1" - resolved "https://registry.yarnpkg.com/@types/jsonfile/-/jsonfile-6.1.1.tgz#ac84e9aefa74a2425a0fb3012bdea44f58970f1b" - integrity sha512-GSgiRCVeapDN+3pqA35IkQwasaCh/0YFH5dEF6S88iDvEn901DjOeH3/QPY+XYP1DFzDZPvIvfeEgk+7br5png== - dependencies: - "@types/node" "*" - -"@types/mdast@^3.0.0": - version "3.0.10" - resolved "https://registry.yarnpkg.com/@types/mdast/-/mdast-3.0.10.tgz#4724244a82a4598884cbbe9bcfd73dff927ee8af" - integrity sha512-W864tg/Osz1+9f4lrGTZpCSO5/z4608eUp19tbozkq2HJK6i3z1kT0H9tlADXuYIb1YYOBByU4Jsqkk75q48qA== - dependencies: - "@types/unist" "*" - -"@types/node@*": - version "18.15.3" - resolved "https://registry.yarnpkg.com/@types/node/-/node-18.15.3.tgz#f0b991c32cfc6a4e7f3399d6cb4b8cf9a0315014" - integrity sha512-p6ua9zBxz5otCmbpb5D3U4B5Nanw6Pk3PPyX05xnxbB/fRv71N7CPmORg7uAD5P70T0xmx1pzAx/FUfa5X+3cw== - -"@types/node@^18.16.5": - version "18.16.5" - resolved "https://registry.yarnpkg.com/@types/node/-/node-18.16.5.tgz#bf64e42719dc2e74da24709a2e1c0b50a966120a" - integrity sha512-seOA34WMo9KB+UA78qaJoCO20RJzZGVXQ5Sh6FWu0g/hfT44nKXnej3/tCQl7FL97idFpBhisLYCTB50S0EirA== - -"@types/normalize-package-data@^2.4.0": - version "2.4.1" - resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz#d3357479a0fdfdd5907fe67e17e0a85c906e1301" - integrity sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw== - -"@types/semver@^7.3.12": - version "7.3.13" - resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.3.13.tgz#da4bfd73f49bd541d28920ab0e2bf0ee80f71c91" - integrity sha512-21cFJr9z3g5dW8B0CVI9g2O9beqaThGQ6ZFBqHfwhzLDKUxaqTIy3vnfah/UPkfOiF2pLq+tGz+W8RyCskuslw== - -"@types/unist@*", "@types/unist@^2.0.2": - version "2.0.6" - resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.6.tgz#250a7b16c3b91f672a24552ec64678eeb1d3a08d" - integrity sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ== - -"@types/yauzl@^2.9.1": - version "2.10.0" - resolved "https://registry.yarnpkg.com/@types/yauzl/-/yauzl-2.10.0.tgz#b3248295276cf8c6f153ebe6a9aba0c988cb2599" - integrity sha512-Cn6WYCm0tXv8p6k+A8PvbDG763EDpBoTzHdA+Q/MF6H3sapGjCm9NzoaJncJS9tUKSuCoDs9XHxYYsQDgxR6kw== - dependencies: - "@types/node" "*" - -"@typescript-eslint/eslint-plugin@^5.59.0": - version "5.59.5" - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.59.5.tgz#f156827610a3f8cefc56baeaa93cd4a5f32966b4" - integrity sha512-feA9xbVRWJZor+AnLNAr7A8JRWeZqHUf4T9tlP+TN04b05pFVhO5eN7/O93Y/1OUlLMHKbnJisgDURs/qvtqdg== - dependencies: - "@eslint-community/regexpp" "^4.4.0" - "@typescript-eslint/scope-manager" "5.59.5" - "@typescript-eslint/type-utils" "5.59.5" - "@typescript-eslint/utils" "5.59.5" - debug "^4.3.4" - grapheme-splitter "^1.0.4" - ignore "^5.2.0" - natural-compare-lite "^1.4.0" - semver "^7.3.7" - tsutils "^3.21.0" - -"@typescript-eslint/parser@^5.59.0": - version "5.59.5" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.59.5.tgz#63064f5eafbdbfb5f9dfbf5c4503cdf949852981" - integrity sha512-NJXQC4MRnF9N9yWqQE2/KLRSOLvrrlZb48NGVfBa+RuPMN6B7ZcK5jZOvhuygv4D64fRKnZI4L4p8+M+rfeQuw== - dependencies: - "@typescript-eslint/scope-manager" "5.59.5" - "@typescript-eslint/types" "5.59.5" - "@typescript-eslint/typescript-estree" "5.59.5" - debug "^4.3.4" - -"@typescript-eslint/scope-manager@5.55.0": - version "5.55.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.55.0.tgz#e863bab4d4183ddce79967fe10ceb6c829791210" - integrity sha512-OK+cIO1ZGhJYNCL//a3ROpsd83psf4dUJ4j7pdNVzd5DmIk+ffkuUIX2vcZQbEW/IR41DYsfJTB19tpCboxQuw== - dependencies: - "@typescript-eslint/types" "5.55.0" - "@typescript-eslint/visitor-keys" "5.55.0" - -"@typescript-eslint/scope-manager@5.59.5": - version "5.59.5" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.59.5.tgz#33ffc7e8663f42cfaac873de65ebf65d2bce674d" - integrity sha512-jVecWwnkX6ZgutF+DovbBJirZcAxgxC0EOHYt/niMROf8p4PwxxG32Qdhj/iIQQIuOflLjNkxoXyArkcIP7C3A== - dependencies: - "@typescript-eslint/types" "5.59.5" - "@typescript-eslint/visitor-keys" "5.59.5" - -"@typescript-eslint/type-utils@5.59.5": - version "5.59.5" - resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.59.5.tgz#485b0e2c5b923460bc2ea6b338c595343f06fc9b" - integrity sha512-4eyhS7oGym67/pSxA2mmNq7X164oqDYNnZCUayBwJZIRVvKpBCMBzFnFxjeoDeShjtO6RQBHBuwybuX3POnDqg== - dependencies: - "@typescript-eslint/typescript-estree" "5.59.5" - "@typescript-eslint/utils" "5.59.5" - debug "^4.3.4" - tsutils "^3.21.0" - -"@typescript-eslint/types@5.55.0": - version "5.55.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.55.0.tgz#9830f8d3bcbecf59d12f821e5bc6960baaed41fd" - integrity sha512-M4iRh4AG1ChrOL6Y+mETEKGeDnT7Sparn6fhZ5LtVJF1909D5O4uqK+C5NPbLmpfZ0XIIxCdwzKiijpZUOvOug== - -"@typescript-eslint/types@5.59.5": - version "5.59.5" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.59.5.tgz#e63c5952532306d97c6ea432cee0981f6d2258c7" - integrity sha512-xkfRPHbqSH4Ggx4eHRIO/eGL8XL4Ysb4woL8c87YuAo8Md7AUjyWKa9YMwTL519SyDPrfEgKdewjkxNCVeJW7w== - -"@typescript-eslint/typescript-estree@5.55.0": - version "5.55.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.55.0.tgz#8db7c8e47ecc03d49b05362b8db6f1345ee7b575" - integrity sha512-I7X4A9ovA8gdpWMpr7b1BN9eEbvlEtWhQvpxp/yogt48fy9Lj3iE3ild/1H3jKBBIYj5YYJmS2+9ystVhC7eaQ== - dependencies: - "@typescript-eslint/types" "5.55.0" - "@typescript-eslint/visitor-keys" "5.55.0" - debug "^4.3.4" - globby "^11.1.0" - is-glob "^4.0.3" - semver "^7.3.7" - tsutils "^3.21.0" - -"@typescript-eslint/typescript-estree@5.59.5": - version "5.59.5" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.59.5.tgz#9b252ce55dd765e972a7a2f99233c439c5101e42" - integrity sha512-+XXdLN2CZLZcD/mO7mQtJMvCkzRfmODbeSKuMY/yXbGkzvA9rJyDY5qDYNoiz2kP/dmyAxXquL2BvLQLJFPQIg== - dependencies: - "@typescript-eslint/types" "5.59.5" - "@typescript-eslint/visitor-keys" "5.59.5" - debug "^4.3.4" - globby "^11.1.0" - is-glob "^4.0.3" - semver "^7.3.7" - tsutils "^3.21.0" - -"@typescript-eslint/utils@5.59.5", "@typescript-eslint/utils@^5.59.0": - version "5.59.5" - resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.59.5.tgz#15b3eb619bb223302e60413adb0accd29c32bcae" - integrity sha512-sCEHOiw+RbyTii9c3/qN74hYDPNORb8yWCoPLmB7BIflhplJ65u2PBpdRla12e3SSTJ2erRkPjz7ngLHhUegxA== - dependencies: - "@eslint-community/eslint-utils" "^4.2.0" - "@types/json-schema" "^7.0.9" - "@types/semver" "^7.3.12" - "@typescript-eslint/scope-manager" "5.59.5" - "@typescript-eslint/types" "5.59.5" - "@typescript-eslint/typescript-estree" "5.59.5" - eslint-scope "^5.1.1" - semver "^7.3.7" - -"@typescript-eslint/utils@^5.10.0": - version "5.55.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.55.0.tgz#34e97322e7ae5b901e7a870aabb01dad90023341" - integrity sha512-FkW+i2pQKcpDC3AY6DU54yl8Lfl14FVGYDgBTyGKB75cCwV3KpkpTMFi9d9j2WAJ4271LR2HeC5SEWF/CZmmfw== - dependencies: - "@eslint-community/eslint-utils" "^4.2.0" - "@types/json-schema" "^7.0.9" - "@types/semver" "^7.3.12" - "@typescript-eslint/scope-manager" "5.55.0" - "@typescript-eslint/types" "5.55.0" - "@typescript-eslint/typescript-estree" "5.55.0" - eslint-scope "^5.1.1" - semver "^7.3.7" - -"@typescript-eslint/visitor-keys@5.55.0": - version "5.55.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.55.0.tgz#01ad414fca8367706d76cdb94adf788dc5b664a2" - integrity sha512-q2dlHHwWgirKh1D3acnuApXG+VNXpEY5/AwRxDVuEQpxWaB0jCDe0jFMVMALJ3ebSfuOVE8/rMS+9ZOYGg1GWw== - dependencies: - "@typescript-eslint/types" "5.55.0" - eslint-visitor-keys "^3.3.0" - -"@typescript-eslint/visitor-keys@5.59.5": - version "5.59.5" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.59.5.tgz#ba5b8d6791a13cf9fea6716af1e7626434b29b9b" - integrity sha512-qL+Oz+dbeBRTeyJTIy0eniD3uvqU7x+y1QceBismZ41hd4aBSRh8UAw4pZP0+XzLuPZmx4raNMq/I+59W2lXKA== - dependencies: - "@typescript-eslint/types" "5.59.5" - eslint-visitor-keys "^3.3.0" - -"@vscode/vsce@^2.19.0": - version "2.19.0" - resolved "https://registry.yarnpkg.com/@vscode/vsce/-/vsce-2.19.0.tgz#342225662811245bc40d855636d000147c394b11" - integrity sha512-dAlILxC5ggOutcvJY24jxz913wimGiUrHaPkk16Gm9/PGFbz1YezWtrXsTKUtJws4fIlpX2UIlVlVESWq8lkfQ== - dependencies: - azure-devops-node-api "^11.0.1" - chalk "^2.4.2" - cheerio "^1.0.0-rc.9" - commander "^6.1.0" - glob "^7.0.6" - hosted-git-info "^4.0.2" - jsonc-parser "^3.2.0" - leven "^3.1.0" - markdown-it "^12.3.2" - mime "^1.3.4" - minimatch "^3.0.3" - parse-semver "^1.1.1" - read "^1.0.7" - semver "^5.1.0" - tmp "^0.2.1" - typed-rest-client "^1.8.4" - url-join "^4.0.1" - xml2js "^0.5.0" - yauzl "^2.3.1" - yazl "^2.2.2" - optionalDependencies: - keytar "^7.7.0" - -acorn-jsx@^5.3.2: - version "5.3.2" - resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" - integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== - -acorn@^8.5.0, acorn@^8.8.0, acorn@^8.8.2: - version "8.8.2" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.8.2.tgz#1b2f25db02af965399b9776b0c2c391276d37c4a" - integrity sha512-xjIYgE8HBrkpd/sJqOGNspf8uHG+NOHGOw6a/Urj8taM2EXfdNAH2oFcPeIFfsv3+kz/mJrS5VuMqbNLjCa2vw== - -agent-base@6: - version "6.0.2" - resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" - integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== - dependencies: - debug "4" - -ajv@^6.10.0, ajv@^6.12.4: - version "6.12.6" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" - integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== - dependencies: - fast-deep-equal "^3.1.1" - fast-json-stable-stringify "^2.0.0" - json-schema-traverse "^0.4.1" - uri-js "^4.2.2" - -ansi-escapes@^6.2.0: - version "6.2.0" - resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-6.2.0.tgz#8a13ce75286f417f1963487d86ba9f90dccf9947" - integrity sha512-kzRaCqXnpzWs+3z5ABPQiVke+iq0KXkHo8xiWV4RPTi5Yli0l97BEQuhXV1s7+aSU/fu1kUuxgS4MsQ0fRuygw== - dependencies: - type-fest "^3.0.0" - -ansi-regex@^4.1.0: - version "4.1.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.1.tgz#164daac87ab2d6f6db3a29875e2d1766582dabed" - integrity sha512-ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g== - -ansi-regex@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" - integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== - -ansi-regex@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.0.1.tgz#3183e38fae9a65d7cb5e53945cd5897d0260a06a" - integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA== - -ansi-styles@^3.2.0, ansi-styles@^3.2.1: - version "3.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" - integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== - dependencies: - color-convert "^1.9.0" - -ansi-styles@^4.0.0, ansi-styles@^4.1.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" - integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== - dependencies: - color-convert "^2.0.1" - -ansi-styles@^6.0.0, ansi-styles@^6.2.1: - version "6.2.1" - resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5" - integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug== - -anymatch@~3.1.2: - version "3.1.3" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" - integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== - dependencies: - normalize-path "^3.0.0" - picomatch "^2.0.4" - -argparse@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" - integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== - -array-buffer-byte-length@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz#fabe8bc193fea865f317fe7807085ee0dee5aead" - integrity sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A== - dependencies: - call-bind "^1.0.2" - is-array-buffer "^3.0.1" - -array-includes@^3.1.6: - version "3.1.6" - resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.6.tgz#9e9e720e194f198266ba9e18c29e6a9b0e4b225f" - integrity sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" - get-intrinsic "^1.1.3" - is-string "^1.0.7" - -array-union@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" - integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== - -array.prototype.flat@^1.3.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz#ffc6576a7ca3efc2f46a143b9d1dda9b4b3cf5e2" - integrity sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" - es-shim-unscopables "^1.0.0" - -array.prototype.flatmap@^1.3.1: - version "1.3.1" - resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz#1aae7903c2100433cb8261cd4ed310aab5c4a183" - integrity sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" - es-shim-unscopables "^1.0.0" - -available-typed-arrays@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz#92f95616501069d07d10edb2fc37d3e1c65123b7" - integrity sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw== - -azure-devops-node-api@^11.0.1: - version "11.2.0" - resolved "https://registry.yarnpkg.com/azure-devops-node-api/-/azure-devops-node-api-11.2.0.tgz#bf04edbef60313117a0507415eed4790a420ad6b" - integrity sha512-XdiGPhrpaT5J8wdERRKs5g8E0Zy1pvOYTli7z9E8nmOn3YGp4FhtjhrOyFmX/8veWCwdI69mCHKJw6l+4J/bHA== - dependencies: - tunnel "0.0.6" - typed-rest-client "^1.8.4" - -balanced-match@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" - integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== - -base64-js@^1.3.1: - version "1.5.1" - resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" - integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== - -binary-extensions@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" - integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== - -bl@^4.0.3: - version "4.1.0" - resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" - integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== - dependencies: - buffer "^5.5.0" - inherits "^2.0.4" - readable-stream "^3.4.0" - -boolbase@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" - integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== - -brace-expansion@^1.1.7: - version "1.1.11" - resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" - integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== - dependencies: - balanced-match "^1.0.0" - concat-map "0.0.1" - -braces@^3.0.2, braces@~3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" - integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== - dependencies: - fill-range "^7.0.1" - -buffer-crc32@~0.2.3: - version "0.2.13" - resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" - integrity sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ== - -buffer-from@^1.0.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" - integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== - -buffer@^5.2.1, buffer@^5.5.0: - version "5.7.1" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" - integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== - dependencies: - base64-js "^1.3.1" - ieee754 "^1.1.13" - -builtin-modules@^3.3.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.3.0.tgz#cae62812b89801e9656336e46223e030386be7b6" - integrity sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw== - -builtins@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/builtins/-/builtins-5.0.1.tgz#87f6db9ab0458be728564fa81d876d8d74552fa9" - integrity sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ== - dependencies: - semver "^7.0.0" - -bumpp@^9.1.0: - version "9.1.0" - resolved "https://registry.yarnpkg.com/bumpp/-/bumpp-9.1.0.tgz#31d00a576ee795b3c6fe5faf392c21f33ee3eeb4" - integrity sha512-m3+YD8uoa0VttG+RV4oKr3lK60gkUn1yPDaBTFwT7xrdJUsy7Jm0VYgx457HI3VPAOX8szLmy1x2y1QcvB+M8Q== - dependencies: - "@jsdevtools/ez-spawn" "^3.0.4" - c12 "^1.2.0" - cac "^6.7.14" - fast-glob "^3.2.12" - prompts "^2.4.2" - semver "^7.3.8" - -c12@^1.2.0: - version "1.4.1" - resolved "https://registry.yarnpkg.com/c12/-/c12-1.4.1.tgz#37a98e848fe528b5f6ece51d52d409dd2af8ae07" - integrity sha512-0x7pWfLZpZsgtyotXtuepJc0rZYE0Aw8PwNAXs0jSG9zq6Sl5xmbWnFqfmRY01ieZLHNbvneSFm9/x88CvzAuw== - dependencies: - chokidar "^3.5.3" - defu "^6.1.2" - dotenv "^16.0.3" - giget "^1.1.2" - jiti "^1.18.2" - mlly "^1.2.0" - ohash "^1.1.1" - pathe "^1.1.0" - perfect-debounce "^0.1.3" - pkg-types "^1.0.2" - rc9 "^2.1.0" - -cac@^6.7.14: - version "6.7.14" - resolved "https://registry.yarnpkg.com/cac/-/cac-6.7.14.tgz#804e1e6f506ee363cb0e3ccbb09cad5dd9870959" - integrity sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ== - -call-bind@^1.0.0, call-bind@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" - integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== - dependencies: - function-bind "^1.1.1" - get-intrinsic "^1.0.2" - -call-me-maybe@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/call-me-maybe/-/call-me-maybe-1.0.2.tgz#03f964f19522ba643b1b0693acb9152fe2074baa" - integrity sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ== - -callsites@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" - integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== - -camelcase@^5.0.0: - version "5.3.1" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" - integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== - -chalk@5.3.0: - version "5.3.0" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-5.3.0.tgz#67c20a7ebef70e7f3970a01f90fa210cb6860385" - integrity sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w== - -chalk@^2.0.0, chalk@^2.4.2: - version "2.4.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" - integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== - dependencies: - ansi-styles "^3.2.1" - escape-string-regexp "^1.0.5" - supports-color "^5.3.0" - -chalk@^4.0.0: - version "4.1.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" - integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== - dependencies: - ansi-styles "^4.1.0" - supports-color "^7.1.0" - -character-entities-legacy@^1.0.0: - version "1.1.4" - resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz#94bc1845dce70a5bb9d2ecc748725661293d8fc1" - integrity sha512-3Xnr+7ZFS1uxeiUDvV02wQ+QDbc55o97tIV5zHScSPJpcLm/r0DFPcoY3tYRp+VZukxuMeKgXYmsXQHO05zQeA== - -character-entities@^1.0.0: - version "1.2.4" - resolved "https://registry.yarnpkg.com/character-entities/-/character-entities-1.2.4.tgz#e12c3939b7eaf4e5b15e7ad4c5e28e1d48c5b16b" - integrity sha512-iBMyeEHxfVnIakwOuDXpVkc54HijNgCyQB2w0VfGQThle6NXn50zU6V/u+LDhxHcDUPojn6Kpga3PTAD8W1bQw== - -character-reference-invalid@^1.0.0: - version "1.1.4" - resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz#083329cda0eae272ab3dbbf37e9a382c13af1560" - integrity sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg== - -cheerio-select@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/cheerio-select/-/cheerio-select-2.1.0.tgz#4d8673286b8126ca2a8e42740d5e3c4884ae21b4" - integrity sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g== - dependencies: - boolbase "^1.0.0" - css-select "^5.1.0" - css-what "^6.1.0" - domelementtype "^2.3.0" - domhandler "^5.0.3" - domutils "^3.0.1" - -cheerio@^1.0.0-rc.9: - version "1.0.0-rc.12" - resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.12.tgz#788bf7466506b1c6bf5fae51d24a2c4d62e47683" - integrity sha512-VqR8m68vM46BNnuZ5NtnGBKIE/DfN0cRIzg9n40EIq9NOv90ayxLBXA8fXC5gquFRGJSTRqBq25Jt2ECLR431Q== - dependencies: - cheerio-select "^2.1.0" - dom-serializer "^2.0.0" - domhandler "^5.0.3" - domutils "^3.0.1" - htmlparser2 "^8.0.1" - parse5 "^7.0.0" - parse5-htmlparser2-tree-adapter "^7.0.0" - -chokidar-cli@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/chokidar-cli/-/chokidar-cli-3.0.0.tgz#29283666063b9e167559d30f247ff8fc48794eb7" - integrity sha512-xVW+Qeh7z15uZRxHOkP93Ux8A0xbPzwK4GaqD8dQOYc34TlkqUhVSS59fK36DOp5WdJlrRzlYSy02Ht99FjZqQ== - dependencies: - chokidar "^3.5.2" - lodash.debounce "^4.0.8" - lodash.throttle "^4.1.1" - yargs "^13.3.0" - -chokidar@^3.5.2, chokidar@^3.5.3: - version "3.5.3" - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.3.tgz#1cf37c8707b932bd1af1ae22c0432e2acd1903bd" - integrity sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw== - dependencies: - anymatch "~3.1.2" - braces "~3.0.2" - glob-parent "~5.1.2" - is-binary-path "~2.1.0" - is-glob "~4.0.1" - normalize-path "~3.0.0" - readdirp "~3.6.0" - optionalDependencies: - fsevents "~2.3.2" - -chownr@^1.1.1: - version "1.1.4" - resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" - integrity sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg== - -chownr@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece" - integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== - -chromium-bidi@0.4.7: - version "0.4.7" - resolved "https://registry.yarnpkg.com/chromium-bidi/-/chromium-bidi-0.4.7.tgz#4c022c2b0fb1d1c9b571fadf373042160e71d236" - integrity sha512-6+mJuFXwTMU6I3vYLs6IL8A1DyQTPjCfIL971X0aMPVGRbGnNfl6i6Cl0NMbxi2bRYLGESt9T2ZIMRM5PAEcIQ== - dependencies: - mitt "3.0.0" - -ci-info@^3.6.1: - version "3.8.0" - resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.8.0.tgz#81408265a5380c929f0bc665d62256628ce9ef91" - integrity sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw== - -clean-regexp@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/clean-regexp/-/clean-regexp-1.0.0.tgz#8df7c7aae51fd36874e8f8d05b9180bc11a3fed7" - integrity sha512-GfisEZEJvzKrmGWkvfhgzcz/BllN1USeqD2V6tg14OAOgaCD2Z/PUEuxnAZ/nPvmaHRG7a8y77p1T/IRQ4D1Hw== - dependencies: - escape-string-regexp "^1.0.5" - -cli-cursor@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-4.0.0.tgz#3cecfe3734bf4fe02a8361cbdc0f6fe28c6a57ea" - integrity sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg== - dependencies: - restore-cursor "^4.0.0" - -cli-truncate@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/cli-truncate/-/cli-truncate-4.0.0.tgz#6cc28a2924fee9e25ce91e973db56c7066e6172a" - integrity sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA== - dependencies: - slice-ansi "^5.0.0" - string-width "^7.0.0" - -cliui@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5" - integrity sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA== - dependencies: - string-width "^3.1.0" - strip-ansi "^5.2.0" - wrap-ansi "^5.1.0" - -cliui@^8.0.1: - version "8.0.1" - resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa" - integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ== - dependencies: - string-width "^4.2.0" - strip-ansi "^6.0.1" - wrap-ansi "^7.0.0" - -color-convert@^1.9.0: - version "1.9.3" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" - integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== - dependencies: - color-name "1.1.3" - -color-convert@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" - integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== - dependencies: - color-name "~1.1.4" - -color-name@1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" - integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== - -color-name@~1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" - integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== - -colorette@^2.0.19, colorette@^2.0.20: - version "2.0.20" - resolved "https://registry.yarnpkg.com/colorette/-/colorette-2.0.20.tgz#9eb793e6833067f7235902fcd3b09917a000a95a" - integrity sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w== - -colorsea@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/colorsea/-/colorsea-1.2.1.tgz#4207d879251ed2962f9cd6bb36112d1f342a2af2" - integrity sha512-EkYJGtJ7GcXe/aIkeAZDO/4KaKA8yaxdsXXBNR2MHsEZ6JIzBbAzKc3mH2D8VqGqMciqIpJhCZI1QI7nJQ2aDg== - -commander@11.1.0: - version "11.1.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-11.1.0.tgz#62fdce76006a68e5c1ab3314dc92e800eb83d906" - integrity sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ== - -commander@^6.1.0: - version "6.2.1" - resolved "https://registry.yarnpkg.com/commander/-/commander-6.2.1.tgz#0792eb682dfbc325999bb2b84fddddba110ac73c" - integrity sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA== - -commander@^7.2.0: - version "7.2.0" - resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7" - integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw== - -concat-map@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" - integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== - -consola@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/consola/-/consola-3.1.0.tgz#dfdfa62ceb68bc1f06e4a76ad688566bd8813baf" - integrity sha512-rrrJE6rP0qzl/Srg+C9x/AE5Kxfux7reVm1Wh0wCjuXvih6DqZgqDZe8auTD28fzJ9TF0mHlSDrPpWlujQRo1Q== - -cosmiconfig@8.1.3: - version "8.1.3" - resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-8.1.3.tgz#0e614a118fcc2d9e5afc2f87d53cd09931015689" - integrity sha512-/UkO2JKI18b5jVMJUp0lvKFMpa/Gye+ZgZjKD+DGEN9y7NRcf/nK1A0sp67ONmKtnDCNMS44E6jrk0Yc3bDuUw== - dependencies: - import-fresh "^3.2.1" - js-yaml "^4.1.0" - parse-json "^5.0.0" - path-type "^4.0.0" - -cross-fetch@3.1.5: - version "3.1.5" - resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.1.5.tgz#e1389f44d9e7ba767907f7af8454787952ab534f" - integrity sha512-lvb1SBsI0Z7GDwmuid+mU3kWVBwTVUbe7S0H52yaaAdQOXq2YktTCZdlAcNKFzE6QtRz0snpw9bNiPeOIkkQvw== - dependencies: - node-fetch "2.6.7" - -cross-spawn@^7.0.2, cross-spawn@^7.0.3: - version "7.0.3" - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" - integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== - dependencies: - path-key "^3.1.0" - shebang-command "^2.0.0" - which "^2.0.1" - -css-select@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/css-select/-/css-select-5.1.0.tgz#b8ebd6554c3637ccc76688804ad3f6a6fdaea8a6" - integrity sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg== - dependencies: - boolbase "^1.0.0" - css-what "^6.1.0" - domhandler "^5.0.2" - domutils "^3.0.1" - nth-check "^2.0.1" - -css-tree@^2.2.1: - version "2.3.1" - resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-2.3.1.tgz#10264ce1e5442e8572fc82fbe490644ff54b5c20" - integrity sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw== - dependencies: - mdn-data "2.0.30" - source-map-js "^1.0.1" - -css-tree@~2.2.0: - version "2.2.1" - resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-2.2.1.tgz#36115d382d60afd271e377f9c5f67d02bd48c032" - integrity sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA== - dependencies: - mdn-data "2.0.28" - source-map-js "^1.0.1" - -css-what@^6.1.0: - version "6.1.0" - resolved "https://registry.yarnpkg.com/css-what/-/css-what-6.1.0.tgz#fb5effcf76f1ddea2c81bdfaa4de44e79bac70f4" - integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw== - -cssesc@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" - integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== - -csso@^5.0.5: - version "5.0.5" - resolved "https://registry.yarnpkg.com/csso/-/csso-5.0.5.tgz#f9b7fe6cc6ac0b7d90781bb16d5e9874303e2ca6" - integrity sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ== - dependencies: - css-tree "~2.2.0" - -debug@4, debug@4.3.4, debug@^4.0.0, debug@^4.1.1, debug@^4.3.2, debug@^4.3.4: - version "4.3.4" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" - integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== - dependencies: - ms "2.1.2" - -debug@^3.2.7: - version "3.2.7" - resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" - integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== - dependencies: - ms "^2.1.1" - -decamelize@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" - integrity sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA== - -decompress-response@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz#ca387612ddb7e104bd16d85aab00d5ecf09c66fc" - integrity sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ== - dependencies: - mimic-response "^3.1.0" - -deep-extend@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" - integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== - -deep-is@^0.1.3: - version "0.1.4" - resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" - integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== - -define-properties@^1.1.3, define-properties@^1.1.4: - version "1.2.0" - resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.0.tgz#52988570670c9eacedd8064f4a990f2405849bd5" - integrity sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA== - dependencies: - has-property-descriptors "^1.0.0" - object-keys "^1.1.1" - -defu@^6.1.2: - version "6.1.2" - resolved "https://registry.yarnpkg.com/defu/-/defu-6.1.2.tgz#1217cba167410a1765ba93893c6dbac9ed9d9e5c" - integrity sha512-+uO4+qr7msjNNWKYPHqN/3+Dx3NFkmIzayk2L1MyZQlvgZb/J1A0fo410dpKrN2SnqFjt8n4JL8fDJE0wIgjFQ== - -destr@^1.2.2: - version "1.2.2" - resolved "https://registry.yarnpkg.com/destr/-/destr-1.2.2.tgz#7ba9befcafb645a50e76b260449c63927b51e22f" - integrity sha512-lrbCJwD9saUQrqUfXvl6qoM+QN3W7tLV5pAOs+OqOmopCCz/JkE05MHedJR1xfk4IAnZuJXPVuN5+7jNA2ZCiA== - -detect-libc@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.1.tgz#e1897aa88fa6ad197862937fbc0441ef352ee0cd" - integrity sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w== - -devtools-protocol@0.0.1120988: - version "0.0.1120988" - resolved "https://registry.yarnpkg.com/devtools-protocol/-/devtools-protocol-0.0.1120988.tgz#8fe49088919ae3b8df7235774633763f1f925066" - integrity sha512-39fCpE3Z78IaIPChJsP6Lhmkbf4dWXOmzLk/KFTdRkNk/0JymRIfUynDVRndV9HoDz8PyalK1UH21ST/ivwW5Q== - -dir-glob@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" - integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== - dependencies: - path-type "^4.0.0" - -doctrine@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" - integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== - dependencies: - esutils "^2.0.2" - -doctrine@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" - integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== - dependencies: - esutils "^2.0.2" - -dom-serializer@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-2.0.0.tgz#e41b802e1eedf9f6cae183ce5e622d789d7d8e53" - integrity sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg== - dependencies: - domelementtype "^2.3.0" - domhandler "^5.0.2" - entities "^4.2.0" - -domelementtype@^2.3.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" - integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== - -domhandler@^5.0.1, domhandler@^5.0.2, domhandler@^5.0.3: - version "5.0.3" - resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-5.0.3.tgz#cc385f7f751f1d1fc650c21374804254538c7d31" - integrity sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w== - dependencies: - domelementtype "^2.3.0" - -domutils@^3.0.1: - version "3.0.1" - resolved "https://registry.yarnpkg.com/domutils/-/domutils-3.0.1.tgz#696b3875238338cb186b6c0612bd4901c89a4f1c" - integrity sha512-z08c1l761iKhDFtfXO04C7kTdPBLi41zwOZl00WS8b5eiaebNpY00HKbztwBq+e3vyqWNwWF3mP9YLUeqIrF+Q== - dependencies: - dom-serializer "^2.0.0" - domelementtype "^2.3.0" - domhandler "^5.0.1" - -dotenv@^16.0.3: - version "16.0.3" - resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.0.3.tgz#115aec42bac5053db3c456db30cc243a5a836a07" - integrity sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ== - -emoji-regex@^10.3.0: - version "10.3.0" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-10.3.0.tgz#76998b9268409eb3dae3de989254d456e70cfe23" - integrity sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw== - -emoji-regex@^7.0.1: - version "7.0.3" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" - integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== - -emoji-regex@^8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" - integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== - -end-of-stream@^1.1.0, end-of-stream@^1.4.1: - version "1.4.4" - resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" - integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== - dependencies: - once "^1.4.0" - -entities@^4.2.0, entities@^4.3.0, entities@^4.4.0: - version "4.4.0" - resolved "https://registry.yarnpkg.com/entities/-/entities-4.4.0.tgz#97bdaba170339446495e653cfd2db78962900174" - integrity sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA== - -entities@~2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/entities/-/entities-2.1.0.tgz#992d3129cf7df6870b96c57858c249a120f8b8b5" - integrity sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w== - -error-ex@^1.3.1: - version "1.3.2" - resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" - integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== - dependencies: - is-arrayish "^0.2.1" - -es-abstract@^1.19.0, es-abstract@^1.20.4: - version "1.21.2" - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.21.2.tgz#a56b9695322c8a185dc25975aa3b8ec31d0e7eff" - integrity sha512-y/B5POM2iBnIxCiernH1G7rC9qQoM77lLIMQLuob0zhp8C56Po81+2Nj0WFKnd0pNReDTnkYryc+zhOzpEIROg== - dependencies: - array-buffer-byte-length "^1.0.0" - available-typed-arrays "^1.0.5" - call-bind "^1.0.2" - es-set-tostringtag "^2.0.1" - es-to-primitive "^1.2.1" - function.prototype.name "^1.1.5" - get-intrinsic "^1.2.0" - get-symbol-description "^1.0.0" - globalthis "^1.0.3" - gopd "^1.0.1" - has "^1.0.3" - has-property-descriptors "^1.0.0" - has-proto "^1.0.1" - has-symbols "^1.0.3" - internal-slot "^1.0.5" - is-array-buffer "^3.0.2" - is-callable "^1.2.7" - is-negative-zero "^2.0.2" - is-regex "^1.1.4" - is-shared-array-buffer "^1.0.2" - is-string "^1.0.7" - is-typed-array "^1.1.10" - is-weakref "^1.0.2" - object-inspect "^1.12.3" - object-keys "^1.1.1" - object.assign "^4.1.4" - regexp.prototype.flags "^1.4.3" - safe-regex-test "^1.0.0" - string.prototype.trim "^1.2.7" - string.prototype.trimend "^1.0.6" - string.prototype.trimstart "^1.0.6" - typed-array-length "^1.0.4" - unbox-primitive "^1.0.2" - which-typed-array "^1.1.9" - -es-set-tostringtag@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz#338d502f6f674301d710b80c8592de8a15f09cd8" - integrity sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg== - dependencies: - get-intrinsic "^1.1.3" - has "^1.0.3" - has-tostringtag "^1.0.0" - -es-shim-unscopables@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz#702e632193201e3edf8713635d083d378e510241" - integrity sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w== - dependencies: - has "^1.0.3" - -es-to-primitive@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" - integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== - dependencies: - is-callable "^1.1.4" - is-date-object "^1.0.1" - is-symbol "^1.0.2" - -esbuild@~0.17.6: - version "0.17.11" - resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.17.11.tgz#9f3122643b21d7e7731e42f18576c10bfa28152b" - integrity sha512-pAMImyokbWDtnA/ufPxjQg0fYo2DDuzAlqwnDvbXqHLphe+m80eF++perYKVm8LeTuj2zUuFXC+xgSVxyoHUdg== - optionalDependencies: - "@esbuild/android-arm" "0.17.11" - "@esbuild/android-arm64" "0.17.11" - "@esbuild/android-x64" "0.17.11" - "@esbuild/darwin-arm64" "0.17.11" - "@esbuild/darwin-x64" "0.17.11" - "@esbuild/freebsd-arm64" "0.17.11" - "@esbuild/freebsd-x64" "0.17.11" - "@esbuild/linux-arm" "0.17.11" - "@esbuild/linux-arm64" "0.17.11" - "@esbuild/linux-ia32" "0.17.11" - "@esbuild/linux-loong64" "0.17.11" - "@esbuild/linux-mips64el" "0.17.11" - "@esbuild/linux-ppc64" "0.17.11" - "@esbuild/linux-riscv64" "0.17.11" - "@esbuild/linux-s390x" "0.17.11" - "@esbuild/linux-x64" "0.17.11" - "@esbuild/netbsd-x64" "0.17.11" - "@esbuild/openbsd-x64" "0.17.11" - "@esbuild/sunos-x64" "0.17.11" - "@esbuild/win32-arm64" "0.17.11" - "@esbuild/win32-ia32" "0.17.11" - "@esbuild/win32-x64" "0.17.11" - -escalade@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" - integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== - -escape-string-regexp@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" - integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== - -escape-string-regexp@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" - integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== - -eslint-import-resolver-node@^0.3.7: - version "0.3.7" - resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz#83b375187d412324a1963d84fa664377a23eb4d7" - integrity sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA== - dependencies: - debug "^3.2.7" - is-core-module "^2.11.0" - resolve "^1.22.1" - -eslint-module-utils@^2.7.4: - version "2.7.4" - resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz#4f3e41116aaf13a20792261e61d3a2e7e0583974" - integrity sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA== - dependencies: - debug "^3.2.7" - -eslint-plugin-antfu@0.38.6: - version "0.38.6" - resolved "https://registry.yarnpkg.com/eslint-plugin-antfu/-/eslint-plugin-antfu-0.38.6.tgz#20a44e77921a065160017ba80555ccfb77fe6dbd" - integrity sha512-oQImiNKe+iGwoznuydq70s6oJHpaUE/hCHFeu4v7oy/hfAw7oBuCNi6TCZtQ/MUr+4XyQwq9sdC3fsLZC+DF1g== - dependencies: - "@typescript-eslint/utils" "^5.59.0" - -eslint-plugin-es@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-es/-/eslint-plugin-es-4.1.0.tgz#f0822f0c18a535a97c3e714e89f88586a7641ec9" - integrity sha512-GILhQTnjYE2WorX5Jyi5i4dz5ALWxBIdQECVQavL6s7cI76IZTDWleTHkxz/QT3kvcs2QlGHvKLYsSlPOlPXnQ== - dependencies: - eslint-utils "^2.0.0" - regexpp "^3.0.0" - -eslint-plugin-eslint-comments@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-eslint-comments/-/eslint-plugin-eslint-comments-3.2.0.tgz#9e1cd7b4413526abb313933071d7aba05ca12ffa" - integrity sha512-0jkOl0hfojIHHmEHgmNdqv4fmh7300NdpA9FFpF7zaoLvB/QeXOGNLIo86oAveJFrfB1p05kC8hpEMHM8DwWVQ== - dependencies: - escape-string-regexp "^1.0.5" - ignore "^5.0.5" - -eslint-plugin-html@^7.1.0: - version "7.1.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-html/-/eslint-plugin-html-7.1.0.tgz#aec2a3772b40ccf51a5be4f972f07600539d3b3e" - integrity sha512-fNLRraV/e6j8e3XYOC9xgND4j+U7b1Rq+OygMlLcMg+wI/IpVbF+ubQa3R78EjKB9njT6TQOlcK5rFKBVVtdfg== - dependencies: - htmlparser2 "^8.0.1" - -eslint-plugin-import@^2.27.5: - version "2.27.5" - resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz#876a6d03f52608a3e5bb439c2550588e51dd6c65" - integrity sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow== - dependencies: - array-includes "^3.1.6" - array.prototype.flat "^1.3.1" - array.prototype.flatmap "^1.3.1" - debug "^3.2.7" - doctrine "^2.1.0" - eslint-import-resolver-node "^0.3.7" - eslint-module-utils "^2.7.4" - has "^1.0.3" - is-core-module "^2.11.0" - is-glob "^4.0.3" - minimatch "^3.1.2" - object.values "^1.1.6" - resolve "^1.22.1" - semver "^6.3.0" - tsconfig-paths "^3.14.1" - -eslint-plugin-jest@^27.2.1: - version "27.2.1" - resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-27.2.1.tgz#b85b4adf41c682ea29f1f01c8b11ccc39b5c672c" - integrity sha512-l067Uxx7ZT8cO9NJuf+eJHvt6bqJyz2Z29wykyEdz/OtmcELQl2MQGQLX8J94O1cSJWAwUSEvCjwjA7KEK3Hmg== - dependencies: - "@typescript-eslint/utils" "^5.10.0" - -eslint-plugin-jsonc@^2.7.0: - version "2.7.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-jsonc/-/eslint-plugin-jsonc-2.7.0.tgz#ffce6c670f76aeb74765ac2f0fd97071d791d188" - integrity sha512-DZgC71h/hZ9t5k/OGAKOMdJCleg2neZLL7No+YYi2ZMroCN4X5huZdrLf1USbrc6UTHwYujd1EDwXHg1qJ6CYw== - dependencies: - "@eslint-community/eslint-utils" "^4.2.0" - jsonc-eslint-parser "^2.0.4" - natural-compare "^1.4.0" - -eslint-plugin-markdown@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-markdown/-/eslint-plugin-markdown-3.0.0.tgz#69a63ab3445076a3c2eb6fce6f5114785b19d318" - integrity sha512-hRs5RUJGbeHDLfS7ELanT0e29Ocyssf/7kBM+p7KluY5AwngGkDf8Oyu4658/NZSGTTq05FZeWbkxXtbVyHPwg== - dependencies: - mdast-util-from-markdown "^0.8.5" - -eslint-plugin-n@^15.7.0: - version "15.7.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-n/-/eslint-plugin-n-15.7.0.tgz#e29221d8f5174f84d18f2eb94765f2eeea033b90" - integrity sha512-jDex9s7D/Qial8AGVIHq4W7NswpUD5DPDL2RH8Lzd9EloWUuvUkHfv4FRLMipH5q2UtyurorBkPeNi1wVWNh3Q== - dependencies: - builtins "^5.0.1" - eslint-plugin-es "^4.1.0" - eslint-utils "^3.0.0" - ignore "^5.1.1" - is-core-module "^2.11.0" - minimatch "^3.1.2" - resolve "^1.22.1" - semver "^7.3.8" - -eslint-plugin-no-only-tests@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-no-only-tests/-/eslint-plugin-no-only-tests-3.1.0.tgz#f38e4935c6c6c4842bf158b64aaa20c366fe171b" - integrity sha512-Lf4YW/bL6Un1R6A76pRZyE1dl1vr31G/ev8UzIc/geCgFWyrKil8hVjYqWVKGB/UIGmb6Slzs9T0wNezdSVegw== - -eslint-plugin-promise@^6.1.1: - version "6.1.1" - resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-6.1.1.tgz#269a3e2772f62875661220631bd4dafcb4083816" - integrity sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig== - -eslint-plugin-unicorn@^46.0.0: - version "46.0.1" - resolved "https://registry.yarnpkg.com/eslint-plugin-unicorn/-/eslint-plugin-unicorn-46.0.1.tgz#222ff65b30b2d9ed6f90de908ceb6a05dd0514d9" - integrity sha512-setGhMTiLAddg1asdwjZ3hekIN5zLznNa5zll7pBPwFOka6greCKDQydfqy4fqyUhndi74wpDzClSQMEcmOaew== - dependencies: - "@babel/helper-validator-identifier" "^7.19.1" - "@eslint-community/eslint-utils" "^4.1.2" - ci-info "^3.6.1" - clean-regexp "^1.0.0" - esquery "^1.4.0" - indent-string "^4.0.0" - is-builtin-module "^3.2.0" - jsesc "^3.0.2" - lodash "^4.17.21" - pluralize "^8.0.0" - read-pkg-up "^7.0.1" - regexp-tree "^0.1.24" - regjsparser "^0.9.1" - safe-regex "^2.1.1" - semver "^7.3.8" - strip-indent "^3.0.0" - -eslint-plugin-unused-imports@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-unused-imports/-/eslint-plugin-unused-imports-2.0.0.tgz#d8db8c4d0cfa0637a8b51ce3fd7d1b6bc3f08520" - integrity sha512-3APeS/tQlTrFa167ThtP0Zm0vctjr4M44HMpeg1P4bK6wItarumq0Ma82xorMKdFsWpphQBlRPzw/pxiVELX1A== - dependencies: - eslint-rule-composer "^0.3.0" - -eslint-plugin-vue@^9.11.0: - version "9.11.1" - resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-9.11.1.tgz#71e37cc74ac0a9bca07d2e8c471a047b8ac254fb" - integrity sha512-SNtBGDrRkPUFsREswPceqdvZ7YVdWY+iCYiDC+RoxwVieeQ7GJU1FLDlkcaYTOD2os/YuVgI1Fdu8YGM7fmoow== - dependencies: - "@eslint-community/eslint-utils" "^4.3.0" - natural-compare "^1.4.0" - nth-check "^2.0.1" - postcss-selector-parser "^6.0.9" - semver "^7.3.5" - vue-eslint-parser "^9.0.1" - xml-name-validator "^4.0.0" - -eslint-plugin-yml@^1.5.0: - version "1.5.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-yml/-/eslint-plugin-yml-1.5.0.tgz#e7eb4ae96701ec0f7f9689f9dc84a49f41833240" - integrity sha512-iygN054g+ZrnYmtOXMnT+sx9iDNXt89/m0+506cQHeG0+5jJN8hY5iOPQLd3yfd50AfK/mSasajBWruf1SoHpQ== - dependencies: - debug "^4.3.2" - lodash "^4.17.21" - natural-compare "^1.4.0" - yaml-eslint-parser "^1.1.0" - -eslint-rule-composer@^0.3.0: - version "0.3.0" - resolved "https://registry.yarnpkg.com/eslint-rule-composer/-/eslint-rule-composer-0.3.0.tgz#79320c927b0c5c0d3d3d2b76c8b4a488f25bbaf9" - integrity sha512-bt+Sh8CtDmn2OajxvNO+BX7Wn4CIWMpTRm3MaiKPCQcnnlm0CS2mhui6QaoeQugs+3Kj2ESKEEGJUdVafwhiCg== - -eslint-scope@^5.1.1: - version "5.1.1" - resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" - integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== - dependencies: - esrecurse "^4.3.0" - estraverse "^4.1.1" - -eslint-scope@^7.1.1: - version "7.1.1" - resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.1.1.tgz#fff34894c2f65e5226d3041ac480b4513a163642" - integrity sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw== - dependencies: - esrecurse "^4.3.0" - estraverse "^5.2.0" - -eslint-scope@^7.2.0: - version "7.2.0" - resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.0.tgz#f21ebdafda02352f103634b96dd47d9f81ca117b" - integrity sha512-DYj5deGlHBfMt15J7rdtyKNq/Nqlv5KfU4iodrQ019XESsRnwXH9KAE0y3cwtUHDo2ob7CypAnCqefh6vioWRw== - dependencies: - esrecurse "^4.3.0" - estraverse "^5.2.0" - -eslint-utils@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27" - integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== - dependencies: - eslint-visitor-keys "^1.1.0" - -eslint-utils@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-3.0.0.tgz#8aebaface7345bb33559db0a1f13a1d2d48c3672" - integrity sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA== - dependencies: - eslint-visitor-keys "^2.0.0" - -eslint-visitor-keys@^1.1.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" - integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== - -eslint-visitor-keys@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" - integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== - -eslint-visitor-keys@^3.0.0, eslint-visitor-keys@^3.3.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826" - integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA== - -eslint-visitor-keys@^3.4.1: - version "3.4.1" - resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.1.tgz#c22c48f48942d08ca824cc526211ae400478a994" - integrity sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA== - -eslint@^8.40.0: - version "8.40.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.40.0.tgz#a564cd0099f38542c4e9a2f630fa45bf33bc42a4" - integrity sha512-bvR+TsP9EHL3TqNtj9sCNJVAFK3fBN8Q7g5waghxyRsPLIMwL73XSKnZFK0hk/O2ANC+iAoq6PWMQ+IfBAJIiQ== - dependencies: - "@eslint-community/eslint-utils" "^4.2.0" - "@eslint-community/regexpp" "^4.4.0" - "@eslint/eslintrc" "^2.0.3" - "@eslint/js" "8.40.0" - "@humanwhocodes/config-array" "^0.11.8" - "@humanwhocodes/module-importer" "^1.0.1" - "@nodelib/fs.walk" "^1.2.8" - ajv "^6.10.0" - chalk "^4.0.0" - cross-spawn "^7.0.2" - debug "^4.3.2" - doctrine "^3.0.0" - escape-string-regexp "^4.0.0" - eslint-scope "^7.2.0" - eslint-visitor-keys "^3.4.1" - espree "^9.5.2" - esquery "^1.4.2" - esutils "^2.0.2" - fast-deep-equal "^3.1.3" - file-entry-cache "^6.0.1" - find-up "^5.0.0" - glob-parent "^6.0.2" - globals "^13.19.0" - grapheme-splitter "^1.0.4" - ignore "^5.2.0" - import-fresh "^3.0.0" - imurmurhash "^0.1.4" - is-glob "^4.0.0" - is-path-inside "^3.0.3" - js-sdsl "^4.1.4" - 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.1" - strip-ansi "^6.0.1" - strip-json-comments "^3.1.0" - text-table "^0.2.0" - -espree@^9.0.0, espree@^9.3.1: - version "9.5.0" - resolved "https://registry.yarnpkg.com/espree/-/espree-9.5.0.tgz#3646d4e3f58907464edba852fa047e6a27bdf113" - integrity sha512-JPbJGhKc47++oo4JkEoTe2wjy4fmMwvFpgJT9cQzmfXKp22Dr6Hf1tdCteLz1h0P3t+mGvWZ+4Uankvh8+c6zw== - dependencies: - acorn "^8.8.0" - acorn-jsx "^5.3.2" - eslint-visitor-keys "^3.3.0" - -espree@^9.5.2: - version "9.5.2" - resolved "https://registry.yarnpkg.com/espree/-/espree-9.5.2.tgz#e994e7dc33a082a7a82dceaf12883a829353215b" - integrity sha512-7OASN1Wma5fum5SrNhFMAMJxOUAbhyfQ8dQ//PJaJbNw0URTPWqIghHWt1MmAANKhHZIYOHruW4Kw4ruUWOdGw== - dependencies: - acorn "^8.8.0" - acorn-jsx "^5.3.2" - eslint-visitor-keys "^3.4.1" - -esquery@^1.4.0, esquery@^1.4.2: - version "1.5.0" - resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b" - integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg== - dependencies: - estraverse "^5.1.0" - -esrecurse@^4.3.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" - integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== - dependencies: - estraverse "^5.2.0" - -estraverse@^4.1.1: - version "4.3.0" - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" - integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== - -estraverse@^5.1.0, estraverse@^5.2.0: - version "5.3.0" - resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" - integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== - -esutils@^2.0.2: - version "2.0.3" - resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" - integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== - -eventemitter3@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-5.0.1.tgz#53f5ffd0a492ac800721bb42c66b841de96423c4" - integrity sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA== - -execa@8.0.1: - version "8.0.1" - resolved "https://registry.yarnpkg.com/execa/-/execa-8.0.1.tgz#51f6a5943b580f963c3ca9c6321796db8cc39b8c" - integrity sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg== - dependencies: - cross-spawn "^7.0.3" - get-stream "^8.0.1" - human-signals "^5.0.0" - is-stream "^3.0.0" - merge-stream "^2.0.0" - npm-run-path "^5.1.0" - onetime "^6.0.0" - signal-exit "^4.1.0" - strip-final-newline "^3.0.0" - -expand-template@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/expand-template/-/expand-template-2.0.3.tgz#6e14b3fcee0f3a6340ecb57d2e8918692052a47c" - integrity sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg== - -extract-zip@2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/extract-zip/-/extract-zip-2.0.1.tgz#663dca56fe46df890d5f131ef4a06d22bb8ba13a" - integrity sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg== - dependencies: - debug "^4.1.1" - get-stream "^5.1.0" - yauzl "^2.10.0" - optionalDependencies: - "@types/yauzl" "^2.9.1" - -fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: - version "3.1.3" - resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" - integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== - -fast-glob@^3.2.12, fast-glob@^3.2.9: - version "3.2.12" - resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.12.tgz#7f39ec99c2e6ab030337142da9e0c18f37afae80" - integrity sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w== - dependencies: - "@nodelib/fs.stat" "^2.0.2" - "@nodelib/fs.walk" "^1.2.3" - glob-parent "^5.1.2" - merge2 "^1.3.0" - micromatch "^4.0.4" - -fast-json-stable-stringify@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" - integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== - -fast-levenshtein@^2.0.6: - version "2.0.6" - resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" - integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== - -fastq@^1.6.0: - version "1.15.0" - resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.15.0.tgz#d04d07c6a2a68fe4599fea8d2e103a937fae6b3a" - integrity sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw== - dependencies: - reusify "^1.0.4" - -fd-slicer@~1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/fd-slicer/-/fd-slicer-1.1.0.tgz#25c7c89cb1f9077f8891bbe61d8f390eae256f1e" - integrity sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g== - dependencies: - pend "~1.2.0" - -file-entry-cache@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" - integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== - dependencies: - flat-cache "^3.0.4" - -fill-range@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" - integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== - dependencies: - to-regex-range "^5.0.1" - -find-up@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" - integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== - dependencies: - locate-path "^3.0.0" - -find-up@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" - integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== - dependencies: - locate-path "^5.0.0" - path-exists "^4.0.0" - -find-up@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" - integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== - dependencies: - locate-path "^6.0.0" - path-exists "^4.0.0" - -flat-cache@^3.0.4: - version "3.0.4" - resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" - integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== - dependencies: - flatted "^3.1.0" - rimraf "^3.0.2" - -flat@^5.0.2: - version "5.0.2" - resolved "https://registry.yarnpkg.com/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241" - integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== - -flatted@^3.1.0: - version "3.2.7" - resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.2.7.tgz#609f39207cb614b89d0765b477cb2d437fbf9787" - integrity sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ== - -for-each@^0.3.3: - version "0.3.3" - resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" - integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== - dependencies: - is-callable "^1.1.3" - -fs-constants@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" - integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== - -fs-extra@^11.1.1: - version "11.1.1" - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-11.1.1.tgz#da69f7c39f3b002378b0954bb6ae7efdc0876e2d" - integrity sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ== - dependencies: - graceful-fs "^4.2.0" - jsonfile "^6.0.1" - universalify "^2.0.0" - -fs-minipass@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" - integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== - dependencies: - minipass "^3.0.0" - -fs.realpath@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" - integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== - -fsevents@~2.3.2: - version "2.3.2" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" - integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== - -function-bind@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" - integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== - -function.prototype.name@^1.1.5: - version "1.1.5" - resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.5.tgz#cce0505fe1ffb80503e6f9e46cc64e46a12a9621" - integrity sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.0" - functions-have-names "^1.2.2" - -functions-have-names@^1.2.2: - version "1.2.3" - resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" - integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== - -get-caller-file@^2.0.1, get-caller-file@^2.0.5: - version "2.0.5" - resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" - integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== - -get-east-asian-width@^1.0.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/get-east-asian-width/-/get-east-asian-width-1.2.0.tgz#5e6ebd9baee6fb8b7b6bd505221065f0cd91f64e" - integrity sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA== - -get-intrinsic@^1.0.2, get-intrinsic@^1.1.1, get-intrinsic@^1.1.3, get-intrinsic@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.0.tgz#7ad1dc0535f3a2904bba075772763e5051f6d05f" - integrity sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q== - dependencies: - function-bind "^1.1.1" - has "^1.0.3" - has-symbols "^1.0.3" - -get-stream@^5.1.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-5.2.0.tgz#4966a1795ee5ace65e706c4b7beb71257d6e22d3" - integrity sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA== - dependencies: - pump "^3.0.0" - -get-stream@^8.0.1: - version "8.0.1" - resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-8.0.1.tgz#def9dfd71742cd7754a7761ed43749a27d02eca2" - integrity sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA== - -get-symbol-description@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.0.tgz#7fdb81c900101fbd564dd5f1a30af5aadc1e58d6" - integrity sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw== - dependencies: - call-bind "^1.0.2" - get-intrinsic "^1.1.1" - -get-tsconfig@^4.4.0: - version "4.4.0" - resolved "https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.4.0.tgz#64eee64596668a81b8fce18403f94f245ee0d4e5" - integrity sha512-0Gdjo/9+FzsYhXCEFueo2aY1z1tpXrxWZzP7k8ul9qt1U5o8rYJwTJYmaeHdrVosYIVYkOy2iwCJ9FdpocJhPQ== - -giget@^1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/giget/-/giget-1.1.2.tgz#f99a49cb0ff85479c8c3612cdc7ca27f2066e818" - integrity sha512-HsLoS07HiQ5oqvObOI+Qb2tyZH4Gj5nYGfF9qQcZNrPw+uEFhdXtgJr01aO2pWadGHucajYDLxxbtQkm97ON2A== - dependencies: - colorette "^2.0.19" - defu "^6.1.2" - https-proxy-agent "^5.0.1" - mri "^1.2.0" - node-fetch-native "^1.0.2" - pathe "^1.1.0" - tar "^6.1.13" - -github-from-package@0.0.0: - version "0.0.0" - resolved "https://registry.yarnpkg.com/github-from-package/-/github-from-package-0.0.0.tgz#97fb5d96bfde8973313f20e8288ef9a167fa64ce" - integrity sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw== - -glob-parent@^5.1.2, glob-parent@~5.1.2: - version "5.1.2" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" - integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== - dependencies: - is-glob "^4.0.1" - -glob-parent@^6.0.2: - version "6.0.2" - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" - integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== - dependencies: - is-glob "^4.0.3" - -glob@^7.0.6, glob@^7.1.3: - version "7.2.3" - resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" - integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== - dependencies: - fs.realpath "^1.0.0" - inflight "^1.0.4" - inherits "2" - minimatch "^3.1.1" - once "^1.3.0" - path-is-absolute "^1.0.0" - -globals@^13.19.0: - version "13.20.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-13.20.0.tgz#ea276a1e508ffd4f1612888f9d1bad1e2717bf82" - integrity sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ== - dependencies: - type-fest "^0.20.2" - -globalthis@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.3.tgz#5852882a52b80dc301b0660273e1ed082f0b6ccf" - integrity sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA== - dependencies: - define-properties "^1.1.3" - -globby@^11.1.0: - version "11.1.0" - resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" - integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== - dependencies: - array-union "^2.1.0" - dir-glob "^3.0.1" - fast-glob "^3.2.9" - ignore "^5.2.0" - merge2 "^1.4.1" - slash "^3.0.0" - -gopd@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" - integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== - dependencies: - get-intrinsic "^1.1.3" - -graceful-fs@^4.1.6, graceful-fs@^4.2.0: - version "4.2.10" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.10.tgz#147d3a006da4ca3ce14728c7aefc287c367d7a6c" - integrity sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA== - -grapheme-splitter@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz#9cf3a665c6247479896834af35cf1dbb4400767e" - integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ== - -has-bigints@^1.0.1, has-bigints@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" - integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== - -has-flag@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" - integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== - -has-flag@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" - integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== - -has-property-descriptors@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz#610708600606d36961ed04c196193b6a607fa861" - integrity sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ== - dependencies: - get-intrinsic "^1.1.1" - -has-proto@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.1.tgz#1885c1305538958aff469fef37937c22795408e0" - integrity sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg== - -has-symbols@^1.0.2, has-symbols@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" - integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== - -has-tostringtag@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.0.tgz#7e133818a7d394734f941e73c3d3f9291e658b25" - integrity sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ== - dependencies: - has-symbols "^1.0.2" - -has@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" - integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== - dependencies: - function-bind "^1.1.1" - -hosted-git-info@^2.1.4: - version "2.8.9" - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" - integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== - -hosted-git-info@^4.0.2: - version "4.1.0" - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-4.1.0.tgz#827b82867e9ff1c8d0c4d9d53880397d2c86d224" - integrity sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA== - dependencies: - lru-cache "^6.0.0" - -htmlparser2@^8.0.1: - version "8.0.1" - resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-8.0.1.tgz#abaa985474fcefe269bc761a779b544d7196d010" - integrity sha512-4lVbmc1diZC7GUJQtRQ5yBAeUCL1exyMwmForWkRLnwyzWBFxN633SALPMGYaWZvKe9j1pRZJpauvmxENSp/EA== - dependencies: - domelementtype "^2.3.0" - domhandler "^5.0.2" - domutils "^3.0.1" - entities "^4.3.0" - -http-proxy-agent@5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz#5129800203520d434f142bc78ff3c170800f2b43" - integrity sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w== - dependencies: - "@tootallnate/once" "2" - agent-base "6" - debug "4" - -https-proxy-agent@5.0.1, https-proxy-agent@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz#c59ef224a04fe8b754f3db0063a25ea30d0005d6" - integrity sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA== - dependencies: - agent-base "6" - debug "4" - -human-signals@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-5.0.0.tgz#42665a284f9ae0dade3ba41ebc37eb4b852f3a28" - integrity sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ== - -ieee754@^1.1.13: - version "1.2.1" - resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" - integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== - -ignore@^5.0.5, ignore@^5.1.1, ignore@^5.2.0: - version "5.2.4" - resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.4.tgz#a291c0c6178ff1b960befe47fcdec301674a6324" - integrity sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ== - -import-fresh@^3.0.0, import-fresh@^3.2.1: - version "3.3.0" - resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" - integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== - dependencies: - parent-module "^1.0.0" - resolve-from "^4.0.0" - -imurmurhash@^0.1.4: - version "0.1.4" - resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" - integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== - -indent-string@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/indent-string/-/indent-string-4.0.0.tgz#624f8f4497d619b2d9768531d58f4122854d7251" - integrity sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg== - -inflight@^1.0.4: - version "1.0.6" - resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" - integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== - dependencies: - once "^1.3.0" - wrappy "1" - -inherits@2, inherits@^2.0.3, inherits@^2.0.4: - version "2.0.4" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" - integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== - -ini@~1.3.0: - version "1.3.8" - resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" - integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== - -internal-slot@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.5.tgz#f2a2ee21f668f8627a4667f309dc0f4fb6674986" - integrity sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ== - dependencies: - get-intrinsic "^1.2.0" - has "^1.0.3" - side-channel "^1.0.4" - -is-alphabetical@^1.0.0: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-1.0.4.tgz#9e7d6b94916be22153745d184c298cbf986a686d" - integrity sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg== - -is-alphanumerical@^1.0.0: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz#7eb9a2431f855f6b1ef1a78e326df515696c4dbf" - integrity sha512-UzoZUr+XfVz3t3v4KyGEniVL9BDRoQtY7tOyrRybkVNjDFWyo1yhXNGrrBTQxp3ib9BLAWs7k2YKBQsFRkZG9A== - dependencies: - is-alphabetical "^1.0.0" - is-decimal "^1.0.0" - -is-array-buffer@^3.0.1, is-array-buffer@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.2.tgz#f2653ced8412081638ecb0ebbd0c41c6e0aecbbe" - integrity sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w== - dependencies: - call-bind "^1.0.2" - get-intrinsic "^1.2.0" - is-typed-array "^1.1.10" - -is-arrayish@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" - integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== - -is-bigint@^1.0.1: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" - integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== - dependencies: - has-bigints "^1.0.1" - -is-binary-path@~2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" - integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== - dependencies: - binary-extensions "^2.0.0" - -is-boolean-object@^1.1.0: - version "1.1.2" - resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" - integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== - dependencies: - call-bind "^1.0.2" - has-tostringtag "^1.0.0" - -is-builtin-module@^3.2.0: - version "3.2.1" - resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-3.2.1.tgz#f03271717d8654cfcaf07ab0463faa3571581169" - integrity sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A== - dependencies: - builtin-modules "^3.3.0" - -is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7: - version "1.2.7" - resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" - integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== - -is-core-module@^2.11.0, is-core-module@^2.9.0: - version "2.11.0" - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.11.0.tgz#ad4cb3e3863e814523c96f3f58d26cc570ff0144" - integrity sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw== - dependencies: - has "^1.0.3" - -is-date-object@^1.0.1: - version "1.0.5" - resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" - integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== - dependencies: - has-tostringtag "^1.0.0" - -is-decimal@^1.0.0: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-decimal/-/is-decimal-1.0.4.tgz#65a3a5958a1c5b63a706e1b333d7cd9f630d3fa5" - integrity sha512-RGdriMmQQvZ2aqaQq3awNA6dCGtKpiDFcOzrTWrDAT2MiWrKQVPmxLGHl7Y2nNu6led0kEyoX0enY0qXYsv9zw== - -is-extglob@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" - integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== - -is-fullwidth-code-point@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" - integrity sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w== - -is-fullwidth-code-point@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" - integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== - -is-fullwidth-code-point@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz#fae3167c729e7463f8461ce512b080a49268aa88" - integrity sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ== - -is-fullwidth-code-point@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-5.0.0.tgz#9609efced7c2f97da7b60145ef481c787c7ba704" - integrity sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA== - dependencies: - get-east-asian-width "^1.0.0" - -is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3, is-glob@~4.0.1: - version "4.0.3" - resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" - integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== - dependencies: - is-extglob "^2.1.1" - -is-hexadecimal@^1.0.0: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz#cc35c97588da4bd49a8eedd6bc4082d44dcb23a7" - integrity sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw== - -is-negative-zero@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.2.tgz#7bf6f03a28003b8b3965de3ac26f664d765f3150" - integrity sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA== - -is-number-object@^1.0.4: - version "1.0.7" - resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" - integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== - dependencies: - has-tostringtag "^1.0.0" - -is-number@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" - integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== - -is-path-inside@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" - integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== - -is-regex@^1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" - integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== - dependencies: - call-bind "^1.0.2" - has-tostringtag "^1.0.0" - -is-shared-array-buffer@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz#8f259c573b60b6a32d4058a1a07430c0a7344c79" - integrity sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA== - dependencies: - call-bind "^1.0.2" - -is-stream@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-3.0.0.tgz#e6bfd7aa6bef69f4f472ce9bb681e3e57b4319ac" - integrity sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA== - -is-string@^1.0.5, is-string@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" - integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== - dependencies: - has-tostringtag "^1.0.0" - -is-symbol@^1.0.2, is-symbol@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" - integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== - dependencies: - has-symbols "^1.0.2" - -is-typed-array@^1.1.10, is-typed-array@^1.1.9: - version "1.1.10" - resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.10.tgz#36a5b5cb4189b575d1a3e4b08536bfb485801e3f" - integrity sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A== - dependencies: - available-typed-arrays "^1.0.5" - call-bind "^1.0.2" - for-each "^0.3.3" - gopd "^1.0.1" - has-tostringtag "^1.0.0" - -is-weakref@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" - integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== - dependencies: - call-bind "^1.0.2" - -isexe@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" - integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== - -jiti@^1.18.2: - version "1.18.2" - resolved "https://registry.yarnpkg.com/jiti/-/jiti-1.18.2.tgz#80c3ef3d486ebf2450d9335122b32d121f2a83cd" - integrity sha512-QAdOptna2NYiSSpv0O/BwoHBSmz4YhpzJHyi+fnMRTXFjp7B8i/YG5Z8IfusxB1ufjcD2Sre1F3R+nX3fvy7gg== - -js-sdsl@^4.1.4: - version "4.3.0" - resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.3.0.tgz#aeefe32a451f7af88425b11fdb5f58c90ae1d711" - integrity sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ== - -js-tokens@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" - integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== - -js-yaml@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" - integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== - dependencies: - argparse "^2.0.1" - -jsesc@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-3.0.2.tgz#bb8b09a6597ba426425f2e4a07245c3d00b9343e" - integrity sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g== - -jsesc@~0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" - integrity sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA== - -json-parse-even-better-errors@^2.3.0: - version "2.3.1" - resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" - integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== - -json-schema-traverse@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" - integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== - -json-stable-stringify-without-jsonify@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" - integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== - -json5@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz#63d98d60f21b313b77c4d6da18bfa69d80e1d593" - integrity sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA== - dependencies: - minimist "^1.2.0" - -jsonc-eslint-parser@^2.0.4, jsonc-eslint-parser@^2.2.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/jsonc-eslint-parser/-/jsonc-eslint-parser-2.2.0.tgz#01ec9933dc3cc8302abb0c29884bf854c4f627e4" - integrity sha512-x5QjzBOORd+T2EjErIxJnkOEbLVEdD1ILEeBbIJt8Eq/zUn7P7M8qdnWiNVBK5f8oxnJpc6SBHOeeIEl/swPjg== - dependencies: - acorn "^8.5.0" - eslint-visitor-keys "^3.0.0" - espree "^9.0.0" - semver "^7.3.5" - -jsonc-parser@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/jsonc-parser/-/jsonc-parser-3.2.0.tgz#31ff3f4c2b9793f89c67212627c51c6394f88e76" - integrity sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w== - -jsonfile@^6.0.1: - version "6.1.0" - resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-6.1.0.tgz#bc55b2634793c679ec6403094eb13698a6ec0aae" - integrity sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ== - dependencies: - universalify "^2.0.0" - optionalDependencies: - graceful-fs "^4.1.6" - -keytar@^7.7.0: - version "7.9.0" - resolved "https://registry.yarnpkg.com/keytar/-/keytar-7.9.0.tgz#4c6225708f51b50cbf77c5aae81721964c2918cb" - integrity sha512-VPD8mtVtm5JNtA2AErl6Chp06JBfy7diFQ7TQQhdpWOl6MrCRB+eRbvAZUsbGQS9kiMq0coJsy0W0vHpDCkWsQ== - dependencies: - node-addon-api "^4.3.0" - prebuild-install "^7.0.1" - -kleur@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" - integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== - -leven@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" - integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== - -levn@^0.4.1: - version "0.4.1" - resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" - integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== - dependencies: - prelude-ls "^1.2.1" - type-check "~0.4.0" - -lilconfig@3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-3.0.0.tgz#f8067feb033b5b74dab4602a5f5029420be749bc" - integrity sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g== - -lines-and-columns@^1.1.6: - version "1.2.4" - resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" - integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== - -linkify-it@^3.0.1: - version "3.0.3" - resolved "https://registry.yarnpkg.com/linkify-it/-/linkify-it-3.0.3.tgz#a98baf44ce45a550efb4d49c769d07524cc2fa2e" - integrity sha512-ynTsyrFSdE5oZ/O9GEf00kPngmOfVwazR5GKDq6EYfhlpFug3J2zybX56a2PRRpc9P+FuSoGNAwjlbDs9jJBPQ== - dependencies: - uc.micro "^1.0.1" - -lint-staged@^15.2.0: - version "15.2.0" - resolved "https://registry.yarnpkg.com/lint-staged/-/lint-staged-15.2.0.tgz#3111534ca58096a3c8f70b044b6e7fe21b36f859" - integrity sha512-TFZzUEV00f+2YLaVPWBWGAMq7So6yQx+GG8YRMDeOEIf95Zn5RyiLMsEiX4KTNl9vq/w+NqRJkLA1kPIo15ufQ== - dependencies: - chalk "5.3.0" - commander "11.1.0" - debug "4.3.4" - execa "8.0.1" - lilconfig "3.0.0" - listr2 "8.0.0" - micromatch "4.0.5" - pidtree "0.6.0" - string-argv "0.3.2" - yaml "2.3.4" - -listr2@8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/listr2/-/listr2-8.0.0.tgz#aa7c230995f8ce378585f7c96c0c6d1cefa4700d" - integrity sha512-u8cusxAcyqAiQ2RhYvV7kRKNLgUvtObIbhOX2NCXqvp1UU32xIg5CT22ykS2TPKJXZWJwtK3IKLiqAGlGNE+Zg== - dependencies: - cli-truncate "^4.0.0" - colorette "^2.0.20" - eventemitter3 "^5.0.1" - log-update "^6.0.0" - rfdc "^1.3.0" - wrap-ansi "^9.0.0" - -local-pkg@^0.4.3: - version "0.4.3" - resolved "https://registry.yarnpkg.com/local-pkg/-/local-pkg-0.4.3.tgz#0ff361ab3ae7f1c19113d9bb97b98b905dbc4963" - integrity sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g== - -locate-path@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" - integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== - dependencies: - p-locate "^3.0.0" - path-exists "^3.0.0" - -locate-path@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" - integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== - dependencies: - p-locate "^4.1.0" - -locate-path@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" - integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== - dependencies: - p-locate "^5.0.0" - -lodash.debounce@^4.0.8: - version "4.0.8" - resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-4.0.8.tgz#82d79bff30a67c4005ffd5e2515300ad9ca4d7af" - integrity sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow== - -lodash.merge@^4.6.2: - version "4.6.2" - resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" - integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== - -lodash.throttle@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/lodash.throttle/-/lodash.throttle-4.1.1.tgz#c23e91b710242ac70c37f1e1cda9274cc39bf2f4" - integrity sha512-wIkUCfVKpVsWo3JSZlc+8MB5it+2AN5W8J7YVMST30UrvcQNZ1Okbj+rbVniijTWE6FGYy4XJq/rHkas8qJMLQ== - -lodash@^4.17.21: - version "4.17.21" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" - integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== - -log-update@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/log-update/-/log-update-6.0.0.tgz#0ddeb7ac6ad658c944c1de902993fce7c33f5e59" - integrity sha512-niTvB4gqvtof056rRIrTZvjNYE4rCUzO6X/X+kYjd7WFxXeJ0NwEFnRxX6ehkvv3jTwrXnNdtAak5XYZuIyPFw== - dependencies: - ansi-escapes "^6.2.0" - cli-cursor "^4.0.0" - slice-ansi "^7.0.0" - strip-ansi "^7.1.0" - wrap-ansi "^9.0.0" - -lru-cache@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" - integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== - dependencies: - yallist "^4.0.0" - -markdown-it@^12.3.2: - version "12.3.2" - resolved "https://registry.yarnpkg.com/markdown-it/-/markdown-it-12.3.2.tgz#bf92ac92283fe983fe4de8ff8abfb5ad72cd0c90" - integrity sha512-TchMembfxfNVpHkbtriWltGWc+m3xszaRD0CZup7GFFhzIgQqxIfn3eGj1yZpfuflzPvfkt611B2Q/Bsk1YnGg== - dependencies: - argparse "^2.0.1" - entities "~2.1.0" - linkify-it "^3.0.1" - mdurl "^1.0.1" - uc.micro "^1.0.5" - -mdast-util-from-markdown@^0.8.5: - version "0.8.5" - resolved "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-0.8.5.tgz#d1ef2ca42bc377ecb0463a987910dae89bd9a28c" - integrity sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ== - dependencies: - "@types/mdast" "^3.0.0" - mdast-util-to-string "^2.0.0" - micromark "~2.11.0" - parse-entities "^2.0.0" - unist-util-stringify-position "^2.0.0" - -mdast-util-to-string@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-2.0.0.tgz#b8cfe6a713e1091cb5b728fc48885a4767f8b97b" - integrity sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w== - -mdn-data@2.0.28: - version "2.0.28" - resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.28.tgz#5ec48e7bef120654539069e1ae4ddc81ca490eba" - integrity sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g== - -mdn-data@2.0.30: - version "2.0.30" - resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.30.tgz#ce4df6f80af6cfbe218ecd5c552ba13c4dfa08cc" - integrity sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA== - -mdurl@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/mdurl/-/mdurl-1.0.1.tgz#fe85b2ec75a59037f2adfec100fd6c601761152e" - integrity sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g== - -merge-stream@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" - integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== - -merge2@^1.3.0, merge2@^1.4.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" - integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== - -micromark@~2.11.0: - version "2.11.4" - resolved "https://registry.yarnpkg.com/micromark/-/micromark-2.11.4.tgz#d13436138eea826383e822449c9a5c50ee44665a" - integrity sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA== - dependencies: - debug "^4.0.0" - parse-entities "^2.0.0" - -micromatch@4.0.5, micromatch@^4.0.4: - version "4.0.5" - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" - integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== - dependencies: - braces "^3.0.2" - picomatch "^2.3.1" - -mime@^1.3.4: - version "1.6.0" - resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" - integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== - -mimic-fn@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" - integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== - -mimic-fn@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-4.0.0.tgz#60a90550d5cb0b239cca65d893b1a53b29871ecc" - integrity sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw== - -mimic-response@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9" - integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== - -min-indent@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" - integrity sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg== - -minimatch@^3.0.3, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: - version "3.1.2" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" - integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== - dependencies: - brace-expansion "^1.1.7" - -minimist@^1.2.0, minimist@^1.2.3, minimist@^1.2.6: - version "1.2.8" - resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" - integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== - -minipass@^3.0.0: - version "3.3.6" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz#7bba384db3a1520d18c9c0e5251c3444e95dd94a" - integrity sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw== - dependencies: - yallist "^4.0.0" - -minipass@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-5.0.0.tgz#3e9788ffb90b694a5d0ec94479a45b5d8738133d" - integrity sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ== - -minizlib@^2.1.1: - version "2.1.2" - resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" - integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== - dependencies: - minipass "^3.0.0" - yallist "^4.0.0" - -mitt@3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/mitt/-/mitt-3.0.0.tgz#69ef9bd5c80ff6f57473e8d89326d01c414be0bd" - integrity sha512-7dX2/10ITVyqh4aOSVI9gdape+t9l2/8QxHrFmUXu4EEUpdlxl6RudZUPZoc+zuY2hk1j7XxVroIVIan/pD/SQ== - -mkdirp-classic@^0.5.2, mkdirp-classic@^0.5.3: - version "0.5.3" - resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113" - integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A== - -mkdirp@^1.0.3: - version "1.0.4" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" - integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== - -mlly@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/mlly/-/mlly-1.2.0.tgz#f0f6c2fc8d2d12ea6907cd869066689b5031b613" - integrity sha512-+c7A3CV0KGdKcylsI6khWyts/CYrGTrRVo4R/I7u/cUsy0Conxa6LUhiEzVKIw14lc2L5aiO4+SeVe4TeGRKww== - dependencies: - acorn "^8.8.2" - pathe "^1.1.0" - pkg-types "^1.0.2" - ufo "^1.1.1" - -mri@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/mri/-/mri-1.2.0.tgz#6721480fec2a11a4889861115a48b6cbe7cc8f0b" - integrity sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA== - -ms@2.1.2: - version "2.1.2" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" - integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== - -ms@^2.1.1: - version "2.1.3" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" - integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== - -mute-stream@~0.0.4: - version "0.0.8" - resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.8.tgz#1630c42b2251ff81e2a283de96a5497ea92e5e0d" - integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA== - -napi-build-utils@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/napi-build-utils/-/napi-build-utils-1.0.2.tgz#b1fddc0b2c46e380a0b7a76f984dd47c41a13806" - integrity sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg== - -natural-compare-lite@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz#17b09581988979fddafe0201e931ba933c96cbb4" - integrity sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g== - -natural-compare@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" - integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== - -node-abi@^3.3.0: - version "3.33.0" - resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-3.33.0.tgz#8b23a0cec84e1c5f5411836de6a9b84bccf26e7f" - integrity sha512-7GGVawqyHF4pfd0YFybhv/eM9JwTtPqx0mAanQ146O3FlSh3pA24zf9IRQTOsfTSqXTNzPSP5iagAJ94jjuVog== - dependencies: - semver "^7.3.5" - -node-addon-api@^4.3.0: - version "4.3.0" - resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-4.3.0.tgz#52a1a0b475193e0928e98e0426a0d1254782b77f" - integrity sha512-73sE9+3UaLYYFmDsFZnqCInzPyh3MqIwZO9cw58yIqAZhONrrabrYyYe3TuIqtIiOuTXVhsGau8hcrhhwSsDIQ== - -node-fetch-native@^1.0.2: - version "1.1.1" - resolved "https://registry.yarnpkg.com/node-fetch-native/-/node-fetch-native-1.1.1.tgz#b8977dd7fe6c5599e417301ed3987bca787d3d6f" - integrity sha512-9VvspTSUp2Sxbl+9vbZTlFGq9lHwE8GDVVekxx6YsNd1YH59sb3Ba8v3Y3cD8PkLNcileGGcA21PFjVl0jzDaw== - -node-fetch@2.6.7: - version "2.6.7" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.7.tgz#24de9fba827e3b4ae44dc8b20256a379160052ad" - integrity sha512-ZjMPFEfVx5j+y2yF35Kzx5sF7kDzxuDj6ziH4FFbOp87zKDZNx8yExJIb05OGF4Nlt9IHFIMBkRl41VdvcNdbQ== - dependencies: - whatwg-url "^5.0.0" - -normalize-package-data@^2.5.0: - version "2.5.0" - resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" - integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== - dependencies: - hosted-git-info "^2.1.4" - resolve "^1.10.0" - semver "2 || 3 || 4 || 5" - validate-npm-package-license "^3.0.1" - -normalize-path@^3.0.0, normalize-path@~3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" - integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== - -npm-run-path@^5.1.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-5.2.0.tgz#224cdd22c755560253dd71b83a1ef2f758b2e955" - integrity sha512-W4/tgAXFqFA0iL7fk0+uQ3g7wkL8xJmx3XdK0VGb4cHW//eZTtKGvFBBoRKVTpY7n6ze4NL9ly7rgXcHufqXKg== - dependencies: - path-key "^4.0.0" - -nth-check@^2.0.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d" - integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w== - dependencies: - boolbase "^1.0.0" - -object-inspect@^1.12.3, object-inspect@^1.9.0: - version "1.12.3" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.12.3.tgz#ba62dffd67ee256c8c086dfae69e016cd1f198b9" - integrity sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g== - -object-keys@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" - integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== - -object.assign@^4.1.4: - version "4.1.4" - resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.4.tgz#9673c7c7c351ab8c4d0b516f4343ebf4dfb7799f" - integrity sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - has-symbols "^1.0.3" - object-keys "^1.1.1" - -object.values@^1.1.6: - version "1.1.6" - resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.6.tgz#4abbaa71eba47d63589d402856f908243eea9b1d" - integrity sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" - -ohash@^1.1.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/ohash/-/ohash-1.1.2.tgz#902dd01484f5573ef941d8f9e81105a2e13fd9ba" - integrity sha512-9CIOSq5945rI045GFtcO3uudyOkYVY1nyfFxVQp+9BRgslr8jPNiSSrsFGg/BNTUFOLqx0P5tng6G32brIPw0w== - -once@^1.3.0, once@^1.3.1, once@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" - integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== - dependencies: - wrappy "1" - -onetime@^5.1.0: - version "5.1.2" - resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" - integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== - dependencies: - mimic-fn "^2.1.0" - -onetime@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/onetime/-/onetime-6.0.0.tgz#7c24c18ed1fd2e9bca4bd26806a33613c77d34b4" - integrity sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ== - dependencies: - mimic-fn "^4.0.0" - -optionator@^0.9.1: - version "0.9.1" - resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" - integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== - dependencies: - deep-is "^0.1.3" - fast-levenshtein "^2.0.6" - levn "^0.4.1" - prelude-ls "^1.2.1" - type-check "^0.4.0" - word-wrap "^1.2.3" - -p-limit@^2.0.0, p-limit@^2.2.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" - integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== - dependencies: - p-try "^2.0.0" - -p-limit@^3.0.2: - version "3.1.0" - resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" - integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== - dependencies: - yocto-queue "^0.1.0" - -p-locate@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" - integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== - dependencies: - p-limit "^2.0.0" - -p-locate@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" - integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== - dependencies: - p-limit "^2.2.0" - -p-locate@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" - integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== - dependencies: - p-limit "^3.0.2" - -p-try@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" - integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== - -parent-module@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" - integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== - dependencies: - callsites "^3.0.0" - -parse-entities@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-2.0.0.tgz#53c6eb5b9314a1f4ec99fa0fdf7ce01ecda0cbe8" - integrity sha512-kkywGpCcRYhqQIchaWqZ875wzpS/bMKhz5HnN3p7wveJTkTtyAB/AlnS0f8DFSqYW1T82t6yEAkEcB+A1I3MbQ== - dependencies: - character-entities "^1.0.0" - character-entities-legacy "^1.0.0" - character-reference-invalid "^1.0.0" - is-alphanumerical "^1.0.0" - is-decimal "^1.0.0" - is-hexadecimal "^1.0.0" - -parse-json@^5.0.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" - integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== - dependencies: - "@babel/code-frame" "^7.0.0" - error-ex "^1.3.1" - json-parse-even-better-errors "^2.3.0" - lines-and-columns "^1.1.6" - -parse-semver@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/parse-semver/-/parse-semver-1.1.1.tgz#9a4afd6df063dc4826f93fba4a99cf223f666cb8" - integrity sha512-Eg1OuNntBMH0ojvEKSrvDSnwLmvVuUOSdylH/pSCPNMIspLlweJyIWXCE+k/5hm3cj/EBUYwmWkjhBALNP4LXQ== - dependencies: - semver "^5.1.0" - -parse5-htmlparser2-tree-adapter@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.0.0.tgz#23c2cc233bcf09bb7beba8b8a69d46b08c62c2f1" - integrity sha512-B77tOZrqqfUfnVcOrUvfdLbz4pu4RopLD/4vmu3HUPswwTA8OH0EMW9BlWR2B0RCoiZRAHEUu7IxeP1Pd1UU+g== - dependencies: - domhandler "^5.0.2" - parse5 "^7.0.0" - -parse5@^7.0.0: - version "7.1.2" - resolved "https://registry.yarnpkg.com/parse5/-/parse5-7.1.2.tgz#0736bebbfd77793823240a23b7fc5e010b7f8e32" - integrity sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw== - dependencies: - entities "^4.4.0" - -path-exists@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" - integrity sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ== - -path-exists@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" - integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== - -path-is-absolute@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" - integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== - -path-key@^3.1.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" - integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== - -path-key@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/path-key/-/path-key-4.0.0.tgz#295588dc3aee64154f877adb9d780b81c554bf18" - integrity sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ== - -path-parse@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" - integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== - -path-type@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" - integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== - -pathe@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/pathe/-/pathe-1.1.0.tgz#e2e13f6c62b31a3289af4ba19886c230f295ec03" - integrity sha512-ODbEPR0KKHqECXW1GoxdDb+AZvULmXjVPy4rt+pGo2+TnjJTIPJQSVS6N63n8T2Ip+syHhbn52OewKicV0373w== - -pend@~1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50" - integrity sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg== - -perfect-debounce@^0.1.3: - version "0.1.3" - resolved "https://registry.yarnpkg.com/perfect-debounce/-/perfect-debounce-0.1.3.tgz#ff6798ea543a3ba1f0efeeaf97c0340f5c8871ce" - integrity sha512-NOT9AcKiDGpnV/HBhI22Str++XWcErO/bALvHCuhv33owZW/CjH8KAFLZDCmu3727sihe0wTxpDhyGc6M8qacQ== - -picocolors@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" - integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== - -picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.3.1: - version "2.3.1" - resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" - integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== - -pidtree@0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/pidtree/-/pidtree-0.6.0.tgz#90ad7b6d42d5841e69e0a2419ef38f8883aa057c" - integrity sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g== - -pkg-types@^1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/pkg-types/-/pkg-types-1.0.3.tgz#988b42ab19254c01614d13f4f65a2cfc7880f868" - integrity sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A== - dependencies: - jsonc-parser "^3.2.0" - mlly "^1.2.0" - pathe "^1.1.0" - -pluralize@^8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-8.0.0.tgz#1a6fa16a38d12a1901e0320fa017051c539ce3b1" - integrity sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA== - -postcss-selector-parser@^6.0.9: - version "6.0.11" - resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz#2e41dc39b7ad74046e1615185185cd0b17d0c8dc" - integrity sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g== - dependencies: - cssesc "^3.0.0" - util-deprecate "^1.0.2" - -prebuild-install@^7.0.1: - version "7.1.1" - resolved "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-7.1.1.tgz#de97d5b34a70a0c81334fd24641f2a1702352e45" - integrity sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw== - dependencies: - detect-libc "^2.0.0" - expand-template "^2.0.3" - github-from-package "0.0.0" - minimist "^1.2.3" - mkdirp-classic "^0.5.3" - napi-build-utils "^1.0.1" - node-abi "^3.3.0" - pump "^3.0.0" - rc "^1.2.7" - simple-get "^4.0.0" - tar-fs "^2.0.0" - tunnel-agent "^0.6.0" - -prelude-ls@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" - integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== - -progress@2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" - integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== - -prompts@^2.4.2: - version "2.4.2" - resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" - integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== - dependencies: - kleur "^3.0.3" - sisteransi "^1.0.5" - -proxy-from-env@1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2" - integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg== - -pump@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64" - integrity sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww== - dependencies: - end-of-stream "^1.1.0" - once "^1.3.1" - -punycode@^2.1.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.0.tgz#f67fa67c94da8f4d0cfff981aee4118064199b8f" - integrity sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA== - -puppeteer-core@20.1.2: - version "20.1.2" - resolved "https://registry.yarnpkg.com/puppeteer-core/-/puppeteer-core-20.1.2.tgz#747496813e898f3d5e41e549b6aaff6f3b3c5c94" - integrity sha512-S1BLte+jVC/ugZkNoxFW9Fvbyr30CKZ0IIumf98FFqLh06Vuc21fddsr34botKtz27T81pqkpDYXNXYomA01dg== - dependencies: - "@puppeteer/browsers" "1.1.0" - chromium-bidi "0.4.7" - cross-fetch "3.1.5" - debug "4.3.4" - devtools-protocol "0.0.1120988" - ws "8.13.0" - -puppeteer@^20.1.2: - version "20.1.2" - resolved "https://registry.yarnpkg.com/puppeteer/-/puppeteer-20.1.2.tgz#95ccc111e69be6b71d3fcce960a9971fd8105a90" - integrity sha512-QYDp+iVMP30TwlkXFOocON9qR3Nac5ez7PdXbY90mfuEgZb9vf3/OXL2vHprxwPtb2hgD4AxXvLZhEIqfD2y8Q== - dependencies: - "@puppeteer/browsers" "1.1.0" - cosmiconfig "8.1.3" - puppeteer-core "20.1.2" - -qs@^6.9.1: - version "6.11.1" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.1.tgz#6c29dff97f0c0060765911ba65cbc9764186109f" - integrity sha512-0wsrzgTz/kAVIeuxSjnpGC56rzYtr6JT/2BwEvMaPhFIoYa1aGO8LbzuU1R0uUYQkLpWBTOj0l/CLAJB64J6nQ== - dependencies: - side-channel "^1.0.4" - -queue-microtask@^1.2.2: - version "1.2.3" - resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" - integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== - -rc9@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/rc9/-/rc9-2.1.0.tgz#57d3a01e55907393ef9bd0cc29f2bd66a6cd0972" - integrity sha512-ROO9bv8PPqngWKoiUZU3JDQ4sugpdRs9DfwHnzDSxK25XtQn6BEHL6EOd/OtKuDT2qodrtNR+0WkPT6l0jxH5Q== - dependencies: - defu "^6.1.2" - destr "^1.2.2" - flat "^5.0.2" - -rc@^1.2.7: - version "1.2.8" - resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" - integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== - dependencies: - deep-extend "^0.6.0" - ini "~1.3.0" - minimist "^1.2.0" - strip-json-comments "~2.0.1" - -read-pkg-up@^7.0.1: - version "7.0.1" - resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-7.0.1.tgz#f3a6135758459733ae2b95638056e1854e7ef507" - integrity sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg== - dependencies: - find-up "^4.1.0" - read-pkg "^5.2.0" - type-fest "^0.8.1" - -read-pkg@^5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-5.2.0.tgz#7bf295438ca5a33e56cd30e053b34ee7250c93cc" - integrity sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg== - dependencies: - "@types/normalize-package-data" "^2.4.0" - normalize-package-data "^2.5.0" - parse-json "^5.0.0" - type-fest "^0.6.0" - -read@^1.0.7: - version "1.0.7" - resolved "https://registry.yarnpkg.com/read/-/read-1.0.7.tgz#b3da19bd052431a97671d44a42634adf710b40c4" - integrity sha512-rSOKNYUmaxy0om1BNjMN4ezNT6VKK+2xF4GBhc81mkH7L60i6dp8qPYrkndNLT3QPphoII3maL9PVC9XmhHwVQ== - dependencies: - mute-stream "~0.0.4" - -readable-stream@^3.1.1, readable-stream@^3.4.0: - version "3.6.2" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.2.tgz#56a9b36ea965c00c5a93ef31eb111a0f11056967" - integrity sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA== - dependencies: - inherits "^2.0.3" - string_decoder "^1.1.1" - util-deprecate "^1.0.1" - -readdirp@~3.6.0: - version "3.6.0" - resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" - integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== - dependencies: - picomatch "^2.2.1" - -regexp-tree@^0.1.24, regexp-tree@~0.1.1: - version "0.1.24" - resolved "https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.24.tgz#3d6fa238450a4d66e5bc9c4c14bb720e2196829d" - integrity sha512-s2aEVuLhvnVJW6s/iPgEGK6R+/xngd2jNQ+xy4bXNDKxZKJH6jpPHY6kVeVv1IeLCHgswRj+Kl3ELaDjG6V1iw== - -regexp.prototype.flags@^1.4.3: - version "1.4.3" - resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz#87cab30f80f66660181a3bb7bf5981a872b367ac" - integrity sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.3" - functions-have-names "^1.2.2" - -regexpp@^3.0.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" - integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== - -regjsparser@^0.9.1: - version "0.9.1" - resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.9.1.tgz#272d05aa10c7c1f67095b1ff0addae8442fc5709" - integrity sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ== - dependencies: - jsesc "~0.5.0" - -require-directory@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" - integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== - -require-main-filename@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" - integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== - -resolve-from@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" - integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== - -resolve@^1.10.0, resolve@^1.22.1: - version "1.22.1" - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.1.tgz#27cb2ebb53f91abb49470a928bba7558066ac177" - integrity sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw== - dependencies: - is-core-module "^2.9.0" - path-parse "^1.0.7" - supports-preserve-symlinks-flag "^1.0.0" - -restore-cursor@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-4.0.0.tgz#519560a4318975096def6e609d44100edaa4ccb9" - integrity sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg== - dependencies: - onetime "^5.1.0" - signal-exit "^3.0.2" - -reusify@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" - integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== - -rfdc@^1.3.0: - version "1.3.0" - resolved "https://registry.yarnpkg.com/rfdc/-/rfdc-1.3.0.tgz#d0b7c441ab2720d05dc4cf26e01c89631d9da08b" - integrity sha512-V2hovdzFbOi77/WajaSMXk2OLm+xNIeQdMMuB7icj7bk6zi2F8GGAxigcnDFpJHbNyNcgyJDiP+8nOrY5cZGrA== - -rimraf@^3.0.0, rimraf@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" - integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== - dependencies: - glob "^7.1.3" - -run-parallel@^1.1.9: - version "1.2.0" - resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" - integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== - dependencies: - queue-microtask "^1.2.2" - -safe-buffer@^5.0.1, safe-buffer@~5.2.0: - version "5.2.1" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" - integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== - -safe-regex-test@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.0.tgz#793b874d524eb3640d1873aad03596db2d4f2295" - integrity sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA== - dependencies: - call-bind "^1.0.2" - get-intrinsic "^1.1.3" - is-regex "^1.1.4" - -safe-regex@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-2.1.1.tgz#f7128f00d056e2fe5c11e81a1324dd974aadced2" - integrity sha512-rx+x8AMzKb5Q5lQ95Zoi6ZbJqwCLkqi3XuJXp5P3rT8OEc6sZCJG5AE5dU3lsgRr/F4Bs31jSlVN+j5KrsGu9A== - dependencies: - regexp-tree "~0.1.1" - -sax@>=0.6.0: - version "1.2.4" - resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" - integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== - -scule@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/scule/-/scule-1.0.0.tgz#895e6f4ba887e78d8b9b4111e23ae84fef82376d" - integrity sha512-4AsO/FrViE/iDNEPaAQlb77tf0csuq27EsVpy6ett584EcRTp6pTDLoGWVxCD77y5iU5FauOvhsI4o1APwPoSQ== - -"semver@2 || 3 || 4 || 5", semver@^5.1.0: - version "5.7.1" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" - integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== - -semver@^6.3.0: - version "6.3.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" - integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== - -semver@^7.0.0, semver@^7.3.5, semver@^7.3.6, semver@^7.3.7, semver@^7.3.8: - version "7.3.8" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.8.tgz#07a78feafb3f7b32347d725e33de7e2a2df67798" - integrity sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A== - dependencies: - lru-cache "^6.0.0" - -set-blocking@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" - integrity sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw== - -shebang-command@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" - integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== - dependencies: - shebang-regex "^3.0.0" - -shebang-regex@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" - integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== - -side-channel@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" - integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== - dependencies: - call-bind "^1.0.0" - get-intrinsic "^1.0.2" - object-inspect "^1.9.0" - -signal-exit@^3.0.2: - version "3.0.7" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" - integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== - -signal-exit@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04" - integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw== - -simple-concat@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.1.tgz#f46976082ba35c2263f1c8ab5edfe26c41c9552f" - integrity sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q== - -simple-get@^4.0.0: - version "4.0.1" - resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-4.0.1.tgz#4a39db549287c979d352112fa03fd99fd6bc3543" - integrity sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA== - dependencies: - decompress-response "^6.0.0" - once "^1.3.1" - simple-concat "^1.0.0" - -simple-git-hooks@^2.9.0: - version "2.9.0" - resolved "https://registry.yarnpkg.com/simple-git-hooks/-/simple-git-hooks-2.9.0.tgz#9588e59400baf2d5fd1d778263ab97db1c2f2671" - integrity sha512-waSQ5paUQtyGC0ZxlHmcMmD9I1rRXauikBwX31bX58l5vTOhCEcBC5Bi+ZDkPXTjDnZAF8TbCqKBY+9+sVPScw== - -sisteransi@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" - integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== - -slash@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" - integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== - -slice-ansi@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-5.0.0.tgz#b73063c57aa96f9cd881654b15294d95d285c42a" - integrity sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ== - dependencies: - ansi-styles "^6.0.0" - is-fullwidth-code-point "^4.0.0" - -slice-ansi@^7.0.0: - version "7.1.0" - resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-7.1.0.tgz#cd6b4655e298a8d1bdeb04250a433094b347b9a9" - integrity sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg== - dependencies: - ansi-styles "^6.2.1" - is-fullwidth-code-point "^5.0.0" - -source-map-js@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c" - integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw== - -source-map-support@^0.5.21: - version "0.5.21" - resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" - integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== - dependencies: - buffer-from "^1.0.0" - source-map "^0.6.0" - -source-map@^0.6.0: - version "0.6.1" - resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" - integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== - -spdx-correct@^3.0.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.2.0.tgz#4f5ab0668f0059e34f9c00dce331784a12de4e9c" - integrity sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA== - dependencies: - spdx-expression-parse "^3.0.0" - spdx-license-ids "^3.0.0" - -spdx-exceptions@^2.1.0: - version "2.3.0" - resolved "https://registry.yarnpkg.com/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d" - integrity sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A== - -spdx-expression-parse@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679" - integrity sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q== - dependencies: - spdx-exceptions "^2.1.0" - spdx-license-ids "^3.0.0" - -spdx-license-ids@^3.0.0: - version "3.0.13" - resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.13.tgz#7189a474c46f8d47c7b0da4b987bb45e908bd2d5" - integrity sha512-XkD+zwiqXHikFZm4AX/7JSCXA98U5Db4AFd5XUg/+9UNtnH75+Z9KxtpYiJZx36mUDVOwH83pl7yvCer6ewM3w== - -string-argv@0.3.2: - version "0.3.2" - resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.2.tgz#2b6d0ef24b656274d957d54e0a4bbf6153dc02b6" - integrity sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q== - -string-argv@^0.3.1: - version "0.3.1" - resolved "https://registry.yarnpkg.com/string-argv/-/string-argv-0.3.1.tgz#95e2fbec0427ae19184935f816d74aaa4c5c19da" - integrity sha512-a1uQGz7IyVy9YwhqjZIZu1c8JO8dNIe20xBmSS6qu9kv++k3JGzCVmprbNN5Kn+BgzD5E7YYwg1CcjuJMRNsvg== - -string-width@^3.0.0, string-width@^3.1.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" - integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== - dependencies: - emoji-regex "^7.0.1" - is-fullwidth-code-point "^2.0.0" - strip-ansi "^5.1.0" - -string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: - version "4.2.3" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" - integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== - dependencies: - emoji-regex "^8.0.0" - is-fullwidth-code-point "^3.0.0" - strip-ansi "^6.0.1" - -string-width@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/string-width/-/string-width-7.0.0.tgz#14aa1b7aaa126d5b64fa79d3c894da8a9650ba06" - integrity sha512-GPQHj7row82Hjo9hKZieKcHIhaAIKOJvFSIZXuCU9OASVZrMNUaZuz++SPVrBjnLsnk4k+z9f2EIypgxf2vNFw== - dependencies: - emoji-regex "^10.3.0" - get-east-asian-width "^1.0.0" - strip-ansi "^7.1.0" - -string.prototype.trim@^1.2.7: - version "1.2.7" - resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.7.tgz#a68352740859f6893f14ce3ef1bb3037f7a90533" - integrity sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" - -string.prototype.trimend@^1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz#c4a27fa026d979d79c04f17397f250a462944533" - integrity sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" - -string.prototype.trimstart@^1.0.6: - version "1.0.6" - resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz#e90ab66aa8e4007d92ef591bbf3cd422c56bdcf4" - integrity sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA== - dependencies: - call-bind "^1.0.2" - define-properties "^1.1.4" - es-abstract "^1.20.4" - -string_decoder@^1.1.1: - version "1.3.0" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" - integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== - dependencies: - safe-buffer "~5.2.0" - -strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" - integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== - dependencies: - ansi-regex "^4.1.0" - -strip-ansi@^6.0.0, strip-ansi@^6.0.1: - version "6.0.1" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" - integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== - dependencies: - ansi-regex "^5.0.1" - -strip-ansi@^7.1.0: - version "7.1.0" - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45" - integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ== - dependencies: - ansi-regex "^6.0.1" - -strip-bom@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" - integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== - -strip-final-newline@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-3.0.0.tgz#52894c313fbff318835280aed60ff71ebf12b8fd" - integrity sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw== - -strip-indent@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-3.0.0.tgz#c32e1cee940b6b3432c771bc2c54bcce73cd3001" - integrity sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ== - dependencies: - min-indent "^1.0.0" - -strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" - integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== - -strip-json-comments@~2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" - integrity sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ== - -supports-color@^5.3.0: - version "5.5.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" - integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== - dependencies: - has-flag "^3.0.0" - -supports-color@^7.1.0: - version "7.2.0" - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" - integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== - dependencies: - has-flag "^4.0.0" - -supports-preserve-symlinks-flag@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" - integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== - -svgo@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/svgo/-/svgo-3.0.2.tgz#5e99eeea42c68ee0dc46aa16da093838c262fe0a" - integrity sha512-Z706C1U2pb1+JGP48fbazf3KxHrWOsLme6Rv7imFBn5EnuanDW1GPaA/P1/dvObE670JDePC3mnj0k0B7P0jjQ== - dependencies: - "@trysound/sax" "0.2.0" - commander "^7.2.0" - css-select "^5.1.0" - css-tree "^2.2.1" - csso "^5.0.5" - picocolors "^1.0.0" - -tar-fs@2.1.1, tar-fs@^2.0.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-2.1.1.tgz#489a15ab85f1f0befabb370b7de4f9eb5cbe8784" - integrity sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng== - dependencies: - chownr "^1.1.1" - mkdirp-classic "^0.5.2" - pump "^3.0.0" - tar-stream "^2.1.4" - -tar-stream@^2.1.4: - version "2.2.0" - resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.2.0.tgz#acad84c284136b060dc3faa64474aa9aebd77287" - integrity sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ== - dependencies: - bl "^4.0.3" - end-of-stream "^1.4.1" - fs-constants "^1.0.0" - inherits "^2.0.3" - readable-stream "^3.1.1" - -tar@^6.1.13: - version "6.1.14" - resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.14.tgz#e87926bec1cfe7c9e783a77a79f3e81c1cfa3b66" - integrity sha512-piERznXu0U7/pW7cdSn7hjqySIVTYT6F76icmFk7ptU7dDYlXTm5r9A6K04R2vU3olYgoKeo1Cg3eeu5nhftAw== - dependencies: - chownr "^2.0.0" - fs-minipass "^2.0.0" - minipass "^5.0.0" - minizlib "^2.1.1" - mkdirp "^1.0.3" - yallist "^4.0.0" - -text-table@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" - integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== - -through@^2.3.8: - version "2.3.8" - resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" - integrity sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg== - -tmp@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.2.1.tgz#8457fc3037dcf4719c251367a1af6500ee1ccf14" - integrity sha512-76SUhtfqR2Ijn+xllcI5P1oyannHNHByD80W1q447gU3mp9G9PSpGdWmjUOHRDPiHYacIk66W7ubDTuPF3BEtQ== - dependencies: - rimraf "^3.0.0" - -to-regex-range@^5.0.1: - version "5.0.1" - resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" - integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== - dependencies: - is-number "^7.0.0" - -tr46@~0.0.3: - version "0.0.3" - resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a" - integrity sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw== - -tsconfig-paths@^3.14.1: - version "3.14.2" - resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz#6e32f1f79412decd261f92d633a9dc1cfa99f088" - integrity sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g== - dependencies: - "@types/json5" "^0.0.29" - json5 "^1.0.2" - minimist "^1.2.6" - strip-bom "^3.0.0" - -tslib@^1.8.1: - version "1.14.1" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" - integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== - -tsutils@^3.21.0: - version "3.21.0" - resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.21.0.tgz#b48717d394cea6c1e096983eed58e9d61715b623" - integrity sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA== - dependencies: - tslib "^1.8.1" - -tsx@^3.12.7: - version "3.12.7" - resolved "https://registry.yarnpkg.com/tsx/-/tsx-3.12.7.tgz#b3b8b0fc79afc8260d1e14f9e995616c859a91e9" - integrity sha512-C2Ip+jPmqKd1GWVQDvz/Eyc6QJbGfE7NrR3fx5BpEHMZsEHoIxHL1j+lKdGobr8ovEyqeNkPLSKp6SCSOt7gmw== - dependencies: - "@esbuild-kit/cjs-loader" "^2.4.2" - "@esbuild-kit/core-utils" "^3.0.0" - "@esbuild-kit/esm-loader" "^2.5.5" - optionalDependencies: - fsevents "~2.3.2" - -tunnel-agent@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" - integrity sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w== - dependencies: - safe-buffer "^5.0.1" - -tunnel@0.0.6: - version "0.0.6" - resolved "https://registry.yarnpkg.com/tunnel/-/tunnel-0.0.6.tgz#72f1314b34a5b192db012324df2cc587ca47f92c" - integrity sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg== - -type-check@^0.4.0, type-check@~0.4.0: - version "0.4.0" - resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" - integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== - dependencies: - prelude-ls "^1.2.1" - -type-detect@^4.0.8: - version "4.0.8" - resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" - integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== - -type-fest@^0.20.2: - version "0.20.2" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" - integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== - -type-fest@^0.6.0: - version "0.6.0" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.6.0.tgz#8d2a2370d3df886eb5c90ada1c5bf6188acf838b" - integrity sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg== - -type-fest@^0.8.1: - version "0.8.1" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" - integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== - -type-fest@^3.0.0: - version "3.13.1" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-3.13.1.tgz#bb744c1f0678bea7543a2d1ec24e83e68e8c8706" - integrity sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g== - -typed-array-length@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.4.tgz#89d83785e5c4098bec72e08b319651f0eac9c1bb" - integrity sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng== - dependencies: - call-bind "^1.0.2" - for-each "^0.3.3" - is-typed-array "^1.1.9" - -typed-rest-client@^1.8.4: - version "1.8.9" - resolved "https://registry.yarnpkg.com/typed-rest-client/-/typed-rest-client-1.8.9.tgz#e560226bcadfe71b0fb5c416b587f8da3b8f92d8" - integrity sha512-uSmjE38B80wjL85UFX3sTYEUlvZ1JgCRhsWj/fJ4rZ0FqDUFoIuodtiVeE+cUqiVTOKPdKrp/sdftD15MDek6g== - dependencies: - qs "^6.9.1" - tunnel "0.0.6" - underscore "^1.12.1" - -typescript@^5.0.4: - version "5.0.4" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.0.4.tgz#b217fd20119bd61a94d4011274e0ab369058da3b" - integrity sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw== - -uc.micro@^1.0.1, uc.micro@^1.0.5: - version "1.0.6" - resolved "https://registry.yarnpkg.com/uc.micro/-/uc.micro-1.0.6.tgz#9c411a802a409a91fc6cf74081baba34b24499ac" - integrity sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA== - -ufo@^1.1.1: - version "1.1.2" - resolved "https://registry.yarnpkg.com/ufo/-/ufo-1.1.2.tgz#d0d9e0fa09dece0c31ffd57bd363f030a35cfe76" - integrity sha512-TrY6DsjTQQgyS3E3dBaOXf0TpPD8u9FVrVYmKVegJuFw51n/YB9XPt+U6ydzFG5ZIN7+DIjPbNmXoBj9esYhgQ== - -unbox-primitive@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" - integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== - dependencies: - call-bind "^1.0.2" - has-bigints "^1.0.2" - has-symbols "^1.0.3" - which-boxed-primitive "^1.0.2" - -unbzip2-stream@1.4.3: - version "1.4.3" - resolved "https://registry.yarnpkg.com/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz#b0da04c4371311df771cdc215e87f2130991ace7" - integrity sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg== - dependencies: - buffer "^5.2.1" - through "^2.3.8" - -underscore@^1.12.1: - version "1.13.6" - resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.13.6.tgz#04786a1f589dc6c09f761fc5f45b89e935136441" - integrity sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A== - -unist-util-stringify-position@^2.0.0: - version "2.0.3" - resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz#cce3bfa1cdf85ba7375d1d5b17bdc4cada9bd9da" - integrity sha512-3faScn5I+hy9VleOq/qNbAd6pAx7iH5jYBMS9I1HgQVijz/4mv5Bvw5iw1sC/90CODiKo81G/ps8AJrISn687g== - dependencies: - "@types/unist" "^2.0.2" - -universalify@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" - integrity sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ== - -uri-js@^4.2.2: - version "4.4.1" - resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" - integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== - dependencies: - punycode "^2.1.0" - -url-join@^4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/url-join/-/url-join-4.0.1.tgz#b642e21a2646808ffa178c4c5fda39844e12cde7" - integrity sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA== - -util-deprecate@^1.0.1, util-deprecate@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" - integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== - -validate-npm-package-license@^3.0.1: - version "3.0.4" - resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" - integrity sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew== - dependencies: - spdx-correct "^3.0.0" - spdx-expression-parse "^3.0.0" - -vue-eslint-parser@^9.0.1: - version "9.1.0" - resolved "https://registry.yarnpkg.com/vue-eslint-parser/-/vue-eslint-parser-9.1.0.tgz#0e121d1bb29bd10763c83e3cc583ee03434a9dd5" - integrity sha512-NGn/iQy8/Wb7RrRa4aRkokyCZfOUWk19OP5HP6JEozQFX5AoS/t+Z0ZN7FY4LlmWc4FNI922V7cvX28zctN8dQ== - dependencies: - debug "^4.3.4" - eslint-scope "^7.1.1" - eslint-visitor-keys "^3.3.0" - espree "^9.3.1" - esquery "^1.4.0" - lodash "^4.17.21" - semver "^7.3.6" - -webidl-conversions@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871" - integrity sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ== - -whatwg-url@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d" - integrity sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw== - dependencies: - tr46 "~0.0.3" - webidl-conversions "^3.0.0" - -which-boxed-primitive@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" - integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== - dependencies: - is-bigint "^1.0.1" - is-boolean-object "^1.1.0" - is-number-object "^1.0.4" - is-string "^1.0.5" - is-symbol "^1.0.3" - -which-module@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" - integrity sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q== - -which-typed-array@^1.1.9: - version "1.1.9" - resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.9.tgz#307cf898025848cf995e795e8423c7f337efbde6" - integrity sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA== - dependencies: - available-typed-arrays "^1.0.5" - call-bind "^1.0.2" - for-each "^0.3.3" - gopd "^1.0.1" - has-tostringtag "^1.0.0" - is-typed-array "^1.1.10" - -which@^2.0.1: - version "2.0.2" - resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" - integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== - dependencies: - isexe "^2.0.0" - -word-wrap@^1.2.3: - version "1.2.3" - resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" - integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== - -wrap-ansi@^5.1.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09" - integrity sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q== - dependencies: - ansi-styles "^3.2.0" - string-width "^3.0.0" - strip-ansi "^5.0.0" - -wrap-ansi@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" - integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== - dependencies: - ansi-styles "^4.0.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - -wrap-ansi@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-9.0.0.tgz#1a3dc8b70d85eeb8398ddfb1e4a02cd186e58b3e" - integrity sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q== - dependencies: - ansi-styles "^6.2.1" - string-width "^7.0.0" - strip-ansi "^7.1.0" - -wrappy@1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" - integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== - -ws@8.13.0: - version "8.13.0" - resolved "https://registry.yarnpkg.com/ws/-/ws-8.13.0.tgz#9a9fb92f93cf41512a0735c8f4dd09b8a1211cd0" - integrity sha512-x9vcZYTrFPC7aSIbj7sRCYo7L/Xb8Iy+pW0ng0wt2vCJv7M9HOMy0UoN3rr+IFC7hb7vXoqS+P9ktyLLLhO+LA== - -xml-name-validator@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-4.0.0.tgz#79a006e2e63149a8600f15430f0a4725d1524835" - integrity sha512-ICP2e+jsHvAj2E2lIHxa5tjXRlKDJo4IdvPvCXbXQGdzSfmSpNVyIKMvoZHjDY9DP0zV17iI85o90vRFXNccRw== - -xml2js@^0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.5.0.tgz#d9440631fbb2ed800203fad106f2724f62c493b7" - integrity sha512-drPFnkQJik/O+uPKpqSgr22mpuFHqKdbS835iAQrUC73L2F5WkboIRd63ai/2Yg6I1jzifPFKH2NTK+cfglkIA== - dependencies: - sax ">=0.6.0" - xmlbuilder "~11.0.0" - -xmlbuilder@~11.0.0: - version "11.0.1" - resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-11.0.1.tgz#be9bae1c8a046e76b31127726347d0ad7002beb3" - integrity sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA== - -y18n@^4.0.0: - version "4.0.3" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf" - integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ== - -y18n@^5.0.5: - version "5.0.8" - resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" - integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== - -yallist@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" - integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== - -yaml-eslint-parser@^1.1.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/yaml-eslint-parser/-/yaml-eslint-parser-1.2.0.tgz#b1a6ce4bd5111596f57a9213ec9c0dd1d0ac7e61" - integrity sha512-OmuvQd5lyIJWfFALc39K5fGqp0aWNc+EtyhVgcQIPZaUKMnTb7An3RMp+QJizJ/x0F4kpgTNe6BL/ctdvoIwIg== - dependencies: - eslint-visitor-keys "^3.0.0" - lodash "^4.17.21" - yaml "^2.0.0" - -yaml-eslint-parser@^1.2.0: - version "1.2.1" - resolved "https://registry.yarnpkg.com/yaml-eslint-parser/-/yaml-eslint-parser-1.2.1.tgz#a64a108ea2a1260be0217d2334d2b4b8b2188c45" - integrity sha512-XxLosxcDd0lBF1OEANOod8I/gn+VrYdSbUFAgfoYntY/vktK2V38Nknu4ZbQELTt38CJfxRlYOWYQC2kTytX8Q== - dependencies: - eslint-visitor-keys "^3.0.0" - lodash "^4.17.21" - yaml "^2.0.0" - -yaml@2.3.4: - version "2.3.4" - resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.3.4.tgz#53fc1d514be80aabf386dc6001eb29bf3b7523b2" - integrity sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA== - -yaml@^2.0.0: - version "2.2.1" - resolved "https://registry.yarnpkg.com/yaml/-/yaml-2.2.1.tgz#3014bf0482dcd15147aa8e56109ce8632cd60ce4" - integrity sha512-e0WHiYql7+9wr4cWMx3TVQrNwejKaEe7/rHNmQmqRjazfOP5W8PB6Jpebb5o6fIapbz9o9+2ipcaTM2ZwDI6lw== - -yargs-parser@^13.1.2: - version "13.1.2" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.2.tgz#130f09702ebaeef2650d54ce6e3e5706f7a4fb38" - integrity sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg== - dependencies: - camelcase "^5.0.0" - decamelize "^1.2.0" - -yargs-parser@^21.1.1: - version "21.1.1" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" - integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== - -yargs@17.7.1: - version "17.7.1" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.1.tgz#34a77645201d1a8fc5213ace787c220eabbd0967" - integrity sha512-cwiTb08Xuv5fqF4AovYacTFNxk62th7LKJ6BL9IGUpTJrWoU7/7WdQGTP2SjKf1dUNBGzDd28p/Yfs/GI6JrLw== - dependencies: - cliui "^8.0.1" - escalade "^3.1.1" - get-caller-file "^2.0.5" - require-directory "^2.1.1" - string-width "^4.2.3" - y18n "^5.0.5" - yargs-parser "^21.1.1" - -yargs@^13.3.0: - version "13.3.2" - resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.3.2.tgz#ad7ffefec1aa59565ac915f82dccb38a9c31a2dd" - integrity sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw== - dependencies: - cliui "^5.0.0" - find-up "^3.0.0" - get-caller-file "^2.0.1" - require-directory "^2.1.1" - require-main-filename "^2.0.0" - set-blocking "^2.0.0" - string-width "^3.0.0" - which-module "^2.0.0" - y18n "^4.0.0" - yargs-parser "^13.1.2" - -yauzl@^2.10.0, yauzl@^2.3.1: - version "2.10.0" - resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz#c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9" - integrity sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g== - dependencies: - buffer-crc32 "~0.2.3" - fd-slicer "~1.1.0" - -yazl@^2.2.2: - version "2.5.1" - resolved "https://registry.yarnpkg.com/yazl/-/yazl-2.5.1.tgz#a3d65d3dd659a5b0937850e8609f22fffa2b5c35" - integrity sha512-phENi2PLiHnHb6QBVot+dJnaAZ0xosj7p3fWl+znIjBDlnMI2PsZCJZ306BPTFOaHf5qdDEI8x5qFrSOBN5vrw== - dependencies: - buffer-crc32 "~0.2.3" - -yocto-queue@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" - integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==