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 @@
- +
-## Previews - -- +
- 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