From d152ac325cf77f53a1d6c3585e8900dca02517e9 Mon Sep 17 00:00:00 2001 From: moezehdev <82916145+moezehdev@users.noreply.github.com> Date: Mon, 21 Apr 2025 04:45:42 -0700 Subject: [PATCH 01/15] Initial commit --- .gitignore | 136 +++++++++++++++++++++++++++++++++++++++++++++++++++++ LICENSE | 21 +++++++++ README.md | 2 + 3 files changed, 159 insertions(+) create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1170717 --- /dev/null +++ b/.gitignore @@ -0,0 +1,136 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +lerna-debug.log* +.pnpm-debug.log* + +# Diagnostic reports (https://nodejs.org/api/report.html) +report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage +*.lcov + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Bower dependency directory (https://bower.io/) +bower_components + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +node_modules/ +jspm_packages/ + +# Snowpack dependency directory (https://snowpack.dev/) +web_modules/ + +# TypeScript cache +*.tsbuildinfo + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Optional stylelint cache +.stylelintcache + +# Microbundle cache +.rpt2_cache/ +.rts2_cache_cjs/ +.rts2_cache_es/ +.rts2_cache_umd/ + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# dotenv environment variable files +.env +.env.development.local +.env.test.local +.env.production.local +.env.local + +# parcel-bundler cache (https://parceljs.org/) +.cache +.parcel-cache + +# Next.js build output +.next +out + +# Nuxt.js build / generate output +.nuxt +dist + +# Gatsby files +.cache/ +# Comment in the public line in if your project uses Gatsby and not Next.js +# https://nextjs.org/blog/next-9-1#public-directory-support +# public + +# vuepress build output +.vuepress/dist + +# vuepress v2.x temp and cache directory +.temp +.cache + +# vitepress build output +**/.vitepress/dist + +# vitepress cache directory +**/.vitepress/cache + +# Docusaurus cache and generated files +.docusaurus + +# Serverless directories +.serverless/ + +# FuseBox cache +.fusebox/ + +# DynamoDB Local files +.dynamodb/ + +# TernJS port file +.tern-port + +# Stores VSCode versions used for testing VSCode extensions +.vscode-test + +# yarn v2 +.yarn/cache +.yarn/unplugged +.yarn/build-state.yml +.yarn/install-state.gz +.pnp.* diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..7915f16 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2025 CtrlCloud + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..703f598 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# icons +The set of icons from CtrlCloud for DevOps projects From b03dd8906e10f7229373c9fc31c5ad9806666ea9 Mon Sep 17 00:00:00 2001 From: Aryan Aghf Date: Mon, 21 Apr 2025 18:04:53 +0330 Subject: [PATCH 02/15] feat(svg-component): add three svg as component --- .eslintrc.js | 14 + .npmignore | 6 + .prettierrc | 8 + .releaserc.json | 11 + package-lock.json | 10483 +++++++++++++++++++++ package.json | 89 + src/icons/AmazonDynamoDB.tsx | 35 + src/icons/AmazonEC2Icon.tsx | 35 + src/icons/AmazonSimpleStorageService.tsx | 33 + src/index.ts | 3 + tsconfig.json | 30 + 11 files changed, 10747 insertions(+) create mode 100644 .eslintrc.js create mode 100644 .npmignore create mode 100644 .prettierrc create mode 100644 .releaserc.json create mode 100644 package-lock.json create mode 100644 package.json create mode 100644 src/icons/AmazonDynamoDB.tsx create mode 100644 src/icons/AmazonEC2Icon.tsx create mode 100644 src/icons/AmazonSimpleStorageService.tsx create mode 100644 src/index.ts create mode 100644 tsconfig.json diff --git a/.eslintrc.js b/.eslintrc.js new file mode 100644 index 0000000..6d135e1 --- /dev/null +++ b/.eslintrc.js @@ -0,0 +1,14 @@ +module.exports = { + root: true, + parser: '@typescript-eslint/parser', + plugins: ['@typescript-eslint', 'prettier'], + extends: [ + 'eslint:recommended', + 'plugin:@typescript-eslint/recommended', + 'plugin:prettier/recommended' + ], + rules: { + '@typescript-eslint/explicit-module-boundary-types': 'off', + 'prettier/prettier': 'error' + } +}; \ No newline at end of file diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000..21242e4 --- /dev/null +++ b/.npmignore @@ -0,0 +1,6 @@ +src/ +.github/ +.husky/ +.eslintrc.js +.prettierrc +tsconfig.json \ No newline at end of file diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 0000000..b2eb07a --- /dev/null +++ b/.prettierrc @@ -0,0 +1,8 @@ +{ + "semi": true, + "singleQuote": true, + "printWidth": 100, + "tabWidth": 2, + "trailingComma": "all", + "arrowParens": "always" +} \ No newline at end of file diff --git a/.releaserc.json b/.releaserc.json new file mode 100644 index 0000000..f61915c --- /dev/null +++ b/.releaserc.json @@ -0,0 +1,11 @@ +{ + "branches": ["main"], + "plugins": [ + "@semantic-release/commit-analyzer", + "@semantic-release/release-notes-generator", + "@semantic-release/changelog", + "@semantic-release/npm", + "@semantic-release/git", + "@semantic-release/github" + ] +} \ No newline at end of file diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..7f810e6 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,10483 @@ +{ + "name": "icons", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "icons", + "version": "1.0.0", + "license": "ISC", + "devDependencies": { + "@semantic-release/changelog": "^6.0.3", + "@semantic-release/git": "^10.0.1", + "@semantic-release/npm": "^12.0.1", + "@types/node": "^22.14.1", + "@types/react": "^19.1.2", + "@typescript-eslint/eslint-plugin": "^8.30.1", + "@typescript-eslint/parser": "^8.30.1", + "commitizen": "^4.3.1", + "cz-conventional-changelog": "^3.3.0", + "eslint": "^9.25.0", + "eslint-config-prettier": "^10.1.2", + "eslint-plugin-prettier": "^5.2.6", + "husky": "^9.1.7", + "lint-staged": "^15.5.1", + "prettier": "^3.5.3", + "semantic-release": "^24.2.3", + "typescript": "^5.8.3" + }, + "peerDependencies": { + "react": "^19.1.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.26.2", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", + "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.25.9", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", + "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@colors/colors": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", + "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=0.1.90" + } + }, + "node_modules/@commitlint/config-validator": { + "version": "19.8.0", + "resolved": "https://registry.npmjs.org/@commitlint/config-validator/-/config-validator-19.8.0.tgz", + "integrity": "sha512-+r5ZvD/0hQC3w5VOHJhGcCooiAVdynFlCe2d6I9dU+PvXdV3O+fU4vipVg+6hyLbQUuCH82mz3HnT/cBQTYYuA==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@commitlint/types": "^19.8.0", + "ajv": "^8.11.0" + }, + "engines": { + "node": ">=v18" + } + }, + "node_modules/@commitlint/execute-rule": { + "version": "19.8.0", + "resolved": "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-19.8.0.tgz", + "integrity": "sha512-fuLeI+EZ9x2v/+TXKAjplBJWI9CNrHnyi5nvUQGQt4WRkww/d95oVRsc9ajpt4xFrFmqMZkd/xBQHZDvALIY7A==", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=v18" + } + }, + "node_modules/@commitlint/load": { + "version": "19.8.0", + "resolved": "https://registry.npmjs.org/@commitlint/load/-/load-19.8.0.tgz", + "integrity": "sha512-4rvmm3ff81Sfb+mcWT5WKlyOa+Hd33WSbirTVUer0wjS1Hv/Hzr07Uv1ULIV9DkimZKNyOwXn593c+h8lsDQPQ==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@commitlint/config-validator": "^19.8.0", + "@commitlint/execute-rule": "^19.8.0", + "@commitlint/resolve-extends": "^19.8.0", + "@commitlint/types": "^19.8.0", + "chalk": "^5.3.0", + "cosmiconfig": "^9.0.0", + "cosmiconfig-typescript-loader": "^6.1.0", + "lodash.isplainobject": "^4.0.6", + "lodash.merge": "^4.6.2", + "lodash.uniq": "^4.5.0" + }, + "engines": { + "node": ">=v18" + } + }, + "node_modules/@commitlint/load/node_modules/chalk": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.4.1.tgz", + "integrity": "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@commitlint/resolve-extends": { + "version": "19.8.0", + "resolved": "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-19.8.0.tgz", + "integrity": "sha512-CLanRQwuG2LPfFVvrkTrBR/L/DMy3+ETsgBqW1OvRxmzp/bbVJW0Xw23LnnExgYcsaFtos967lul1CsbsnJlzQ==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@commitlint/config-validator": "^19.8.0", + "@commitlint/types": "^19.8.0", + "global-directory": "^4.0.1", + "import-meta-resolve": "^4.0.0", + "lodash.mergewith": "^4.6.2", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=v18" + } + }, + "node_modules/@commitlint/types": { + "version": "19.8.0", + "resolved": "https://registry.npmjs.org/@commitlint/types/-/types-19.8.0.tgz", + "integrity": "sha512-LRjP623jPyf3Poyfb0ohMj8I3ORyBDOwXAgxxVPbSD0unJuW2mJWeiRfaQinjtccMqC5Wy1HOMfa4btKjbNxbg==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@types/conventional-commits-parser": "^5.0.0", + "chalk": "^5.3.0" + }, + "engines": { + "node": ">=v18" + } + }, + "node_modules/@commitlint/types/node_modules/chalk": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.4.1.tgz", + "integrity": "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.6.1.tgz", + "integrity": "sha512-KTsJMmobmbrFLe3LDh0PC2FXpcSYJt/MLjlkh/9LEnmKYLSYmT/0EW9JWANjeoemiuZrmogti0tW5Ch+qNUYDw==", + "dev": true, + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.12.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", + "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/config-array": { + "version": "0.20.0", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.20.0.tgz", + "integrity": "sha512-fxlS1kkIjx8+vy2SjuCB94q3htSNrufYTXubwiBFeaQHbH6Ipi43gFJq2zCMt6PHhImH3Xmr0NksKDvchWlpQQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/object-schema": "^2.1.6", + "debug": "^4.3.1", + "minimatch": "^3.1.2" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/config-array/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/@eslint/config-array/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/@eslint/config-helpers": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.2.1.tgz", + "integrity": "sha512-RI17tsD2frtDu/3dmI7QRrD4bedNKPM08ziRYaC5AhkGrzIAJelm9kJU1TznK+apx6V+cqRz8tfpEeG3oIyjxw==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/core": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.13.0.tgz", + "integrity": "sha512-yfkgDw1KR66rkT5A8ci4irzDysN7FRpq3ttJolR88OqQikAWqwA8j5VZyas+vjyBNFIJ7MfybJ9plMILI2UrCw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@types/json-schema": "^7.0.15" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.1.tgz", + "integrity": "sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^10.0.1", + "globals": "^14.0.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/@eslint/eslintrc/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@eslint/eslintrc/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/@eslint/js": { + "version": "9.25.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.25.0.tgz", + "integrity": "sha512-iWhsUS8Wgxz9AXNfvfOPFSW4VfMXdVhp1hjkZVhXCrpgh/aLcc45rX6MPu+tIVUWDw0HfNwth7O28M1xDxNf9w==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/object-schema": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.6.tgz", + "integrity": "sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/plugin-kit": { + "version": "0.2.8", + "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.8.tgz", + "integrity": "sha512-ZAoA40rNMPwSm+AeHpCq8STiNAwzWLJuP8Xv4CHIc9wv/PSuExjMrmjfYNj682vW0OOiZ1HKxzvjQr9XZIisQA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.13.0", + "levn": "^0.4.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@humanfs/core": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", + "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/node": { + "version": "0.16.6", + "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.6.tgz", + "integrity": "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@humanfs/core": "^0.19.1", + "@humanwhocodes/retry": "^0.3.0" + }, + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/node/node_modules/@humanwhocodes/retry": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz", + "integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/retry": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.2.tgz", + "integrity": "sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@octokit/auth-token": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-5.1.2.tgz", + "integrity": "sha512-JcQDsBdg49Yky2w2ld20IHAlwr8d/d8N6NiOXbtuoPCqzbsiJgF633mVUw3x4mo0H5ypataQIX7SFu3yy44Mpw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 18" + } + }, + "node_modules/@octokit/core": { + "version": "6.1.5", + "resolved": "https://registry.npmjs.org/@octokit/core/-/core-6.1.5.tgz", + "integrity": "sha512-vvmsN0r7rguA+FySiCsbaTTobSftpIDIpPW81trAmsv9TGxg3YCujAxRYp/Uy8xmDgYCzzgulG62H7KYUFmeIg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@octokit/auth-token": "^5.0.0", + "@octokit/graphql": "^8.2.2", + "@octokit/request": "^9.2.3", + "@octokit/request-error": "^6.1.8", + "@octokit/types": "^14.0.0", + "before-after-hook": "^3.0.2", + "universal-user-agent": "^7.0.0" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/@octokit/endpoint": { + "version": "10.1.4", + "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-10.1.4.tgz", + "integrity": "sha512-OlYOlZIsfEVZm5HCSR8aSg02T2lbUWOsCQoPKfTXJwDzcHQBrVBGdGXb89dv2Kw2ToZaRtudp8O3ZIYoaOjKlA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@octokit/types": "^14.0.0", + "universal-user-agent": "^7.0.2" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/@octokit/graphql": { + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-8.2.2.tgz", + "integrity": "sha512-Yi8hcoqsrXGdt0yObxbebHXFOiUA+2v3n53epuOg1QUgOB6c4XzvisBNVXJSl8RYA5KrDuSL2yq9Qmqe5N0ryA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@octokit/request": "^9.2.3", + "@octokit/types": "^14.0.0", + "universal-user-agent": "^7.0.0" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/@octokit/openapi-types": { + "version": "25.0.0", + "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-25.0.0.tgz", + "integrity": "sha512-FZvktFu7HfOIJf2BScLKIEYjDsw6RKc7rBJCdvCTfKsVnx2GEB/Nbzjr29DUdb7vQhlzS/j8qDzdditP0OC6aw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@octokit/plugin-paginate-rest": { + "version": "11.6.0", + "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-11.6.0.tgz", + "integrity": "sha512-n5KPteiF7pWKgBIBJSk8qzoZWcUkza2O6A0za97pMGVrGfPdltxrfmfF5GucHYvHGZD8BdaZmmHGz5cX/3gdpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@octokit/types": "^13.10.0" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "@octokit/core": ">=6" + } + }, + "node_modules/@octokit/plugin-paginate-rest/node_modules/@octokit/openapi-types": { + "version": "24.2.0", + "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-24.2.0.tgz", + "integrity": "sha512-9sIH3nSUttelJSXUrmGzl7QUBFul0/mB8HRYl3fOlgHbIWG+WnYDXU3v/2zMtAvuzZ/ed00Ei6on975FhBfzrg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@octokit/plugin-paginate-rest/node_modules/@octokit/types": { + "version": "13.10.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-13.10.0.tgz", + "integrity": "sha512-ifLaO34EbbPj0Xgro4G5lP5asESjwHracYJvVaPIyXMuiuXLlhic3S47cBdTb+jfODkTE5YtGCLt3Ay3+J97sA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@octokit/openapi-types": "^24.2.0" + } + }, + "node_modules/@octokit/plugin-retry": { + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/@octokit/plugin-retry/-/plugin-retry-7.2.1.tgz", + "integrity": "sha512-wUc3gv0D6vNHpGxSaR3FlqJpTXGWgqmk607N9L3LvPL4QjaxDgX/1nY2mGpT37Khn+nlIXdljczkRnNdTTV3/A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@octokit/request-error": "^6.1.8", + "@octokit/types": "^14.0.0", + "bottleneck": "^2.15.3" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "@octokit/core": ">=6" + } + }, + "node_modules/@octokit/plugin-throttling": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/@octokit/plugin-throttling/-/plugin-throttling-9.6.1.tgz", + "integrity": "sha512-bt3EBUkeKUzDQXRCcFrR9SWVqlLFRRqcCrr6uAorWt6NXTyjMKqcGrFmXqJy9NCbnKgiIZ2OXWq04theFc76Jg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@octokit/types": "^13.7.0", + "bottleneck": "^2.15.3" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "@octokit/core": "^6.1.3" + } + }, + "node_modules/@octokit/plugin-throttling/node_modules/@octokit/openapi-types": { + "version": "24.2.0", + "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-24.2.0.tgz", + "integrity": "sha512-9sIH3nSUttelJSXUrmGzl7QUBFul0/mB8HRYl3fOlgHbIWG+WnYDXU3v/2zMtAvuzZ/ed00Ei6on975FhBfzrg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@octokit/plugin-throttling/node_modules/@octokit/types": { + "version": "13.10.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-13.10.0.tgz", + "integrity": "sha512-ifLaO34EbbPj0Xgro4G5lP5asESjwHracYJvVaPIyXMuiuXLlhic3S47cBdTb+jfODkTE5YtGCLt3Ay3+J97sA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@octokit/openapi-types": "^24.2.0" + } + }, + "node_modules/@octokit/request": { + "version": "9.2.3", + "resolved": "https://registry.npmjs.org/@octokit/request/-/request-9.2.3.tgz", + "integrity": "sha512-Ma+pZU8PXLOEYzsWf0cn/gY+ME57Wq8f49WTXA8FMHp2Ps9djKw//xYJ1je8Hm0pR2lU9FUGeJRWOtxq6olt4w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@octokit/endpoint": "^10.1.4", + "@octokit/request-error": "^6.1.8", + "@octokit/types": "^14.0.0", + "fast-content-type-parse": "^2.0.0", + "universal-user-agent": "^7.0.2" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/@octokit/request-error": { + "version": "6.1.8", + "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-6.1.8.tgz", + "integrity": "sha512-WEi/R0Jmq+IJKydWlKDmryPcmdYSVjL3ekaiEL1L9eo1sUnqMJ+grqmC9cjk7CA7+b2/T397tO5d8YLOH3qYpQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@octokit/types": "^14.0.0" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/@octokit/types": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-14.0.0.tgz", + "integrity": "sha512-VVmZP0lEhbo2O1pdq63gZFiGCKkm8PPp8AUOijlwPO6hojEVjspA0MWKP7E4hbvGxzFKNqKr6p0IYtOH/Wf/zA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@octokit/openapi-types": "^25.0.0" + } + }, + "node_modules/@pkgr/core": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.2.4.tgz", + "integrity": "sha512-ROFF39F6ZrnzSUEmQQZUar0Jt4xVoP9WnDRdWwF4NNcXs3xBTLgBUDoOwW141y1jP+S8nahIbdxbFC7IShw9Iw==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/pkgr" + } + }, + "node_modules/@pnpm/config.env-replace": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@pnpm/config.env-replace/-/config.env-replace-1.1.0.tgz", + "integrity": "sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.22.0" + } + }, + "node_modules/@pnpm/network.ca-file": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@pnpm/network.ca-file/-/network.ca-file-1.0.2.tgz", + "integrity": "sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "4.2.10" + }, + "engines": { + "node": ">=12.22.0" + } + }, + "node_modules/@pnpm/network.ca-file/node_modules/graceful-fs": { + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", + "dev": true, + "license": "ISC" + }, + "node_modules/@pnpm/npm-conf": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/@pnpm/npm-conf/-/npm-conf-2.3.1.tgz", + "integrity": "sha512-c83qWb22rNRuB0UaVCI0uRPNRr8Z0FWnEIvT47jiHAmOIUHbBOg5XvV7pM5x+rKn9HRpjxquDbXYSXr3fAKFcw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@pnpm/config.env-replace": "^1.1.0", + "@pnpm/network.ca-file": "^1.0.1", + "config-chain": "^1.1.11" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@sec-ant/readable-stream": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@sec-ant/readable-stream/-/readable-stream-0.4.1.tgz", + "integrity": "sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@semantic-release/changelog": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/@semantic-release/changelog/-/changelog-6.0.3.tgz", + "integrity": "sha512-dZuR5qByyfe3Y03TpmCvAxCyTnp7r5XwtHRf/8vD9EAn4ZWbavUX8adMtXYzE86EVh0gyLA7lm5yW4IV30XUag==", + "dev": true, + "license": "MIT", + "dependencies": { + "@semantic-release/error": "^3.0.0", + "aggregate-error": "^3.0.0", + "fs-extra": "^11.0.0", + "lodash": "^4.17.4" + }, + "engines": { + "node": ">=14.17" + }, + "peerDependencies": { + "semantic-release": ">=18.0.0" + } + }, + "node_modules/@semantic-release/commit-analyzer": { + "version": "13.0.1", + "resolved": "https://registry.npmjs.org/@semantic-release/commit-analyzer/-/commit-analyzer-13.0.1.tgz", + "integrity": "sha512-wdnBPHKkr9HhNhXOhZD5a2LNl91+hs8CC2vsAVYxtZH3y0dV3wKn+uZSN61rdJQZ8EGxzWB3inWocBHV9+u/CQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "conventional-changelog-angular": "^8.0.0", + "conventional-changelog-writer": "^8.0.0", + "conventional-commits-filter": "^5.0.0", + "conventional-commits-parser": "^6.0.0", + "debug": "^4.0.0", + "import-from-esm": "^2.0.0", + "lodash-es": "^4.17.21", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">=20.8.1" + }, + "peerDependencies": { + "semantic-release": ">=20.1.0" + } + }, + "node_modules/@semantic-release/error": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-3.0.0.tgz", + "integrity": "sha512-5hiM4Un+tpl4cKw3lV4UgzJj+SmfNIDCLLw0TepzQxz9ZGV5ixnqkzIVF+3tp0ZHgcMKE+VNGHJjEeyFG2dcSw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.17" + } + }, + "node_modules/@semantic-release/git": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/@semantic-release/git/-/git-10.0.1.tgz", + "integrity": "sha512-eWrx5KguUcU2wUPaO6sfvZI0wPafUKAMNC18aXY4EnNcrZL86dEmpNVnC9uMpGZkmZJ9EfCVJBQx4pV4EMGT1w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@semantic-release/error": "^3.0.0", + "aggregate-error": "^3.0.0", + "debug": "^4.0.0", + "dir-glob": "^3.0.0", + "execa": "^5.0.0", + "lodash": "^4.17.4", + "micromatch": "^4.0.0", + "p-reduce": "^2.0.0" + }, + "engines": { + "node": ">=14.17" + }, + "peerDependencies": { + "semantic-release": ">=18.0.0" + } + }, + "node_modules/@semantic-release/github": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/@semantic-release/github/-/github-11.0.1.tgz", + "integrity": "sha512-Z9cr0LgU/zgucbT9cksH0/pX9zmVda9hkDPcgIE0uvjMQ8w/mElDivGjx1w1pEQ+MuQJ5CBq3VCF16S6G4VH3A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@octokit/core": "^6.0.0", + "@octokit/plugin-paginate-rest": "^11.0.0", + "@octokit/plugin-retry": "^7.0.0", + "@octokit/plugin-throttling": "^9.0.0", + "@semantic-release/error": "^4.0.0", + "aggregate-error": "^5.0.0", + "debug": "^4.3.4", + "dir-glob": "^3.0.1", + "globby": "^14.0.0", + "http-proxy-agent": "^7.0.0", + "https-proxy-agent": "^7.0.0", + "issue-parser": "^7.0.0", + "lodash-es": "^4.17.21", + "mime": "^4.0.0", + "p-filter": "^4.0.0", + "url-join": "^5.0.0" + }, + "engines": { + "node": ">=20.8.1" + }, + "peerDependencies": { + "semantic-release": ">=24.1.0" + } + }, + "node_modules/@semantic-release/github/node_modules/@semantic-release/error": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-4.0.0.tgz", + "integrity": "sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/@semantic-release/github/node_modules/aggregate-error": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-5.0.0.tgz", + "integrity": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==", + "dev": true, + "license": "MIT", + "dependencies": { + "clean-stack": "^5.2.0", + "indent-string": "^5.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/github/node_modules/clean-stack": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-5.2.0.tgz", + "integrity": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "escape-string-regexp": "5.0.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/github/node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/github/node_modules/indent-string": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", + "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/npm": { + "version": "12.0.1", + "resolved": "https://registry.npmjs.org/@semantic-release/npm/-/npm-12.0.1.tgz", + "integrity": "sha512-/6nntGSUGK2aTOI0rHPwY3ZjgY9FkXmEHbW9Kr+62NVOsyqpKKeP0lrCH+tphv+EsNdJNmqqwijTEnVWUMQ2Nw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@semantic-release/error": "^4.0.0", + "aggregate-error": "^5.0.0", + "execa": "^9.0.0", + "fs-extra": "^11.0.0", + "lodash-es": "^4.17.21", + "nerf-dart": "^1.0.0", + "normalize-url": "^8.0.0", + "npm": "^10.5.0", + "rc": "^1.2.8", + "read-pkg": "^9.0.0", + "registry-auth-token": "^5.0.0", + "semver": "^7.1.2", + "tempy": "^3.0.0" + }, + "engines": { + "node": ">=20.8.1" + }, + "peerDependencies": { + "semantic-release": ">=20.1.0" + } + }, + "node_modules/@semantic-release/npm/node_modules/@semantic-release/error": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-4.0.0.tgz", + "integrity": "sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/@semantic-release/npm/node_modules/@sindresorhus/merge-streams": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-4.0.0.tgz", + "integrity": "sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/npm/node_modules/aggregate-error": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-5.0.0.tgz", + "integrity": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==", + "dev": true, + "license": "MIT", + "dependencies": { + "clean-stack": "^5.2.0", + "indent-string": "^5.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/npm/node_modules/clean-stack": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-5.2.0.tgz", + "integrity": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "escape-string-regexp": "5.0.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/npm/node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/npm/node_modules/execa": { + "version": "9.5.2", + "resolved": "https://registry.npmjs.org/execa/-/execa-9.5.2.tgz", + "integrity": "sha512-EHlpxMCpHWSAh1dgS6bVeoLAXGnJNdR93aabr4QCGbzOM73o5XmRfM/e5FUqsw3aagP8S8XEWUWFAxnRBnAF0Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@sindresorhus/merge-streams": "^4.0.0", + "cross-spawn": "^7.0.3", + "figures": "^6.1.0", + "get-stream": "^9.0.0", + "human-signals": "^8.0.0", + "is-plain-obj": "^4.1.0", + "is-stream": "^4.0.1", + "npm-run-path": "^6.0.0", + "pretty-ms": "^9.0.0", + "signal-exit": "^4.1.0", + "strip-final-newline": "^4.0.0", + "yoctocolors": "^2.0.0" + }, + "engines": { + "node": "^18.19.0 || >=20.5.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/@semantic-release/npm/node_modules/figures": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-6.1.0.tgz", + "integrity": "sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-unicode-supported": "^2.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/npm/node_modules/get-stream": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-9.0.1.tgz", + "integrity": "sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@sec-ant/readable-stream": "^0.4.1", + "is-stream": "^4.0.1" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/npm/node_modules/human-signals": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-8.0.1.tgz", + "integrity": "sha512-eKCa6bwnJhvxj14kZk5NCPc6Hb6BdsU9DZcOnmQKSnO1VKrfV0zCvtttPZUsBvjmNDn8rpcJfpwSYnHBjc95MQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@semantic-release/npm/node_modules/indent-string": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", + "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/npm/node_modules/is-stream": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-4.0.1.tgz", + "integrity": "sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/npm/node_modules/is-unicode-supported": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.1.0.tgz", + "integrity": "sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/npm/node_modules/npm-run-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-6.0.0.tgz", + "integrity": "sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^4.0.0", + "unicorn-magic": "^0.3.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/npm/node_modules/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/npm/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@semantic-release/npm/node_modules/strip-final-newline": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-4.0.0.tgz", + "integrity": "sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/npm/node_modules/unicorn-magic": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.3.0.tgz", + "integrity": "sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/release-notes-generator": { + "version": "14.0.3", + "resolved": "https://registry.npmjs.org/@semantic-release/release-notes-generator/-/release-notes-generator-14.0.3.tgz", + "integrity": "sha512-XxAZRPWGwO5JwJtS83bRdoIhCiYIx8Vhr+u231pQAsdFIAbm19rSVJLdnBN+Avvk7CKvNQE/nJ4y7uqKH6WTiw==", + "dev": true, + "license": "MIT", + "dependencies": { + "conventional-changelog-angular": "^8.0.0", + "conventional-changelog-writer": "^8.0.0", + "conventional-commits-filter": "^5.0.0", + "conventional-commits-parser": "^6.0.0", + "debug": "^4.0.0", + "get-stream": "^7.0.0", + "import-from-esm": "^2.0.0", + "into-stream": "^7.0.0", + "lodash-es": "^4.17.21", + "read-package-up": "^11.0.0" + }, + "engines": { + "node": ">=20.8.1" + }, + "peerDependencies": { + "semantic-release": ">=20.1.0" + } + }, + "node_modules/@semantic-release/release-notes-generator/node_modules/get-stream": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-7.0.1.tgz", + "integrity": "sha512-3M8C1EOFN6r8AMUhwUAACIoXZJEOufDU5+0gFFN5uNs6XYOralD2Pqkl7m046va6x77FwposWXbAhPPIOus7mQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@sindresorhus/is": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", + "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/is?sponsor=1" + } + }, + "node_modules/@sindresorhus/merge-streams": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz", + "integrity": "sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@types/conventional-commits-parser": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@types/conventional-commits-parser/-/conventional-commits-parser-5.0.1.tgz", + "integrity": "sha512-7uz5EHdzz2TqoMfV7ee61Egf5y6NkcO4FB/1iCCQnbeiI1F3xzv3vK5dBCXUCLQgGYS+mUeigK1iKQzvED+QnQ==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/estree": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.7.tgz", + "integrity": "sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "22.14.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.14.1.tgz", + "integrity": "sha512-u0HuPQwe/dHrItgHHpmw3N2fYCR6x4ivMNbPHRkBVP4CvN+kiRrKHWk3i8tXiO/joPwXLMYvF9TTF0eqgHIuOw==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~6.21.0" + } + }, + "node_modules/@types/normalize-package-data": { + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", + "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/react": { + "version": "19.1.2", + "resolved": "https://registry.npmjs.org/@types/react/-/react-19.1.2.tgz", + "integrity": "sha512-oxLPMytKchWGbnQM9O7D67uPa9paTNxO7jVoNMXgkkErULBPhPARCfkKL9ytcIJJRGjbsVwW4ugJzyFFvm/Tiw==", + "dev": true, + "license": "MIT", + "dependencies": { + "csstype": "^3.0.2" + } + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "8.30.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.30.1.tgz", + "integrity": "sha512-v+VWphxMjn+1t48/jO4t950D6KR8JaJuNXzi33Ve6P8sEmPr5k6CEXjdGwT6+LodVnEa91EQCtwjWNUCPweo+Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/regexpp": "^4.10.0", + "@typescript-eslint/scope-manager": "8.30.1", + "@typescript-eslint/type-utils": "8.30.1", + "@typescript-eslint/utils": "8.30.1", + "@typescript-eslint/visitor-keys": "8.30.1", + "graphemer": "^1.4.0", + "ignore": "^5.3.1", + "natural-compare": "^1.4.0", + "ts-api-utils": "^2.0.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^8.0.0 || ^8.0.0-alpha.0", + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.9.0" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "8.30.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.30.1.tgz", + "integrity": "sha512-H+vqmWwT5xoNrXqWs/fesmssOW70gxFlgcMlYcBaWNPIEWDgLa4W9nkSPmhuOgLnXq9QYgkZ31fhDyLhleCsAg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/scope-manager": "8.30.1", + "@typescript-eslint/types": "8.30.1", + "@typescript-eslint/typescript-estree": "8.30.1", + "@typescript-eslint/visitor-keys": "8.30.1", + "debug": "^4.3.4" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.9.0" + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "8.30.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.30.1.tgz", + "integrity": "sha512-+C0B6ChFXZkuaNDl73FJxRYT0G7ufVPOSQkqkpM/U198wUwUFOtgo1k/QzFh1KjpBitaK7R1tgjVz6o9HmsRPg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.30.1", + "@typescript-eslint/visitor-keys": "8.30.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "8.30.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.30.1.tgz", + "integrity": "sha512-64uBF76bfQiJyHgZISC7vcNz3adqQKIccVoKubyQcOnNcdJBvYOILV1v22Qhsw3tw3VQu5ll8ND6hycgAR5fEA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/typescript-estree": "8.30.1", + "@typescript-eslint/utils": "8.30.1", + "debug": "^4.3.4", + "ts-api-utils": "^2.0.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.9.0" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "8.30.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.30.1.tgz", + "integrity": "sha512-81KawPfkuulyWo5QdyG/LOKbspyyiW+p4vpn4bYO7DM/hZImlVnFwrpCTnmNMOt8CvLRr5ojI9nU1Ekpw4RcEw==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "8.30.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.30.1.tgz", + "integrity": "sha512-kQQnxymiUy9tTb1F2uep9W6aBiYODgq5EMSk6Nxh4Z+BDUoYUSa029ISs5zTzKBFnexQEh71KqwjKnRz58lusQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.30.1", + "@typescript-eslint/visitor-keys": "8.30.1", + "debug": "^4.3.4", + "fast-glob": "^3.3.2", + "is-glob": "^4.0.3", + "minimatch": "^9.0.4", + "semver": "^7.6.0", + "ts-api-utils": "^2.0.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <5.9.0" + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "8.30.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.30.1.tgz", + "integrity": "sha512-T/8q4R9En2tcEsWPQgB5BQ0XJVOtfARcUvOa8yJP3fh9M/mXraLxZrkCfGb6ChrO/V3W+Xbd04RacUEqk1CFEQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.4.0", + "@typescript-eslint/scope-manager": "8.30.1", + "@typescript-eslint/types": "8.30.1", + "@typescript-eslint/typescript-estree": "8.30.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.9.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "8.30.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.30.1.tgz", + "integrity": "sha512-aEhgas7aJ6vZnNFC7K4/vMGDGyOiqWcYZPpIWrTKuTAlsvDNKy2GFDqh9smL+iq069ZvR0YzEeq0B8NJlLzjFA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.30.1", + "eslint-visitor-keys": "^4.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", + "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/acorn": { + "version": "8.14.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz", + "integrity": "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/agent-base": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.3.tgz", + "integrity": "sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 14" + } + }, + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "dev": true, + "license": "MIT" + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "license": "Python-2.0" + }, + "node_modules/argv-formatter": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/argv-formatter/-/argv-formatter-1.0.0.tgz", + "integrity": "sha512-F2+Hkm9xFaRg+GkaNnbwXNDV5O6pnCFEmqyhvfC/Ic5LbgOWjJh3L+mN/s91rxVL3znE7DYVpW0GJFT+4YBgWw==", + "dev": true, + "license": "MIT" + }, + "node_modules/array-ify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz", + "integrity": "sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==", + "dev": true, + "license": "MIT" + }, + "node_modules/at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/before-after-hook": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-3.0.2.tgz", + "integrity": "sha512-Nik3Sc0ncrMK4UUdXQmAnRtzmNQTAAXmXIopizwZ1W1t8QmfJj+zL4OA2I7XPTPW5z5TDqv4hRo/JzouDJnX3A==", + "dev": true, + "license": "Apache-2.0" + }, + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "node_modules/bottleneck": { + "version": "2.19.5", + "resolved": "https://registry.npmjs.org/bottleneck/-/bottleneck-2.19.5.tgz", + "integrity": "sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw==", + "dev": true, + "license": "MIT" + }, + "node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/cachedir": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cachedir/-/cachedir-2.3.0.tgz", + "integrity": "sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/chardet": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", + "dev": true, + "license": "MIT" + }, + "node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dev": true, + "license": "MIT", + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cli-highlight": { + "version": "2.1.11", + "resolved": "https://registry.npmjs.org/cli-highlight/-/cli-highlight-2.1.11.tgz", + "integrity": "sha512-9KDcoEVwyUXrjcJNvHD0NFc/hiwe/WPVYIleQh2O1N2Zro5gWJZ/K+3DGn8w8P/F6FxOgzyC5bxDyHIgCSPhGg==", + "dev": true, + "license": "ISC", + "dependencies": { + "chalk": "^4.0.0", + "highlight.js": "^10.7.1", + "mz": "^2.4.0", + "parse5": "^5.1.1", + "parse5-htmlparser2-tree-adapter": "^6.0.0", + "yargs": "^16.0.0" + }, + "bin": { + "highlight": "bin/highlight" + }, + "engines": { + "node": ">=8.0.0", + "npm": ">=5.0.0" + } + }, + "node_modules/cli-highlight/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/cli-highlight/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/cli-highlight/node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" + } + }, + "node_modules/cli-highlight/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/cli-highlight/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/cli-highlight/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/cli-highlight/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cli-highlight/node_modules/yargs": { + "version": "16.2.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", + "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", + "dev": true, + "license": "MIT", + "dependencies": { + "cliui": "^7.0.2", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.0", + "y18n": "^5.0.5", + "yargs-parser": "^20.2.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/cli-highlight/node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/cli-spinners": { + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz", + "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-table3": { + "version": "0.6.5", + "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.5.tgz", + "integrity": "sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "string-width": "^4.2.0" + }, + "engines": { + "node": "10.* || >= 12.*" + }, + "optionalDependencies": { + "@colors/colors": "1.5.0" + } + }, + "node_modules/cli-truncate": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-4.0.0.tgz", + "integrity": "sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==", + "dev": true, + "license": "MIT", + "dependencies": { + "slice-ansi": "^5.0.0", + "string-width": "^7.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-truncate/node_modules/emoji-regex": { + "version": "10.4.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.4.0.tgz", + "integrity": "sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==", + "dev": true, + "license": "MIT" + }, + "node_modules/cli-truncate/node_modules/string-width": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz", + "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^10.3.0", + "get-east-asian-width": "^1.0.0", + "strip-ansi": "^7.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-truncate/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/cli-width": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", + "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">= 10" + } + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true, + "license": "MIT" + }, + "node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "dev": true, + "license": "MIT" + }, + "node_modules/commander": { + "version": "13.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-13.1.0.tgz", + "integrity": "sha512-/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/commitizen": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/commitizen/-/commitizen-4.3.1.tgz", + "integrity": "sha512-gwAPAVTy/j5YcOOebcCRIijn+mSjWJC+IYKivTu6aG8Ei/scoXgfsMRnuAk6b0GRste2J4NGxVdMN3ZpfNaVaw==", + "dev": true, + "license": "MIT", + "dependencies": { + "cachedir": "2.3.0", + "cz-conventional-changelog": "3.3.0", + "dedent": "0.7.0", + "detect-indent": "6.1.0", + "find-node-modules": "^2.1.2", + "find-root": "1.1.0", + "fs-extra": "9.1.0", + "glob": "7.2.3", + "inquirer": "8.2.5", + "is-utf8": "^0.2.1", + "lodash": "4.17.21", + "minimist": "1.2.7", + "strip-bom": "4.0.0", + "strip-json-comments": "3.1.1" + }, + "bin": { + "commitizen": "bin/commitizen", + "cz": "bin/git-cz", + "git-cz": "bin/git-cz" + }, + "engines": { + "node": ">= 12" + } + }, + "node_modules/commitizen/node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/compare-func": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/compare-func/-/compare-func-2.0.0.tgz", + "integrity": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-ify": "^1.0.0", + "dot-prop": "^5.1.0" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true, + "license": "MIT" + }, + "node_modules/config-chain": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", + "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ini": "^1.3.4", + "proto-list": "~1.2.1" + } + }, + "node_modules/config-chain/node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true, + "license": "ISC" + }, + "node_modules/conventional-changelog-angular": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-8.0.0.tgz", + "integrity": "sha512-CLf+zr6St0wIxos4bmaKHRXWAcsCXrJU6F4VdNDrGRK3B8LDLKoX3zuMV5GhtbGkVR/LohZ6MT6im43vZLSjmA==", + "dev": true, + "license": "ISC", + "dependencies": { + "compare-func": "^2.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/conventional-changelog-writer": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-8.0.1.tgz", + "integrity": "sha512-hlqcy3xHred2gyYg/zXSMXraY2mjAYYo0msUCpK+BGyaVJMFCKWVXPIHiaacGO2GGp13kvHWXFhYmxT4QQqW3Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "conventional-commits-filter": "^5.0.0", + "handlebars": "^4.7.7", + "meow": "^13.0.0", + "semver": "^7.5.2" + }, + "bin": { + "conventional-changelog-writer": "dist/cli/index.js" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/conventional-commit-types": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/conventional-commit-types/-/conventional-commit-types-3.0.0.tgz", + "integrity": "sha512-SmmCYnOniSsAa9GqWOeLqc179lfr5TRu5b4QFDkbsrJ5TZjPJx85wtOr3zn+1dbeNiXDKGPbZ72IKbPhLXh/Lg==", + "dev": true, + "license": "ISC" + }, + "node_modules/conventional-commits-filter": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-5.0.0.tgz", + "integrity": "sha512-tQMagCOC59EVgNZcC5zl7XqO30Wki9i9J3acbUvkaosCT6JX3EeFwJD7Qqp4MCikRnzS18WXV3BLIQ66ytu6+Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/conventional-commits-parser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-6.1.0.tgz", + "integrity": "sha512-5nxDo7TwKB5InYBl4ZC//1g9GRwB/F3TXOGR9hgUjMGfvSP4Vu5NkpNro2+1+TIEy1vwxApl5ircECr2ri5JIw==", + "dev": true, + "license": "MIT", + "dependencies": { + "meow": "^13.0.0" + }, + "bin": { + "conventional-commits-parser": "dist/cli/index.js" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/convert-hrtime": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/convert-hrtime/-/convert-hrtime-5.0.0.tgz", + "integrity": "sha512-lOETlkIeYSJWcbbcvjRKGxVMXJR+8+OQb/mTPbA4ObPMytYIsUbuOE0Jzy60hjARYszq1id0j8KgVhC+WGZVTg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/cosmiconfig": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.0.tgz", + "integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==", + "dev": true, + "license": "MIT", + "dependencies": { + "env-paths": "^2.2.1", + "import-fresh": "^3.3.0", + "js-yaml": "^4.1.0", + "parse-json": "^5.2.0" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/d-fischer" + }, + "peerDependencies": { + "typescript": ">=4.9.5" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/cosmiconfig-typescript-loader": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-6.1.0.tgz", + "integrity": "sha512-tJ1w35ZRUiM5FeTzT7DtYWAFFv37ZLqSRkGi2oeCK1gPhvaWjkAtfXvLmvE1pRfxxp9aQo6ba/Pvg1dKj05D4g==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "jiti": "^2.4.1" + }, + "engines": { + "node": ">=v18" + }, + "peerDependencies": { + "@types/node": "*", + "cosmiconfig": ">=9", + "typescript": ">=5" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/crypto-random-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-4.0.0.tgz", + "integrity": "sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "type-fest": "^1.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/crypto-random-string/node_modules/type-fest": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", + "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", + "dev": true, + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", + "dev": true, + "license": "MIT" + }, + "node_modules/cz-conventional-changelog": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/cz-conventional-changelog/-/cz-conventional-changelog-3.3.0.tgz", + "integrity": "sha512-U466fIzU5U22eES5lTNiNbZ+d8dfcHcssH4o7QsdWaCcRs/feIPCxKYSWkYBNs5mny7MvEfwpTLWjvbm94hecw==", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^2.4.1", + "commitizen": "^4.0.3", + "conventional-commit-types": "^3.0.0", + "lodash.map": "^4.5.1", + "longest": "^2.0.1", + "word-wrap": "^1.0.3" + }, + "engines": { + "node": ">= 10" + }, + "optionalDependencies": { + "@commitlint/load": ">6.1.1" + } + }, + "node_modules/debug": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", + "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/dedent": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", + "dev": true, + "license": "MIT" + }, + "node_modules/deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/defaults": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", + "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", + "dev": true, + "license": "MIT", + "dependencies": { + "clone": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/detect-file": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", + "integrity": "sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/detect-indent": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", + "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-obj": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/duplexer2": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz", + "integrity": "sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "readable-stream": "^2.0.2" + } + }, + "node_modules/duplexer2/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, + "license": "MIT", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/duplexer2/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true, + "license": "MIT" + }, + "node_modules/duplexer2/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true, + "license": "MIT" + }, + "node_modules/emojilib": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/emojilib/-/emojilib-2.4.0.tgz", + "integrity": "sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw==", + "dev": true, + "license": "MIT" + }, + "node_modules/env-ci": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/env-ci/-/env-ci-11.1.0.tgz", + "integrity": "sha512-Z8dnwSDbV1XYM9SBF2J0GcNVvmfmfh3a49qddGIROhBoVro6MZVTji15z/sJbQ2ko2ei8n988EU1wzoLU/tF+g==", + "dev": true, + "license": "MIT", + "dependencies": { + "execa": "^8.0.0", + "java-properties": "^1.0.2" + }, + "engines": { + "node": "^18.17 || >=20.6.1" + } + }, + "node_modules/env-ci/node_modules/execa": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", + "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", + "dev": true, + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^8.0.1", + "human-signals": "^5.0.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^4.1.0", + "strip-final-newline": "^3.0.0" + }, + "engines": { + "node": ">=16.17" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/env-ci/node_modules/get-stream": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", + "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/env-ci/node_modules/human-signals": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", + "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=16.17.0" + } + }, + "node_modules/env-ci/node_modules/is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/env-ci/node_modules/mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/env-ci/node_modules/npm-run-path": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz", + "integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/env-ci/node_modules/onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "mimic-fn": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/env-ci/node_modules/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/env-ci/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/env-ci/node_modules/strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/env-paths": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/environment": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/environment/-/environment-1.1.0.tgz", + "integrity": "sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/eslint": { + "version": "9.25.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.25.0.tgz", + "integrity": "sha512-MsBdObhM4cEwkzCiraDv7A6txFXEqtNXOb877TsSp2FCkBNl8JfVQrmiuDqC1IkejT6JLPzYBXx/xAiYhyzgGA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.12.1", + "@eslint/config-array": "^0.20.0", + "@eslint/config-helpers": "^0.2.1", + "@eslint/core": "^0.13.0", + "@eslint/eslintrc": "^3.3.1", + "@eslint/js": "9.25.0", + "@eslint/plugin-kit": "^0.2.8", + "@humanfs/node": "^0.16.6", + "@humanwhocodes/module-importer": "^1.0.1", + "@humanwhocodes/retry": "^0.4.2", + "@types/estree": "^1.0.6", + "@types/json-schema": "^7.0.15", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.6", + "debug": "^4.3.2", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^8.3.0", + "eslint-visitor-keys": "^4.2.0", + "espree": "^10.3.0", + "esquery": "^1.5.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^8.0.0", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + }, + "peerDependencies": { + "jiti": "*" + }, + "peerDependenciesMeta": { + "jiti": { + "optional": true + } + } + }, + "node_modules/eslint-config-prettier": { + "version": "10.1.2", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-10.1.2.tgz", + "integrity": "sha512-Epgp/EofAUeEpIdZkW60MHKvPyru1ruQJxPL+WIycnaPApuseK0Zpkrh/FwL9oIpQvIhJwV7ptOy0DWUjTlCiA==", + "dev": true, + "license": "MIT", + "bin": { + "eslint-config-prettier": "bin/cli.js" + }, + "peerDependencies": { + "eslint": ">=7.0.0" + } + }, + "node_modules/eslint-plugin-prettier": { + "version": "5.2.6", + "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.2.6.tgz", + "integrity": "sha512-mUcf7QG2Tjk7H055Jk0lGBjbgDnfrvqjhXh9t2xLMSCjZVcw9Rb1V6sVNXO0th3jgeO7zllWPTNRil3JW94TnQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "prettier-linter-helpers": "^1.0.0", + "synckit": "^0.11.0" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint-plugin-prettier" + }, + "peerDependencies": { + "@types/eslint": ">=8.0.0", + "eslint": ">=8.0.0", + "eslint-config-prettier": ">= 7.0.0 <10.0.0 || >=10.1.0", + "prettier": ">=3.0.0" + }, + "peerDependenciesMeta": { + "@types/eslint": { + "optional": true + }, + "eslint-config-prettier": { + "optional": true + } + } + }, + "node_modules/eslint-scope": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.3.0.tgz", + "integrity": "sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/eslint/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/eslint/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/eslint/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/eslint/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/eslint/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/eslint/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/eslint-visitor-keys": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", + "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true, + "license": "MIT" + }, + "node_modules/eslint/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/eslint/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/espree": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-10.3.0.tgz", + "integrity": "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.14.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^4.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree/node_modules/eslint-visitor-keys": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", + "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eventemitter3": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz", + "integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==", + "dev": true, + "license": "MIT" + }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/expand-tilde": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", + "integrity": "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==", + "dev": true, + "license": "MIT", + "dependencies": { + "homedir-polyfill": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/external-editor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", + "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", + "dev": true, + "license": "MIT", + "dependencies": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/fast-content-type-parse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/fast-content-type-parse/-/fast-content-type-parse-2.0.1.tgz", + "integrity": "sha512-nGqtvLrj5w0naR6tDPfB4cUmYCqouzyQiz6C5y/LtcDllJdrcc6WaWW6iXyIIOErTa/XRybj28aasdn4LkVk6Q==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fastify" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fastify" + } + ], + "license": "MIT" + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-diff": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz", + "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==", + "dev": true, + "license": "Apache-2.0" + }, + "node_modules/fast-glob": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", + "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.8" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-uri": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.6.tgz", + "integrity": "sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fastify" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fastify" + } + ], + "license": "BSD-3-Clause", + "optional": true + }, + "node_modules/fastq": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz", + "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/figures": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", + "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", + "dev": true, + "license": "MIT", + "dependencies": { + "escape-string-regexp": "^1.0.5" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/file-entry-cache": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "flat-cache": "^4.0.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-node-modules": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/find-node-modules/-/find-node-modules-2.1.3.tgz", + "integrity": "sha512-UC2I2+nx1ZuOBclWVNdcnbDR5dlrOdVb7xNjmT/lHE+LsgztWks3dG7boJ37yTS/venXw84B/mAW9uHVoC5QRg==", + "dev": true, + "license": "MIT", + "dependencies": { + "findup-sync": "^4.0.0", + "merge": "^2.1.1" + } + }, + "node_modules/find-root": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", + "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==", + "dev": true, + "license": "MIT" + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/find-up-simple": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/find-up-simple/-/find-up-simple-1.0.1.tgz", + "integrity": "sha512-afd4O7zpqHeRyg4PfDQsXmlDe2PfdHtJt6Akt8jOWaApLOZk5JXs6VMR29lz03pRe9mpykrRCYIYxaJYcfpncQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/find-versions": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/find-versions/-/find-versions-6.0.0.tgz", + "integrity": "sha512-2kCCtc+JvcZ86IGAz3Z2Y0A1baIz9fL31pH/0S1IqZr9Iwnjq8izfPtrCyQKO6TLMPELLsQMre7VDqeIKCsHkA==", + "dev": true, + "license": "MIT", + "dependencies": { + "semver-regex": "^4.0.5", + "super-regex": "^1.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/findup-sync": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-4.0.0.tgz", + "integrity": "sha512-6jvvn/12IC4quLBL1KNokxC7wWTvYncaVUYSoxWw7YykPLuRrnv4qdHcSOywOI5RpkOVGeQRtWM8/q+G6W6qfQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "detect-file": "^1.0.0", + "is-glob": "^4.0.0", + "micromatch": "^4.0.2", + "resolve-dir": "^1.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/flat-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.4" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/flatted": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", + "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", + "dev": true, + "license": "ISC" + }, + "node_modules/from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==", + "dev": true, + "license": "MIT", + "dependencies": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + } + }, + "node_modules/from2/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, + "license": "MIT", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/from2/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true, + "license": "MIT" + }, + "node_modules/from2/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/fs-extra": { + "version": "11.3.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.0.tgz", + "integrity": "sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=14.14" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true, + "license": "ISC" + }, + "node_modules/function-timeout": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/function-timeout/-/function-timeout-1.0.2.tgz", + "integrity": "sha512-939eZS4gJ3htTHAldmyyuzlrD58P03fHG49v2JfFXbV6OhvZKRC9j2yAtdHw/zrp2zXHuv05zMIy40F0ge7spA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "license": "ISC", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-east-asian-width": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.3.0.tgz", + "integrity": "sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/git-log-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/git-log-parser/-/git-log-parser-1.2.1.tgz", + "integrity": "sha512-PI+sPDvHXNPl5WNOErAK05s3j0lgwUzMN6o8cyQrDaKfT3qd7TmNJKeXX+SknI5I0QhG5fVPAEwSY4tRGDtYoQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "argv-formatter": "~1.0.0", + "spawn-error-forwarder": "~1.0.0", + "split2": "~1.0.0", + "stream-combiner2": "~1.1.1", + "through2": "~2.0.0", + "traverse": "0.6.8" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dev": true, + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/glob/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/glob/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/global-directory": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/global-directory/-/global-directory-4.0.1.tgz", + "integrity": "sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "ini": "4.1.1" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/global-modules": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", + "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", + "dev": true, + "license": "MIT", + "dependencies": { + "global-prefix": "^1.0.1", + "is-windows": "^1.0.1", + "resolve-dir": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/global-prefix": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", + "integrity": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==", + "dev": true, + "license": "MIT", + "dependencies": { + "expand-tilde": "^2.0.2", + "homedir-polyfill": "^1.0.1", + "ini": "^1.3.4", + "is-windows": "^1.0.1", + "which": "^1.2.14" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/global-prefix/node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true, + "license": "ISC" + }, + "node_modules/global-prefix/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/globals": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globby": { + "version": "14.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-14.1.0.tgz", + "integrity": "sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@sindresorhus/merge-streams": "^2.1.0", + "fast-glob": "^3.3.3", + "ignore": "^7.0.3", + "path-type": "^6.0.0", + "slash": "^5.1.0", + "unicorn-magic": "^0.3.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globby/node_modules/ignore": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.3.tgz", + "integrity": "sha512-bAH5jbK/F3T3Jls4I0SO1hmPR0dKU0a7+SY6n1yzRtG54FLO8d6w/nxLFX2Nb7dBu6cCWXPaAME6cYqFUMmuCA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/globby/node_modules/path-type": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-6.0.0.tgz", + "integrity": "sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globby/node_modules/unicorn-magic": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.3.0.tgz", + "integrity": "sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true, + "license": "MIT" + }, + "node_modules/handlebars": { + "version": "4.7.8", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.8.tgz", + "integrity": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "minimist": "^1.2.5", + "neo-async": "^2.6.2", + "source-map": "^0.6.1", + "wordwrap": "^1.0.0" + }, + "bin": { + "handlebars": "bin/handlebars" + }, + "engines": { + "node": ">=0.4.7" + }, + "optionalDependencies": { + "uglify-js": "^3.1.4" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/highlight.js": { + "version": "10.7.3", + "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-10.7.3.tgz", + "integrity": "sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": "*" + } + }, + "node_modules/homedir-polyfill": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", + "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", + "dev": true, + "license": "MIT", + "dependencies": { + "parse-passwd": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hook-std": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/hook-std/-/hook-std-3.0.0.tgz", + "integrity": "sha512-jHRQzjSDzMtFy34AGj1DN+vq54WVuhSvKgrHf0OMiFQTwDD4L/qqofVEWjLOBMTn5+lCD3fPg32W9yOfnEJTTw==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/hosted-git-info": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.2.tgz", + "integrity": "sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==", + "dev": true, + "license": "ISC", + "dependencies": { + "lru-cache": "^10.0.1" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/http-proxy-agent": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", + "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", + "dev": true, + "license": "MIT", + "dependencies": { + "agent-base": "^7.1.0", + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/https-proxy-agent": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz", + "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==", + "dev": true, + "license": "MIT", + "dependencies": { + "agent-base": "^7.1.2", + "debug": "4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/husky": { + "version": "9.1.7", + "resolved": "https://registry.npmjs.org/husky/-/husky-9.1.7.tgz", + "integrity": "sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA==", + "dev": true, + "license": "MIT", + "bin": { + "husky": "bin.js" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/typicode" + } + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "BSD-3-Clause" + }, + "node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", + "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-fresh/node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/import-from-esm": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-from-esm/-/import-from-esm-2.0.0.tgz", + "integrity": "sha512-YVt14UZCgsX1vZQ3gKjkWVdBdHQ6eu3MPU1TBgL1H5orXe2+jWD006WCPPtOuwlQm10NuzOW5WawiF1Q9veW8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^4.3.4", + "import-meta-resolve": "^4.0.0" + }, + "engines": { + "node": ">=18.20" + } + }, + "node_modules/import-meta-resolve": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-4.1.0.tgz", + "integrity": "sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/index-to-position": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/index-to-position/-/index-to-position-1.1.0.tgz", + "integrity": "sha512-XPdx9Dq4t9Qk1mTMbWONJqU7boCoumEH7fRET37HX5+khDUl3J2W6PdALxhILYlIYx2amlwYcRPp28p0tSiojg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", + "dev": true, + "license": "ISC", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/ini": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ini/-/ini-4.1.1.tgz", + "integrity": "sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==", + "dev": true, + "license": "ISC", + "optional": true, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/inquirer": { + "version": "8.2.5", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.5.tgz", + "integrity": "sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.1", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.21", + "mute-stream": "0.0.8", + "ora": "^5.4.1", + "run-async": "^2.4.0", + "rxjs": "^7.5.5", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/inquirer/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/inquirer/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/inquirer/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/inquirer/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/inquirer/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/inquirer/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/into-stream": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/into-stream/-/into-stream-7.0.0.tgz", + "integrity": "sha512-2dYz766i9HprMBasCMvHMuazJ7u4WzhJwo5kb3iPSiW/iRYV6uPari3zHoqZlnuaR7V1bEiNMxikhp37rdBXbw==", + "dev": true, + "license": "MIT", + "dependencies": { + "from2": "^2.3.0", + "p-is-promise": "^3.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true, + "license": "MIT" + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz", + "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-plain-obj": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", + "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true, + "license": "ISC" + }, + "node_modules/issue-parser": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/issue-parser/-/issue-parser-7.0.1.tgz", + "integrity": "sha512-3YZcUUR2Wt1WsapF+S/WiA2WmlW0cWAoPccMqne7AxEBhCdFeTPjfv/Axb8V2gyCgY3nRw+ksZ3xSUX+R47iAg==", + "dev": true, + "license": "MIT", + "dependencies": { + "lodash.capitalize": "^4.2.1", + "lodash.escaperegexp": "^4.1.2", + "lodash.isplainobject": "^4.0.6", + "lodash.isstring": "^4.0.1", + "lodash.uniqby": "^4.7.0" + }, + "engines": { + "node": "^18.17 || >=20.6.1" + } + }, + "node_modules/java-properties": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/java-properties/-/java-properties-1.0.2.tgz", + "integrity": "sha512-qjdpeo2yKlYTH7nFdK0vbZWuTCesk4o63v5iVOlhMQPfuIZQfW/HI35SjfhA+4qpg36rnFSvUK5b1m+ckIblQQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/jiti": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.4.2.tgz", + "integrity": "sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==", + "dev": true, + "license": "MIT", + "optional": true, + "bin": { + "jiti": "lib/jiti-cli.mjs" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true, + "license": "MIT", + "optional": true + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lilconfig": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz", + "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antonk52" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true, + "license": "MIT" + }, + "node_modules/lint-staged": { + "version": "15.5.1", + "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-15.5.1.tgz", + "integrity": "sha512-6m7u8mue4Xn6wK6gZvSCQwBvMBR36xfY24nF5bMTf2MHDYG6S3yhJuOgdYVw99hsjyDt2d4z168b3naI8+NWtQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^5.4.1", + "commander": "^13.1.0", + "debug": "^4.4.0", + "execa": "^8.0.1", + "lilconfig": "^3.1.3", + "listr2": "^8.2.5", + "micromatch": "^4.0.8", + "pidtree": "^0.6.0", + "string-argv": "^0.3.2", + "yaml": "^2.7.0" + }, + "bin": { + "lint-staged": "bin/lint-staged.js" + }, + "engines": { + "node": ">=18.12.0" + }, + "funding": { + "url": "https://opencollective.com/lint-staged" + } + }, + "node_modules/lint-staged/node_modules/chalk": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.4.1.tgz", + "integrity": "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/lint-staged/node_modules/execa": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", + "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", + "dev": true, + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^8.0.1", + "human-signals": "^5.0.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^4.1.0", + "strip-final-newline": "^3.0.0" + }, + "engines": { + "node": ">=16.17" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/lint-staged/node_modules/get-stream": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", + "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lint-staged/node_modules/human-signals": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", + "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=16.17.0" + } + }, + "node_modules/lint-staged/node_modules/is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lint-staged/node_modules/mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lint-staged/node_modules/npm-run-path": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz", + "integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lint-staged/node_modules/onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "mimic-fn": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lint-staged/node_modules/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lint-staged/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/lint-staged/node_modules/strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/listr2": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/listr2/-/listr2-8.3.2.tgz", + "integrity": "sha512-vsBzcU4oE+v0lj4FhVLzr9dBTv4/fHIa57l+GCwovP8MoFNZJTOhGU8PXd4v2VJCbECAaijBiHntiekFMLvo0g==", + "dev": true, + "license": "MIT", + "dependencies": { + "cli-truncate": "^4.0.0", + "colorette": "^2.0.20", + "eventemitter3": "^5.0.1", + "log-update": "^6.1.0", + "rfdc": "^1.4.1", + "wrap-ansi": "^9.0.0" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/listr2/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/listr2/node_modules/emoji-regex": { + "version": "10.4.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.4.0.tgz", + "integrity": "sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==", + "dev": true, + "license": "MIT" + }, + "node_modules/listr2/node_modules/string-width": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz", + "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^10.3.0", + "get-east-asian-width": "^1.0.0", + "strip-ansi": "^7.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/listr2/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/listr2/node_modules/wrap-ansi": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.0.tgz", + "integrity": "sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.2.1", + "string-width": "^7.0.0", + "strip-ansi": "^7.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/load-json-file": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/load-json-file/node_modules/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "dev": true, + "license": "MIT", + "dependencies": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/load-json-file/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash-es": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", + "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.capitalize": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz", + "integrity": "sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.escaperegexp": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz", + "integrity": "sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.isplainobject": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", + "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.isstring": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", + "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.map": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz", + "integrity": "sha512-worNHGKLDetmcEYDvh2stPCrrQRkP20E4l0iIS7F8EvzMqBBi7ltvFN5m1HvTf1P7Jk1txKhvFcmYsCr8O2F1Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.mergewith": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz", + "integrity": "sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==", + "dev": true, + "license": "MIT", + "optional": true + }, + "node_modules/lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", + "dev": true, + "license": "MIT", + "optional": true + }, + "node_modules/lodash.uniqby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.uniqby/-/lodash.uniqby-4.7.0.tgz", + "integrity": "sha512-e/zcLx6CSbmaEgFHCA7BnoQKyCtKMxnuWrJygbwPs/AIn+IMKl66L8/s+wBUn5LRw2pZx3bUHibiV1b6aTWIww==", + "dev": true, + "license": "MIT" + }, + "node_modules/log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/log-symbols/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/log-symbols/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/log-symbols/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/log-symbols/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/log-symbols/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/log-symbols/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/log-update": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/log-update/-/log-update-6.1.0.tgz", + "integrity": "sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-escapes": "^7.0.0", + "cli-cursor": "^5.0.0", + "slice-ansi": "^7.1.0", + "strip-ansi": "^7.1.0", + "wrap-ansi": "^9.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/log-update/node_modules/ansi-escapes": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-7.0.0.tgz", + "integrity": "sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==", + "dev": true, + "license": "MIT", + "dependencies": { + "environment": "^1.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/log-update/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/log-update/node_modules/cli-cursor": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-5.0.0.tgz", + "integrity": "sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==", + "dev": true, + "license": "MIT", + "dependencies": { + "restore-cursor": "^5.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/log-update/node_modules/emoji-regex": { + "version": "10.4.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.4.0.tgz", + "integrity": "sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==", + "dev": true, + "license": "MIT" + }, + "node_modules/log-update/node_modules/is-fullwidth-code-point": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-5.0.0.tgz", + "integrity": "sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==", + "dev": true, + "license": "MIT", + "dependencies": { + "get-east-asian-width": "^1.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/log-update/node_modules/onetime": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-7.0.0.tgz", + "integrity": "sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "mimic-function": "^5.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/log-update/node_modules/restore-cursor": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-5.1.0.tgz", + "integrity": "sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==", + "dev": true, + "license": "MIT", + "dependencies": { + "onetime": "^7.0.0", + "signal-exit": "^4.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/log-update/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/log-update/node_modules/slice-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-7.1.0.tgz", + "integrity": "sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.2.1", + "is-fullwidth-code-point": "^5.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" + } + }, + "node_modules/log-update/node_modules/string-width": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz", + "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^10.3.0", + "get-east-asian-width": "^1.0.0", + "strip-ansi": "^7.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/log-update/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/log-update/node_modules/wrap-ansi": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.0.tgz", + "integrity": "sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.2.1", + "string-width": "^7.0.0", + "strip-ansi": "^7.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/longest": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/longest/-/longest-2.0.1.tgz", + "integrity": "sha512-Ajzxb8CM6WAnFjgiloPsI3bF+WCxcvhdIG3KNA2KN962+tdBsHcuQ4k4qX/EcS/2CRkcc0iAkR956Nib6aXU/Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/marked": { + "version": "12.0.2", + "resolved": "https://registry.npmjs.org/marked/-/marked-12.0.2.tgz", + "integrity": "sha512-qXUm7e/YKFoqFPYPa3Ukg9xlI5cyAtGmyEIzMfW//m6kXwCy2Ps9DYf5ioijFKQ8qyuscrHoY04iJGctu2Kg0Q==", + "dev": true, + "license": "MIT", + "bin": { + "marked": "bin/marked.js" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/marked-terminal": { + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/marked-terminal/-/marked-terminal-7.3.0.tgz", + "integrity": "sha512-t4rBvPsHc57uE/2nJOLmMbZCQ4tgAccAED3ngXQqW6g+TxA488JzJ+FK3lQkzBQOI1mRV/r/Kq+1ZlJ4D0owQw==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-escapes": "^7.0.0", + "ansi-regex": "^6.1.0", + "chalk": "^5.4.1", + "cli-highlight": "^2.1.11", + "cli-table3": "^0.6.5", + "node-emoji": "^2.2.0", + "supports-hyperlinks": "^3.1.0" + }, + "engines": { + "node": ">=16.0.0" + }, + "peerDependencies": { + "marked": ">=1 <16" + } + }, + "node_modules/marked-terminal/node_modules/ansi-escapes": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-7.0.0.tgz", + "integrity": "sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==", + "dev": true, + "license": "MIT", + "dependencies": { + "environment": "^1.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/marked-terminal/node_modules/chalk": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.4.1.tgz", + "integrity": "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/meow": { + "version": "13.2.0", + "resolved": "https://registry.npmjs.org/meow/-/meow-13.2.0.tgz", + "integrity": "sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/merge": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/merge/-/merge-2.1.1.tgz", + "integrity": "sha512-jz+Cfrg9GWOZbQAnDQ4hlVnQky+341Yk5ru8bZSe6sIDTCIg8n9i/u7hSQGSVOF3C7lH6mGtqjkiT9G4wFLL0w==", + "dev": true, + "license": "MIT" + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true, + "license": "MIT" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "dev": true, + "license": "MIT", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/mime/-/mime-4.0.7.tgz", + "integrity": "sha512-2OfDPL+e03E0LrXaGYOtTFIYhiuzep94NSsuhrNULq+stylcJedcHdzHtz0atMUuGwJfFYs0YL5xeC/Ca2x0eQ==", + "dev": true, + "funding": [ + "https://github.com/sponsors/broofa" + ], + "license": "MIT", + "bin": { + "mime": "bin/cli.js" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/mimic-function": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/mimic-function/-/mimic-function-5.0.1.tgz", + "integrity": "sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/minimist": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz", + "integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/mute-stream": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", + "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", + "dev": true, + "license": "ISC" + }, + "node_modules/mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true, + "license": "MIT" + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true, + "license": "MIT" + }, + "node_modules/nerf-dart": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/nerf-dart/-/nerf-dart-1.0.0.tgz", + "integrity": "sha512-EZSPZB70jiVsivaBLYDCyntd5eH8NTSMOn3rB+HxwdmKThGELLdYv8qVIMWvZEFy9w8ZZpW9h9OB32l1rGtj7g==", + "dev": true, + "license": "MIT" + }, + "node_modules/node-emoji": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-2.2.0.tgz", + "integrity": "sha512-Z3lTE9pLaJF47NyMhd4ww1yFTAP8YhYI8SleJiHzM46Fgpm5cnNzSl9XfzFNqbaz+VlJrIj3fXQ4DeN1Rjm6cw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@sindresorhus/is": "^4.6.0", + "char-regex": "^1.0.2", + "emojilib": "^2.4.0", + "skin-tone": "^2.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/normalize-package-data": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.2.tgz", + "integrity": "sha512-V6gygoYb/5EmNI+MEGrWkC+e6+Rr7mTmfHrxDbLzxQogBkgzo76rkok0Am6thgSF7Mv2nLOajAJj5vDJZEFn7g==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "hosted-git-info": "^7.0.0", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/normalize-url": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.1.tgz", + "integrity": "sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm": { + "version": "10.9.2", + "resolved": "https://registry.npmjs.org/npm/-/npm-10.9.2.tgz", + "integrity": "sha512-iriPEPIkoMYUy3F6f3wwSZAU93E0Eg6cHwIR6jzzOXWSy+SD/rOODEs74cVONHKSx2obXtuUoyidVEhISrisgQ==", + "bundleDependencies": [ + "@isaacs/string-locale-compare", + "@npmcli/arborist", + "@npmcli/config", + "@npmcli/fs", + "@npmcli/map-workspaces", + "@npmcli/package-json", + "@npmcli/promise-spawn", + "@npmcli/redact", + "@npmcli/run-script", + "@sigstore/tuf", + "abbrev", + "archy", + "cacache", + "chalk", + "ci-info", + "cli-columns", + "fastest-levenshtein", + "fs-minipass", + "glob", + "graceful-fs", + "hosted-git-info", + "ini", + "init-package-json", + "is-cidr", + "json-parse-even-better-errors", + "libnpmaccess", + "libnpmdiff", + "libnpmexec", + "libnpmfund", + "libnpmhook", + "libnpmorg", + "libnpmpack", + "libnpmpublish", + "libnpmsearch", + "libnpmteam", + "libnpmversion", + "make-fetch-happen", + "minimatch", + "minipass", + "minipass-pipeline", + "ms", + "node-gyp", + "nopt", + "normalize-package-data", + "npm-audit-report", + "npm-install-checks", + "npm-package-arg", + "npm-pick-manifest", + "npm-profile", + "npm-registry-fetch", + "npm-user-validate", + "p-map", + "pacote", + "parse-conflict-json", + "proc-log", + "qrcode-terminal", + "read", + "semver", + "spdx-expression-parse", + "ssri", + "supports-color", + "tar", + "text-table", + "tiny-relative-date", + "treeverse", + "validate-npm-package-name", + "which", + "write-file-atomic" + ], + "dev": true, + "license": "Artistic-2.0", + "workspaces": [ + "docs", + "smoke-tests", + "mock-globals", + "mock-registry", + "workspaces/*" + ], + "dependencies": { + "@isaacs/string-locale-compare": "^1.1.0", + "@npmcli/arborist": "^8.0.0", + "@npmcli/config": "^9.0.0", + "@npmcli/fs": "^4.0.0", + "@npmcli/map-workspaces": "^4.0.2", + "@npmcli/package-json": "^6.1.0", + "@npmcli/promise-spawn": "^8.0.2", + "@npmcli/redact": "^3.0.0", + "@npmcli/run-script": "^9.0.1", + "@sigstore/tuf": "^3.0.0", + "abbrev": "^3.0.0", + "archy": "~1.0.0", + "cacache": "^19.0.1", + "chalk": "^5.3.0", + "ci-info": "^4.1.0", + "cli-columns": "^4.0.0", + "fastest-levenshtein": "^1.0.16", + "fs-minipass": "^3.0.3", + "glob": "^10.4.5", + "graceful-fs": "^4.2.11", + "hosted-git-info": "^8.0.2", + "ini": "^5.0.0", + "init-package-json": "^7.0.2", + "is-cidr": "^5.1.0", + "json-parse-even-better-errors": "^4.0.0", + "libnpmaccess": "^9.0.0", + "libnpmdiff": "^7.0.0", + "libnpmexec": "^9.0.0", + "libnpmfund": "^6.0.0", + "libnpmhook": "^11.0.0", + "libnpmorg": "^7.0.0", + "libnpmpack": "^8.0.0", + "libnpmpublish": "^10.0.1", + "libnpmsearch": "^8.0.0", + "libnpmteam": "^7.0.0", + "libnpmversion": "^7.0.0", + "make-fetch-happen": "^14.0.3", + "minimatch": "^9.0.5", + "minipass": "^7.1.1", + "minipass-pipeline": "^1.2.4", + "ms": "^2.1.2", + "node-gyp": "^11.0.0", + "nopt": "^8.0.0", + "normalize-package-data": "^7.0.0", + "npm-audit-report": "^6.0.0", + "npm-install-checks": "^7.1.1", + "npm-package-arg": "^12.0.0", + "npm-pick-manifest": "^10.0.0", + "npm-profile": "^11.0.1", + "npm-registry-fetch": "^18.0.2", + "npm-user-validate": "^3.0.0", + "p-map": "^4.0.0", + "pacote": "^19.0.1", + "parse-conflict-json": "^4.0.0", + "proc-log": "^5.0.0", + "qrcode-terminal": "^0.12.0", + "read": "^4.0.0", + "semver": "^7.6.3", + "spdx-expression-parse": "^4.0.0", + "ssri": "^12.0.0", + "supports-color": "^9.4.0", + "tar": "^6.2.1", + "text-table": "~0.2.0", + "tiny-relative-date": "^1.3.0", + "treeverse": "^3.0.0", + "validate-npm-package-name": "^6.0.0", + "which": "^5.0.0", + "write-file-atomic": "^6.0.0" + }, + "bin": { + "npm": "bin/npm-cli.js", + "npx": "bin/npx-cli.js" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/@isaacs/cliui": { + "version": "8.0.2", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/npm/node_modules/@isaacs/cliui/node_modules/ansi-regex": { + "version": "6.1.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex": { + "version": "9.2.2", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/@isaacs/cliui/node_modules/string-width": { + "version": "5.1.2", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm/node_modules/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.1.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/npm/node_modules/@isaacs/fs-minipass": { + "version": "4.0.1", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "minipass": "^7.0.4" + }, + "engines": { + "node": ">=18.0.0" + } + }, + "node_modules/npm/node_modules/@isaacs/string-locale-compare": { + "version": "1.1.0", + "dev": true, + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/@npmcli/agent": { + "version": "3.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "agent-base": "^7.1.0", + "http-proxy-agent": "^7.0.0", + "https-proxy-agent": "^7.0.1", + "lru-cache": "^10.0.1", + "socks-proxy-agent": "^8.0.3" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/@npmcli/arborist": { + "version": "8.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "@isaacs/string-locale-compare": "^1.1.0", + "@npmcli/fs": "^4.0.0", + "@npmcli/installed-package-contents": "^3.0.0", + "@npmcli/map-workspaces": "^4.0.1", + "@npmcli/metavuln-calculator": "^8.0.0", + "@npmcli/name-from-folder": "^3.0.0", + "@npmcli/node-gyp": "^4.0.0", + "@npmcli/package-json": "^6.0.1", + "@npmcli/query": "^4.0.0", + "@npmcli/redact": "^3.0.0", + "@npmcli/run-script": "^9.0.1", + "bin-links": "^5.0.0", + "cacache": "^19.0.1", + "common-ancestor-path": "^1.0.1", + "hosted-git-info": "^8.0.0", + "json-parse-even-better-errors": "^4.0.0", + "json-stringify-nice": "^1.1.4", + "lru-cache": "^10.2.2", + "minimatch": "^9.0.4", + "nopt": "^8.0.0", + "npm-install-checks": "^7.1.0", + "npm-package-arg": "^12.0.0", + "npm-pick-manifest": "^10.0.0", + "npm-registry-fetch": "^18.0.1", + "pacote": "^19.0.0", + "parse-conflict-json": "^4.0.0", + "proc-log": "^5.0.0", + "proggy": "^3.0.0", + "promise-all-reject-late": "^1.0.0", + "promise-call-limit": "^3.0.1", + "read-package-json-fast": "^4.0.0", + "semver": "^7.3.7", + "ssri": "^12.0.0", + "treeverse": "^3.0.0", + "walk-up-path": "^3.0.1" + }, + "bin": { + "arborist": "bin/index.js" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/@npmcli/config": { + "version": "9.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/map-workspaces": "^4.0.1", + "@npmcli/package-json": "^6.0.1", + "ci-info": "^4.0.0", + "ini": "^5.0.0", + "nopt": "^8.0.0", + "proc-log": "^5.0.0", + "semver": "^7.3.5", + "walk-up-path": "^3.0.1" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/@npmcli/fs": { + "version": "4.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "semver": "^7.3.5" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/@npmcli/git": { + "version": "6.0.1", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/promise-spawn": "^8.0.0", + "ini": "^5.0.0", + "lru-cache": "^10.0.1", + "npm-pick-manifest": "^10.0.0", + "proc-log": "^5.0.0", + "promise-inflight": "^1.0.1", + "promise-retry": "^2.0.1", + "semver": "^7.3.5", + "which": "^5.0.0" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/@npmcli/installed-package-contents": { + "version": "3.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "npm-bundled": "^4.0.0", + "npm-normalize-package-bin": "^4.0.0" + }, + "bin": { + "installed-package-contents": "bin/index.js" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/@npmcli/map-workspaces": { + "version": "4.0.2", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/name-from-folder": "^3.0.0", + "@npmcli/package-json": "^6.0.0", + "glob": "^10.2.2", + "minimatch": "^9.0.0" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/@npmcli/metavuln-calculator": { + "version": "8.0.1", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "cacache": "^19.0.0", + "json-parse-even-better-errors": "^4.0.0", + "pacote": "^20.0.0", + "proc-log": "^5.0.0", + "semver": "^7.3.5" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/@npmcli/metavuln-calculator/node_modules/pacote": { + "version": "20.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/git": "^6.0.0", + "@npmcli/installed-package-contents": "^3.0.0", + "@npmcli/package-json": "^6.0.0", + "@npmcli/promise-spawn": "^8.0.0", + "@npmcli/run-script": "^9.0.0", + "cacache": "^19.0.0", + "fs-minipass": "^3.0.0", + "minipass": "^7.0.2", + "npm-package-arg": "^12.0.0", + "npm-packlist": "^9.0.0", + "npm-pick-manifest": "^10.0.0", + "npm-registry-fetch": "^18.0.0", + "proc-log": "^5.0.0", + "promise-retry": "^2.0.1", + "sigstore": "^3.0.0", + "ssri": "^12.0.0", + "tar": "^6.1.11" + }, + "bin": { + "pacote": "bin/index.js" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/@npmcli/name-from-folder": { + "version": "3.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/@npmcli/node-gyp": { + "version": "4.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/@npmcli/package-json": { + "version": "6.1.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/git": "^6.0.0", + "glob": "^10.2.2", + "hosted-git-info": "^8.0.0", + "json-parse-even-better-errors": "^4.0.0", + "normalize-package-data": "^7.0.0", + "proc-log": "^5.0.0", + "semver": "^7.5.3" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/@npmcli/promise-spawn": { + "version": "8.0.2", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "which": "^5.0.0" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/@npmcli/query": { + "version": "4.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "postcss-selector-parser": "^6.1.2" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/@npmcli/redact": { + "version": "3.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/@npmcli/run-script": { + "version": "9.0.2", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/node-gyp": "^4.0.0", + "@npmcli/package-json": "^6.0.0", + "@npmcli/promise-spawn": "^8.0.0", + "node-gyp": "^11.0.0", + "proc-log": "^5.0.0", + "which": "^5.0.0" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/npm/node_modules/@sigstore/protobuf-specs": { + "version": "0.3.2", + "dev": true, + "inBundle": true, + "license": "Apache-2.0", + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/@sigstore/tuf": { + "version": "3.0.0", + "dev": true, + "inBundle": true, + "license": "Apache-2.0", + "dependencies": { + "@sigstore/protobuf-specs": "^0.3.2", + "tuf-js": "^3.0.1" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/@tufjs/canonical-json": { + "version": "2.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/abbrev": { + "version": "3.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/agent-base": { + "version": "7.1.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/npm/node_modules/aggregate-error": { + "version": "3.1.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/ansi-regex": { + "version": "5.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/ansi-styles": { + "version": "6.2.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/npm/node_modules/aproba": { + "version": "2.0.0", + "dev": true, + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/archy": { + "version": "1.0.0", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/balanced-match": { + "version": "1.0.2", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/bin-links": { + "version": "5.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "cmd-shim": "^7.0.0", + "npm-normalize-package-bin": "^4.0.0", + "proc-log": "^5.0.0", + "read-cmd-shim": "^5.0.0", + "write-file-atomic": "^6.0.0" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/binary-extensions": { + "version": "2.3.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm/node_modules/brace-expansion": { + "version": "2.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/npm/node_modules/cacache": { + "version": "19.0.1", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/fs": "^4.0.0", + "fs-minipass": "^3.0.0", + "glob": "^10.2.2", + "lru-cache": "^10.0.1", + "minipass": "^7.0.3", + "minipass-collect": "^2.0.1", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "p-map": "^7.0.2", + "ssri": "^12.0.0", + "tar": "^7.4.3", + "unique-filename": "^4.0.0" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/cacache/node_modules/chownr": { + "version": "3.0.0", + "dev": true, + "inBundle": true, + "license": "BlueOak-1.0.0", + "engines": { + "node": ">=18" + } + }, + "node_modules/npm/node_modules/cacache/node_modules/minizlib": { + "version": "3.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "minipass": "^7.0.4", + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/npm/node_modules/cacache/node_modules/mkdirp": { + "version": "3.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "bin": { + "mkdirp": "dist/cjs/src/bin.js" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/npm/node_modules/cacache/node_modules/p-map": { + "version": "7.0.2", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm/node_modules/cacache/node_modules/tar": { + "version": "7.4.3", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "@isaacs/fs-minipass": "^4.0.0", + "chownr": "^3.0.0", + "minipass": "^7.1.2", + "minizlib": "^3.0.1", + "mkdirp": "^3.0.1", + "yallist": "^5.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/npm/node_modules/cacache/node_modules/yallist": { + "version": "5.0.0", + "dev": true, + "inBundle": true, + "license": "BlueOak-1.0.0", + "engines": { + "node": ">=18" + } + }, + "node_modules/npm/node_modules/chalk": { + "version": "5.3.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/npm/node_modules/chownr": { + "version": "2.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/ci-info": { + "version": "4.1.0", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/cidr-regex": { + "version": "4.1.1", + "dev": true, + "inBundle": true, + "license": "BSD-2-Clause", + "dependencies": { + "ip-regex": "^5.0.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/npm/node_modules/clean-stack": { + "version": "2.2.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/npm/node_modules/cli-columns": { + "version": "4.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/npm/node_modules/cmd-shim": { + "version": "7.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/color-convert": { + "version": "2.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/npm/node_modules/color-name": { + "version": "1.1.4", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/common-ancestor-path": { + "version": "1.0.1", + "dev": true, + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/cross-spawn": { + "version": "7.0.6", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/npm/node_modules/cross-spawn/node_modules/which": { + "version": "2.0.2", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/npm/node_modules/cssesc": { + "version": "3.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm/node_modules/debug": { + "version": "4.3.7", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/npm/node_modules/diff": { + "version": "5.2.0", + "dev": true, + "inBundle": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/npm/node_modules/eastasianwidth": { + "version": "0.2.0", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/emoji-regex": { + "version": "8.0.0", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/encoding": { + "version": "0.1.13", + "dev": true, + "inBundle": true, + "license": "MIT", + "optional": true, + "dependencies": { + "iconv-lite": "^0.6.2" + } + }, + "node_modules/npm/node_modules/env-paths": { + "version": "2.2.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/npm/node_modules/err-code": { + "version": "2.0.3", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/exponential-backoff": { + "version": "3.1.1", + "dev": true, + "inBundle": true, + "license": "Apache-2.0" + }, + "node_modules/npm/node_modules/fastest-levenshtein": { + "version": "1.0.16", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">= 4.9.1" + } + }, + "node_modules/npm/node_modules/foreground-child": { + "version": "3.3.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/npm/node_modules/fs-minipass": { + "version": "3.0.3", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "minipass": "^7.0.3" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/glob": { + "version": "10.4.5", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/npm/node_modules/graceful-fs": { + "version": "4.2.11", + "dev": true, + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/hosted-git-info": { + "version": "8.0.2", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "lru-cache": "^10.0.1" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/http-cache-semantics": { + "version": "4.1.1", + "dev": true, + "inBundle": true, + "license": "BSD-2-Clause" + }, + "node_modules/npm/node_modules/http-proxy-agent": { + "version": "7.0.2", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "agent-base": "^7.1.0", + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/npm/node_modules/https-proxy-agent": { + "version": "7.0.5", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "agent-base": "^7.0.2", + "debug": "4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/npm/node_modules/iconv-lite": { + "version": "0.6.3", + "dev": true, + "inBundle": true, + "license": "MIT", + "optional": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm/node_modules/ignore-walk": { + "version": "7.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "minimatch": "^9.0.0" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/imurmurhash": { + "version": "0.1.4", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/npm/node_modules/indent-string": { + "version": "4.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/ini": { + "version": "5.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/init-package-json": { + "version": "7.0.2", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/package-json": "^6.0.0", + "npm-package-arg": "^12.0.0", + "promzard": "^2.0.0", + "read": "^4.0.0", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4", + "validate-npm-package-name": "^6.0.0" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/ip-address": { + "version": "9.0.5", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "jsbn": "1.1.0", + "sprintf-js": "^1.1.3" + }, + "engines": { + "node": ">= 12" + } + }, + "node_modules/npm/node_modules/ip-regex": { + "version": "5.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm/node_modules/is-cidr": { + "version": "5.1.0", + "dev": true, + "inBundle": true, + "license": "BSD-2-Clause", + "dependencies": { + "cidr-regex": "^4.1.1" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/npm/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/isexe": { + "version": "2.0.0", + "dev": true, + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/jackspeak": { + "version": "3.4.3", + "dev": true, + "inBundle": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/npm/node_modules/jsbn": { + "version": "1.1.0", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/json-parse-even-better-errors": { + "version": "4.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/json-stringify-nice": { + "version": "1.1.4", + "dev": true, + "inBundle": true, + "license": "ISC", + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/npm/node_modules/jsonparse": { + "version": "1.3.1", + "dev": true, + "engines": [ + "node >= 0.2.0" + ], + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/just-diff": { + "version": "6.0.2", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/just-diff-apply": { + "version": "5.5.0", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/libnpmaccess": { + "version": "9.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "npm-package-arg": "^12.0.0", + "npm-registry-fetch": "^18.0.1" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/libnpmdiff": { + "version": "7.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/arborist": "^8.0.0", + "@npmcli/installed-package-contents": "^3.0.0", + "binary-extensions": "^2.3.0", + "diff": "^5.1.0", + "minimatch": "^9.0.4", + "npm-package-arg": "^12.0.0", + "pacote": "^19.0.0", + "tar": "^6.2.1" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/libnpmexec": { + "version": "9.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/arborist": "^8.0.0", + "@npmcli/run-script": "^9.0.1", + "ci-info": "^4.0.0", + "npm-package-arg": "^12.0.0", + "pacote": "^19.0.0", + "proc-log": "^5.0.0", + "read": "^4.0.0", + "read-package-json-fast": "^4.0.0", + "semver": "^7.3.7", + "walk-up-path": "^3.0.1" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/libnpmfund": { + "version": "6.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/arborist": "^8.0.0" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/libnpmhook": { + "version": "11.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "aproba": "^2.0.0", + "npm-registry-fetch": "^18.0.1" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/libnpmorg": { + "version": "7.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "aproba": "^2.0.0", + "npm-registry-fetch": "^18.0.1" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/libnpmpack": { + "version": "8.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/arborist": "^8.0.0", + "@npmcli/run-script": "^9.0.1", + "npm-package-arg": "^12.0.0", + "pacote": "^19.0.0" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/libnpmpublish": { + "version": "10.0.1", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "ci-info": "^4.0.0", + "normalize-package-data": "^7.0.0", + "npm-package-arg": "^12.0.0", + "npm-registry-fetch": "^18.0.1", + "proc-log": "^5.0.0", + "semver": "^7.3.7", + "sigstore": "^3.0.0", + "ssri": "^12.0.0" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/libnpmsearch": { + "version": "8.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "npm-registry-fetch": "^18.0.1" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/libnpmteam": { + "version": "7.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "aproba": "^2.0.0", + "npm-registry-fetch": "^18.0.1" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/libnpmversion": { + "version": "7.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/git": "^6.0.1", + "@npmcli/run-script": "^9.0.1", + "json-parse-even-better-errors": "^4.0.0", + "proc-log": "^5.0.0", + "semver": "^7.3.7" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/lru-cache": { + "version": "10.4.3", + "dev": true, + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/make-fetch-happen": { + "version": "14.0.3", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/agent": "^3.0.0", + "cacache": "^19.0.1", + "http-cache-semantics": "^4.1.1", + "minipass": "^7.0.2", + "minipass-fetch": "^4.0.0", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "negotiator": "^1.0.0", + "proc-log": "^5.0.0", + "promise-retry": "^2.0.1", + "ssri": "^12.0.0" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/make-fetch-happen/node_modules/negotiator": { + "version": "1.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/npm/node_modules/minimatch": { + "version": "9.0.5", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/npm/node_modules/minipass": { + "version": "7.1.2", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/npm/node_modules/minipass-collect": { + "version": "2.0.1", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "minipass": "^7.0.3" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/npm/node_modules/minipass-fetch": { + "version": "4.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "minipass": "^7.0.3", + "minipass-sized": "^1.0.3", + "minizlib": "^3.0.1" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + }, + "optionalDependencies": { + "encoding": "^0.1.13" + } + }, + "node_modules/npm/node_modules/minipass-fetch/node_modules/minizlib": { + "version": "3.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "minipass": "^7.0.4", + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/npm/node_modules/minipass-flush": { + "version": "1.0.5", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/npm/node_modules/minipass-flush/node_modules/minipass": { + "version": "3.3.6", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/minipass-pipeline": { + "version": "1.2.4", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/minipass-pipeline/node_modules/minipass": { + "version": "3.3.6", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/minipass-sized": { + "version": "1.0.3", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/minipass-sized/node_modules/minipass": { + "version": "3.3.6", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/minizlib": { + "version": "2.1.2", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/npm/node_modules/minizlib/node_modules/minipass": { + "version": "3.3.6", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/mkdirp": { + "version": "1.0.4", + "dev": true, + "inBundle": true, + "license": "MIT", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/ms": { + "version": "2.1.3", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/mute-stream": { + "version": "2.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/node-gyp": { + "version": "11.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "env-paths": "^2.2.0", + "exponential-backoff": "^3.1.1", + "glob": "^10.3.10", + "graceful-fs": "^4.2.6", + "make-fetch-happen": "^14.0.3", + "nopt": "^8.0.0", + "proc-log": "^5.0.0", + "semver": "^7.3.5", + "tar": "^7.4.3", + "which": "^5.0.0" + }, + "bin": { + "node-gyp": "bin/node-gyp.js" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/node-gyp/node_modules/chownr": { + "version": "3.0.0", + "dev": true, + "inBundle": true, + "license": "BlueOak-1.0.0", + "engines": { + "node": ">=18" + } + }, + "node_modules/npm/node_modules/node-gyp/node_modules/minizlib": { + "version": "3.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "minipass": "^7.0.4", + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/npm/node_modules/node-gyp/node_modules/mkdirp": { + "version": "3.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "bin": { + "mkdirp": "dist/cjs/src/bin.js" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/npm/node_modules/node-gyp/node_modules/tar": { + "version": "7.4.3", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "@isaacs/fs-minipass": "^4.0.0", + "chownr": "^3.0.0", + "minipass": "^7.1.2", + "minizlib": "^3.0.1", + "mkdirp": "^3.0.1", + "yallist": "^5.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/npm/node_modules/node-gyp/node_modules/yallist": { + "version": "5.0.0", + "dev": true, + "inBundle": true, + "license": "BlueOak-1.0.0", + "engines": { + "node": ">=18" + } + }, + "node_modules/npm/node_modules/nopt": { + "version": "8.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "abbrev": "^2.0.0" + }, + "bin": { + "nopt": "bin/nopt.js" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/nopt/node_modules/abbrev": { + "version": "2.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/normalize-package-data": { + "version": "7.0.0", + "dev": true, + "inBundle": true, + "license": "BSD-2-Clause", + "dependencies": { + "hosted-git-info": "^8.0.0", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/npm-audit-report": { + "version": "6.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/npm-bundled": { + "version": "4.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "npm-normalize-package-bin": "^4.0.0" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/npm-install-checks": { + "version": "7.1.1", + "dev": true, + "inBundle": true, + "license": "BSD-2-Clause", + "dependencies": { + "semver": "^7.1.1" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/npm-normalize-package-bin": { + "version": "4.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/npm-package-arg": { + "version": "12.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "hosted-git-info": "^8.0.0", + "proc-log": "^5.0.0", + "semver": "^7.3.5", + "validate-npm-package-name": "^6.0.0" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/npm-packlist": { + "version": "9.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "ignore-walk": "^7.0.0" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/npm-pick-manifest": { + "version": "10.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "npm-install-checks": "^7.1.0", + "npm-normalize-package-bin": "^4.0.0", + "npm-package-arg": "^12.0.0", + "semver": "^7.3.5" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/npm-profile": { + "version": "11.0.1", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "npm-registry-fetch": "^18.0.0", + "proc-log": "^5.0.0" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/npm-registry-fetch": { + "version": "18.0.2", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/redact": "^3.0.0", + "jsonparse": "^1.3.1", + "make-fetch-happen": "^14.0.0", + "minipass": "^7.0.2", + "minipass-fetch": "^4.0.0", + "minizlib": "^3.0.1", + "npm-package-arg": "^12.0.0", + "proc-log": "^5.0.0" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/npm-registry-fetch/node_modules/minizlib": { + "version": "3.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "minipass": "^7.0.4", + "rimraf": "^5.0.5" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/npm/node_modules/npm-user-validate": { + "version": "3.0.0", + "dev": true, + "inBundle": true, + "license": "BSD-2-Clause", + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/p-map": { + "version": "4.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm/node_modules/package-json-from-dist": { + "version": "1.0.1", + "dev": true, + "inBundle": true, + "license": "BlueOak-1.0.0" + }, + "node_modules/npm/node_modules/pacote": { + "version": "19.0.1", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/git": "^6.0.0", + "@npmcli/installed-package-contents": "^3.0.0", + "@npmcli/package-json": "^6.0.0", + "@npmcli/promise-spawn": "^8.0.0", + "@npmcli/run-script": "^9.0.0", + "cacache": "^19.0.0", + "fs-minipass": "^3.0.0", + "minipass": "^7.0.2", + "npm-package-arg": "^12.0.0", + "npm-packlist": "^9.0.0", + "npm-pick-manifest": "^10.0.0", + "npm-registry-fetch": "^18.0.0", + "proc-log": "^5.0.0", + "promise-retry": "^2.0.1", + "sigstore": "^3.0.0", + "ssri": "^12.0.0", + "tar": "^6.1.11" + }, + "bin": { + "pacote": "bin/index.js" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/parse-conflict-json": { + "version": "4.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "json-parse-even-better-errors": "^4.0.0", + "just-diff": "^6.0.0", + "just-diff-apply": "^5.2.0" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/path-key": { + "version": "3.1.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/path-scurry": { + "version": "1.11.1", + "dev": true, + "inBundle": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/npm/node_modules/postcss-selector-parser": { + "version": "6.1.2", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm/node_modules/proc-log": { + "version": "5.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/proggy": { + "version": "3.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/promise-all-reject-late": { + "version": "1.0.1", + "dev": true, + "inBundle": true, + "license": "ISC", + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/npm/node_modules/promise-call-limit": { + "version": "3.0.2", + "dev": true, + "inBundle": true, + "license": "ISC", + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/npm/node_modules/promise-inflight": { + "version": "1.0.1", + "dev": true, + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/promise-retry": { + "version": "2.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "err-code": "^2.0.2", + "retry": "^0.12.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/promzard": { + "version": "2.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "read": "^4.0.0" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/qrcode-terminal": { + "version": "0.12.0", + "dev": true, + "inBundle": true, + "bin": { + "qrcode-terminal": "bin/qrcode-terminal.js" + } + }, + "node_modules/npm/node_modules/read": { + "version": "4.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "mute-stream": "^2.0.0" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/read-cmd-shim": { + "version": "5.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/read-package-json-fast": { + "version": "4.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "json-parse-even-better-errors": "^4.0.0", + "npm-normalize-package-bin": "^4.0.0" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/retry": { + "version": "0.12.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/npm/node_modules/rimraf": { + "version": "5.0.10", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "glob": "^10.3.7" + }, + "bin": { + "rimraf": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/npm/node_modules/safer-buffer": { + "version": "2.1.2", + "dev": true, + "inBundle": true, + "license": "MIT", + "optional": true + }, + "node_modules/npm/node_modules/semver": { + "version": "7.6.3", + "dev": true, + "inBundle": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/shebang-command": { + "version": "2.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/shebang-regex": { + "version": "3.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/signal-exit": { + "version": "4.1.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/npm/node_modules/sigstore": { + "version": "3.0.0", + "dev": true, + "inBundle": true, + "license": "Apache-2.0", + "dependencies": { + "@sigstore/bundle": "^3.0.0", + "@sigstore/core": "^2.0.0", + "@sigstore/protobuf-specs": "^0.3.2", + "@sigstore/sign": "^3.0.0", + "@sigstore/tuf": "^3.0.0", + "@sigstore/verify": "^2.0.0" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/sigstore/node_modules/@sigstore/bundle": { + "version": "3.0.0", + "dev": true, + "inBundle": true, + "license": "Apache-2.0", + "dependencies": { + "@sigstore/protobuf-specs": "^0.3.2" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/sigstore/node_modules/@sigstore/core": { + "version": "2.0.0", + "dev": true, + "inBundle": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/sigstore/node_modules/@sigstore/sign": { + "version": "3.0.0", + "dev": true, + "inBundle": true, + "license": "Apache-2.0", + "dependencies": { + "@sigstore/bundle": "^3.0.0", + "@sigstore/core": "^2.0.0", + "@sigstore/protobuf-specs": "^0.3.2", + "make-fetch-happen": "^14.0.1", + "proc-log": "^5.0.0", + "promise-retry": "^2.0.1" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/sigstore/node_modules/@sigstore/verify": { + "version": "2.0.0", + "dev": true, + "inBundle": true, + "license": "Apache-2.0", + "dependencies": { + "@sigstore/bundle": "^3.0.0", + "@sigstore/core": "^2.0.0", + "@sigstore/protobuf-specs": "^0.3.2" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/smart-buffer": { + "version": "4.2.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">= 6.0.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/npm/node_modules/socks": { + "version": "2.8.3", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "ip-address": "^9.0.5", + "smart-buffer": "^4.2.0" + }, + "engines": { + "node": ">= 10.0.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/npm/node_modules/socks-proxy-agent": { + "version": "8.0.4", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "agent-base": "^7.1.1", + "debug": "^4.3.4", + "socks": "^2.8.3" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/npm/node_modules/spdx-correct": { + "version": "3.2.0", + "dev": true, + "inBundle": true, + "license": "Apache-2.0", + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/npm/node_modules/spdx-correct/node_modules/spdx-expression-parse": { + "version": "3.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/npm/node_modules/spdx-exceptions": { + "version": "2.5.0", + "dev": true, + "inBundle": true, + "license": "CC-BY-3.0" + }, + "node_modules/npm/node_modules/spdx-expression-parse": { + "version": "4.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/npm/node_modules/spdx-license-ids": { + "version": "3.0.20", + "dev": true, + "inBundle": true, + "license": "CC0-1.0" + }, + "node_modules/npm/node_modules/sprintf-js": { + "version": "1.1.3", + "dev": true, + "inBundle": true, + "license": "BSD-3-Clause" + }, + "node_modules/npm/node_modules/ssri": { + "version": "12.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "minipass": "^7.0.3" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/string-width": { + "version": "4.2.3", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/strip-ansi": { + "version": "6.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/supports-color": { + "version": "9.4.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/npm/node_modules/tar": { + "version": "6.2.1", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^5.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/tar/node_modules/fs-minipass": { + "version": "2.1.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/npm/node_modules/tar/node_modules/fs-minipass/node_modules/minipass": { + "version": "3.3.6", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/tar/node_modules/minipass": { + "version": "5.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": ">=8" + } + }, + "node_modules/npm/node_modules/text-table": { + "version": "0.2.0", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/tiny-relative-date": { + "version": "1.3.0", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/treeverse": { + "version": "3.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/npm/node_modules/tuf-js": { + "version": "3.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "@tufjs/models": "3.0.1", + "debug": "^4.3.6", + "make-fetch-happen": "^14.0.1" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/tuf-js/node_modules/@tufjs/models": { + "version": "3.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "@tufjs/canonical-json": "2.0.0", + "minimatch": "^9.0.5" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/unique-filename": { + "version": "4.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "unique-slug": "^5.0.0" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/unique-slug": { + "version": "5.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "imurmurhash": "^0.1.4" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/util-deprecate": { + "version": "1.0.2", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/validate-npm-package-license": { + "version": "3.0.4", + "dev": true, + "inBundle": true, + "license": "Apache-2.0", + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "node_modules/npm/node_modules/validate-npm-package-license/node_modules/spdx-expression-parse": { + "version": "3.0.1", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/npm/node_modules/validate-npm-package-name": { + "version": "6.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/walk-up-path": { + "version": "3.0.1", + "dev": true, + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/which": { + "version": "5.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "isexe": "^3.1.1" + }, + "bin": { + "node-which": "bin/which.js" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/which/node_modules/isexe": { + "version": "3.1.1", + "dev": true, + "inBundle": true, + "license": "ISC", + "engines": { + "node": ">=16" + } + }, + "node_modules/npm/node_modules/wrap-ansi": { + "version": "8.1.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/npm/node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { + "version": "4.3.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/npm/node_modules/wrap-ansi/node_modules/ansi-regex": { + "version": "6.1.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex": { + "version": "9.2.2", + "dev": true, + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/wrap-ansi/node_modules/string-width": { + "version": "5.1.2", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/npm/node_modules/wrap-ansi/node_modules/strip-ansi": { + "version": "7.1.0", + "dev": true, + "inBundle": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/npm/node_modules/write-file-atomic": { + "version": "6.0.0", + "dev": true, + "inBundle": true, + "license": "ISC", + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/npm/node_modules/yallist": { + "version": "4.0.0", + "dev": true, + "inBundle": true, + "license": "ISC" + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/ora": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", + "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ora/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/ora/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/ora/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/ora/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/ora/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ora/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/p-each-series": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-3.0.0.tgz", + "integrity": "sha512-lastgtAdoH9YaLyDa5i5z64q+kzOcQHsQ5SsZJD3q0VEyI8mq872S3geuNbRUQLVAE9siMfgKrpj7MloKFHruw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-filter": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-filter/-/p-filter-4.1.0.tgz", + "integrity": "sha512-37/tPdZ3oJwHaS3gNJdenCDB3Tz26i9sjhnguBtvN0vYlRIiDNnvTWkuh+0hETV9rLPdJ3rlL3yVOYPIAnM8rw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-map": "^7.0.1" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-is-promise": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-3.0.0.tgz", + "integrity": "sha512-Wo8VsW4IRQSKVXsJCn7TomUaVtyfjVDn3nUP7kE967BQk0CwFpdbZs0X0uk5sW9mkBa9eNM7hCMaG93WUAwxYQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-map": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-7.0.3.tgz", + "integrity": "sha512-VkndIv2fIB99swvQoA65bm+fsmt6UNdGeIB0oxBs+WhAhdh08QA04JXpI7rbB9r08/nkbysKoya9rtDERYOYMA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-reduce": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-2.1.0.tgz", + "integrity": "sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parse-ms": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-4.0.0.tgz", + "integrity": "sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parse-passwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", + "integrity": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/parse5": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-5.1.1.tgz", + "integrity": "sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==", + "dev": true, + "license": "MIT" + }, + "node_modules/parse5-htmlparser2-tree-adapter": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz", + "integrity": "sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==", + "dev": true, + "license": "MIT", + "dependencies": { + "parse5": "^6.0.1" + } + }, + "node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", + "dev": true, + "license": "MIT" + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true, + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pidtree": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.6.0.tgz", + "integrity": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==", + "dev": true, + "license": "MIT", + "bin": { + "pidtree": "bin/pidtree.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-conf": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-2.1.0.tgz", + "integrity": "sha512-C+VUP+8jis7EsQZIhDYmS5qlNtjv2yP4SNtjXK9AP1ZcTRlnSfuumaTnRfYZnYgUUYVIKqL0fRvmUGDV2fmp6g==", + "dev": true, + "license": "MIT", + "dependencies": { + "find-up": "^2.0.0", + "load-json-file": "^4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-conf/node_modules/find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-conf/node_modules/locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-conf/node_modules/p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-try": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-conf/node_modules/p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-conf/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prettier": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.5.3.tgz", + "integrity": "sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==", + "dev": true, + "license": "MIT", + "bin": { + "prettier": "bin/prettier.cjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/prettier-linter-helpers": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", + "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-diff": "^1.1.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/pretty-ms": { + "version": "9.2.0", + "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-9.2.0.tgz", + "integrity": "sha512-4yf0QO/sllf/1zbZWYnvWw3NxCQwLXKzIj0G849LSufP15BXKM0rbD2Z3wVnkMfjdn/CB0Dpp444gYAACdsplg==", + "dev": true, + "license": "MIT", + "dependencies": { + "parse-ms": "^4.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true, + "license": "MIT" + }, + "node_modules/proto-list": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", + "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==", + "dev": true, + "license": "ISC" + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "dev": true, + "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", + "dependencies": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "bin": { + "rc": "cli.js" + } + }, + "node_modules/rc/node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true, + "license": "ISC" + }, + "node_modules/rc/node_modules/strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react": { + "version": "19.1.0", + "resolved": "https://registry.npmjs.org/react/-/react-19.1.0.tgz", + "integrity": "sha512-FS+XFBNvn3GTAWq26joslQgWNoFu08F4kl0J4CgdNKADkdSGXQyTCnKteIAJy96Br6YbpEU1LSzV5dYtjMkMDg==", + "license": "MIT", + "peer": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/read-package-up": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/read-package-up/-/read-package-up-11.0.0.tgz", + "integrity": "sha512-MbgfoNPANMdb4oRBNg5eqLbB2t2r+o5Ua1pNt8BqGp4I0FJZhuVSOj3PaBPni4azWuSzEdNn2evevzVmEk1ohQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "find-up-simple": "^1.0.0", + "read-pkg": "^9.0.0", + "type-fest": "^4.6.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/read-package-up/node_modules/type-fest": { + "version": "4.40.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.40.0.tgz", + "integrity": "sha512-ABHZ2/tS2JkvH1PEjxFDTUWC8dB5OsIGZP4IFLhR293GqT5Y5qB1WwL2kMPYhQW9DVgVD8Hd7I8gjwPIf5GFkw==", + "dev": true, + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/read-pkg": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-9.0.1.tgz", + "integrity": "sha512-9viLL4/n1BJUCT1NXVTdS1jtm80yDEgR5T4yCelII49Mbj0v1rZdKqj7zCiYdbB0CuCgdrvHcNogAKTFPBocFA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/normalize-package-data": "^2.4.3", + "normalize-package-data": "^6.0.0", + "parse-json": "^8.0.0", + "type-fest": "^4.6.0", + "unicorn-magic": "^0.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/read-pkg/node_modules/parse-json": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-8.3.0.tgz", + "integrity": "sha512-ybiGyvspI+fAoRQbIPRddCcSTV9/LsJbf0e/S85VLowVGzRmokfneg2kwVW/KU5rOXrPSbF1qAKPMgNTqqROQQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.26.2", + "index-to-position": "^1.1.0", + "type-fest": "^4.39.1" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/read-pkg/node_modules/type-fest": { + "version": "4.40.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.40.0.tgz", + "integrity": "sha512-ABHZ2/tS2JkvH1PEjxFDTUWC8dB5OsIGZP4IFLhR293GqT5Y5qB1WwL2kMPYhQW9DVgVD8Hd7I8gjwPIf5GFkw==", + "dev": true, + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/registry-auth-token": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-5.1.0.tgz", + "integrity": "sha512-GdekYuwLXLxMuFTwAPg5UKGLW/UXzQrZvH/Zj791BQif5T05T0RsaLfHc9q3ZOKi7n+BoprPD9mJ0O0k4xzUlw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@pnpm/npm-conf": "^2.1.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve-dir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", + "integrity": "sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==", + "dev": true, + "license": "MIT", + "dependencies": { + "expand-tilde": "^2.0.0", + "global-modules": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "dev": true, + "license": "MIT", + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/reusify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", + "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", + "dev": true, + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rfdc": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz", + "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==", + "dev": true, + "license": "MIT" + }, + "node_modules/run-async": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", + "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/rxjs": { + "version": "7.8.2", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.2.tgz", + "integrity": "sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "tslib": "^2.1.0" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true, + "license": "MIT" + }, + "node_modules/semantic-release": { + "version": "24.2.3", + "resolved": "https://registry.npmjs.org/semantic-release/-/semantic-release-24.2.3.tgz", + "integrity": "sha512-KRhQG9cUazPavJiJEFIJ3XAMjgfd0fcK3B+T26qOl8L0UG5aZUjeRfREO0KM5InGtYwxqiiytkJrbcYoLDEv0A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@semantic-release/commit-analyzer": "^13.0.0-beta.1", + "@semantic-release/error": "^4.0.0", + "@semantic-release/github": "^11.0.0", + "@semantic-release/npm": "^12.0.0", + "@semantic-release/release-notes-generator": "^14.0.0-beta.1", + "aggregate-error": "^5.0.0", + "cosmiconfig": "^9.0.0", + "debug": "^4.0.0", + "env-ci": "^11.0.0", + "execa": "^9.0.0", + "figures": "^6.0.0", + "find-versions": "^6.0.0", + "get-stream": "^6.0.0", + "git-log-parser": "^1.2.0", + "hook-std": "^3.0.0", + "hosted-git-info": "^8.0.0", + "import-from-esm": "^2.0.0", + "lodash-es": "^4.17.21", + "marked": "^12.0.0", + "marked-terminal": "^7.0.0", + "micromatch": "^4.0.2", + "p-each-series": "^3.0.0", + "p-reduce": "^3.0.0", + "read-package-up": "^11.0.0", + "resolve-from": "^5.0.0", + "semver": "^7.3.2", + "semver-diff": "^4.0.0", + "signale": "^1.2.1", + "yargs": "^17.5.1" + }, + "bin": { + "semantic-release": "bin/semantic-release.js" + }, + "engines": { + "node": ">=20.8.1" + } + }, + "node_modules/semantic-release/node_modules/@semantic-release/error": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-4.0.0.tgz", + "integrity": "sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/semantic-release/node_modules/@sindresorhus/merge-streams": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-4.0.0.tgz", + "integrity": "sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/semantic-release/node_modules/aggregate-error": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-5.0.0.tgz", + "integrity": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==", + "dev": true, + "license": "MIT", + "dependencies": { + "clean-stack": "^5.2.0", + "indent-string": "^5.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/semantic-release/node_modules/clean-stack": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-5.2.0.tgz", + "integrity": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "escape-string-regexp": "5.0.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/semantic-release/node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/semantic-release/node_modules/execa": { + "version": "9.5.2", + "resolved": "https://registry.npmjs.org/execa/-/execa-9.5.2.tgz", + "integrity": "sha512-EHlpxMCpHWSAh1dgS6bVeoLAXGnJNdR93aabr4QCGbzOM73o5XmRfM/e5FUqsw3aagP8S8XEWUWFAxnRBnAF0Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@sindresorhus/merge-streams": "^4.0.0", + "cross-spawn": "^7.0.3", + "figures": "^6.1.0", + "get-stream": "^9.0.0", + "human-signals": "^8.0.0", + "is-plain-obj": "^4.1.0", + "is-stream": "^4.0.1", + "npm-run-path": "^6.0.0", + "pretty-ms": "^9.0.0", + "signal-exit": "^4.1.0", + "strip-final-newline": "^4.0.0", + "yoctocolors": "^2.0.0" + }, + "engines": { + "node": "^18.19.0 || >=20.5.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/semantic-release/node_modules/execa/node_modules/get-stream": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-9.0.1.tgz", + "integrity": "sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@sec-ant/readable-stream": "^0.4.1", + "is-stream": "^4.0.1" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/semantic-release/node_modules/figures": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-6.1.0.tgz", + "integrity": "sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-unicode-supported": "^2.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/semantic-release/node_modules/hosted-git-info": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-8.1.0.tgz", + "integrity": "sha512-Rw/B2DNQaPBICNXEm8balFz9a6WpZrkCGpcWFpy7nCj+NyhSdqXipmfvtmWt9xGfp0wZnBxB+iVpLmQMYt47Tw==", + "dev": true, + "license": "ISC", + "dependencies": { + "lru-cache": "^10.0.1" + }, + "engines": { + "node": "^18.17.0 || >=20.5.0" + } + }, + "node_modules/semantic-release/node_modules/human-signals": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-8.0.1.tgz", + "integrity": "sha512-eKCa6bwnJhvxj14kZk5NCPc6Hb6BdsU9DZcOnmQKSnO1VKrfV0zCvtttPZUsBvjmNDn8rpcJfpwSYnHBjc95MQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/semantic-release/node_modules/indent-string": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", + "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/semantic-release/node_modules/is-stream": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-4.0.1.tgz", + "integrity": "sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/semantic-release/node_modules/is-unicode-supported": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.1.0.tgz", + "integrity": "sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/semantic-release/node_modules/npm-run-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-6.0.0.tgz", + "integrity": "sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^4.0.0", + "unicorn-magic": "^0.3.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/semantic-release/node_modules/p-reduce": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-3.0.0.tgz", + "integrity": "sha512-xsrIUgI0Kn6iyDYm9StOpOeK29XM1aboGji26+QEortiFST1hGZaUQOLhtEbqHErPpGW/aSz6allwK2qcptp0Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/semantic-release/node_modules/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/semantic-release/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/semantic-release/node_modules/strip-final-newline": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-4.0.0.tgz", + "integrity": "sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/semantic-release/node_modules/unicorn-magic": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.3.0.tgz", + "integrity": "sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/semver": { + "version": "7.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", + "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-4.0.0.tgz", + "integrity": "sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA==", + "dev": true, + "license": "MIT", + "dependencies": { + "semver": "^7.3.5" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/semver-regex": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/semver-regex/-/semver-regex-4.0.5.tgz", + "integrity": "sha512-hunMQrEy1T6Jr2uEVjrAIqjwWcQTgOAcIM52C8MY1EZSD3DDNft04XzvYKPqjED65bNVVko0YI38nYeEHCX3yw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/signale": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/signale/-/signale-1.4.0.tgz", + "integrity": "sha512-iuh+gPf28RkltuJC7W5MRi6XAjTDCAPC/prJUpQoG4vIP3MJZ+GTydVnodXA7pwvTKb2cA0m9OFZW/cdWy/I/w==", + "dev": true, + "license": "MIT", + "dependencies": { + "chalk": "^2.3.2", + "figures": "^2.0.0", + "pkg-conf": "^2.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/signale/node_modules/figures": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", + "integrity": "sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==", + "dev": true, + "license": "MIT", + "dependencies": { + "escape-string-regexp": "^1.0.5" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/skin-tone": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/skin-tone/-/skin-tone-2.0.0.tgz", + "integrity": "sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA==", + "dev": true, + "license": "MIT", + "dependencies": { + "unicode-emoji-modifier-base": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/slash": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", + "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/slice-ansi": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz", + "integrity": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.0.0", + "is-fullwidth-code-point": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" + } + }, + "node_modules/slice-ansi/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/spawn-error-forwarder": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/spawn-error-forwarder/-/spawn-error-forwarder-1.0.0.tgz", + "integrity": "sha512-gRjMgK5uFjbCvdibeGJuy3I5OYz6VLoVdsOJdA6wV0WlfQVLFueoqMxwwYD9RODdgb6oUIvlRlsyFSiQkMKu0g==", + "dev": true, + "license": "MIT" + }, + "node_modules/spdx-correct": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-exceptions": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz", + "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==", + "dev": true, + "license": "CC-BY-3.0" + }, + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-license-ids": { + "version": "3.0.21", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.21.tgz", + "integrity": "sha512-Bvg/8F5XephndSK3JffaRqdT+gyhfqIPwDHpX80tJrF8QQRYMo8sNMeaZ2Dp5+jhwKnUmIOyFFQfHRkjJm5nXg==", + "dev": true, + "license": "CC0-1.0" + }, + "node_modules/split2": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/split2/-/split2-1.0.0.tgz", + "integrity": "sha512-NKywug4u4pX/AZBB1FCPzZ6/7O+Xhz1qMVbzTvvKvikjO99oPN87SkK08mEY9P63/5lWjK+wgOOgApnTg5r6qg==", + "dev": true, + "license": "ISC", + "dependencies": { + "through2": "~2.0.0" + } + }, + "node_modules/stream-combiner2": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/stream-combiner2/-/stream-combiner2-1.1.1.tgz", + "integrity": "sha512-3PnJbYgS56AeWgtKF5jtJRT6uFJe56Z0Hc5Ngg/6sI6rIt8iiMBTa9cvdyFfpMQjaVHr8dusbNeFGIIonxOvKw==", + "dev": true, + "license": "MIT", + "dependencies": { + "duplexer2": "~0.1.0", + "readable-stream": "^2.0.2" + } + }, + "node_modules/stream-combiner2/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, + "license": "MIT", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/stream-combiner2/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true, + "license": "MIT" + }, + "node_modules/stream-combiner2/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string-argv": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz", + "integrity": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.6.19" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/super-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/super-regex/-/super-regex-1.0.0.tgz", + "integrity": "sha512-CY8u7DtbvucKuquCmOFEKhr9Besln7n9uN8eFbwcoGYWXOMW07u2o8njWaiXt11ylS3qoGF55pILjRmPlbodyg==", + "dev": true, + "license": "MIT", + "dependencies": { + "function-timeout": "^1.0.1", + "time-span": "^5.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/supports-hyperlinks": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-3.2.0.tgz", + "integrity": "sha512-zFObLMyZeEwzAoKCyu1B91U79K2t7ApXuQfo8OuxwXLDgcKxuwM+YvcbIhm6QWqz7mHUH1TVytR1PwVVjEuMig==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">=14.18" + }, + "funding": { + "url": "https://github.com/chalk/supports-hyperlinks?sponsor=1" + } + }, + "node_modules/supports-hyperlinks/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-hyperlinks/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/synckit": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.11.4.tgz", + "integrity": "sha512-Q/XQKRaJiLiFIBNN+mndW7S/RHxvwzuZS6ZwmRzUBqJBv/5QIKCEwkBC8GBf8EQJKYnaFs0wOZbKTXBPj8L9oQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@pkgr/core": "^0.2.3", + "tslib": "^2.8.1" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/synckit" + } + }, + "node_modules/temp-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-3.0.0.tgz", + "integrity": "sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.16" + } + }, + "node_modules/tempy": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/tempy/-/tempy-3.1.0.tgz", + "integrity": "sha512-7jDLIdD2Zp0bDe5r3D2qtkd1QOCacylBuL7oa4udvN6v2pqr4+LcCr67C8DR1zkpaZ8XosF5m1yQSabKAW6f2g==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-stream": "^3.0.0", + "temp-dir": "^3.0.0", + "type-fest": "^2.12.2", + "unique-string": "^3.0.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/tempy/node_modules/is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/tempy/node_modules/type-fest": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", + "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", + "dev": true, + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "dev": true, + "license": "MIT", + "dependencies": { + "any-promise": "^1.0.0" + } + }, + "node_modules/thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "dev": true, + "license": "MIT", + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", + "dev": true, + "license": "MIT" + }, + "node_modules/through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "node_modules/through2/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, + "license": "MIT", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/through2/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true, + "license": "MIT" + }, + "node_modules/through2/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/time-span": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/time-span/-/time-span-5.1.0.tgz", + "integrity": "sha512-75voc/9G4rDIJleOo4jPvN4/YC4GRZrY8yy1uU4lwrB3XEQbWve8zXoO5No4eFrGcTAMYyoY67p8jRQdtA1HbA==", + "dev": true, + "license": "MIT", + "dependencies": { + "convert-hrtime": "^5.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "dev": true, + "license": "MIT", + "dependencies": { + "os-tmpdir": "~1.0.2" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/traverse": { + "version": "0.6.8", + "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.6.8.tgz", + "integrity": "sha512-aXJDbk6SnumuaZSANd21XAo15ucCDE38H4fkqiGsc3MhCK+wOlZvLP9cB/TvpHT0mOyWgC4Z8EwRlzqYSUzdsA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/ts-api-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.1.0.tgz", + "integrity": "sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18.12" + }, + "peerDependencies": { + "typescript": ">=4.8.4" + } + }, + "node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "dev": true, + "license": "0BSD" + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true, + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typescript": { + "version": "5.8.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz", + "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/uglify-js": { + "version": "3.19.3", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.19.3.tgz", + "integrity": "sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==", + "dev": true, + "license": "BSD-2-Clause", + "optional": true, + "bin": { + "uglifyjs": "bin/uglifyjs" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/undici-types": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", + "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/unicode-emoji-modifier-base": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unicode-emoji-modifier-base/-/unicode-emoji-modifier-base-1.0.0.tgz", + "integrity": "sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicorn-magic": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz", + "integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/unique-string": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-3.0.0.tgz", + "integrity": "sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "crypto-random-string": "^4.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/universal-user-agent": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-7.0.2.tgz", + "integrity": "sha512-0JCqzSKnStlRRQfCdowvqy3cy0Dvtlb8xecj/H8JFZuCze4rwjPZQOgvFvn0Ws/usCHQFGpyr+pB9adaGwXn4Q==", + "dev": true, + "license": "ISC" + }, + "node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/url-join": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/url-join/-/url-join-5.0.0.tgz", + "integrity": "sha512-n2huDr9h9yzd6exQVnH/jU5mr+Pfx08LRXXZhkLLetAMESRj+anQsTAh940iMrIetKAmry9coFuZQ2jY8/p3WA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true, + "license": "MIT" + }, + "node_modules/validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "node_modules/wcwidth": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", + "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", + "dev": true, + "license": "MIT", + "dependencies": { + "defaults": "^1.0.3" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wordwrap": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/wrap-ansi/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.4" + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/yaml": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.7.1.tgz", + "integrity": "sha512-10ULxpnOCQXxJvBgxsn9ptjq6uviG/htZKk9veJGhlqn3w/DxQ631zFF+nlQXLwmImeS5amR2dl2U8sg6U9jsQ==", + "dev": true, + "license": "ISC", + "bin": { + "yaml": "bin.mjs" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/yoctocolors": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/yoctocolors/-/yoctocolors-2.1.1.tgz", + "integrity": "sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..d05571c --- /dev/null +++ b/package.json @@ -0,0 +1,89 @@ +{ + "name": "icons", + "version": "1.0.0", + "sideEffects": false, + "description": "The set of icons from CtrlCloud for DevOps projects", + "type": "module", + "repository": { + "type": "git", + "url": "git+https://github.com/ctrlcloudnet/icons.git" + }, + "keywords": [ + "icons", + "svg", + "react" + ], + "publishConfig": { + "access": "public" + }, + "engines": { + "node": ">=16.0.0" + }, + "scripts": { + "build": "tsc && cp src/icons/*.tsx dist/", + "prepublishOnly": "npm run build", + "lint": "eslint src --ext .ts,.tsx", + "format": "prettier --write \"src/**/*.{ts,tsx}\"", + "prepare": "husky install", + "release": "semantic-release", + "commit": "git-cz" + }, + "main": "dist/index.js", + "module": "dist/index.js", + "types": "dist/index.d.ts", + + "exports": { + ".": "./dist/index.js", + "./AmazonEC2Icon": "./dist/AmazonEC2Icon.jsx", + "./AmazonSimpleStorageService": "./dist/AmazonSimpleStorageService.jsx" + }, + "husky": { + "hooks": { + "pre-commit": "lint-staged", + "commit-msg": "commitlint -E HUSKY_GIT_PARAMS" + } + }, + "lint-staged": { + "*.{ts,tsx}": [ + "eslint --fix", + "prettier --write" + ], + "*.{json,md}": [ + "prettier --write" + ] + }, + "config": { + "commitizen": { + "path": "./node_modules/cz-conventional-changelog" + } + }, + "author": "Your Name ", + "license": "ISC", + "bugs": { + "url": "https://github.com/ctrlcloudnet/icons/issues" + }, + "homepage": "https://github.com/ctrlcloudnet/icons#readme", + "devDependencies": { + "@semantic-release/changelog": "^6.0.3", + "@semantic-release/git": "^10.0.1", + "@semantic-release/github": "^9.0.4", + "@semantic-release/npm": "^12.0.1", + "@types/node": "^22.14.1", + "@types/react": "^18.2.56", + "@typescript-eslint/eslint-plugin": "^8.30.1", + "@typescript-eslint/parser": "^8.30.1", + "commitizen": "^4.3.1", + "cz-conventional-changelog": "^3.3.0", + "eslint": "^9.25.0", + "eslint-config-prettier": "^10.1.2", + "eslint-plugin-prettier": "^5.2.6", + "husky": "^9.1.7", + "lint-staged": "^15.5.1", + "prettier": "^3.5.3", + "semantic-release": "^24.2.3", + "typescript": "^5.8.3" + }, + "peerDependencies": { + "react": "^18.0.0" + } +} \ No newline at end of file diff --git a/src/icons/AmazonDynamoDB.tsx b/src/icons/AmazonDynamoDB.tsx new file mode 100644 index 0000000..743c137 --- /dev/null +++ b/src/icons/AmazonDynamoDB.tsx @@ -0,0 +1,35 @@ +import React from 'react'; + +interface AmazonDynamoDBIconProps extends React.SVGProps { + size?: number | string; + color?: string; + title?: string; +} + +export const AmazonDynamoDBIcon: React.FC = ({ + size = 40, + color = '#C925D1', // DynamoDB's purple color + title = 'Amazon DynamoDB Icon', + ...props +}) => ( + + {title && {title}} + + + + + + + +); \ No newline at end of file diff --git a/src/icons/AmazonEC2Icon.tsx b/src/icons/AmazonEC2Icon.tsx new file mode 100644 index 0000000..f3c086f --- /dev/null +++ b/src/icons/AmazonEC2Icon.tsx @@ -0,0 +1,35 @@ +import React from 'react'; + +interface AmazonEC2IconProps extends React.SVGProps { + size?: number | string; + color?: string; + title?: string; +} + +export const AmazonEC2Icon: React.FC = ({ + size = 40, + color = '#ED7100', // Default to the original orange color + title = 'Amazon EC2 Icon', + ...props +}) => ( + + {title && {title}} + + + + + + + +); \ No newline at end of file diff --git a/src/icons/AmazonSimpleStorageService.tsx b/src/icons/AmazonSimpleStorageService.tsx new file mode 100644 index 0000000..d89019a --- /dev/null +++ b/src/icons/AmazonSimpleStorageService.tsx @@ -0,0 +1,33 @@ +import React from 'react'; + +interface AmazonS3IconProps extends React.SVGProps { + size?: number | string; + color?: string; // Optional override for background + title?: string; +} + +export const AmazonS3Icon: React.FC = ({ + size = 40, + color = '#7AA116', + title = 'Amazon S3 Icon', + ...props +}) => ( + + {title && {title}} + + + + + + + + + +); diff --git a/src/index.ts b/src/index.ts new file mode 100644 index 0000000..176e056 --- /dev/null +++ b/src/index.ts @@ -0,0 +1,3 @@ +export * from './icons/AmazonEC2Icon.js'; +export * from './icons/AmazonDynamoDB.js'; +export * from './icons/AmazonSimpleStorageService.js'; diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..5810cc0 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,30 @@ +{ + "compilerOptions": { + "target": "ESNext", + "module": "Node16", + "declaration": true, + "declarationMap": true, + "sourceMap": true, + "outDir": "./dist", + "strict": true, + "moduleResolution": "node16", + "esModuleInterop": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true, + "jsx": "react-jsx", + "lib": ["ESNext", "DOM"], + "baseUrl": ".", + "paths": { + "@/*": ["./src/*"] + }, + // Add these new options: + "emitDeclarationOnly": false, + "allowJs": false, + "isolatedModules": true, + "noEmit": false, + "rootDir": "src", + "types": ["node"] + }, + "include": ["src"], + "exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.test.tsx"] +} \ No newline at end of file From aa78c75171f46fc74752d31e72c82813b3b228c3 Mon Sep 17 00:00:00 2001 From: Aryan Aghf Date: Mon, 21 Apr 2025 21:58:07 +0330 Subject: [PATCH 03/15] feat(svg): now just add svg to icons import them. support tsx and jsx --- build-icons.ts | 68 + package-lock.json | 6432 +++++++++++++++++----- package.json | 25 +- src/icons/AWSLambda.svg | 10 + src/icons/AmazonDynamoDB.svg | 10 + src/icons/AmazonDynamoDB.tsx | 35 - src/icons/AmazonEC2.svg | 10 + src/icons/AmazonEC2Icon.tsx | 35 - src/icons/AmazonRDS.svg | 10 + src/icons/AmazonSimpleStorageService.svg | 12 + src/icons/AmazonSimpleStorageService.tsx | 33 - src/icons/AmazonVirtualPrivateCloud.svg | 10 + src/index.ts | 9 +- src/types.d.ts | 9 + src/types/svg.d.ts | 5 + tsconfig.json | 24 +- 16 files changed, 5296 insertions(+), 1441 deletions(-) create mode 100644 build-icons.ts create mode 100644 src/icons/AWSLambda.svg create mode 100644 src/icons/AmazonDynamoDB.svg delete mode 100644 src/icons/AmazonDynamoDB.tsx create mode 100644 src/icons/AmazonEC2.svg delete mode 100644 src/icons/AmazonEC2Icon.tsx create mode 100644 src/icons/AmazonRDS.svg create mode 100644 src/icons/AmazonSimpleStorageService.svg delete mode 100644 src/icons/AmazonSimpleStorageService.tsx create mode 100644 src/icons/AmazonVirtualPrivateCloud.svg create mode 100644 src/types.d.ts create mode 100644 src/types/svg.d.ts diff --git a/build-icons.ts b/build-icons.ts new file mode 100644 index 0000000..4fe248e --- /dev/null +++ b/build-icons.ts @@ -0,0 +1,68 @@ +import fs from 'fs/promises'; +import path from 'path'; +import { transform } from '@svgr/core'; +const ICONS_DIR = path.join(process.cwd(), 'src/icons'); +const OUT_DIR = path.join(process.cwd(), 'dist/icons'); +const OUT_DIR_INDEX = path.join(process.cwd(), 'dist'); + +async function buildIcons() { + try { + await fs.mkdir(OUT_DIR, { recursive: true }); + + const files = await fs.readdir(ICONS_DIR); + const svgFiles = files.filter(file => file.endsWith('.svg')); + + for (const file of svgFiles) { + const svgCode = await fs.readFile(path.join(ICONS_DIR, file), 'utf8'); + const componentName = path.basename(file, '.svg'); + + const tsxCode = await transform( + svgCode, + { + plugins: ['@svgr/plugin-svgo', '@svgr/plugin-jsx', '@svgr/plugin-prettier'], + typescript: true, + icon: true, + jsxRuntime: 'automatic', + }, + { componentName } + ); + await fs.writeFile(path.join(OUT_DIR, `${componentName}.tsx`), tsxCode); + const indexTSXContent = svgFiles + .map(file => { + const componentName = path.basename(file, '.svg') + .replace(/(^|-)(\w)/g, (_, __, char) => char.toUpperCase()); + return `export { default as ${componentName} } from './icons/${componentName}.tsx';`; + }) + .join('\n'); + await fs.writeFile(path.join(OUT_DIR_INDEX, 'index.ts'), indexTSXContent); + + const jsxCode = await transform( + svgCode, + { + plugins: ['@svgr/plugin-svgo', '@svgr/plugin-jsx', '@svgr/plugin-prettier'], + icon: true, + replaceAttrValues: { '#000': 'currentColor' }, + jsxRuntime: 'automatic', + }, + { componentName } + ); + const outFile = path.join(OUT_DIR, `${componentName}.jsx`); + await fs.writeFile(outFile, jsxCode); + } + const indexJSXContent = svgFiles + .map(file => { + const componentName = path.basename(file, '.svg') + .replace(/(^|-)(\w)/g, (_, __, char) => char.toUpperCase()); + return `export { default as ${componentName} } from './icons/${componentName}.jsx';`; + }) + .join('\n'); + await fs.writeFile(path.join(OUT_DIR_INDEX, 'index.js'), indexJSXContent); + + console.log(`Generated ${svgFiles.length} icon components`); + } catch (error) { + console.error('Error building icons:', error); + process.exit(1); + } +} + +buildIcons(); \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 7f810e6..d6091a3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -11,9 +11,15 @@ "devDependencies": { "@semantic-release/changelog": "^6.0.3", "@semantic-release/git": "^10.0.1", + "@semantic-release/github": "^9.0.4", "@semantic-release/npm": "^12.0.1", + "@svgr/core": "^8.1.0", + "@svgr/plugin-jsx": "^8.1.0", + "@svgr/plugin-prettier": "^8.1.0", + "@svgr/plugin-svgo": "^8.1.0", + "@svgr/rollup": "^8.1.0", "@types/node": "^22.14.1", - "@types/react": "^19.1.2", + "@types/react": "^18.2.56", "@typescript-eslint/eslint-plugin": "^8.30.1", "@typescript-eslint/parser": "^8.30.1", "commitizen": "^4.3.1", @@ -25,10 +31,28 @@ "lint-staged": "^15.5.1", "prettier": "^3.5.3", "semantic-release": "^24.2.3", + "tsx": "^4.19.3", "typescript": "^5.8.3" }, + "engines": { + "node": ">=16.0.0" + }, "peerDependencies": { - "react": "^19.1.0" + "react": "^18.0.0" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", + "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" } }, "node_modules/@babel/code-frame": { @@ -46,1500 +70,4126 @@ "node": ">=6.9.0" } }, - "node_modules/@babel/helper-validator-identifier": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", - "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", + "node_modules/@babel/compat-data": { + "version": "7.26.8", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.8.tgz", + "integrity": "sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==", "dev": true, "license": "MIT", "engines": { "node": ">=6.9.0" } }, - "node_modules/@colors/colors": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", - "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==", + "node_modules/@babel/core": { + "version": "7.26.10", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.10.tgz", + "integrity": "sha512-vMqyb7XCDMPvJFFOaT9kxtiRh42GwlZEg1/uIgtZshS5a/8OaduUfCi7kynKgc3Tw/6Uo2D+db9qBttghhmxwQ==", "dev": true, "license": "MIT", - "optional": true, + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.26.2", + "@babel/generator": "^7.26.10", + "@babel/helper-compilation-targets": "^7.26.5", + "@babel/helper-module-transforms": "^7.26.0", + "@babel/helpers": "^7.26.10", + "@babel/parser": "^7.26.10", + "@babel/template": "^7.26.9", + "@babel/traverse": "^7.26.10", + "@babel/types": "^7.26.10", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, "engines": { - "node": ">=0.1.90" + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" } }, - "node_modules/@commitlint/config-validator": { - "version": "19.8.0", - "resolved": "https://registry.npmjs.org/@commitlint/config-validator/-/config-validator-19.8.0.tgz", - "integrity": "sha512-+r5ZvD/0hQC3w5VOHJhGcCooiAVdynFlCe2d6I9dU+PvXdV3O+fU4vipVg+6hyLbQUuCH82mz3HnT/cBQTYYuA==", + "node_modules/@babel/core/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/generator": { + "version": "7.27.0", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.27.0.tgz", + "integrity": "sha512-VybsKvpiN1gU1sdMZIp7FcqphVVKEwcuj02x73uvcHE0PTihx1nlBcowYWhDwjpoAXRv43+gDzyggGnn1XZhVw==", "dev": true, "license": "MIT", - "optional": true, "dependencies": { - "@commitlint/types": "^19.8.0", - "ajv": "^8.11.0" + "@babel/parser": "^7.27.0", + "@babel/types": "^7.27.0", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", + "jsesc": "^3.0.2" }, "engines": { - "node": ">=v18" + "node": ">=6.9.0" } }, - "node_modules/@commitlint/execute-rule": { - "version": "19.8.0", - "resolved": "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-19.8.0.tgz", - "integrity": "sha512-fuLeI+EZ9x2v/+TXKAjplBJWI9CNrHnyi5nvUQGQt4WRkww/d95oVRsc9ajpt4xFrFmqMZkd/xBQHZDvALIY7A==", + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz", + "integrity": "sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==", "dev": true, "license": "MIT", - "optional": true, + "dependencies": { + "@babel/types": "^7.25.9" + }, "engines": { - "node": ">=v18" + "node": ">=6.9.0" } }, - "node_modules/@commitlint/load": { - "version": "19.8.0", - "resolved": "https://registry.npmjs.org/@commitlint/load/-/load-19.8.0.tgz", - "integrity": "sha512-4rvmm3ff81Sfb+mcWT5WKlyOa+Hd33WSbirTVUer0wjS1Hv/Hzr07Uv1ULIV9DkimZKNyOwXn593c+h8lsDQPQ==", + "node_modules/@babel/helper-compilation-targets": { + "version": "7.27.0", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.0.tgz", + "integrity": "sha512-LVk7fbXml0H2xH34dFzKQ7TDZ2G4/rVTOrq9V+icbbadjbVxxeFeDsNHv2SrZeWoA+6ZiTyWYWtScEIW07EAcA==", "dev": true, "license": "MIT", - "optional": true, "dependencies": { - "@commitlint/config-validator": "^19.8.0", - "@commitlint/execute-rule": "^19.8.0", - "@commitlint/resolve-extends": "^19.8.0", - "@commitlint/types": "^19.8.0", - "chalk": "^5.3.0", - "cosmiconfig": "^9.0.0", - "cosmiconfig-typescript-loader": "^6.1.0", - "lodash.isplainobject": "^4.0.6", - "lodash.merge": "^4.6.2", - "lodash.uniq": "^4.5.0" + "@babel/compat-data": "^7.26.8", + "@babel/helper-validator-option": "^7.25.9", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" }, "engines": { - "node": ">=v18" + "node": ">=6.9.0" } }, - "node_modules/@commitlint/load/node_modules/chalk": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.4.1.tgz", - "integrity": "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==", + "node_modules/@babel/helper-compilation-targets/node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", "dev": true, - "license": "MIT", - "optional": true, - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" } }, - "node_modules/@commitlint/resolve-extends": { - "version": "19.8.0", - "resolved": "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-19.8.0.tgz", - "integrity": "sha512-CLanRQwuG2LPfFVvrkTrBR/L/DMy3+ETsgBqW1OvRxmzp/bbVJW0Xw23LnnExgYcsaFtos967lul1CsbsnJlzQ==", + "node_modules/@babel/helper-compilation-targets/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.27.0", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.27.0.tgz", + "integrity": "sha512-vSGCvMecvFCd/BdpGlhpXYNhhC4ccxyvQWpbGL4CWbvfEoLFWUZuSuf7s9Aw70flgQF+6vptvgK2IfOnKlRmBg==", "dev": true, "license": "MIT", - "optional": true, "dependencies": { - "@commitlint/config-validator": "^19.8.0", - "@commitlint/types": "^19.8.0", - "global-directory": "^4.0.1", - "import-meta-resolve": "^4.0.0", - "lodash.mergewith": "^4.6.2", - "resolve-from": "^5.0.0" + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-member-expression-to-functions": "^7.25.9", + "@babel/helper-optimise-call-expression": "^7.25.9", + "@babel/helper-replace-supers": "^7.26.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", + "@babel/traverse": "^7.27.0", + "semver": "^6.3.1" }, "engines": { - "node": ">=v18" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/@commitlint/types": { - "version": "19.8.0", - "resolved": "https://registry.npmjs.org/@commitlint/types/-/types-19.8.0.tgz", - "integrity": "sha512-LRjP623jPyf3Poyfb0ohMj8I3ORyBDOwXAgxxVPbSD0unJuW2mJWeiRfaQinjtccMqC5Wy1HOMfa4btKjbNxbg==", + "node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.27.0", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.27.0.tgz", + "integrity": "sha512-fO8l08T76v48BhpNRW/nQ0MxfnSdoSKUJBMjubOAYffsVuGG5qOfMq7N6Es7UJvi7Y8goXXo07EfcHZXDPuELQ==", "dev": true, "license": "MIT", - "optional": true, "dependencies": { - "@types/conventional-commits-parser": "^5.0.0", - "chalk": "^5.3.0" + "@babel/helper-annotate-as-pure": "^7.25.9", + "regexpu-core": "^6.2.0", + "semver": "^6.3.1" }, "engines": { - "node": ">=v18" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/@commitlint/types/node_modules/chalk": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.4.1.tgz", - "integrity": "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==", + "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, - "license": "MIT", - "optional": true, - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "license": "ISC", + "bin": { + "semver": "bin/semver.js" } }, - "node_modules/@eslint-community/eslint-utils": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.6.1.tgz", - "integrity": "sha512-KTsJMmobmbrFLe3LDh0PC2FXpcSYJt/MLjlkh/9LEnmKYLSYmT/0EW9JWANjeoemiuZrmogti0tW5Ch+qNUYDw==", + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.4.tgz", + "integrity": "sha512-jljfR1rGnXXNWnmQg2K3+bvhkxB51Rl32QRaOTuwwjviGrHzIbSc8+x9CpraDtbT7mfyjXObULP4w/adunNwAw==", "dev": true, "license": "MIT", "dependencies": { - "eslint-visitor-keys": "^3.4.3" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" + "@babel/helper-compilation-targets": "^7.22.6", + "@babel/helper-plugin-utils": "^7.22.5", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2" }, "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/@eslint-community/regexpp": { - "version": "4.12.1", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", - "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.9.tgz", + "integrity": "sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==", "dev": true, "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" + }, "engines": { - "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + "node": ">=6.9.0" } }, - "node_modules/@eslint/config-array": { - "version": "0.20.0", - "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.20.0.tgz", - "integrity": "sha512-fxlS1kkIjx8+vy2SjuCB94q3htSNrufYTXubwiBFeaQHbH6Ipi43gFJq2zCMt6PHhImH3Xmr0NksKDvchWlpQQ==", + "node_modules/@babel/helper-module-imports": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz", + "integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==", "dev": true, - "license": "Apache-2.0", + "license": "MIT", "dependencies": { - "@eslint/object-schema": "^2.1.6", - "debug": "^4.3.1", - "minimatch": "^3.1.2" + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" }, "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + "node": ">=6.9.0" } }, - "node_modules/@eslint/config-array/node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "node_modules/@babel/helper-module-transforms": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz", + "integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==", "dev": true, "license": "MIT", "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "@babel/helper-module-imports": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/@eslint/config-array/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.25.9.tgz", + "integrity": "sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==", "dev": true, - "license": "ISC", + "license": "MIT", "dependencies": { - "brace-expansion": "^1.1.7" + "@babel/types": "^7.25.9" }, "engines": { - "node": "*" + "node": ">=6.9.0" } }, - "node_modules/@eslint/config-helpers": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.2.1.tgz", - "integrity": "sha512-RI17tsD2frtDu/3dmI7QRrD4bedNKPM08ziRYaC5AhkGrzIAJelm9kJU1TznK+apx6V+cqRz8tfpEeG3oIyjxw==", + "node_modules/@babel/helper-plugin-utils": { + "version": "7.26.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.26.5.tgz", + "integrity": "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==", "dev": true, - "license": "Apache-2.0", + "license": "MIT", "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + "node": ">=6.9.0" } }, - "node_modules/@eslint/core": { - "version": "0.13.0", - "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.13.0.tgz", - "integrity": "sha512-yfkgDw1KR66rkT5A8ci4irzDysN7FRpq3ttJolR88OqQikAWqwA8j5VZyas+vjyBNFIJ7MfybJ9plMILI2UrCw==", + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.9.tgz", + "integrity": "sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==", "dev": true, - "license": "Apache-2.0", + "license": "MIT", "dependencies": { - "@types/json-schema": "^7.0.15" + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-wrap-function": "^7.25.9", + "@babel/traverse": "^7.25.9" }, "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/@eslint/eslintrc": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.1.tgz", - "integrity": "sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==", + "node_modules/@babel/helper-replace-supers": { + "version": "7.26.5", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.26.5.tgz", + "integrity": "sha512-bJ6iIVdYX1YooY2X7w1q6VITt+LnUILtNk7zT78ykuwStx8BauCzxvFqFaHjOpW1bVnSUM1PN1f0p5P21wHxvg==", "dev": true, "license": "MIT", "dependencies": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^10.0.1", - "globals": "^14.0.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" + "@babel/helper-member-expression-to-functions": "^7.25.9", + "@babel/helper-optimise-call-expression": "^7.25.9", + "@babel/traverse": "^7.26.5" }, "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + "node": ">=6.9.0" }, - "funding": { - "url": "https://opencollective.com/eslint" + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/@eslint/eslintrc/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.9.tgz", + "integrity": "sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==", "dev": true, "license": "MIT", "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "engines": { + "node": ">=6.9.0" } }, - "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "node_modules/@babel/helper-string-parser": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz", + "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==", "dev": true, "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "engines": { + "node": ">=6.9.0" } }, - "node_modules/@eslint/eslintrc/node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true, - "license": "MIT" - }, - "node_modules/@eslint/eslintrc/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "node_modules/@babel/helper-validator-identifier": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", + "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", "dev": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, + "license": "MIT", "engines": { - "node": "*" + "node": ">=6.9.0" } }, - "node_modules/@eslint/js": { - "version": "9.25.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.25.0.tgz", - "integrity": "sha512-iWhsUS8Wgxz9AXNfvfOPFSW4VfMXdVhp1hjkZVhXCrpgh/aLcc45rX6MPu+tIVUWDw0HfNwth7O28M1xDxNf9w==", + "node_modules/@babel/helper-validator-option": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz", + "integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==", "dev": true, "license": "MIT", "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + "node": ">=6.9.0" } }, - "node_modules/@eslint/object-schema": { - "version": "2.1.6", - "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.6.tgz", - "integrity": "sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==", + "node_modules/@babel/helper-wrap-function": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.25.9.tgz", + "integrity": "sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==", "dev": true, - "license": "Apache-2.0", + "license": "MIT", + "dependencies": { + "@babel/template": "^7.25.9", + "@babel/traverse": "^7.25.9", + "@babel/types": "^7.25.9" + }, "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + "node": ">=6.9.0" } }, - "node_modules/@eslint/plugin-kit": { - "version": "0.2.8", - "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.8.tgz", - "integrity": "sha512-ZAoA40rNMPwSm+AeHpCq8STiNAwzWLJuP8Xv4CHIc9wv/PSuExjMrmjfYNj682vW0OOiZ1HKxzvjQr9XZIisQA==", + "node_modules/@babel/helpers": { + "version": "7.27.0", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.27.0.tgz", + "integrity": "sha512-U5eyP/CTFPuNE3qk+WZMxFkp/4zUzdceQlfzf7DdGdhp+Fezd7HD+i8Y24ZuTMKX3wQBld449jijbGq6OdGNQg==", "dev": true, - "license": "Apache-2.0", + "license": "MIT", "dependencies": { - "@eslint/core": "^0.13.0", - "levn": "^0.4.1" + "@babel/template": "^7.27.0", + "@babel/types": "^7.27.0" }, "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + "node": ">=6.9.0" } }, - "node_modules/@humanfs/core": { - "version": "0.19.1", - "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", - "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", + "node_modules/@babel/parser": { + "version": "7.27.0", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.27.0.tgz", + "integrity": "sha512-iaepho73/2Pz7w2eMS0Q5f83+0RKI7i4xmiYeBmDzfRVbQtTOG7Ts0S4HzJVsTMGI9keU8rNfuZr8DKfSt7Yyg==", "dev": true, - "license": "Apache-2.0", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.27.0" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, "engines": { - "node": ">=18.18.0" + "node": ">=6.0.0" } }, - "node_modules/@humanfs/node": { - "version": "0.16.6", - "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.6.tgz", - "integrity": "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==", + "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.25.9.tgz", + "integrity": "sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==", "dev": true, - "license": "Apache-2.0", + "license": "MIT", "dependencies": { - "@humanfs/core": "^0.19.1", - "@humanwhocodes/retry": "^0.3.0" + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/traverse": "^7.25.9" }, "engines": { - "node": ">=18.18.0" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/@humanfs/node/node_modules/@humanwhocodes/retry": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz", - "integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==", + "node_modules/@babel/plugin-bugfix-safari-class-field-initializer-scope": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.25.9.tgz", + "integrity": "sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==", "dev": true, - "license": "Apache-2.0", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, "engines": { - "node": ">=18.18" + "node": ">=6.9.0" }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/nzakas" + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/@humanwhocodes/module-importer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.25.9.tgz", + "integrity": "sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==", "dev": true, - "license": "Apache-2.0", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, "engines": { - "node": ">=12.22" + "node": ">=6.9.0" }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/nzakas" + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/@humanwhocodes/retry": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.2.tgz", - "integrity": "sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==", + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.25.9.tgz", + "integrity": "sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==", "dev": true, - "license": "Apache-2.0", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", + "@babel/plugin-transform-optional-chaining": "^7.25.9" + }, "engines": { - "node": ">=18.18" + "node": ">=6.9.0" }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/nzakas" + "peerDependencies": { + "@babel/core": "^7.13.0" } }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.25.9.tgz", + "integrity": "sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==", "dev": true, "license": "MIT", "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/traverse": "^7.25.9" }, "engines": { - "node": ">= 8" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.21.0-placeholder-for-preset-env.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", + "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", "dev": true, "license": "MIT", "engines": { - "node": ">= 8" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "node_modules/@babel/plugin-syntax-import-assertions": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.26.0.tgz", + "integrity": "sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==", "dev": true, "license": "MIT", "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { - "node": ">= 8" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@octokit/auth-token": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-5.1.2.tgz", - "integrity": "sha512-JcQDsBdg49Yky2w2ld20IHAlwr8d/d8N6NiOXbtuoPCqzbsiJgF633mVUw3x4mo0H5ypataQIX7SFu3yy44Mpw==", + "node_modules/@babel/plugin-syntax-import-attributes": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.26.0.tgz", + "integrity": "sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==", "dev": true, "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, "engines": { - "node": ">= 18" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@octokit/core": { - "version": "6.1.5", - "resolved": "https://registry.npmjs.org/@octokit/core/-/core-6.1.5.tgz", - "integrity": "sha512-vvmsN0r7rguA+FySiCsbaTTobSftpIDIpPW81trAmsv9TGxg3YCujAxRYp/Uy8xmDgYCzzgulG62H7KYUFmeIg==", + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.9.tgz", + "integrity": "sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==", "dev": true, "license": "MIT", "dependencies": { - "@octokit/auth-token": "^5.0.0", - "@octokit/graphql": "^8.2.2", - "@octokit/request": "^9.2.3", - "@octokit/request-error": "^6.1.8", - "@octokit/types": "^14.0.0", - "before-after-hook": "^3.0.2", - "universal-user-agent": "^7.0.0" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { - "node": ">= 18" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@octokit/endpoint": { - "version": "10.1.4", - "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-10.1.4.tgz", - "integrity": "sha512-OlYOlZIsfEVZm5HCSR8aSg02T2lbUWOsCQoPKfTXJwDzcHQBrVBGdGXb89dv2Kw2ToZaRtudp8O3ZIYoaOjKlA==", + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.9.tgz", + "integrity": "sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==", "dev": true, "license": "MIT", "dependencies": { - "@octokit/types": "^14.0.0", - "universal-user-agent": "^7.0.2" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { - "node": ">= 18" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@octokit/graphql": { - "version": "8.2.2", - "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-8.2.2.tgz", - "integrity": "sha512-Yi8hcoqsrXGdt0yObxbebHXFOiUA+2v3n53epuOg1QUgOB6c4XzvisBNVXJSl8RYA5KrDuSL2yq9Qmqe5N0ryA==", + "node_modules/@babel/plugin-syntax-unicode-sets-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", + "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", "dev": true, "license": "MIT", "dependencies": { - "@octokit/request": "^9.2.3", - "@octokit/types": "^14.0.0", - "universal-user-agent": "^7.0.0" + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" }, "engines": { - "node": ">= 18" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/@octokit/openapi-types": { - "version": "25.0.0", - "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-25.0.0.tgz", - "integrity": "sha512-FZvktFu7HfOIJf2BScLKIEYjDsw6RKc7rBJCdvCTfKsVnx2GEB/Nbzjr29DUdb7vQhlzS/j8qDzdditP0OC6aw==", - "dev": true, - "license": "MIT" - }, - "node_modules/@octokit/plugin-paginate-rest": { - "version": "11.6.0", - "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-11.6.0.tgz", - "integrity": "sha512-n5KPteiF7pWKgBIBJSk8qzoZWcUkza2O6A0za97pMGVrGfPdltxrfmfF5GucHYvHGZD8BdaZmmHGz5cX/3gdpw==", + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.25.9.tgz", + "integrity": "sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==", "dev": true, "license": "MIT", "dependencies": { - "@octokit/types": "^13.10.0" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { - "node": ">= 18" + "node": ">=6.9.0" }, "peerDependencies": { - "@octokit/core": ">=6" + "@babel/core": "^7.0.0-0" } }, - "node_modules/@octokit/plugin-paginate-rest/node_modules/@octokit/openapi-types": { - "version": "24.2.0", - "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-24.2.0.tgz", - "integrity": "sha512-9sIH3nSUttelJSXUrmGzl7QUBFul0/mB8HRYl3fOlgHbIWG+WnYDXU3v/2zMtAvuzZ/ed00Ei6on975FhBfzrg==", + "node_modules/@babel/plugin-transform-async-generator-functions": { + "version": "7.26.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.26.8.tgz", + "integrity": "sha512-He9Ej2X7tNf2zdKMAGOsmg2MrFc+hfoAhd3po4cWfo/NWjzEAKa0oQruj1ROVUdl0e6fb6/kE/G3SSxE0lRJOg==", "dev": true, - "license": "MIT" + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.26.5", + "@babel/helper-remap-async-to-generator": "^7.25.9", + "@babel/traverse": "^7.26.8" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } }, - "node_modules/@octokit/plugin-paginate-rest/node_modules/@octokit/types": { - "version": "13.10.0", - "resolved": "https://registry.npmjs.org/@octokit/types/-/types-13.10.0.tgz", - "integrity": "sha512-ifLaO34EbbPj0Xgro4G5lP5asESjwHracYJvVaPIyXMuiuXLlhic3S47cBdTb+jfODkTE5YtGCLt3Ay3+J97sA==", + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.25.9.tgz", + "integrity": "sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==", "dev": true, "license": "MIT", "dependencies": { - "@octokit/openapi-types": "^24.2.0" + "@babel/helper-module-imports": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-remap-async-to-generator": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@octokit/plugin-retry": { - "version": "7.2.1", - "resolved": "https://registry.npmjs.org/@octokit/plugin-retry/-/plugin-retry-7.2.1.tgz", - "integrity": "sha512-wUc3gv0D6vNHpGxSaR3FlqJpTXGWgqmk607N9L3LvPL4QjaxDgX/1nY2mGpT37Khn+nlIXdljczkRnNdTTV3/A==", + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.26.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.26.5.tgz", + "integrity": "sha512-chuTSY+hq09+/f5lMj8ZSYgCFpppV2CbYrhNFJ1BFoXpiWPnnAb7R0MqrafCpN8E1+YRrtM1MXZHJdIx8B6rMQ==", "dev": true, "license": "MIT", "dependencies": { - "@octokit/request-error": "^6.1.8", - "@octokit/types": "^14.0.0", - "bottleneck": "^2.15.3" + "@babel/helper-plugin-utils": "^7.26.5" }, "engines": { - "node": ">= 18" + "node": ">=6.9.0" }, "peerDependencies": { - "@octokit/core": ">=6" + "@babel/core": "^7.0.0-0" } }, - "node_modules/@octokit/plugin-throttling": { - "version": "9.6.1", - "resolved": "https://registry.npmjs.org/@octokit/plugin-throttling/-/plugin-throttling-9.6.1.tgz", - "integrity": "sha512-bt3EBUkeKUzDQXRCcFrR9SWVqlLFRRqcCrr6uAorWt6NXTyjMKqcGrFmXqJy9NCbnKgiIZ2OXWq04theFc76Jg==", + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.27.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.27.0.tgz", + "integrity": "sha512-u1jGphZ8uDI2Pj/HJj6YQ6XQLZCNjOlprjxB5SVz6rq2T6SwAR+CdrWK0CP7F+9rDVMXdB0+r6Am5G5aobOjAQ==", "dev": true, "license": "MIT", "dependencies": { - "@octokit/types": "^13.7.0", - "bottleneck": "^2.15.3" + "@babel/helper-plugin-utils": "^7.26.5" }, "engines": { - "node": ">= 18" + "node": ">=6.9.0" }, "peerDependencies": { - "@octokit/core": "^6.1.3" + "@babel/core": "^7.0.0-0" } }, - "node_modules/@octokit/plugin-throttling/node_modules/@octokit/openapi-types": { - "version": "24.2.0", - "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-24.2.0.tgz", - "integrity": "sha512-9sIH3nSUttelJSXUrmGzl7QUBFul0/mB8HRYl3fOlgHbIWG+WnYDXU3v/2zMtAvuzZ/ed00Ei6on975FhBfzrg==", - "dev": true, - "license": "MIT" - }, - "node_modules/@octokit/plugin-throttling/node_modules/@octokit/types": { - "version": "13.10.0", - "resolved": "https://registry.npmjs.org/@octokit/types/-/types-13.10.0.tgz", - "integrity": "sha512-ifLaO34EbbPj0Xgro4G5lP5asESjwHracYJvVaPIyXMuiuXLlhic3S47cBdTb+jfODkTE5YtGCLt3Ay3+J97sA==", + "node_modules/@babel/plugin-transform-class-properties": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.25.9.tgz", + "integrity": "sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==", "dev": true, "license": "MIT", "dependencies": { - "@octokit/openapi-types": "^24.2.0" + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@octokit/request": { - "version": "9.2.3", - "resolved": "https://registry.npmjs.org/@octokit/request/-/request-9.2.3.tgz", - "integrity": "sha512-Ma+pZU8PXLOEYzsWf0cn/gY+ME57Wq8f49WTXA8FMHp2Ps9djKw//xYJ1je8Hm0pR2lU9FUGeJRWOtxq6olt4w==", + "node_modules/@babel/plugin-transform-class-static-block": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.26.0.tgz", + "integrity": "sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==", "dev": true, "license": "MIT", "dependencies": { - "@octokit/endpoint": "^10.1.4", - "@octokit/request-error": "^6.1.8", - "@octokit/types": "^14.0.0", - "fast-content-type-parse": "^2.0.0", - "universal-user-agent": "^7.0.2" + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { - "node": ">= 18" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" } }, - "node_modules/@octokit/request-error": { - "version": "6.1.8", - "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-6.1.8.tgz", - "integrity": "sha512-WEi/R0Jmq+IJKydWlKDmryPcmdYSVjL3ekaiEL1L9eo1sUnqMJ+grqmC9cjk7CA7+b2/T397tO5d8YLOH3qYpQ==", + "node_modules/@babel/plugin-transform-classes": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.9.tgz", + "integrity": "sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==", "dev": true, "license": "MIT", "dependencies": { - "@octokit/types": "^14.0.0" + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-compilation-targets": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-replace-supers": "^7.25.9", + "@babel/traverse": "^7.25.9", + "globals": "^11.1.0" }, "engines": { - "node": ">= 18" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@octokit/types": { - "version": "14.0.0", - "resolved": "https://registry.npmjs.org/@octokit/types/-/types-14.0.0.tgz", - "integrity": "sha512-VVmZP0lEhbo2O1pdq63gZFiGCKkm8PPp8AUOijlwPO6hojEVjspA0MWKP7E4hbvGxzFKNqKr6p0IYtOH/Wf/zA==", + "node_modules/@babel/plugin-transform-classes/node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", "dev": true, "license": "MIT", - "dependencies": { - "@octokit/openapi-types": "^25.0.0" + "engines": { + "node": ">=4" } }, - "node_modules/@pkgr/core": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.2.4.tgz", - "integrity": "sha512-ROFF39F6ZrnzSUEmQQZUar0Jt4xVoP9WnDRdWwF4NNcXs3xBTLgBUDoOwW141y1jP+S8nahIbdxbFC7IShw9Iw==", + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.25.9.tgz", + "integrity": "sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==", "dev": true, "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/template": "^7.25.9" + }, "engines": { - "node": "^12.20.0 || ^14.18.0 || >=16.0.0" + "node": ">=6.9.0" }, - "funding": { - "url": "https://opencollective.com/pkgr" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@pnpm/config.env-replace": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@pnpm/config.env-replace/-/config.env-replace-1.1.0.tgz", - "integrity": "sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==", + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.25.9.tgz", + "integrity": "sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==", "dev": true, "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, "engines": { - "node": ">=12.22.0" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@pnpm/network.ca-file": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@pnpm/network.ca-file/-/network.ca-file-1.0.2.tgz", - "integrity": "sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==", + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.25.9.tgz", + "integrity": "sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==", "dev": true, "license": "MIT", "dependencies": { - "graceful-fs": "4.2.10" + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { - "node": ">=12.22.0" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@pnpm/network.ca-file/node_modules/graceful-fs": { - "version": "4.2.10", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", - "dev": true, - "license": "ISC" - }, - "node_modules/@pnpm/npm-conf": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/@pnpm/npm-conf/-/npm-conf-2.3.1.tgz", - "integrity": "sha512-c83qWb22rNRuB0UaVCI0uRPNRr8Z0FWnEIvT47jiHAmOIUHbBOg5XvV7pM5x+rKn9HRpjxquDbXYSXr3fAKFcw==", + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.25.9.tgz", + "integrity": "sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==", "dev": true, "license": "MIT", "dependencies": { - "@pnpm/config.env-replace": "^1.1.0", - "@pnpm/network.ca-file": "^1.0.1", - "config-chain": "^1.1.11" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { - "node": ">=12" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@sec-ant/readable-stream": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/@sec-ant/readable-stream/-/readable-stream-0.4.1.tgz", - "integrity": "sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==", + "node_modules/@babel/plugin-transform-duplicate-named-capturing-groups-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.25.9.tgz", + "integrity": "sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==", "dev": true, - "license": "MIT" + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } }, - "node_modules/@semantic-release/changelog": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/@semantic-release/changelog/-/changelog-6.0.3.tgz", - "integrity": "sha512-dZuR5qByyfe3Y03TpmCvAxCyTnp7r5XwtHRf/8vD9EAn4ZWbavUX8adMtXYzE86EVh0gyLA7lm5yW4IV30XUag==", + "node_modules/@babel/plugin-transform-dynamic-import": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.25.9.tgz", + "integrity": "sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==", "dev": true, "license": "MIT", "dependencies": { - "@semantic-release/error": "^3.0.0", - "aggregate-error": "^3.0.0", - "fs-extra": "^11.0.0", - "lodash": "^4.17.4" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { - "node": ">=14.17" + "node": ">=6.9.0" }, "peerDependencies": { - "semantic-release": ">=18.0.0" + "@babel/core": "^7.0.0-0" } }, - "node_modules/@semantic-release/commit-analyzer": { - "version": "13.0.1", - "resolved": "https://registry.npmjs.org/@semantic-release/commit-analyzer/-/commit-analyzer-13.0.1.tgz", - "integrity": "sha512-wdnBPHKkr9HhNhXOhZD5a2LNl91+hs8CC2vsAVYxtZH3y0dV3wKn+uZSN61rdJQZ8EGxzWB3inWocBHV9+u/CQ==", + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.26.3.tgz", + "integrity": "sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ==", "dev": true, "license": "MIT", "dependencies": { - "conventional-changelog-angular": "^8.0.0", - "conventional-changelog-writer": "^8.0.0", - "conventional-commits-filter": "^5.0.0", - "conventional-commits-parser": "^6.0.0", - "debug": "^4.0.0", - "import-from-esm": "^2.0.0", - "lodash-es": "^4.17.21", - "micromatch": "^4.0.2" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { - "node": ">=20.8.1" + "node": ">=6.9.0" }, "peerDependencies": { - "semantic-release": ">=20.1.0" + "@babel/core": "^7.0.0-0" } }, - "node_modules/@semantic-release/error": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-3.0.0.tgz", - "integrity": "sha512-5hiM4Un+tpl4cKw3lV4UgzJj+SmfNIDCLLw0TepzQxz9ZGV5ixnqkzIVF+3tp0ZHgcMKE+VNGHJjEeyFG2dcSw==", + "node_modules/@babel/plugin-transform-export-namespace-from": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.25.9.tgz", + "integrity": "sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==", "dev": true, "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, "engines": { - "node": ">=14.17" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@semantic-release/git": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/@semantic-release/git/-/git-10.0.1.tgz", - "integrity": "sha512-eWrx5KguUcU2wUPaO6sfvZI0wPafUKAMNC18aXY4EnNcrZL86dEmpNVnC9uMpGZkmZJ9EfCVJBQx4pV4EMGT1w==", + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.26.9.tgz", + "integrity": "sha512-Hry8AusVm8LW5BVFgiyUReuoGzPUpdHQQqJY5bZnbbf+ngOHWuCuYFKw/BqaaWlvEUrF91HMhDtEaI1hZzNbLg==", "dev": true, "license": "MIT", "dependencies": { - "@semantic-release/error": "^3.0.0", - "aggregate-error": "^3.0.0", - "debug": "^4.0.0", - "dir-glob": "^3.0.0", - "execa": "^5.0.0", - "lodash": "^4.17.4", - "micromatch": "^4.0.0", - "p-reduce": "^2.0.0" + "@babel/helper-plugin-utils": "^7.26.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" }, "engines": { - "node": ">=14.17" + "node": ">=6.9.0" }, "peerDependencies": { - "semantic-release": ">=18.0.0" + "@babel/core": "^7.0.0-0" } }, - "node_modules/@semantic-release/github": { - "version": "11.0.1", - "resolved": "https://registry.npmjs.org/@semantic-release/github/-/github-11.0.1.tgz", - "integrity": "sha512-Z9cr0LgU/zgucbT9cksH0/pX9zmVda9hkDPcgIE0uvjMQ8w/mElDivGjx1w1pEQ+MuQJ5CBq3VCF16S6G4VH3A==", + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.9.tgz", + "integrity": "sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==", "dev": true, "license": "MIT", "dependencies": { - "@octokit/core": "^6.0.0", - "@octokit/plugin-paginate-rest": "^11.0.0", - "@octokit/plugin-retry": "^7.0.0", - "@octokit/plugin-throttling": "^9.0.0", - "@semantic-release/error": "^4.0.0", - "aggregate-error": "^5.0.0", - "debug": "^4.3.4", - "dir-glob": "^3.0.1", - "globby": "^14.0.0", - "http-proxy-agent": "^7.0.0", - "https-proxy-agent": "^7.0.0", - "issue-parser": "^7.0.0", - "lodash-es": "^4.17.21", - "mime": "^4.0.0", - "p-filter": "^4.0.0", - "url-join": "^5.0.0" + "@babel/helper-compilation-targets": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/traverse": "^7.25.9" }, "engines": { - "node": ">=20.8.1" + "node": ">=6.9.0" }, "peerDependencies": { - "semantic-release": ">=24.1.0" + "@babel/core": "^7.0.0-0" } }, - "node_modules/@semantic-release/github/node_modules/@semantic-release/error": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-4.0.0.tgz", - "integrity": "sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ==", + "node_modules/@babel/plugin-transform-json-strings": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.25.9.tgz", + "integrity": "sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==", "dev": true, "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, "engines": { - "node": ">=18" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@semantic-release/github/node_modules/aggregate-error": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-5.0.0.tgz", - "integrity": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==", + "node_modules/@babel/plugin-transform-literals": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.9.tgz", + "integrity": "sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==", "dev": true, "license": "MIT", "dependencies": { - "clean-stack": "^5.2.0", - "indent-string": "^5.0.0" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { - "node": ">=18" + "node": ">=6.9.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@semantic-release/github/node_modules/clean-stack": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-5.2.0.tgz", - "integrity": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==", + "node_modules/@babel/plugin-transform-logical-assignment-operators": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.25.9.tgz", + "integrity": "sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==", "dev": true, "license": "MIT", "dependencies": { - "escape-string-regexp": "5.0.0" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { - "node": ">=14.16" + "node": ">=6.9.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@semantic-release/github/node_modules/escape-string-regexp": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", - "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.25.9.tgz", + "integrity": "sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==", "dev": true, "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, "engines": { - "node": ">=12" + "node": ">=6.9.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@semantic-release/github/node_modules/indent-string": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", - "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.25.9.tgz", + "integrity": "sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==", "dev": true, "license": "MIT", + "dependencies": { + "@babel/helper-module-transforms": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, "engines": { - "node": ">=12" + "node": ">=6.9.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@semantic-release/npm": { - "version": "12.0.1", - "resolved": "https://registry.npmjs.org/@semantic-release/npm/-/npm-12.0.1.tgz", - "integrity": "sha512-/6nntGSUGK2aTOI0rHPwY3ZjgY9FkXmEHbW9Kr+62NVOsyqpKKeP0lrCH+tphv+EsNdJNmqqwijTEnVWUMQ2Nw==", + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.26.3.tgz", + "integrity": "sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ==", "dev": true, "license": "MIT", "dependencies": { - "@semantic-release/error": "^4.0.0", - "aggregate-error": "^5.0.0", - "execa": "^9.0.0", - "fs-extra": "^11.0.0", - "lodash-es": "^4.17.21", - "nerf-dart": "^1.0.0", - "normalize-url": "^8.0.0", - "npm": "^10.5.0", - "rc": "^1.2.8", - "read-pkg": "^9.0.0", - "registry-auth-token": "^5.0.0", - "semver": "^7.1.2", - "tempy": "^3.0.0" + "@babel/helper-module-transforms": "^7.26.0", + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { - "node": ">=20.8.1" + "node": ">=6.9.0" }, "peerDependencies": { - "semantic-release": ">=20.1.0" + "@babel/core": "^7.0.0-0" } }, - "node_modules/@semantic-release/npm/node_modules/@semantic-release/error": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-4.0.0.tgz", - "integrity": "sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ==", + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.9.tgz", + "integrity": "sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA==", "dev": true, "license": "MIT", + "dependencies": { + "@babel/helper-module-transforms": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9", + "@babel/traverse": "^7.25.9" + }, "engines": { - "node": ">=18" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@semantic-release/npm/node_modules/@sindresorhus/merge-streams": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-4.0.0.tgz", - "integrity": "sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==", + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.25.9.tgz", + "integrity": "sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==", "dev": true, "license": "MIT", + "dependencies": { + "@babel/helper-module-transforms": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, "engines": { - "node": ">=18" + "node": ">=6.9.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@semantic-release/npm/node_modules/aggregate-error": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-5.0.0.tgz", - "integrity": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==", + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.25.9.tgz", + "integrity": "sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==", "dev": true, "license": "MIT", "dependencies": { - "clean-stack": "^5.2.0", - "indent-string": "^5.0.0" + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { - "node": ">=18" + "node": ">=6.9.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/@semantic-release/npm/node_modules/clean-stack": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-5.2.0.tgz", - "integrity": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==", + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.25.9.tgz", + "integrity": "sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==", "dev": true, "license": "MIT", "dependencies": { - "escape-string-regexp": "5.0.0" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { - "node": ">=14.16" + "node": ">=6.9.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@semantic-release/npm/node_modules/escape-string-regexp": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", - "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { + "version": "7.26.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.26.6.tgz", + "integrity": "sha512-CKW8Vu+uUZneQCPtXmSBUC6NCAUdya26hWCElAWh5mVSlSRsmiCPUUDKb3Z0szng1hiAJa098Hkhg9o4SE35Qw==", "dev": true, "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.26.5" + }, "engines": { - "node": ">=12" + "node": ">=6.9.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@semantic-release/npm/node_modules/execa": { - "version": "9.5.2", - "resolved": "https://registry.npmjs.org/execa/-/execa-9.5.2.tgz", - "integrity": "sha512-EHlpxMCpHWSAh1dgS6bVeoLAXGnJNdR93aabr4QCGbzOM73o5XmRfM/e5FUqsw3aagP8S8XEWUWFAxnRBnAF0Q==", + "node_modules/@babel/plugin-transform-numeric-separator": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.25.9.tgz", + "integrity": "sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==", "dev": true, "license": "MIT", "dependencies": { - "@sindresorhus/merge-streams": "^4.0.0", - "cross-spawn": "^7.0.3", - "figures": "^6.1.0", - "get-stream": "^9.0.0", - "human-signals": "^8.0.0", - "is-plain-obj": "^4.1.0", - "is-stream": "^4.0.1", - "npm-run-path": "^6.0.0", - "pretty-ms": "^9.0.0", - "signal-exit": "^4.1.0", - "strip-final-newline": "^4.0.0", - "yoctocolors": "^2.0.0" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { - "node": "^18.19.0 || >=20.5.0" + "node": ">=6.9.0" }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@semantic-release/npm/node_modules/figures": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-6.1.0.tgz", - "integrity": "sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==", + "node_modules/@babel/plugin-transform-object-rest-spread": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.25.9.tgz", + "integrity": "sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==", "dev": true, "license": "MIT", "dependencies": { - "is-unicode-supported": "^2.0.0" + "@babel/helper-compilation-targets": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/plugin-transform-parameters": "^7.25.9" }, "engines": { - "node": ">=18" + "node": ">=6.9.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@semantic-release/npm/node_modules/get-stream": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-9.0.1.tgz", - "integrity": "sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==", + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.25.9.tgz", + "integrity": "sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==", "dev": true, "license": "MIT", "dependencies": { - "@sec-ant/readable-stream": "^0.4.1", - "is-stream": "^4.0.1" + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-replace-supers": "^7.25.9" }, "engines": { - "node": ">=18" + "node": ">=6.9.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@semantic-release/npm/node_modules/human-signals": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-8.0.1.tgz", - "integrity": "sha512-eKCa6bwnJhvxj14kZk5NCPc6Hb6BdsU9DZcOnmQKSnO1VKrfV0zCvtttPZUsBvjmNDn8rpcJfpwSYnHBjc95MQ==", + "node_modules/@babel/plugin-transform-optional-catch-binding": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.25.9.tgz", + "integrity": "sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==", "dev": true, - "license": "Apache-2.0", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, "engines": { - "node": ">=18.18.0" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@semantic-release/npm/node_modules/indent-string": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", - "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", + "node_modules/@babel/plugin-transform-optional-chaining": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.25.9.tgz", + "integrity": "sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==", "dev": true, "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" + }, "engines": { - "node": ">=12" + "node": ">=6.9.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@semantic-release/npm/node_modules/is-stream": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-4.0.1.tgz", - "integrity": "sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==", + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.25.9.tgz", + "integrity": "sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==", "dev": true, "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, "engines": { - "node": ">=18" + "node": ">=6.9.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@semantic-release/npm/node_modules/is-unicode-supported": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.1.0.tgz", - "integrity": "sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==", + "node_modules/@babel/plugin-transform-private-methods": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.25.9.tgz", + "integrity": "sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==", "dev": true, "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, "engines": { - "node": ">=18" + "node": ">=6.9.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@semantic-release/npm/node_modules/npm-run-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-6.0.0.tgz", - "integrity": "sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==", + "node_modules/@babel/plugin-transform-private-property-in-object": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.25.9.tgz", + "integrity": "sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==", "dev": true, "license": "MIT", "dependencies": { - "path-key": "^4.0.0", - "unicorn-magic": "^0.3.0" + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-create-class-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { - "node": ">=18" + "node": ">=6.9.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@semantic-release/npm/node_modules/path-key": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", - "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.25.9.tgz", + "integrity": "sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==", "dev": true, "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, "engines": { - "node": ">=12" + "node": ">=6.9.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@semantic-release/npm/node_modules/signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "node_modules/@babel/plugin-transform-react-constant-elements": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.25.9.tgz", + "integrity": "sha512-Ncw2JFsJVuvfRsa2lSHiC55kETQVLSnsYGQ1JDDwkUeWGTL/8Tom8aLTnlqgoeuopWrbbGndrc9AlLYrIosrow==", "dev": true, - "license": "ISC", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, "engines": { - "node": ">=14" + "node": ">=6.9.0" }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@semantic-release/npm/node_modules/strip-final-newline": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-4.0.0.tgz", - "integrity": "sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==", + "node_modules/@babel/plugin-transform-react-display-name": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.25.9.tgz", + "integrity": "sha512-KJfMlYIUxQB1CJfO3e0+h0ZHWOTLCPP115Awhaz8U0Zpq36Gl/cXlpoyMRnUWlhNUBAzldnCiAZNvCDj7CrKxQ==", "dev": true, "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, "engines": { - "node": ">=18" + "node": ">=6.9.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@semantic-release/npm/node_modules/unicorn-magic": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.3.0.tgz", - "integrity": "sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==", + "node_modules/@babel/plugin-transform-react-jsx": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.25.9.tgz", + "integrity": "sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw==", "dev": true, "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-module-imports": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/plugin-syntax-jsx": "^7.25.9", + "@babel/types": "^7.25.9" + }, "engines": { - "node": ">=18" + "node": ">=6.9.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@semantic-release/release-notes-generator": { - "version": "14.0.3", - "resolved": "https://registry.npmjs.org/@semantic-release/release-notes-generator/-/release-notes-generator-14.0.3.tgz", - "integrity": "sha512-XxAZRPWGwO5JwJtS83bRdoIhCiYIx8Vhr+u231pQAsdFIAbm19rSVJLdnBN+Avvk7CKvNQE/nJ4y7uqKH6WTiw==", + "node_modules/@babel/plugin-transform-react-jsx-development": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.25.9.tgz", + "integrity": "sha512-9mj6rm7XVYs4mdLIpbZnHOYdpW42uoiBCTVowg7sP1thUOiANgMb4UtpRivR0pp5iL+ocvUv7X4mZgFRpJEzGw==", "dev": true, "license": "MIT", "dependencies": { - "conventional-changelog-angular": "^8.0.0", - "conventional-changelog-writer": "^8.0.0", - "conventional-commits-filter": "^5.0.0", - "conventional-commits-parser": "^6.0.0", - "debug": "^4.0.0", - "get-stream": "^7.0.0", - "import-from-esm": "^2.0.0", - "into-stream": "^7.0.0", - "lodash-es": "^4.17.21", - "read-package-up": "^11.0.0" + "@babel/plugin-transform-react-jsx": "^7.25.9" }, "engines": { - "node": ">=20.8.1" + "node": ">=6.9.0" }, "peerDependencies": { - "semantic-release": ">=20.1.0" + "@babel/core": "^7.0.0-0" } }, - "node_modules/@semantic-release/release-notes-generator/node_modules/get-stream": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-7.0.1.tgz", - "integrity": "sha512-3M8C1EOFN6r8AMUhwUAACIoXZJEOufDU5+0gFFN5uNs6XYOralD2Pqkl7m046va6x77FwposWXbAhPPIOus7mQ==", + "node_modules/@babel/plugin-transform-react-pure-annotations": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.25.9.tgz", + "integrity": "sha512-KQ/Takk3T8Qzj5TppkS1be588lkbTp5uj7w6a0LeQaTMSckU/wK0oJ/pih+T690tkgI5jfmg2TqDJvd41Sj1Cg==", "dev": true, "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, "engines": { - "node": ">=16" + "node": ">=6.9.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@sindresorhus/is": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", - "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==", + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.27.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.27.0.tgz", + "integrity": "sha512-LX/vCajUJQDqE7Aum/ELUMZAY19+cDpghxrnyt5I1tV6X5PyC86AOoWXWFYFeIvauyeSA6/ktn4tQVn/3ZifsA==", "dev": true, "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.26.5", + "regenerator-transform": "^0.15.2" + }, "engines": { - "node": ">=10" + "node": ">=6.9.0" }, - "funding": { - "url": "https://github.com/sindresorhus/is?sponsor=1" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@sindresorhus/merge-streams": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz", - "integrity": "sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==", + "node_modules/@babel/plugin-transform-regexp-modifiers": { + "version": "7.26.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.26.0.tgz", + "integrity": "sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw==", "dev": true, "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" + }, "engines": { - "node": ">=18" + "node": ">=6.9.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/@types/conventional-commits-parser": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@types/conventional-commits-parser/-/conventional-commits-parser-5.0.1.tgz", - "integrity": "sha512-7uz5EHdzz2TqoMfV7ee61Egf5y6NkcO4FB/1iCCQnbeiI1F3xzv3vK5dBCXUCLQgGYS+mUeigK1iKQzvED+QnQ==", + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.25.9.tgz", + "integrity": "sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==", "dev": true, "license": "MIT", - "optional": true, "dependencies": { - "@types/node": "*" + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@types/estree": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.7.tgz", - "integrity": "sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/json-schema": { - "version": "7.0.15", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", - "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/node": { - "version": "22.14.1", - "resolved": "https://registry.npmjs.org/@types/node/-/node-22.14.1.tgz", - "integrity": "sha512-u0HuPQwe/dHrItgHHpmw3N2fYCR6x4ivMNbPHRkBVP4CvN+kiRrKHWk3i8tXiO/joPwXLMYvF9TTF0eqgHIuOw==", + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.25.9.tgz", + "integrity": "sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==", "dev": true, "license": "MIT", "dependencies": { - "undici-types": "~6.21.0" + "@babel/helper-plugin-utils": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@types/normalize-package-data": { - "version": "2.4.4", - "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", - "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/react": { - "version": "19.1.2", - "resolved": "https://registry.npmjs.org/@types/react/-/react-19.1.2.tgz", - "integrity": "sha512-oxLPMytKchWGbnQM9O7D67uPa9paTNxO7jVoNMXgkkErULBPhPARCfkKL9ytcIJJRGjbsVwW4ugJzyFFvm/Tiw==", + "node_modules/@babel/plugin-transform-spread": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.25.9.tgz", + "integrity": "sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==", "dev": true, "license": "MIT", "dependencies": { - "csstype": "^3.0.2" + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@typescript-eslint/eslint-plugin": { - "version": "8.30.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.30.1.tgz", - "integrity": "sha512-v+VWphxMjn+1t48/jO4t950D6KR8JaJuNXzi33Ve6P8sEmPr5k6CEXjdGwT6+LodVnEa91EQCtwjWNUCPweo+Q==", + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.25.9.tgz", + "integrity": "sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==", "dev": true, "license": "MIT", "dependencies": { - "@eslint-community/regexpp": "^4.10.0", - "@typescript-eslint/scope-manager": "8.30.1", - "@typescript-eslint/type-utils": "8.30.1", - "@typescript-eslint/utils": "8.30.1", - "@typescript-eslint/visitor-keys": "8.30.1", - "graphemer": "^1.4.0", - "ignore": "^5.3.1", - "natural-compare": "^1.4.0", - "ts-api-utils": "^2.0.1" + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "node": ">=6.9.0" }, "peerDependencies": { - "@typescript-eslint/parser": "^8.0.0 || ^8.0.0-alpha.0", - "eslint": "^8.57.0 || ^9.0.0", - "typescript": ">=4.8.4 <5.9.0" + "@babel/core": "^7.0.0-0" } }, - "node_modules/@typescript-eslint/parser": { - "version": "8.30.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.30.1.tgz", - "integrity": "sha512-H+vqmWwT5xoNrXqWs/fesmssOW70gxFlgcMlYcBaWNPIEWDgLa4W9nkSPmhuOgLnXq9QYgkZ31fhDyLhleCsAg==", + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.26.8", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.26.8.tgz", + "integrity": "sha512-OmGDL5/J0CJPJZTHZbi2XpO0tyT2Ia7fzpW5GURwdtp2X3fMmN8au/ej6peC/T33/+CRiIpA8Krse8hFGVmT5Q==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/scope-manager": "8.30.1", - "@typescript-eslint/types": "8.30.1", - "@typescript-eslint/typescript-estree": "8.30.1", - "@typescript-eslint/visitor-keys": "8.30.1", - "debug": "^4.3.4" + "@babel/helper-plugin-utils": "^7.26.5" }, "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "node": ">=6.9.0" }, "peerDependencies": { - "eslint": "^8.57.0 || ^9.0.0", - "typescript": ">=4.8.4 <5.9.0" + "@babel/core": "^7.0.0-0" } }, - "node_modules/@typescript-eslint/scope-manager": { - "version": "8.30.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.30.1.tgz", - "integrity": "sha512-+C0B6ChFXZkuaNDl73FJxRYT0G7ufVPOSQkqkpM/U198wUwUFOtgo1k/QzFh1KjpBitaK7R1tgjVz6o9HmsRPg==", + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.27.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.27.0.tgz", + "integrity": "sha512-+LLkxA9rKJpNoGsbLnAgOCdESl73vwYn+V6b+5wHbrE7OGKVDPHIQvbFSzqE6rwqaCw2RE+zdJrlLkcf8YOA0w==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/types": "8.30.1", - "@typescript-eslint/visitor-keys": "8.30.1" + "@babel/helper-plugin-utils": "^7.26.5" }, "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + "node": ">=6.9.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@typescript-eslint/type-utils": { - "version": "8.30.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.30.1.tgz", - "integrity": "sha512-64uBF76bfQiJyHgZISC7vcNz3adqQKIccVoKubyQcOnNcdJBvYOILV1v22Qhsw3tw3VQu5ll8ND6hycgAR5fEA==", + "node_modules/@babel/plugin-transform-typescript": { + "version": "7.27.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.27.0.tgz", + "integrity": "sha512-fRGGjO2UEGPjvEcyAZXRXAS8AfdaQoq7HnxAbJoAoW10B9xOKesmmndJv+Sym2a+9FHWZ9KbyyLCe9s0Sn5jtg==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/typescript-estree": "8.30.1", - "@typescript-eslint/utils": "8.30.1", - "debug": "^4.3.4", - "ts-api-utils": "^2.0.1" + "@babel/helper-annotate-as-pure": "^7.25.9", + "@babel/helper-create-class-features-plugin": "^7.27.0", + "@babel/helper-plugin-utils": "^7.26.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", + "@babel/plugin-syntax-typescript": "^7.25.9" }, "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "node": ">=6.9.0" }, "peerDependencies": { - "eslint": "^8.57.0 || ^9.0.0", - "typescript": ">=4.8.4 <5.9.0" + "@babel/core": "^7.0.0-0" } }, - "node_modules/@typescript-eslint/types": { - "version": "8.30.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.30.1.tgz", - "integrity": "sha512-81KawPfkuulyWo5QdyG/LOKbspyyiW+p4vpn4bYO7DM/hZImlVnFwrpCTnmNMOt8CvLRr5ojI9nU1Ekpw4RcEw==", + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.25.9.tgz", + "integrity": "sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==", "dev": true, "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9" + }, "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + "node": ">=6.9.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@typescript-eslint/typescript-estree": { - "version": "8.30.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.30.1.tgz", - "integrity": "sha512-kQQnxymiUy9tTb1F2uep9W6aBiYODgq5EMSk6Nxh4Z+BDUoYUSa029ISs5zTzKBFnexQEh71KqwjKnRz58lusQ==", + "node_modules/@babel/plugin-transform-unicode-property-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.25.9.tgz", + "integrity": "sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/types": "8.30.1", - "@typescript-eslint/visitor-keys": "8.30.1", - "debug": "^4.3.4", - "fast-glob": "^3.3.2", - "is-glob": "^4.0.3", - "minimatch": "^9.0.4", - "semver": "^7.6.0", - "ts-api-utils": "^2.0.1" + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "node": ">=6.9.0" }, "peerDependencies": { - "typescript": ">=4.8.4 <5.9.0" + "@babel/core": "^7.0.0-0" } }, - "node_modules/@typescript-eslint/utils": { - "version": "8.30.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.30.1.tgz", - "integrity": "sha512-T/8q4R9En2tcEsWPQgB5BQ0XJVOtfARcUvOa8yJP3fh9M/mXraLxZrkCfGb6ChrO/V3W+Xbd04RacUEqk1CFEQ==", + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.25.9.tgz", + "integrity": "sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==", "dev": true, "license": "MIT", "dependencies": { - "@eslint-community/eslint-utils": "^4.4.0", - "@typescript-eslint/scope-manager": "8.30.1", - "@typescript-eslint/types": "8.30.1", - "@typescript-eslint/typescript-estree": "8.30.1" + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "node": ">=6.9.0" }, "peerDependencies": { - "eslint": "^8.57.0 || ^9.0.0", - "typescript": ">=4.8.4 <5.9.0" + "@babel/core": "^7.0.0-0" } }, - "node_modules/@typescript-eslint/visitor-keys": { - "version": "8.30.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.30.1.tgz", - "integrity": "sha512-aEhgas7aJ6vZnNFC7K4/vMGDGyOiqWcYZPpIWrTKuTAlsvDNKy2GFDqh9smL+iq069ZvR0YzEeq0B8NJlLzjFA==", + "node_modules/@babel/plugin-transform-unicode-sets-regex": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.25.9.tgz", + "integrity": "sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==", "dev": true, "license": "MIT", "dependencies": { - "@typescript-eslint/types": "8.30.1", - "eslint-visitor-keys": "^4.2.0" + "@babel/helper-create-regexp-features-plugin": "^7.25.9", + "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/preset-env": { + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.26.9.tgz", + "integrity": "sha512-vX3qPGE8sEKEAZCWk05k3cpTAE3/nOYca++JA+Rd0z2NCNzabmYvEiSShKzm10zdquOIAVXsy2Ei/DTW34KlKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.26.8", + "@babel/helper-compilation-targets": "^7.26.5", + "@babel/helper-plugin-utils": "^7.26.5", + "@babel/helper-validator-option": "^7.25.9", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.25.9", + "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.25.9", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.25.9", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.25.9", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.25.9", + "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", + "@babel/plugin-syntax-import-assertions": "^7.26.0", + "@babel/plugin-syntax-import-attributes": "^7.26.0", + "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", + "@babel/plugin-transform-arrow-functions": "^7.25.9", + "@babel/plugin-transform-async-generator-functions": "^7.26.8", + "@babel/plugin-transform-async-to-generator": "^7.25.9", + "@babel/plugin-transform-block-scoped-functions": "^7.26.5", + "@babel/plugin-transform-block-scoping": "^7.25.9", + "@babel/plugin-transform-class-properties": "^7.25.9", + "@babel/plugin-transform-class-static-block": "^7.26.0", + "@babel/plugin-transform-classes": "^7.25.9", + "@babel/plugin-transform-computed-properties": "^7.25.9", + "@babel/plugin-transform-destructuring": "^7.25.9", + "@babel/plugin-transform-dotall-regex": "^7.25.9", + "@babel/plugin-transform-duplicate-keys": "^7.25.9", + "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.25.9", + "@babel/plugin-transform-dynamic-import": "^7.25.9", + "@babel/plugin-transform-exponentiation-operator": "^7.26.3", + "@babel/plugin-transform-export-namespace-from": "^7.25.9", + "@babel/plugin-transform-for-of": "^7.26.9", + "@babel/plugin-transform-function-name": "^7.25.9", + "@babel/plugin-transform-json-strings": "^7.25.9", + "@babel/plugin-transform-literals": "^7.25.9", + "@babel/plugin-transform-logical-assignment-operators": "^7.25.9", + "@babel/plugin-transform-member-expression-literals": "^7.25.9", + "@babel/plugin-transform-modules-amd": "^7.25.9", + "@babel/plugin-transform-modules-commonjs": "^7.26.3", + "@babel/plugin-transform-modules-systemjs": "^7.25.9", + "@babel/plugin-transform-modules-umd": "^7.25.9", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.25.9", + "@babel/plugin-transform-new-target": "^7.25.9", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.26.6", + "@babel/plugin-transform-numeric-separator": "^7.25.9", + "@babel/plugin-transform-object-rest-spread": "^7.25.9", + "@babel/plugin-transform-object-super": "^7.25.9", + "@babel/plugin-transform-optional-catch-binding": "^7.25.9", + "@babel/plugin-transform-optional-chaining": "^7.25.9", + "@babel/plugin-transform-parameters": "^7.25.9", + "@babel/plugin-transform-private-methods": "^7.25.9", + "@babel/plugin-transform-private-property-in-object": "^7.25.9", + "@babel/plugin-transform-property-literals": "^7.25.9", + "@babel/plugin-transform-regenerator": "^7.25.9", + "@babel/plugin-transform-regexp-modifiers": "^7.26.0", + "@babel/plugin-transform-reserved-words": "^7.25.9", + "@babel/plugin-transform-shorthand-properties": "^7.25.9", + "@babel/plugin-transform-spread": "^7.25.9", + "@babel/plugin-transform-sticky-regex": "^7.25.9", + "@babel/plugin-transform-template-literals": "^7.26.8", + "@babel/plugin-transform-typeof-symbol": "^7.26.7", + "@babel/plugin-transform-unicode-escapes": "^7.25.9", + "@babel/plugin-transform-unicode-property-regex": "^7.25.9", + "@babel/plugin-transform-unicode-regex": "^7.25.9", + "@babel/plugin-transform-unicode-sets-regex": "^7.25.9", + "@babel/preset-modules": "0.1.6-no-external-plugins", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "babel-plugin-polyfill-corejs3": "^0.11.0", + "babel-plugin-polyfill-regenerator": "^0.6.1", + "core-js-compat": "^3.40.0", + "semver": "^6.3.1" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", - "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", - "dev": true, - "license": "Apache-2.0", "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + "node": ">=6.9.0" }, - "funding": { - "url": "https://opencollective.com/eslint" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/acorn": { - "version": "8.14.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz", - "integrity": "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==", + "node_modules/@babel/preset-env/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, - "license": "MIT", + "license": "ISC", "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" + "semver": "bin/semver.js" } }, - "node_modules/acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "node_modules/@babel/preset-modules": { + "version": "0.1.6-no-external-plugins", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", + "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", "dev": true, "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + }, "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/agent-base": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.3.tgz", - "integrity": "sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==", + "node_modules/@babel/preset-react": { + "version": "7.26.3", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.26.3.tgz", + "integrity": "sha512-Nl03d6T9ky516DGK2YMxrTqvnpUW63TnJMOMonj+Zae0JiPC5BC9xPMSL6L8fiSpA5vP88qfygavVQvnLp+6Cw==", "dev": true, "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.25.9", + "@babel/helper-validator-option": "^7.25.9", + "@babel/plugin-transform-react-display-name": "^7.25.9", + "@babel/plugin-transform-react-jsx": "^7.25.9", + "@babel/plugin-transform-react-jsx-development": "^7.25.9", + "@babel/plugin-transform-react-pure-annotations": "^7.25.9" + }, "engines": { - "node": ">= 14" + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/aggregate-error": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "node_modules/@babel/preset-typescript": { + "version": "7.27.0", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.27.0.tgz", + "integrity": "sha512-vxaPFfJtHhgeOVXRKuHpHPAOgymmy8V8I65T1q53R7GCZlefKeCaTyDs3zOPHTTbmquvNlQYC5klEvWsBAtrBQ==", "dev": true, "license": "MIT", "dependencies": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" + "@babel/helper-plugin-utils": "^7.26.5", + "@babel/helper-validator-option": "^7.25.9", + "@babel/plugin-syntax-jsx": "^7.25.9", + "@babel/plugin-transform-modules-commonjs": "^7.26.3", + "@babel/plugin-transform-typescript": "^7.27.0" }, "engines": { - "node": ">=8" - } - }, + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.27.0", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.27.0.tgz", + "integrity": "sha512-VtPOkrdPHZsKc/clNqyi9WUA8TINkZ4cGk63UUE3u4pmB2k+ZMQRDuIOagv8UVd6j7k0T3+RRIb7beKTebNbcw==", + "dev": true, + "license": "MIT", + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.27.0", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.0.tgz", + "integrity": "sha512-2ncevenBqXI6qRMukPlXwHKHchC7RyMuu4xv5JBXRfOGVcTy1mXCD12qrp7Jsoxll1EV3+9sE4GugBVRjT2jFA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.26.2", + "@babel/parser": "^7.27.0", + "@babel/types": "^7.27.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.27.0", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.27.0.tgz", + "integrity": "sha512-19lYZFzYVQkkHkl4Cy4WrAVcqBkgvV2YM2TU3xG6DIwO7O3ecbDPfW3yM3bjAGcqcQHi+CCtjMR3dIEHxsd6bA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.26.2", + "@babel/generator": "^7.27.0", + "@babel/parser": "^7.27.0", + "@babel/template": "^7.27.0", + "@babel/types": "^7.27.0", + "debug": "^4.3.1", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse/node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/types": { + "version": "7.27.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.27.0.tgz", + "integrity": "sha512-H45s8fVLYjbhFH62dIJ3WtmJ6RSPt/3DRO0ZcT2SUiYiQyz3BLVb9ADEnLl91m74aQPS3AzzeajZHYOalWe3bg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@colors/colors": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", + "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=0.1.90" + } + }, + "node_modules/@commitlint/config-validator": { + "version": "19.8.0", + "resolved": "https://registry.npmjs.org/@commitlint/config-validator/-/config-validator-19.8.0.tgz", + "integrity": "sha512-+r5ZvD/0hQC3w5VOHJhGcCooiAVdynFlCe2d6I9dU+PvXdV3O+fU4vipVg+6hyLbQUuCH82mz3HnT/cBQTYYuA==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@commitlint/types": "^19.8.0", + "ajv": "^8.11.0" + }, + "engines": { + "node": ">=v18" + } + }, + "node_modules/@commitlint/execute-rule": { + "version": "19.8.0", + "resolved": "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-19.8.0.tgz", + "integrity": "sha512-fuLeI+EZ9x2v/+TXKAjplBJWI9CNrHnyi5nvUQGQt4WRkww/d95oVRsc9ajpt4xFrFmqMZkd/xBQHZDvALIY7A==", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=v18" + } + }, + "node_modules/@commitlint/load": { + "version": "19.8.0", + "resolved": "https://registry.npmjs.org/@commitlint/load/-/load-19.8.0.tgz", + "integrity": "sha512-4rvmm3ff81Sfb+mcWT5WKlyOa+Hd33WSbirTVUer0wjS1Hv/Hzr07Uv1ULIV9DkimZKNyOwXn593c+h8lsDQPQ==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@commitlint/config-validator": "^19.8.0", + "@commitlint/execute-rule": "^19.8.0", + "@commitlint/resolve-extends": "^19.8.0", + "@commitlint/types": "^19.8.0", + "chalk": "^5.3.0", + "cosmiconfig": "^9.0.0", + "cosmiconfig-typescript-loader": "^6.1.0", + "lodash.isplainobject": "^4.0.6", + "lodash.merge": "^4.6.2", + "lodash.uniq": "^4.5.0" + }, + "engines": { + "node": ">=v18" + } + }, + "node_modules/@commitlint/load/node_modules/chalk": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.4.1.tgz", + "integrity": "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@commitlint/resolve-extends": { + "version": "19.8.0", + "resolved": "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-19.8.0.tgz", + "integrity": "sha512-CLanRQwuG2LPfFVvrkTrBR/L/DMy3+ETsgBqW1OvRxmzp/bbVJW0Xw23LnnExgYcsaFtos967lul1CsbsnJlzQ==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@commitlint/config-validator": "^19.8.0", + "@commitlint/types": "^19.8.0", + "global-directory": "^4.0.1", + "import-meta-resolve": "^4.0.0", + "lodash.mergewith": "^4.6.2", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=v18" + } + }, + "node_modules/@commitlint/types": { + "version": "19.8.0", + "resolved": "https://registry.npmjs.org/@commitlint/types/-/types-19.8.0.tgz", + "integrity": "sha512-LRjP623jPyf3Poyfb0ohMj8I3ORyBDOwXAgxxVPbSD0unJuW2mJWeiRfaQinjtccMqC5Wy1HOMfa4btKjbNxbg==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@types/conventional-commits-parser": "^5.0.0", + "chalk": "^5.3.0" + }, + "engines": { + "node": ">=v18" + } + }, + "node_modules/@commitlint/types/node_modules/chalk": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.4.1.tgz", + "integrity": "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.25.2", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.2.tgz", + "integrity": "sha512-wCIboOL2yXZym2cgm6mlA742s9QeJ8DjGVaL39dLN4rRwrOgOyYSnOaFPhKZGLb2ngj4EyfAFjsNJwPXZvseag==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.25.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.2.tgz", + "integrity": "sha512-NQhH7jFstVY5x8CKbcfa166GoV0EFkaPkCKBQkdPJFvo5u+nGXLEH/ooniLb3QI8Fk58YAx7nsPLozUWfCBOJA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.25.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.2.tgz", + "integrity": "sha512-5ZAX5xOmTligeBaeNEPnPaeEuah53Id2tX4c2CVP3JaROTH+j4fnfHCkr1PjXMd78hMst+TlkfKcW/DlTq0i4w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.25.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.2.tgz", + "integrity": "sha512-Ffcx+nnma8Sge4jzddPHCZVRvIfQ0kMsUsCMcJRHkGJ1cDmhe4SsrYIjLUKn1xpHZybmOqCWwB0zQvsjdEHtkg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.25.2", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.2.tgz", + "integrity": "sha512-MpM6LUVTXAzOvN4KbjzU/q5smzryuoNjlriAIx+06RpecwCkL9JpenNzpKd2YMzLJFOdPqBpuub6eVRP5IgiSA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.25.2", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.2.tgz", + "integrity": "sha512-5eRPrTX7wFyuWe8FqEFPG2cU0+butQQVNcT4sVipqjLYQjjh8a8+vUTfgBKM88ObB85ahsnTwF7PSIt6PG+QkA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.25.2", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.2.tgz", + "integrity": "sha512-mLwm4vXKiQ2UTSX4+ImyiPdiHjiZhIaE9QvC7sw0tZ6HoNMjYAqQpGyui5VRIi5sGd+uWq940gdCbY3VLvsO1w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.25.2", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.2.tgz", + "integrity": "sha512-6qyyn6TjayJSwGpm8J9QYYGQcRgc90nmfdUb0O7pp1s4lTY+9D0H9O02v5JqGApUyiHOtkz6+1hZNvNtEhbwRQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.25.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.2.tgz", + "integrity": "sha512-UHBRgJcmjJv5oeQF8EpTRZs/1knq6loLxTsjc3nxO9eXAPDLcWW55flrMVc97qFPbmZP31ta1AZVUKQzKTzb0g==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.25.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.2.tgz", + "integrity": "sha512-gq/sjLsOyMT19I8obBISvhoYiZIAaGF8JpeXu1u8yPv8BE5HlWYobmlsfijFIZ9hIVGYkbdFhEqC0NvM4kNO0g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.25.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.2.tgz", + "integrity": "sha512-bBYCv9obgW2cBP+2ZWfjYTU+f5cxRoGGQ5SeDbYdFCAZpYWrfjjfYwvUpP8MlKbP0nwZ5gyOU/0aUzZ5HWPuvQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.25.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.2.tgz", + "integrity": "sha512-SHNGiKtvnU2dBlM5D8CXRFdd+6etgZ9dXfaPCeJtz+37PIUlixvlIhI23L5khKXs3DIzAn9V8v+qb1TRKrgT5w==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.25.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.2.tgz", + "integrity": "sha512-hDDRlzE6rPeoj+5fsADqdUZl1OzqDYow4TB4Y/3PlKBD0ph1e6uPHzIQcv2Z65u2K0kpeByIyAjCmjn1hJgG0Q==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.25.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.2.tgz", + "integrity": "sha512-tsHu2RRSWzipmUi9UBDEzc0nLc4HtpZEI5Ba+Omms5456x5WaNuiG3u7xh5AO6sipnJ9r4cRWQB2tUjPyIkc6g==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.25.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.2.tgz", + "integrity": "sha512-k4LtpgV7NJQOml/10uPU0s4SAXGnowi5qBSjaLWMojNCUICNu7TshqHLAEbkBdAszL5TabfvQ48kK84hyFzjnw==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.25.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.2.tgz", + "integrity": "sha512-GRa4IshOdvKY7M/rDpRR3gkiTNp34M0eLTaC1a08gNrh4u488aPhuZOCpkF6+2wl3zAN7L7XIpOFBhnaE3/Q8Q==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.25.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.2.tgz", + "integrity": "sha512-QInHERlqpTTZ4FRB0fROQWXcYRD64lAoiegezDunLpalZMjcUcld3YzZmVJ2H/Cp0wJRZ8Xtjtj0cEHhYc/uUg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.25.2", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.2.tgz", + "integrity": "sha512-talAIBoY5M8vHc6EeI2WW9d/CkiO9MQJ0IOWX8hrLhxGbro/vBXJvaQXefW2cP0z0nQVTdQ/eNyGFV1GSKrxfw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.25.2", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.2.tgz", + "integrity": "sha512-voZT9Z+tpOxrvfKFyfDYPc4DO4rk06qamv1a/fkuzHpiVBMOhpjK+vBmWM8J1eiB3OLSMFYNaOaBNLXGChf5tg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.25.2", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.2.tgz", + "integrity": "sha512-dcXYOC6NXOqcykeDlwId9kB6OkPUxOEqU+rkrYVqJbK2hagWOMrsTGsMr8+rW02M+d5Op5NNlgMmjzecaRf7Tg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.25.2", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.2.tgz", + "integrity": "sha512-t/TkWwahkH0Tsgoq1Ju7QfgGhArkGLkF1uYz8nQS/PPFlXbP5YgRpqQR3ARRiC2iXoLTWFxc6DJMSK10dVXluw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.25.2", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.2.tgz", + "integrity": "sha512-cfZH1co2+imVdWCjd+D1gf9NjkchVhhdpgb1q5y6Hcv9TP6Zi9ZG/beI3ig8TvwT9lH9dlxLq5MQBBgwuj4xvA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.25.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.2.tgz", + "integrity": "sha512-7Loyjh+D/Nx/sOTzV8vfbB3GJuHdOQyrOryFdZvPHLf42Tk9ivBU5Aedi7iyX+x6rbn2Mh68T4qq1SDqJBQO5Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.25.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.2.tgz", + "integrity": "sha512-WRJgsz9un0nqZJ4MfhabxaD9Ft8KioqU3JMinOTvobbX6MOSUigSBlogP8QB3uxpJDsFS6yN+3FDBdqE5lg9kg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.25.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.2.tgz", + "integrity": "sha512-kM3HKb16VIXZyIeVrM1ygYmZBKybX8N4p754bw390wGO3Tf2j4L2/WYL+4suWujpgf6GBYs3jv7TyUivdd05JA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.6.1.tgz", + "integrity": "sha512-KTsJMmobmbrFLe3LDh0PC2FXpcSYJt/MLjlkh/9LEnmKYLSYmT/0EW9JWANjeoemiuZrmogti0tW5Ch+qNUYDw==", + "dev": true, + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.12.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", + "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/config-array": { + "version": "0.20.0", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.20.0.tgz", + "integrity": "sha512-fxlS1kkIjx8+vy2SjuCB94q3htSNrufYTXubwiBFeaQHbH6Ipi43gFJq2zCMt6PHhImH3Xmr0NksKDvchWlpQQ==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/object-schema": "^2.1.6", + "debug": "^4.3.1", + "minimatch": "^3.1.2" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/config-array/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/@eslint/config-array/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/@eslint/config-helpers": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.2.1.tgz", + "integrity": "sha512-RI17tsD2frtDu/3dmI7QRrD4bedNKPM08ziRYaC5AhkGrzIAJelm9kJU1TznK+apx6V+cqRz8tfpEeG3oIyjxw==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/core": { + "version": "0.13.0", + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.13.0.tgz", + "integrity": "sha512-yfkgDw1KR66rkT5A8ci4irzDysN7FRpq3ttJolR88OqQikAWqwA8j5VZyas+vjyBNFIJ7MfybJ9plMILI2UrCw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@types/json-schema": "^7.0.15" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.1.tgz", + "integrity": "sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^10.0.1", + "globals": "^14.0.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/@eslint/eslintrc/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@eslint/eslintrc/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/@eslint/js": { + "version": "9.25.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.25.0.tgz", + "integrity": "sha512-iWhsUS8Wgxz9AXNfvfOPFSW4VfMXdVhp1hjkZVhXCrpgh/aLcc45rX6MPu+tIVUWDw0HfNwth7O28M1xDxNf9w==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/object-schema": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.6.tgz", + "integrity": "sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/plugin-kit": { + "version": "0.2.8", + "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.8.tgz", + "integrity": "sha512-ZAoA40rNMPwSm+AeHpCq8STiNAwzWLJuP8Xv4CHIc9wv/PSuExjMrmjfYNj682vW0OOiZ1HKxzvjQr9XZIisQA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/core": "^0.13.0", + "levn": "^0.4.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@humanfs/core": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", + "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/node": { + "version": "0.16.6", + "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.6.tgz", + "integrity": "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@humanfs/core": "^0.19.1", + "@humanwhocodes/retry": "^0.3.0" + }, + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/node/node_modules/@humanwhocodes/retry": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz", + "integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/retry": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.2.tgz", + "integrity": "sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz", + "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@octokit/auth-token": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-4.0.0.tgz", + "integrity": "sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 18" + } + }, + "node_modules/@octokit/core": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/@octokit/core/-/core-5.2.1.tgz", + "integrity": "sha512-dKYCMuPO1bmrpuogcjQ8z7ICCH3FP6WmxpwC03yjzGfZhj9fTJg6+bS1+UAplekbN2C+M61UNllGOOoAfGCrdQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@octokit/auth-token": "^4.0.0", + "@octokit/graphql": "^7.1.0", + "@octokit/request": "^8.4.1", + "@octokit/request-error": "^5.1.1", + "@octokit/types": "^13.0.0", + "before-after-hook": "^2.2.0", + "universal-user-agent": "^6.0.0" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/@octokit/endpoint": { + "version": "9.0.6", + "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-9.0.6.tgz", + "integrity": "sha512-H1fNTMA57HbkFESSt3Y9+FBICv+0jFceJFPWDePYlR/iMGrwM5ph+Dd4XRQs+8X+PUFURLQgX9ChPfhJ/1uNQw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@octokit/types": "^13.1.0", + "universal-user-agent": "^6.0.0" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/@octokit/graphql": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-7.1.1.tgz", + "integrity": "sha512-3mkDltSfcDUoa176nlGoA32RGjeWjl3K7F/BwHwRMJUW/IteSa4bnSV8p2ThNkcIcZU2umkZWxwETSSCJf2Q7g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@octokit/request": "^8.4.1", + "@octokit/types": "^13.0.0", + "universal-user-agent": "^6.0.0" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/@octokit/openapi-types": { + "version": "24.2.0", + "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-24.2.0.tgz", + "integrity": "sha512-9sIH3nSUttelJSXUrmGzl7QUBFul0/mB8HRYl3fOlgHbIWG+WnYDXU3v/2zMtAvuzZ/ed00Ei6on975FhBfzrg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@octokit/plugin-paginate-rest": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-9.2.2.tgz", + "integrity": "sha512-u3KYkGF7GcZnSD/3UP0S7K5XUFT2FkOQdcfXZGZQPGv3lm4F2Xbf71lvjldr8c1H3nNbF+33cLEkWYbokGWqiQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@octokit/types": "^12.6.0" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "@octokit/core": "5" + } + }, + "node_modules/@octokit/plugin-paginate-rest/node_modules/@octokit/openapi-types": { + "version": "20.0.0", + "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-20.0.0.tgz", + "integrity": "sha512-EtqRBEjp1dL/15V7WiX5LJMIxxkdiGJnabzYx5Apx4FkQIFgAfKumXeYAqqJCj1s+BMX4cPFIFC4OLCR6stlnA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@octokit/plugin-paginate-rest/node_modules/@octokit/types": { + "version": "12.6.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-12.6.0.tgz", + "integrity": "sha512-1rhSOfRa6H9w4YwK0yrf5faDaDTb+yLyBUKOCV4xtCDB5VmIPqd/v9yr9o6SAzOAlRxMiRiCic6JVM1/kunVkw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@octokit/openapi-types": "^20.0.0" + } + }, + "node_modules/@octokit/plugin-retry": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@octokit/plugin-retry/-/plugin-retry-6.1.0.tgz", + "integrity": "sha512-WrO3bvq4E1Xh1r2mT9w6SDFg01gFmP81nIG77+p/MqW1JeXXgL++6umim3t6x0Zj5pZm3rXAN+0HEjmmdhIRig==", + "dev": true, + "license": "MIT", + "dependencies": { + "@octokit/request-error": "^5.0.0", + "@octokit/types": "^13.0.0", + "bottleneck": "^2.15.3" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "@octokit/core": "5" + } + }, + "node_modules/@octokit/plugin-throttling": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/@octokit/plugin-throttling/-/plugin-throttling-8.2.0.tgz", + "integrity": "sha512-nOpWtLayKFpgqmgD0y3GqXafMFuKcA4tRPZIfu7BArd2lEZeb1988nhWhwx4aZWmjDmUfdgVf7W+Tt4AmvRmMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@octokit/types": "^12.2.0", + "bottleneck": "^2.15.3" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "@octokit/core": "^5.0.0" + } + }, + "node_modules/@octokit/plugin-throttling/node_modules/@octokit/openapi-types": { + "version": "20.0.0", + "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-20.0.0.tgz", + "integrity": "sha512-EtqRBEjp1dL/15V7WiX5LJMIxxkdiGJnabzYx5Apx4FkQIFgAfKumXeYAqqJCj1s+BMX4cPFIFC4OLCR6stlnA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@octokit/plugin-throttling/node_modules/@octokit/types": { + "version": "12.6.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-12.6.0.tgz", + "integrity": "sha512-1rhSOfRa6H9w4YwK0yrf5faDaDTb+yLyBUKOCV4xtCDB5VmIPqd/v9yr9o6SAzOAlRxMiRiCic6JVM1/kunVkw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@octokit/openapi-types": "^20.0.0" + } + }, + "node_modules/@octokit/request": { + "version": "8.4.1", + "resolved": "https://registry.npmjs.org/@octokit/request/-/request-8.4.1.tgz", + "integrity": "sha512-qnB2+SY3hkCmBxZsR/MPCybNmbJe4KAlfWErXq+rBKkQJlbjdJeS85VI9r8UqeLYLvnAenU8Q1okM/0MBsAGXw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@octokit/endpoint": "^9.0.6", + "@octokit/request-error": "^5.1.1", + "@octokit/types": "^13.1.0", + "universal-user-agent": "^6.0.0" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/@octokit/request-error": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-5.1.1.tgz", + "integrity": "sha512-v9iyEQJH6ZntoENr9/yXxjuezh4My67CBSu9r6Ve/05Iu5gNgnisNWOsoJHTP6k0Rr0+HQIpnH+kyammu90q/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@octokit/types": "^13.1.0", + "deprecation": "^2.0.0", + "once": "^1.4.0" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/@octokit/types": { + "version": "13.10.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-13.10.0.tgz", + "integrity": "sha512-ifLaO34EbbPj0Xgro4G5lP5asESjwHracYJvVaPIyXMuiuXLlhic3S47cBdTb+jfODkTE5YtGCLt3Ay3+J97sA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@octokit/openapi-types": "^24.2.0" + } + }, + "node_modules/@pkgr/core": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.2.4.tgz", + "integrity": "sha512-ROFF39F6ZrnzSUEmQQZUar0Jt4xVoP9WnDRdWwF4NNcXs3xBTLgBUDoOwW141y1jP+S8nahIbdxbFC7IShw9Iw==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.20.0 || ^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/pkgr" + } + }, + "node_modules/@pnpm/config.env-replace": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@pnpm/config.env-replace/-/config.env-replace-1.1.0.tgz", + "integrity": "sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.22.0" + } + }, + "node_modules/@pnpm/network.ca-file": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@pnpm/network.ca-file/-/network.ca-file-1.0.2.tgz", + "integrity": "sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "4.2.10" + }, + "engines": { + "node": ">=12.22.0" + } + }, + "node_modules/@pnpm/network.ca-file/node_modules/graceful-fs": { + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", + "dev": true, + "license": "ISC" + }, + "node_modules/@pnpm/npm-conf": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/@pnpm/npm-conf/-/npm-conf-2.3.1.tgz", + "integrity": "sha512-c83qWb22rNRuB0UaVCI0uRPNRr8Z0FWnEIvT47jiHAmOIUHbBOg5XvV7pM5x+rKn9HRpjxquDbXYSXr3fAKFcw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@pnpm/config.env-replace": "^1.1.0", + "@pnpm/network.ca-file": "^1.0.1", + "config-chain": "^1.1.11" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@rollup/pluginutils": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.1.4.tgz", + "integrity": "sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0", + "estree-walker": "^2.0.2", + "picomatch": "^4.0.2" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } + } + }, + "node_modules/@rollup/pluginutils/node_modules/picomatch": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz", + "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/@sec-ant/readable-stream": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/@sec-ant/readable-stream/-/readable-stream-0.4.1.tgz", + "integrity": "sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@semantic-release/changelog": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/@semantic-release/changelog/-/changelog-6.0.3.tgz", + "integrity": "sha512-dZuR5qByyfe3Y03TpmCvAxCyTnp7r5XwtHRf/8vD9EAn4ZWbavUX8adMtXYzE86EVh0gyLA7lm5yW4IV30XUag==", + "dev": true, + "license": "MIT", + "dependencies": { + "@semantic-release/error": "^3.0.0", + "aggregate-error": "^3.0.0", + "fs-extra": "^11.0.0", + "lodash": "^4.17.4" + }, + "engines": { + "node": ">=14.17" + }, + "peerDependencies": { + "semantic-release": ">=18.0.0" + } + }, + "node_modules/@semantic-release/commit-analyzer": { + "version": "13.0.1", + "resolved": "https://registry.npmjs.org/@semantic-release/commit-analyzer/-/commit-analyzer-13.0.1.tgz", + "integrity": "sha512-wdnBPHKkr9HhNhXOhZD5a2LNl91+hs8CC2vsAVYxtZH3y0dV3wKn+uZSN61rdJQZ8EGxzWB3inWocBHV9+u/CQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "conventional-changelog-angular": "^8.0.0", + "conventional-changelog-writer": "^8.0.0", + "conventional-commits-filter": "^5.0.0", + "conventional-commits-parser": "^6.0.0", + "debug": "^4.0.0", + "import-from-esm": "^2.0.0", + "lodash-es": "^4.17.21", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">=20.8.1" + }, + "peerDependencies": { + "semantic-release": ">=20.1.0" + } + }, + "node_modules/@semantic-release/error": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-3.0.0.tgz", + "integrity": "sha512-5hiM4Un+tpl4cKw3lV4UgzJj+SmfNIDCLLw0TepzQxz9ZGV5ixnqkzIVF+3tp0ZHgcMKE+VNGHJjEeyFG2dcSw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14.17" + } + }, + "node_modules/@semantic-release/git": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/@semantic-release/git/-/git-10.0.1.tgz", + "integrity": "sha512-eWrx5KguUcU2wUPaO6sfvZI0wPafUKAMNC18aXY4EnNcrZL86dEmpNVnC9uMpGZkmZJ9EfCVJBQx4pV4EMGT1w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@semantic-release/error": "^3.0.0", + "aggregate-error": "^3.0.0", + "debug": "^4.0.0", + "dir-glob": "^3.0.0", + "execa": "^5.0.0", + "lodash": "^4.17.4", + "micromatch": "^4.0.0", + "p-reduce": "^2.0.0" + }, + "engines": { + "node": ">=14.17" + }, + "peerDependencies": { + "semantic-release": ">=18.0.0" + } + }, + "node_modules/@semantic-release/github": { + "version": "9.2.6", + "resolved": "https://registry.npmjs.org/@semantic-release/github/-/github-9.2.6.tgz", + "integrity": "sha512-shi+Lrf6exeNZF+sBhK+P011LSbhmIAoUEgEY6SsxF8irJ+J2stwI5jkyDQ+4gzYyDImzV6LCKdYB9FXnQRWKA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@octokit/core": "^5.0.0", + "@octokit/plugin-paginate-rest": "^9.0.0", + "@octokit/plugin-retry": "^6.0.0", + "@octokit/plugin-throttling": "^8.0.0", + "@semantic-release/error": "^4.0.0", + "aggregate-error": "^5.0.0", + "debug": "^4.3.4", + "dir-glob": "^3.0.1", + "globby": "^14.0.0", + "http-proxy-agent": "^7.0.0", + "https-proxy-agent": "^7.0.0", + "issue-parser": "^6.0.0", + "lodash-es": "^4.17.21", + "mime": "^4.0.0", + "p-filter": "^4.0.0", + "url-join": "^5.0.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "semantic-release": ">=20.1.0" + } + }, + "node_modules/@semantic-release/github/node_modules/@semantic-release/error": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-4.0.0.tgz", + "integrity": "sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/@semantic-release/github/node_modules/aggregate-error": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-5.0.0.tgz", + "integrity": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==", + "dev": true, + "license": "MIT", + "dependencies": { + "clean-stack": "^5.2.0", + "indent-string": "^5.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/github/node_modules/clean-stack": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-5.2.0.tgz", + "integrity": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "escape-string-regexp": "5.0.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/github/node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/github/node_modules/indent-string": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", + "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/npm": { + "version": "12.0.1", + "resolved": "https://registry.npmjs.org/@semantic-release/npm/-/npm-12.0.1.tgz", + "integrity": "sha512-/6nntGSUGK2aTOI0rHPwY3ZjgY9FkXmEHbW9Kr+62NVOsyqpKKeP0lrCH+tphv+EsNdJNmqqwijTEnVWUMQ2Nw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@semantic-release/error": "^4.0.0", + "aggregate-error": "^5.0.0", + "execa": "^9.0.0", + "fs-extra": "^11.0.0", + "lodash-es": "^4.17.21", + "nerf-dart": "^1.0.0", + "normalize-url": "^8.0.0", + "npm": "^10.5.0", + "rc": "^1.2.8", + "read-pkg": "^9.0.0", + "registry-auth-token": "^5.0.0", + "semver": "^7.1.2", + "tempy": "^3.0.0" + }, + "engines": { + "node": ">=20.8.1" + }, + "peerDependencies": { + "semantic-release": ">=20.1.0" + } + }, + "node_modules/@semantic-release/npm/node_modules/@semantic-release/error": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-4.0.0.tgz", + "integrity": "sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/@semantic-release/npm/node_modules/@sindresorhus/merge-streams": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-4.0.0.tgz", + "integrity": "sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/npm/node_modules/aggregate-error": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-5.0.0.tgz", + "integrity": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==", + "dev": true, + "license": "MIT", + "dependencies": { + "clean-stack": "^5.2.0", + "indent-string": "^5.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/npm/node_modules/clean-stack": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-5.2.0.tgz", + "integrity": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "escape-string-regexp": "5.0.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/npm/node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/npm/node_modules/execa": { + "version": "9.5.2", + "resolved": "https://registry.npmjs.org/execa/-/execa-9.5.2.tgz", + "integrity": "sha512-EHlpxMCpHWSAh1dgS6bVeoLAXGnJNdR93aabr4QCGbzOM73o5XmRfM/e5FUqsw3aagP8S8XEWUWFAxnRBnAF0Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@sindresorhus/merge-streams": "^4.0.0", + "cross-spawn": "^7.0.3", + "figures": "^6.1.0", + "get-stream": "^9.0.0", + "human-signals": "^8.0.0", + "is-plain-obj": "^4.1.0", + "is-stream": "^4.0.1", + "npm-run-path": "^6.0.0", + "pretty-ms": "^9.0.0", + "signal-exit": "^4.1.0", + "strip-final-newline": "^4.0.0", + "yoctocolors": "^2.0.0" + }, + "engines": { + "node": "^18.19.0 || >=20.5.0" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/@semantic-release/npm/node_modules/figures": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-6.1.0.tgz", + "integrity": "sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-unicode-supported": "^2.0.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/npm/node_modules/get-stream": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-9.0.1.tgz", + "integrity": "sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@sec-ant/readable-stream": "^0.4.1", + "is-stream": "^4.0.1" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/npm/node_modules/human-signals": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-8.0.1.tgz", + "integrity": "sha512-eKCa6bwnJhvxj14kZk5NCPc6Hb6BdsU9DZcOnmQKSnO1VKrfV0zCvtttPZUsBvjmNDn8rpcJfpwSYnHBjc95MQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@semantic-release/npm/node_modules/indent-string": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", + "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/npm/node_modules/is-stream": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-4.0.1.tgz", + "integrity": "sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/npm/node_modules/is-unicode-supported": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.1.0.tgz", + "integrity": "sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/npm/node_modules/npm-run-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-6.0.0.tgz", + "integrity": "sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==", + "dev": true, + "license": "MIT", + "dependencies": { + "path-key": "^4.0.0", + "unicorn-magic": "^0.3.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/npm/node_modules/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/npm/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@semantic-release/npm/node_modules/strip-final-newline": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-4.0.0.tgz", + "integrity": "sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/npm/node_modules/unicorn-magic": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.3.0.tgz", + "integrity": "sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@semantic-release/release-notes-generator": { + "version": "14.0.3", + "resolved": "https://registry.npmjs.org/@semantic-release/release-notes-generator/-/release-notes-generator-14.0.3.tgz", + "integrity": "sha512-XxAZRPWGwO5JwJtS83bRdoIhCiYIx8Vhr+u231pQAsdFIAbm19rSVJLdnBN+Avvk7CKvNQE/nJ4y7uqKH6WTiw==", + "dev": true, + "license": "MIT", + "dependencies": { + "conventional-changelog-angular": "^8.0.0", + "conventional-changelog-writer": "^8.0.0", + "conventional-commits-filter": "^5.0.0", + "conventional-commits-parser": "^6.0.0", + "debug": "^4.0.0", + "get-stream": "^7.0.0", + "import-from-esm": "^2.0.0", + "into-stream": "^7.0.0", + "lodash-es": "^4.17.21", + "read-package-up": "^11.0.0" + }, + "engines": { + "node": ">=20.8.1" + }, + "peerDependencies": { + "semantic-release": ">=20.1.0" + } + }, + "node_modules/@semantic-release/release-notes-generator/node_modules/get-stream": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-7.0.1.tgz", + "integrity": "sha512-3M8C1EOFN6r8AMUhwUAACIoXZJEOufDU5+0gFFN5uNs6XYOralD2Pqkl7m046va6x77FwposWXbAhPPIOus7mQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@sindresorhus/is": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", + "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/is?sponsor=1" + } + }, + "node_modules/@sindresorhus/merge-streams": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz", + "integrity": "sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@svgr/babel-plugin-add-jsx-attribute": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-8.0.0.tgz", + "integrity": "sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@svgr/babel-plugin-remove-jsx-attribute": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-8.0.0.tgz", + "integrity": "sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-8.0.0.tgz", + "integrity": "sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-8.0.0.tgz", + "integrity": "sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@svgr/babel-plugin-svg-dynamic-title": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-8.0.0.tgz", + "integrity": "sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@svgr/babel-plugin-svg-em-dimensions": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-8.0.0.tgz", + "integrity": "sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@svgr/babel-plugin-transform-react-native-svg": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-8.1.0.tgz", + "integrity": "sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@svgr/babel-plugin-transform-svg-component": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-8.0.0.tgz", + "integrity": "sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@svgr/babel-preset": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-8.1.0.tgz", + "integrity": "sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==", + "dev": true, + "license": "MIT", + "dependencies": { + "@svgr/babel-plugin-add-jsx-attribute": "8.0.0", + "@svgr/babel-plugin-remove-jsx-attribute": "8.0.0", + "@svgr/babel-plugin-remove-jsx-empty-expression": "8.0.0", + "@svgr/babel-plugin-replace-jsx-attribute-value": "8.0.0", + "@svgr/babel-plugin-svg-dynamic-title": "8.0.0", + "@svgr/babel-plugin-svg-em-dimensions": "8.0.0", + "@svgr/babel-plugin-transform-react-native-svg": "8.1.0", + "@svgr/babel-plugin-transform-svg-component": "8.0.0" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@svgr/core": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@svgr/core/-/core-8.1.0.tgz", + "integrity": "sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.21.3", + "@svgr/babel-preset": "8.1.0", + "camelcase": "^6.2.0", + "cosmiconfig": "^8.1.3", + "snake-case": "^3.0.4" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/core/node_modules/cosmiconfig": { + "version": "8.3.6", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", + "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", + "dev": true, + "license": "MIT", + "dependencies": { + "import-fresh": "^3.3.0", + "js-yaml": "^4.1.0", + "parse-json": "^5.2.0", + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/d-fischer" + }, + "peerDependencies": { + "typescript": ">=4.9.5" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@svgr/hast-util-to-babel-ast": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-8.0.0.tgz", + "integrity": "sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.21.3", + "entities": "^4.4.0" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/plugin-jsx": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-8.1.0.tgz", + "integrity": "sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.21.3", + "@svgr/babel-preset": "8.1.0", + "@svgr/hast-util-to-babel-ast": "8.0.0", + "svg-parser": "^2.0.4" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@svgr/core": "*" + } + }, + "node_modules/@svgr/plugin-prettier": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-prettier/-/plugin-prettier-8.1.0.tgz", + "integrity": "sha512-o4/uFI8G64tAjBZ4E7gJfH+VP7Qi3T0+M4WnIsP91iFnGPqs5WvPDkpZALXPiyWEtzfYs1Rmwy1Zdfu8qoZuKw==", + "dev": true, + "license": "MIT", + "dependencies": { + "deepmerge": "^4.3.1", + "prettier": "^2.8.7" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@svgr/core": "*" + } + }, + "node_modules/@svgr/plugin-prettier/node_modules/prettier": { + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", + "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", + "dev": true, + "license": "MIT", + "bin": { + "prettier": "bin-prettier.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/@svgr/plugin-svgo": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-8.1.0.tgz", + "integrity": "sha512-Ywtl837OGO9pTLIN/onoWLmDQ4zFUycI1g76vuKGEz6evR/ZTJlJuz3G/fIkb6OVBJ2g0o6CGJzaEjfmEo3AHA==", + "dev": true, + "license": "MIT", + "dependencies": { + "cosmiconfig": "^8.1.3", + "deepmerge": "^4.3.1", + "svgo": "^3.0.2" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@svgr/core": "*" + } + }, + "node_modules/@svgr/plugin-svgo/node_modules/cosmiconfig": { + "version": "8.3.6", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", + "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", + "dev": true, + "license": "MIT", + "dependencies": { + "import-fresh": "^3.3.0", + "js-yaml": "^4.1.0", + "parse-json": "^5.2.0", + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/d-fischer" + }, + "peerDependencies": { + "typescript": ">=4.9.5" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@svgr/rollup": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@svgr/rollup/-/rollup-8.1.0.tgz", + "integrity": "sha512-0XR1poYvPQoPpmfDYLEqUGu5ePAQ4pdgN3VFsZBNAeze7qubVpsIY1o1R6PZpKep/DKu33GSm2NhwpCLkMs2Cw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.21.3", + "@babel/plugin-transform-react-constant-elements": "^7.21.3", + "@babel/preset-env": "^7.20.2", + "@babel/preset-react": "^7.18.6", + "@babel/preset-typescript": "^7.21.0", + "@rollup/pluginutils": "^5.0.2", + "@svgr/core": "8.1.0", + "@svgr/plugin-jsx": "8.1.0", + "@svgr/plugin-svgo": "8.1.0" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@trysound/sax": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", + "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/@types/conventional-commits-parser": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@types/conventional-commits-parser/-/conventional-commits-parser-5.0.1.tgz", + "integrity": "sha512-7uz5EHdzz2TqoMfV7ee61Egf5y6NkcO4FB/1iCCQnbeiI1F3xzv3vK5dBCXUCLQgGYS+mUeigK1iKQzvED+QnQ==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/estree": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.7.tgz", + "integrity": "sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "22.14.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.14.1.tgz", + "integrity": "sha512-u0HuPQwe/dHrItgHHpmw3N2fYCR6x4ivMNbPHRkBVP4CvN+kiRrKHWk3i8tXiO/joPwXLMYvF9TTF0eqgHIuOw==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~6.21.0" + } + }, + "node_modules/@types/normalize-package-data": { + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", + "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/prop-types": { + "version": "15.7.14", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.14.tgz", + "integrity": "sha512-gNMvNH49DJ7OJYv+KAKn0Xp45p8PLl6zo2YnvDIbTd4J6MER2BmWN49TG7n9LvkyihINxeKW8+3bfS2yDC9dzQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/react": { + "version": "18.3.20", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.20.tgz", + "integrity": "sha512-IPaCZN7PShZK/3t6Q87pfTkRm6oLTd4vztyoj+cbHUF1g3FfVb2tFIL79uCRKEfv16AhqDMBywP2VW3KIZUvcg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/prop-types": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "8.30.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.30.1.tgz", + "integrity": "sha512-v+VWphxMjn+1t48/jO4t950D6KR8JaJuNXzi33Ve6P8sEmPr5k6CEXjdGwT6+LodVnEa91EQCtwjWNUCPweo+Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/regexpp": "^4.10.0", + "@typescript-eslint/scope-manager": "8.30.1", + "@typescript-eslint/type-utils": "8.30.1", + "@typescript-eslint/utils": "8.30.1", + "@typescript-eslint/visitor-keys": "8.30.1", + "graphemer": "^1.4.0", + "ignore": "^5.3.1", + "natural-compare": "^1.4.0", + "ts-api-utils": "^2.0.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^8.0.0 || ^8.0.0-alpha.0", + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.9.0" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "8.30.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.30.1.tgz", + "integrity": "sha512-H+vqmWwT5xoNrXqWs/fesmssOW70gxFlgcMlYcBaWNPIEWDgLa4W9nkSPmhuOgLnXq9QYgkZ31fhDyLhleCsAg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/scope-manager": "8.30.1", + "@typescript-eslint/types": "8.30.1", + "@typescript-eslint/typescript-estree": "8.30.1", + "@typescript-eslint/visitor-keys": "8.30.1", + "debug": "^4.3.4" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.9.0" + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "8.30.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.30.1.tgz", + "integrity": "sha512-+C0B6ChFXZkuaNDl73FJxRYT0G7ufVPOSQkqkpM/U198wUwUFOtgo1k/QzFh1KjpBitaK7R1tgjVz6o9HmsRPg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.30.1", + "@typescript-eslint/visitor-keys": "8.30.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "8.30.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.30.1.tgz", + "integrity": "sha512-64uBF76bfQiJyHgZISC7vcNz3adqQKIccVoKubyQcOnNcdJBvYOILV1v22Qhsw3tw3VQu5ll8ND6hycgAR5fEA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/typescript-estree": "8.30.1", + "@typescript-eslint/utils": "8.30.1", + "debug": "^4.3.4", + "ts-api-utils": "^2.0.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.9.0" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "8.30.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.30.1.tgz", + "integrity": "sha512-81KawPfkuulyWo5QdyG/LOKbspyyiW+p4vpn4bYO7DM/hZImlVnFwrpCTnmNMOt8CvLRr5ojI9nU1Ekpw4RcEw==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "8.30.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.30.1.tgz", + "integrity": "sha512-kQQnxymiUy9tTb1F2uep9W6aBiYODgq5EMSk6Nxh4Z+BDUoYUSa029ISs5zTzKBFnexQEh71KqwjKnRz58lusQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.30.1", + "@typescript-eslint/visitor-keys": "8.30.1", + "debug": "^4.3.4", + "fast-glob": "^3.3.2", + "is-glob": "^4.0.3", + "minimatch": "^9.0.4", + "semver": "^7.6.0", + "ts-api-utils": "^2.0.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "typescript": ">=4.8.4 <5.9.0" + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "8.30.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.30.1.tgz", + "integrity": "sha512-T/8q4R9En2tcEsWPQgB5BQ0XJVOtfARcUvOa8yJP3fh9M/mXraLxZrkCfGb6ChrO/V3W+Xbd04RacUEqk1CFEQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.4.0", + "@typescript-eslint/scope-manager": "8.30.1", + "@typescript-eslint/types": "8.30.1", + "@typescript-eslint/typescript-estree": "8.30.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0", + "typescript": ">=4.8.4 <5.9.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "8.30.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.30.1.tgz", + "integrity": "sha512-aEhgas7aJ6vZnNFC7K4/vMGDGyOiqWcYZPpIWrTKuTAlsvDNKy2GFDqh9smL+iq069ZvR0YzEeq0B8NJlLzjFA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.30.1", + "eslint-visitor-keys": "^4.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", + "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/acorn": { + "version": "8.14.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz", + "integrity": "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/agent-base": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.3.tgz", + "integrity": "sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 14" + } + }, + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dev": true, + "license": "MIT", + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/ajv": { "version": "8.17.1", "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", @@ -1638,6 +4288,58 @@ "node": ">= 4.0.0" } }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.4.13", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.13.tgz", + "integrity": "sha512-3sX/eOms8kd3q2KZ6DAhKPc0dgm525Gqq5NtWKZ7QYYZEv57OQ54KtblzJzH1lQF/eQxO8KjWGIK9IPUJNus5g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.22.6", + "@babel/helper-define-polyfill-provider": "^0.6.4", + "semver": "^6.3.1" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.11.1.tgz", + "integrity": "sha512-yGCqvBT4rwMczo28xkH/noxJ6MZ4nJfkVYdoDaC/utLtWrXxv27HVrzAeSbqR8SxDsp46n0YF47EbHoixy6rXQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.3", + "core-js-compat": "^3.40.0" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.4.tgz", + "integrity": "sha512-7gD3pRadPrbjhjLyxebmx/WrFYcuSjZ0XbdUujQMZ/fcE9oeewk2U/7PCvez84UeuK3oSjmPZ0Ch0dlupQvGzw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.6.4" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, "node_modules/balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", @@ -1667,9 +4369,9 @@ "license": "MIT" }, "node_modules/before-after-hook": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-3.0.2.tgz", - "integrity": "sha512-Nik3Sc0ncrMK4UUdXQmAnRtzmNQTAAXmXIopizwZ1W1t8QmfJj+zL4OA2I7XPTPW5z5TDqv4hRo/JzouDJnX3A==", + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.3.tgz", + "integrity": "sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==", "dev": true, "license": "Apache-2.0" }, @@ -1685,6 +4387,13 @@ "readable-stream": "^3.4.0" } }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "dev": true, + "license": "ISC" + }, "node_modules/bottleneck": { "version": "2.19.5", "resolved": "https://registry.npmjs.org/bottleneck/-/bottleneck-2.19.5.tgz", @@ -1715,6 +4424,39 @@ "node": ">=8" } }, + "node_modules/browserslist": { + "version": "4.24.4", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.4.tgz", + "integrity": "sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "caniuse-lite": "^1.0.30001688", + "electron-to-chromium": "^1.5.73", + "node-releases": "^2.0.19", + "update-browserslist-db": "^1.1.1" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, "node_modules/buffer": { "version": "5.7.1", "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", @@ -1760,6 +4502,40 @@ "node": ">=6" } }, + "node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001715", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001715.tgz", + "integrity": "sha512-7ptkFGMm2OAOgvZpwgA4yjQ5SQbrNVGdRjzH0pBdy1Fasvcr+KAeECmbCAECzTuDuoX0FCY8KzUxjf9+9kfZEw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, "node_modules/chalk": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", @@ -2271,6 +5047,27 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true, + "license": "MIT" + }, + "node_modules/core-js-compat": { + "version": "3.41.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.41.0.tgz", + "integrity": "sha512-RFsU9LySVue9RTwdDVX/T0e2Y6jRYWXERKElIjpuEOEnxaXffI0X7RUwVzfYLfzuLXSNJDYoRYUAmRUcyln20A==", + "dev": true, + "license": "MIT", + "dependencies": { + "browserslist": "^4.24.4" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, "node_modules/core-util-is": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", @@ -2368,6 +5165,86 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/css-select": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", + "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.1.0", + "domhandler": "^5.0.2", + "domutils": "^3.0.1", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css-tree": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", + "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", + "dev": true, + "license": "MIT", + "dependencies": { + "mdn-data": "2.0.30", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" + } + }, + "node_modules/css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/csso": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz", + "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "css-tree": "~2.2.0" + }, + "engines": { + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/csso/node_modules/css-tree": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz", + "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==", + "dev": true, + "license": "MIT", + "dependencies": { + "mdn-data": "2.0.28", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/csso/node_modules/mdn-data": { + "version": "2.0.28", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz", + "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==", + "dev": true, + "license": "CC0-1.0" + }, "node_modules/csstype": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", @@ -2438,6 +5315,16 @@ "dev": true, "license": "MIT" }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/defaults": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", @@ -2451,6 +5338,13 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/deprecation": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz", + "integrity": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==", + "dev": true, + "license": "ISC" + }, "node_modules/detect-file": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", @@ -2484,6 +5378,76 @@ "node": ">=8" } }, + "node_modules/dom-serializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", + "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", + "dev": true, + "license": "MIT", + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "BSD-2-Clause" + }, + "node_modules/domhandler": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "domelementtype": "^2.3.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/domutils": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.2.2.tgz", + "integrity": "sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dev": true, + "license": "MIT", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, "node_modules/dot-prop": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", @@ -2540,6 +5504,13 @@ "safe-buffer": "~5.1.0" } }, + "node_modules/electron-to-chromium": { + "version": "1.5.139", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.139.tgz", + "integrity": "sha512-GGnRYOTdN5LYpwbIr0rwP/ZHOQSvAF6TG0LSzp28uCBb9JiXHJGmaaKw29qjNJc5bGnnp6kXJqRnGMQoELwi5w==", + "dev": true, + "license": "ISC" + }, "node_modules/emoji-regex": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", @@ -2554,6 +5525,19 @@ "dev": true, "license": "MIT" }, + "node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, "node_modules/env-ci": { "version": "11.1.0", "resolved": "https://registry.npmjs.org/env-ci/-/env-ci-11.1.0.tgz", @@ -2745,6 +5729,47 @@ "is-arrayish": "^0.2.1" } }, + "node_modules/esbuild": { + "version": "0.25.2", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.2.tgz", + "integrity": "sha512-16854zccKPnC+toMywC+uKNeYSv+/eXkevRAfwRD/G9Cleq66m8XFIrigkbvauLLlCfDL45Q2cWegSg53gGBnQ==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.25.2", + "@esbuild/android-arm": "0.25.2", + "@esbuild/android-arm64": "0.25.2", + "@esbuild/android-x64": "0.25.2", + "@esbuild/darwin-arm64": "0.25.2", + "@esbuild/darwin-x64": "0.25.2", + "@esbuild/freebsd-arm64": "0.25.2", + "@esbuild/freebsd-x64": "0.25.2", + "@esbuild/linux-arm": "0.25.2", + "@esbuild/linux-arm64": "0.25.2", + "@esbuild/linux-ia32": "0.25.2", + "@esbuild/linux-loong64": "0.25.2", + "@esbuild/linux-mips64el": "0.25.2", + "@esbuild/linux-ppc64": "0.25.2", + "@esbuild/linux-riscv64": "0.25.2", + "@esbuild/linux-s390x": "0.25.2", + "@esbuild/linux-x64": "0.25.2", + "@esbuild/netbsd-arm64": "0.25.2", + "@esbuild/netbsd-x64": "0.25.2", + "@esbuild/openbsd-arm64": "0.25.2", + "@esbuild/openbsd-x64": "0.25.2", + "@esbuild/sunos-x64": "0.25.2", + "@esbuild/win32-arm64": "0.25.2", + "@esbuild/win32-ia32": "0.25.2", + "@esbuild/win32-x64": "0.25.2" + } + }, "node_modules/escalade": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", @@ -3117,6 +6142,13 @@ "node": ">=4.0" } }, + "node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "dev": true, + "license": "MIT" + }, "node_modules/esutils": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", @@ -3499,6 +6531,31 @@ "dev": true, "license": "ISC" }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/function-timeout": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/function-timeout/-/function-timeout-1.0.2.tgz", @@ -3512,6 +6569,16 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/get-caller-file": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", @@ -3548,6 +6615,19 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/get-tsconfig": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.10.0.tgz", + "integrity": "sha512-kGzZ3LWWQcGIAmg6iWvXn0ei6WDtV26wzHRMwDSzmAbcXrTEXxHy6IehI6/4eT6VRKyMP1eF1VqwrVUmE/LR7A==", + "dev": true, + "license": "MIT", + "dependencies": { + "resolve-pkg-maps": "^1.0.0" + }, + "funding": { + "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" + } + }, "node_modules/git-log-parser": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/git-log-parser/-/git-log-parser-1.2.1.tgz", @@ -3807,6 +6887,19 @@ "node": ">=4" } }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/highlight.js": { "version": "10.7.3", "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-10.7.3.tgz", @@ -4196,6 +7289,22 @@ "dev": true, "license": "MIT" }, + "node_modules/is-core-module": { + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", + "dev": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", @@ -4333,9 +7442,9 @@ "license": "ISC" }, "node_modules/issue-parser": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/issue-parser/-/issue-parser-7.0.1.tgz", - "integrity": "sha512-3YZcUUR2Wt1WsapF+S/WiA2WmlW0cWAoPccMqne7AxEBhCdFeTPjfv/Axb8V2gyCgY3nRw+ksZ3xSUX+R47iAg==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/issue-parser/-/issue-parser-6.0.0.tgz", + "integrity": "sha512-zKa/Dxq2lGsBIXQ7CUZWTHfvxPC2ej0KfO7fIPqLlHB9J2hJ7rGhZ5rilhuufylr4RXYPzJUeFjKxz305OsNlA==", "dev": true, "license": "MIT", "dependencies": { @@ -4346,7 +7455,7 @@ "lodash.uniqby": "^4.7.0" }, "engines": { - "node": "^18.17 || >=20.6.1" + "node": ">=10.13" } }, "node_modules/java-properties": { @@ -4374,7 +7483,6 @@ "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "dev": true, "license": "MIT" }, "node_modules/js-yaml": { @@ -4390,6 +7498,19 @@ "js-yaml": "bin/js-yaml.js" } }, + "node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "dev": true, + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, "node_modules/json-buffer": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", @@ -4426,6 +7547,19 @@ "dev": true, "license": "MIT" }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, "node_modules/jsonfile": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", @@ -4835,6 +7969,13 @@ "dev": true, "license": "MIT" }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "dev": true, + "license": "MIT" + }, "node_modules/lodash.escaperegexp": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz", @@ -5199,6 +8340,29 @@ "node": ">=0.10.0" } }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "license": "MIT", + "peer": true, + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dev": true, + "license": "MIT", + "dependencies": { + "tslib": "^2.0.3" + } + }, "node_modules/lru-cache": { "version": "10.4.3", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", @@ -5270,6 +8434,13 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, + "node_modules/mdn-data": { + "version": "2.0.30", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", + "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==", + "dev": true, + "license": "CC0-1.0" + }, "node_modules/meow": { "version": "13.2.0", "resolved": "https://registry.npmjs.org/meow/-/meow-13.2.0.tgz", @@ -5433,6 +8604,17 @@ "dev": true, "license": "MIT" }, + "node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dev": true, + "license": "MIT", + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, "node_modules/node-emoji": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-2.2.0.tgz", @@ -5449,6 +8631,13 @@ "node": ">=18" } }, + "node_modules/node-releases": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", + "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", + "dev": true, + "license": "MIT" + }, "node_modules/normalize-package-data": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.2.tgz", @@ -8248,8 +11437,21 @@ "node_modules/npm/node_modules/yallist": { "version": "4.0.0", "dev": true, - "inBundle": true, - "license": "ISC" + "inBundle": true, + "license": "ISC" + }, + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } }, "node_modules/object-assign": { "version": "4.1.1", @@ -8525,38 +11727,294 @@ "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "dev": true, "license": "MIT", - "dependencies": { - "callsites": "^3.0.0" + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parse-ms": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-4.0.0.tgz", + "integrity": "sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parse-passwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", + "integrity": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/parse5": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-5.1.1.tgz", + "integrity": "sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==", + "dev": true, + "license": "MIT" + }, + "node_modules/parse5-htmlparser2-tree-adapter": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz", + "integrity": "sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==", + "dev": true, + "license": "MIT", + "dependencies": { + "parse5": "^6.0.1" + } + }, + "node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", + "dev": true, + "license": "MIT" + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true, + "license": "MIT" + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true, + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pidtree": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.6.0.tgz", + "integrity": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==", + "dev": true, + "license": "MIT", + "bin": { + "pidtree": "bin/pidtree.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-conf": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-2.1.0.tgz", + "integrity": "sha512-C+VUP+8jis7EsQZIhDYmS5qlNtjv2yP4SNtjXK9AP1ZcTRlnSfuumaTnRfYZnYgUUYVIKqL0fRvmUGDV2fmp6g==", + "dev": true, + "license": "MIT", + "dependencies": { + "find-up": "^2.0.0", + "load-json-file": "^4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-conf/node_modules/find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-conf/node_modules/locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-conf/node_modules/p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-try": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-conf/node_modules/p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/pkg-conf/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prettier": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.5.3.tgz", + "integrity": "sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==", + "dev": true, + "license": "MIT", + "bin": { + "prettier": "bin/prettier.cjs" }, "engines": { - "node": ">=6" + "node": ">=14" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" } }, - "node_modules/parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "node_modules/prettier-linter-helpers": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", + "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", "dev": true, "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" + "fast-diff": "^1.1.2" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=6.0.0" } }, - "node_modules/parse-ms": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-4.0.0.tgz", - "integrity": "sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==", + "node_modules/pretty-ms": { + "version": "9.2.0", + "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-9.2.0.tgz", + "integrity": "sha512-4yf0QO/sllf/1zbZWYnvWw3NxCQwLXKzIj0G849LSufP15BXKM0rbD2Z3wVnkMfjdn/CB0Dpp444gYAACdsplg==", "dev": true, "license": "MIT", + "dependencies": { + "parse-ms": "^4.0.0" + }, "engines": { "node": ">=18" }, @@ -8564,283 +12022,417 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/parse-passwd": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", - "integrity": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==", + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true, + "license": "MIT" + }, + "node_modules/proto-list": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", + "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==", + "dev": true, + "license": "ISC" + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", "dev": true, "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">=6" } }, - "node_modules/parse5": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-5.1.1.tgz", - "integrity": "sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==", + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], "license": "MIT" }, - "node_modules/parse5-htmlparser2-tree-adapter": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz", - "integrity": "sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==", + "node_modules/rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", "dev": true, - "license": "MIT", + "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", "dependencies": { - "parse5": "^6.0.1" + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "bin": { + "rc": "cli.js" } }, - "node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", - "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", + "node_modules/rc/node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", "dev": true, - "license": "MIT" + "license": "ISC" }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "node_modules/rc/node_modules/strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", "dev": true, "license": "MIT", "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "dev": true, + "node_modules/react": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", + "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", "license": "MIT", + "peer": true, + "dependencies": { + "loose-envify": "^1.1.0" + }, "engines": { "node": ">=0.10.0" } }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "node_modules/read-package-up": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/read-package-up/-/read-package-up-11.0.0.tgz", + "integrity": "sha512-MbgfoNPANMdb4oRBNg5eqLbB2t2r+o5Ua1pNt8BqGp4I0FJZhuVSOj3PaBPni4azWuSzEdNn2evevzVmEk1ohQ==", "dev": true, "license": "MIT", + "dependencies": { + "find-up-simple": "^1.0.0", + "read-pkg": "^9.0.0", + "type-fest": "^4.6.0" + }, "engines": { - "node": ">=8" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "node_modules/read-package-up/node_modules/type-fest": { + "version": "4.40.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.40.0.tgz", + "integrity": "sha512-ABHZ2/tS2JkvH1PEjxFDTUWC8dB5OsIGZP4IFLhR293GqT5Y5qB1WwL2kMPYhQW9DVgVD8Hd7I8gjwPIf5GFkw==", "dev": true, - "license": "MIT", + "license": "(MIT OR CC0-1.0)", "engines": { - "node": ">=8" + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/picocolors": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", - "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", - "dev": true, - "license": "ISC" - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "node_modules/read-pkg": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-9.0.1.tgz", + "integrity": "sha512-9viLL4/n1BJUCT1NXVTdS1jtm80yDEgR5T4yCelII49Mbj0v1rZdKqj7zCiYdbB0CuCgdrvHcNogAKTFPBocFA==", "dev": true, "license": "MIT", + "dependencies": { + "@types/normalize-package-data": "^2.4.3", + "normalize-package-data": "^6.0.0", + "parse-json": "^8.0.0", + "type-fest": "^4.6.0", + "unicorn-magic": "^0.1.0" + }, "engines": { - "node": ">=8.6" + "node": ">=18" }, "funding": { - "url": "https://github.com/sponsors/jonschlinkert" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/pidtree": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.6.0.tgz", - "integrity": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==", + "node_modules/read-pkg/node_modules/parse-json": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-8.3.0.tgz", + "integrity": "sha512-ybiGyvspI+fAoRQbIPRddCcSTV9/LsJbf0e/S85VLowVGzRmokfneg2kwVW/KU5rOXrPSbF1qAKPMgNTqqROQQ==", "dev": true, "license": "MIT", - "bin": { - "pidtree": "bin/pidtree.js" + "dependencies": { + "@babel/code-frame": "^7.26.2", + "index-to-position": "^1.1.0", + "type-fest": "^4.39.1" }, "engines": { - "node": ">=0.10" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "node_modules/read-pkg/node_modules/type-fest": { + "version": "4.40.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.40.0.tgz", + "integrity": "sha512-ABHZ2/tS2JkvH1PEjxFDTUWC8dB5OsIGZP4IFLhR293GqT5Y5qB1WwL2kMPYhQW9DVgVD8Hd7I8gjwPIf5GFkw==", + "dev": true, + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "dev": true, "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, "engines": { - "node": ">=4" + "node": ">= 6" } }, - "node_modules/pkg-conf": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-2.1.0.tgz", - "integrity": "sha512-C+VUP+8jis7EsQZIhDYmS5qlNtjv2yP4SNtjXK9AP1ZcTRlnSfuumaTnRfYZnYgUUYVIKqL0fRvmUGDV2fmp6g==", + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "dev": true, + "license": "MIT" + }, + "node_modules/regenerate-unicode-properties": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.0.tgz", + "integrity": "sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==", "dev": true, "license": "MIT", "dependencies": { - "find-up": "^2.0.0", - "load-json-file": "^4.0.0" + "regenerate": "^1.4.2" }, "engines": { "node": ">=4" } }, - "node_modules/pkg-conf/node_modules/find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==", + "node_modules/regenerator-runtime": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", + "dev": true, + "license": "MIT" + }, + "node_modules/regenerator-transform": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", + "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.8.4" + } + }, + "node_modules/regexpu-core": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.2.0.tgz", + "integrity": "sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==", "dev": true, "license": "MIT", "dependencies": { - "locate-path": "^2.0.0" + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.2.0", + "regjsgen": "^0.8.0", + "regjsparser": "^0.12.0", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.1.0" }, "engines": { "node": ">=4" } }, - "node_modules/pkg-conf/node_modules/locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==", + "node_modules/registry-auth-token": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-5.1.0.tgz", + "integrity": "sha512-GdekYuwLXLxMuFTwAPg5UKGLW/UXzQrZvH/Zj791BQif5T05T0RsaLfHc9q3ZOKi7n+BoprPD9mJ0O0k4xzUlw==", "dev": true, "license": "MIT", "dependencies": { - "p-locate": "^2.0.0", - "path-exists": "^3.0.0" + "@pnpm/npm-conf": "^2.1.0" }, "engines": { - "node": ">=4" + "node": ">=14" } }, - "node_modules/pkg-conf/node_modules/p-limit": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", - "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "node_modules/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==", "dev": true, - "license": "MIT", + "license": "MIT" + }, + "node_modules/regjsparser": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.12.0.tgz", + "integrity": "sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==", + "dev": true, + "license": "BSD-2-Clause", "dependencies": { - "p-try": "^1.0.0" + "jsesc": "~3.0.2" }, - "engines": { - "node": ">=4" + "bin": { + "regjsparser": "bin/parser" } }, - "node_modules/pkg-conf/node_modules/p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==", + "node_modules/regjsparser/node_modules/jsesc": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", + "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", "dev": true, "license": "MIT", - "dependencies": { - "p-limit": "^1.1.0" + "bin": { + "jsesc": "bin/jsesc" }, "engines": { - "node": ">=4" + "node": ">=6" } }, - "node_modules/pkg-conf/node_modules/path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", "dev": true, "license": "MIT", "engines": { - "node": ">=4" + "node": ">=0.10.0" } }, - "node_modules/prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", "dev": true, "license": "MIT", + "optional": true, "engines": { - "node": ">= 0.8.0" + "node": ">=0.10.0" } }, - "node_modules/prettier": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.5.3.tgz", - "integrity": "sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==", + "node_modules/resolve": { + "version": "1.22.10", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz", + "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==", "dev": true, "license": "MIT", + "dependencies": { + "is-core-module": "^2.16.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, "bin": { - "prettier": "bin/prettier.cjs" + "resolve": "bin/resolve" }, "engines": { - "node": ">=14" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/prettier/prettier?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/prettier-linter-helpers": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", - "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", + "node_modules/resolve-dir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", + "integrity": "sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==", "dev": true, "license": "MIT", "dependencies": { - "fast-diff": "^1.1.2" + "expand-tilde": "^2.0.0", + "global-modules": "^1.0.0" }, "engines": { - "node": ">=6.0.0" + "node": ">=0.10.0" } }, - "node_modules/pretty-ms": { - "version": "9.2.0", - "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-9.2.0.tgz", - "integrity": "sha512-4yf0QO/sllf/1zbZWYnvWw3NxCQwLXKzIj0G849LSufP15BXKM0rbD2Z3wVnkMfjdn/CB0Dpp444gYAACdsplg==", + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-pkg-maps": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" + } + }, + "node_modules/restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", "dev": true, "license": "MIT", "dependencies": { - "parse-ms": "^4.0.0" + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" }, "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=8" } }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "node_modules/reusify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", + "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", "dev": true, - "license": "MIT" + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } }, - "node_modules/proto-list": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", - "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==", + "node_modules/rfdc": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz", + "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==", "dev": true, - "license": "ISC" + "license": "MIT" }, - "node_modules/punycode": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", - "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "node_modules/run-async": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", + "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", "dev": true, "license": "MIT", "engines": { - "node": ">=6" + "node": ">=0.12.0" } }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", "dev": true, "funding": [ { @@ -8856,362 +12448,338 @@ "url": "https://feross.org/support" } ], - "license": "MIT" + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } }, - "node_modules/rc": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", - "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "node_modules/rxjs": { + "version": "7.8.2", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.2.tgz", + "integrity": "sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==", "dev": true, - "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", + "license": "Apache-2.0", "dependencies": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" - }, - "bin": { - "rc": "cli.js" + "tslib": "^2.1.0" } }, - "node_modules/rc/node_modules/ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", "dev": true, - "license": "ISC" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" }, - "node_modules/rc/node_modules/strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true, + "license": "MIT" + }, + "node_modules/semantic-release": { + "version": "24.2.3", + "resolved": "https://registry.npmjs.org/semantic-release/-/semantic-release-24.2.3.tgz", + "integrity": "sha512-KRhQG9cUazPavJiJEFIJ3XAMjgfd0fcK3B+T26qOl8L0UG5aZUjeRfREO0KM5InGtYwxqiiytkJrbcYoLDEv0A==", "dev": true, "license": "MIT", + "dependencies": { + "@semantic-release/commit-analyzer": "^13.0.0-beta.1", + "@semantic-release/error": "^4.0.0", + "@semantic-release/github": "^11.0.0", + "@semantic-release/npm": "^12.0.0", + "@semantic-release/release-notes-generator": "^14.0.0-beta.1", + "aggregate-error": "^5.0.0", + "cosmiconfig": "^9.0.0", + "debug": "^4.0.0", + "env-ci": "^11.0.0", + "execa": "^9.0.0", + "figures": "^6.0.0", + "find-versions": "^6.0.0", + "get-stream": "^6.0.0", + "git-log-parser": "^1.2.0", + "hook-std": "^3.0.0", + "hosted-git-info": "^8.0.0", + "import-from-esm": "^2.0.0", + "lodash-es": "^4.17.21", + "marked": "^12.0.0", + "marked-terminal": "^7.0.0", + "micromatch": "^4.0.2", + "p-each-series": "^3.0.0", + "p-reduce": "^3.0.0", + "read-package-up": "^11.0.0", + "resolve-from": "^5.0.0", + "semver": "^7.3.2", + "semver-diff": "^4.0.0", + "signale": "^1.2.1", + "yargs": "^17.5.1" + }, + "bin": { + "semantic-release": "bin/semantic-release.js" + }, "engines": { - "node": ">=0.10.0" + "node": ">=20.8.1" } }, - "node_modules/react": { - "version": "19.1.0", - "resolved": "https://registry.npmjs.org/react/-/react-19.1.0.tgz", - "integrity": "sha512-FS+XFBNvn3GTAWq26joslQgWNoFu08F4kl0J4CgdNKADkdSGXQyTCnKteIAJy96Br6YbpEU1LSzV5dYtjMkMDg==", + "node_modules/semantic-release/node_modules/@octokit/auth-token": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-5.1.2.tgz", + "integrity": "sha512-JcQDsBdg49Yky2w2ld20IHAlwr8d/d8N6NiOXbtuoPCqzbsiJgF633mVUw3x4mo0H5ypataQIX7SFu3yy44Mpw==", + "dev": true, "license": "MIT", - "peer": true, "engines": { - "node": ">=0.10.0" + "node": ">= 18" } }, - "node_modules/read-package-up": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/read-package-up/-/read-package-up-11.0.0.tgz", - "integrity": "sha512-MbgfoNPANMdb4oRBNg5eqLbB2t2r+o5Ua1pNt8BqGp4I0FJZhuVSOj3PaBPni4azWuSzEdNn2evevzVmEk1ohQ==", + "node_modules/semantic-release/node_modules/@octokit/core": { + "version": "6.1.5", + "resolved": "https://registry.npmjs.org/@octokit/core/-/core-6.1.5.tgz", + "integrity": "sha512-vvmsN0r7rguA+FySiCsbaTTobSftpIDIpPW81trAmsv9TGxg3YCujAxRYp/Uy8xmDgYCzzgulG62H7KYUFmeIg==", "dev": true, "license": "MIT", "dependencies": { - "find-up-simple": "^1.0.0", - "read-pkg": "^9.0.0", - "type-fest": "^4.6.0" - }, - "engines": { - "node": ">=18" + "@octokit/auth-token": "^5.0.0", + "@octokit/graphql": "^8.2.2", + "@octokit/request": "^9.2.3", + "@octokit/request-error": "^6.1.8", + "@octokit/types": "^14.0.0", + "before-after-hook": "^3.0.2", + "universal-user-agent": "^7.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/read-package-up/node_modules/type-fest": { - "version": "4.40.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.40.0.tgz", - "integrity": "sha512-ABHZ2/tS2JkvH1PEjxFDTUWC8dB5OsIGZP4IFLhR293GqT5Y5qB1WwL2kMPYhQW9DVgVD8Hd7I8gjwPIf5GFkw==", - "dev": true, - "license": "(MIT OR CC0-1.0)", "engines": { - "node": ">=16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 18" } }, - "node_modules/read-pkg": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-9.0.1.tgz", - "integrity": "sha512-9viLL4/n1BJUCT1NXVTdS1jtm80yDEgR5T4yCelII49Mbj0v1rZdKqj7zCiYdbB0CuCgdrvHcNogAKTFPBocFA==", + "node_modules/semantic-release/node_modules/@octokit/core/node_modules/@octokit/types": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-14.0.0.tgz", + "integrity": "sha512-VVmZP0lEhbo2O1pdq63gZFiGCKkm8PPp8AUOijlwPO6hojEVjspA0MWKP7E4hbvGxzFKNqKr6p0IYtOH/Wf/zA==", "dev": true, "license": "MIT", "dependencies": { - "@types/normalize-package-data": "^2.4.3", - "normalize-package-data": "^6.0.0", - "parse-json": "^8.0.0", - "type-fest": "^4.6.0", - "unicorn-magic": "^0.1.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "@octokit/openapi-types": "^25.0.0" } }, - "node_modules/read-pkg/node_modules/parse-json": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-8.3.0.tgz", - "integrity": "sha512-ybiGyvspI+fAoRQbIPRddCcSTV9/LsJbf0e/S85VLowVGzRmokfneg2kwVW/KU5rOXrPSbF1qAKPMgNTqqROQQ==", + "node_modules/semantic-release/node_modules/@octokit/endpoint": { + "version": "10.1.4", + "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-10.1.4.tgz", + "integrity": "sha512-OlYOlZIsfEVZm5HCSR8aSg02T2lbUWOsCQoPKfTXJwDzcHQBrVBGdGXb89dv2Kw2ToZaRtudp8O3ZIYoaOjKlA==", "dev": true, "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.26.2", - "index-to-position": "^1.1.0", - "type-fest": "^4.39.1" + "@octokit/types": "^14.0.0", + "universal-user-agent": "^7.0.2" }, "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 18" } }, - "node_modules/read-pkg/node_modules/type-fest": { - "version": "4.40.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.40.0.tgz", - "integrity": "sha512-ABHZ2/tS2JkvH1PEjxFDTUWC8dB5OsIGZP4IFLhR293GqT5Y5qB1WwL2kMPYhQW9DVgVD8Hd7I8gjwPIf5GFkw==", + "node_modules/semantic-release/node_modules/@octokit/endpoint/node_modules/@octokit/types": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-14.0.0.tgz", + "integrity": "sha512-VVmZP0lEhbo2O1pdq63gZFiGCKkm8PPp8AUOijlwPO6hojEVjspA0MWKP7E4hbvGxzFKNqKr6p0IYtOH/Wf/zA==", "dev": true, - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "license": "MIT", + "dependencies": { + "@octokit/openapi-types": "^25.0.0" } }, - "node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "node_modules/semantic-release/node_modules/@octokit/graphql": { + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-8.2.2.tgz", + "integrity": "sha512-Yi8hcoqsrXGdt0yObxbebHXFOiUA+2v3n53epuOg1QUgOB6c4XzvisBNVXJSl8RYA5KrDuSL2yq9Qmqe5N0ryA==", "dev": true, "license": "MIT", "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" + "@octokit/request": "^9.2.3", + "@octokit/types": "^14.0.0", + "universal-user-agent": "^7.0.0" }, "engines": { - "node": ">= 6" + "node": ">= 18" } }, - "node_modules/registry-auth-token": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-5.1.0.tgz", - "integrity": "sha512-GdekYuwLXLxMuFTwAPg5UKGLW/UXzQrZvH/Zj791BQif5T05T0RsaLfHc9q3ZOKi7n+BoprPD9mJ0O0k4xzUlw==", + "node_modules/semantic-release/node_modules/@octokit/graphql/node_modules/@octokit/types": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-14.0.0.tgz", + "integrity": "sha512-VVmZP0lEhbo2O1pdq63gZFiGCKkm8PPp8AUOijlwPO6hojEVjspA0MWKP7E4hbvGxzFKNqKr6p0IYtOH/Wf/zA==", "dev": true, "license": "MIT", "dependencies": { - "@pnpm/npm-conf": "^2.1.0" - }, - "engines": { - "node": ">=14" + "@octokit/openapi-types": "^25.0.0" } }, - "node_modules/require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "node_modules/semantic-release/node_modules/@octokit/openapi-types": { + "version": "25.0.0", + "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-25.0.0.tgz", + "integrity": "sha512-FZvktFu7HfOIJf2BScLKIEYjDsw6RKc7rBJCdvCTfKsVnx2GEB/Nbzjr29DUdb7vQhlzS/j8qDzdditP0OC6aw==", "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } + "license": "MIT" }, - "node_modules/require-from-string": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", - "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "node_modules/semantic-release/node_modules/@octokit/plugin-paginate-rest": { + "version": "11.6.0", + "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-11.6.0.tgz", + "integrity": "sha512-n5KPteiF7pWKgBIBJSk8qzoZWcUkza2O6A0za97pMGVrGfPdltxrfmfF5GucHYvHGZD8BdaZmmHGz5cX/3gdpw==", "dev": true, "license": "MIT", - "optional": true, + "dependencies": { + "@octokit/types": "^13.10.0" + }, "engines": { - "node": ">=0.10.0" + "node": ">= 18" + }, + "peerDependencies": { + "@octokit/core": ">=6" } }, - "node_modules/resolve-dir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", - "integrity": "sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==", + "node_modules/semantic-release/node_modules/@octokit/plugin-retry": { + "version": "7.2.1", + "resolved": "https://registry.npmjs.org/@octokit/plugin-retry/-/plugin-retry-7.2.1.tgz", + "integrity": "sha512-wUc3gv0D6vNHpGxSaR3FlqJpTXGWgqmk607N9L3LvPL4QjaxDgX/1nY2mGpT37Khn+nlIXdljczkRnNdTTV3/A==", "dev": true, "license": "MIT", "dependencies": { - "expand-tilde": "^2.0.0", - "global-modules": "^1.0.0" + "@octokit/request-error": "^6.1.8", + "@octokit/types": "^14.0.0", + "bottleneck": "^2.15.3" }, "engines": { - "node": ">=0.10.0" + "node": ">= 18" + }, + "peerDependencies": { + "@octokit/core": ">=6" } }, - "node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "node_modules/semantic-release/node_modules/@octokit/plugin-retry/node_modules/@octokit/types": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-14.0.0.tgz", + "integrity": "sha512-VVmZP0lEhbo2O1pdq63gZFiGCKkm8PPp8AUOijlwPO6hojEVjspA0MWKP7E4hbvGxzFKNqKr6p0IYtOH/Wf/zA==", "dev": true, "license": "MIT", - "engines": { - "node": ">=8" + "dependencies": { + "@octokit/openapi-types": "^25.0.0" } }, - "node_modules/restore-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", - "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "node_modules/semantic-release/node_modules/@octokit/plugin-throttling": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/@octokit/plugin-throttling/-/plugin-throttling-9.6.1.tgz", + "integrity": "sha512-bt3EBUkeKUzDQXRCcFrR9SWVqlLFRRqcCrr6uAorWt6NXTyjMKqcGrFmXqJy9NCbnKgiIZ2OXWq04theFc76Jg==", "dev": true, "license": "MIT", "dependencies": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" + "@octokit/types": "^13.7.0", + "bottleneck": "^2.15.3" }, "engines": { - "node": ">=8" + "node": ">= 18" + }, + "peerDependencies": { + "@octokit/core": "^6.1.3" } }, - "node_modules/reusify": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", - "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", + "node_modules/semantic-release/node_modules/@octokit/request": { + "version": "9.2.3", + "resolved": "https://registry.npmjs.org/@octokit/request/-/request-9.2.3.tgz", + "integrity": "sha512-Ma+pZU8PXLOEYzsWf0cn/gY+ME57Wq8f49WTXA8FMHp2Ps9djKw//xYJ1je8Hm0pR2lU9FUGeJRWOtxq6olt4w==", "dev": true, "license": "MIT", + "dependencies": { + "@octokit/endpoint": "^10.1.4", + "@octokit/request-error": "^6.1.8", + "@octokit/types": "^14.0.0", + "fast-content-type-parse": "^2.0.0", + "universal-user-agent": "^7.0.2" + }, "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" + "node": ">= 18" } }, - "node_modules/rfdc": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz", - "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==", - "dev": true, - "license": "MIT" - }, - "node_modules/run-async": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", - "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", + "node_modules/semantic-release/node_modules/@octokit/request-error": { + "version": "6.1.8", + "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-6.1.8.tgz", + "integrity": "sha512-WEi/R0Jmq+IJKydWlKDmryPcmdYSVjL3ekaiEL1L9eo1sUnqMJ+grqmC9cjk7CA7+b2/T397tO5d8YLOH3qYpQ==", "dev": true, "license": "MIT", + "dependencies": { + "@octokit/types": "^14.0.0" + }, "engines": { - "node": ">=0.12.0" + "node": ">= 18" } }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], + "node_modules/semantic-release/node_modules/@octokit/request-error/node_modules/@octokit/types": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-14.0.0.tgz", + "integrity": "sha512-VVmZP0lEhbo2O1pdq63gZFiGCKkm8PPp8AUOijlwPO6hojEVjspA0MWKP7E4hbvGxzFKNqKr6p0IYtOH/Wf/zA==", + "dev": true, "license": "MIT", "dependencies": { - "queue-microtask": "^1.2.2" + "@octokit/openapi-types": "^25.0.0" } }, - "node_modules/rxjs": { - "version": "7.8.2", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.2.tgz", - "integrity": "sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==", + "node_modules/semantic-release/node_modules/@octokit/request/node_modules/@octokit/types": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-14.0.0.tgz", + "integrity": "sha512-VVmZP0lEhbo2O1pdq63gZFiGCKkm8PPp8AUOijlwPO6hojEVjspA0MWKP7E4hbvGxzFKNqKr6p0IYtOH/Wf/zA==", "dev": true, - "license": "Apache-2.0", + "license": "MIT", "dependencies": { - "tslib": "^2.1.0" + "@octokit/openapi-types": "^25.0.0" } }, - "node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT" - }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "node_modules/semantic-release/node_modules/@semantic-release/error": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-4.0.0.tgz", + "integrity": "sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ==", "dev": true, - "license": "MIT" + "license": "MIT", + "engines": { + "node": ">=18" + } }, - "node_modules/semantic-release": { - "version": "24.2.3", - "resolved": "https://registry.npmjs.org/semantic-release/-/semantic-release-24.2.3.tgz", - "integrity": "sha512-KRhQG9cUazPavJiJEFIJ3XAMjgfd0fcK3B+T26qOl8L0UG5aZUjeRfREO0KM5InGtYwxqiiytkJrbcYoLDEv0A==", + "node_modules/semantic-release/node_modules/@semantic-release/github": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/@semantic-release/github/-/github-11.0.1.tgz", + "integrity": "sha512-Z9cr0LgU/zgucbT9cksH0/pX9zmVda9hkDPcgIE0uvjMQ8w/mElDivGjx1w1pEQ+MuQJ5CBq3VCF16S6G4VH3A==", "dev": true, "license": "MIT", "dependencies": { - "@semantic-release/commit-analyzer": "^13.0.0-beta.1", + "@octokit/core": "^6.0.0", + "@octokit/plugin-paginate-rest": "^11.0.0", + "@octokit/plugin-retry": "^7.0.0", + "@octokit/plugin-throttling": "^9.0.0", "@semantic-release/error": "^4.0.0", - "@semantic-release/github": "^11.0.0", - "@semantic-release/npm": "^12.0.0", - "@semantic-release/release-notes-generator": "^14.0.0-beta.1", "aggregate-error": "^5.0.0", - "cosmiconfig": "^9.0.0", - "debug": "^4.0.0", - "env-ci": "^11.0.0", - "execa": "^9.0.0", - "figures": "^6.0.0", - "find-versions": "^6.0.0", - "get-stream": "^6.0.0", - "git-log-parser": "^1.2.0", - "hook-std": "^3.0.0", - "hosted-git-info": "^8.0.0", - "import-from-esm": "^2.0.0", + "debug": "^4.3.4", + "dir-glob": "^3.0.1", + "globby": "^14.0.0", + "http-proxy-agent": "^7.0.0", + "https-proxy-agent": "^7.0.0", + "issue-parser": "^7.0.0", "lodash-es": "^4.17.21", - "marked": "^12.0.0", - "marked-terminal": "^7.0.0", - "micromatch": "^4.0.2", - "p-each-series": "^3.0.0", - "p-reduce": "^3.0.0", - "read-package-up": "^11.0.0", - "resolve-from": "^5.0.0", - "semver": "^7.3.2", - "semver-diff": "^4.0.0", - "signale": "^1.2.1", - "yargs": "^17.5.1" - }, - "bin": { - "semantic-release": "bin/semantic-release.js" + "mime": "^4.0.0", + "p-filter": "^4.0.0", + "url-join": "^5.0.0" }, "engines": { "node": ">=20.8.1" - } - }, - "node_modules/semantic-release/node_modules/@semantic-release/error": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-4.0.0.tgz", - "integrity": "sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=18" + }, + "peerDependencies": { + "semantic-release": ">=24.1.0" } }, "node_modules/semantic-release/node_modules/@sindresorhus/merge-streams": { @@ -9244,6 +12812,13 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/semantic-release/node_modules/before-after-hook": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-3.0.2.tgz", + "integrity": "sha512-Nik3Sc0ncrMK4UUdXQmAnRtzmNQTAAXmXIopizwZ1W1t8QmfJj+zL4OA2I7XPTPW5z5TDqv4hRo/JzouDJnX3A==", + "dev": true, + "license": "Apache-2.0" + }, "node_modules/semantic-release/node_modules/clean-stack": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-5.2.0.tgz", @@ -9395,6 +12970,23 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/semantic-release/node_modules/issue-parser": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/issue-parser/-/issue-parser-7.0.1.tgz", + "integrity": "sha512-3YZcUUR2Wt1WsapF+S/WiA2WmlW0cWAoPccMqne7AxEBhCdFeTPjfv/Axb8V2gyCgY3nRw+ksZ3xSUX+R47iAg==", + "dev": true, + "license": "MIT", + "dependencies": { + "lodash.capitalize": "^4.2.1", + "lodash.escaperegexp": "^4.1.2", + "lodash.isplainobject": "^4.0.6", + "lodash.isstring": "^4.0.1", + "lodash.uniqby": "^4.7.0" + }, + "engines": { + "node": "^18.17 || >=20.6.1" + } + }, "node_modules/semantic-release/node_modules/npm-run-path": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-6.0.0.tgz", @@ -9477,6 +13069,13 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/semantic-release/node_modules/universal-user-agent": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-7.0.2.tgz", + "integrity": "sha512-0JCqzSKnStlRRQfCdowvqy3cy0Dvtlb8xecj/H8JFZuCze4rwjPZQOgvFvn0Ws/usCHQFGpyr+pB9adaGwXn4Q==", + "dev": true, + "license": "ISC" + }, "node_modules/semver": { "version": "7.7.1", "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", @@ -9633,6 +13232,17 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, + "node_modules/snake-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz", + "integrity": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==", + "dev": true, + "license": "MIT", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, "node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", @@ -9643,6 +13253,16 @@ "node": ">=0.10.0" } }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/spawn-error-forwarder": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/spawn-error-forwarder/-/spawn-error-forwarder-1.0.0.tgz", @@ -9911,6 +13531,62 @@ "node": ">=8" } }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/svg-parser": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz", + "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/svgo": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-3.3.2.tgz", + "integrity": "sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==", + "dev": true, + "license": "MIT", + "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" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=14.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/svgo" + } + }, + "node_modules/svgo/node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10" + } + }, "node_modules/synckit": { "version": "0.11.4", "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.11.4.tgz", @@ -10132,6 +13808,26 @@ "dev": true, "license": "0BSD" }, + "node_modules/tsx": { + "version": "4.19.3", + "resolved": "https://registry.npmjs.org/tsx/-/tsx-4.19.3.tgz", + "integrity": "sha512-4H8vUNGNjQ4V2EOoGw005+c+dGuPSnhpPBPHBtsZdGZBk/iJb4kguGlPWaZTZ3q5nMtFOEsY0nRDlh9PJyd6SQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "~0.25.0", + "get-tsconfig": "^4.7.5" + }, + "bin": { + "tsx": "dist/cli.mjs" + }, + "engines": { + "node": ">=18.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + } + }, "node_modules/type-check": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", @@ -10193,6 +13889,16 @@ "dev": true, "license": "MIT" }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz", + "integrity": "sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, "node_modules/unicode-emoji-modifier-base": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unicode-emoji-modifier-base/-/unicode-emoji-modifier-base-1.0.0.tgz", @@ -10203,6 +13909,40 @@ "node": ">=4" } }, + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.0.tgz", + "integrity": "sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, "node_modules/unicorn-magic": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz", @@ -10233,9 +13973,9 @@ } }, "node_modules/universal-user-agent": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-7.0.2.tgz", - "integrity": "sha512-0JCqzSKnStlRRQfCdowvqy3cy0Dvtlb8xecj/H8JFZuCze4rwjPZQOgvFvn0Ws/usCHQFGpyr+pB9adaGwXn4Q==", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.1.tgz", + "integrity": "sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==", "dev": true, "license": "ISC" }, @@ -10249,6 +13989,37 @@ "node": ">= 10.0.0" } }, + "node_modules/update-browserslist-db": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", + "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, "node_modules/uri-js": { "version": "4.4.1", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", @@ -10411,6 +14182,13 @@ "node": ">=10" } }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true, + "license": "ISC" + }, "node_modules/yaml": { "version": "2.7.1", "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.7.1.tgz", diff --git a/package.json b/package.json index d05571c..05f36aa 100644 --- a/package.json +++ b/package.json @@ -19,8 +19,11 @@ "engines": { "node": ">=16.0.0" }, + "files": [ + "dist" + ], "scripts": { - "build": "tsc && cp src/icons/*.tsx dist/", + "build": "tsc && tsx build-icons.ts && cp src/index.ts dist/", "prepublishOnly": "npm run build", "lint": "eslint src --ext .ts,.tsx", "format": "prettier --write \"src/**/*.{ts,tsx}\"", @@ -31,11 +34,17 @@ "main": "dist/index.js", "module": "dist/index.js", "types": "dist/index.d.ts", - "exports": { - ".": "./dist/index.js", - "./AmazonEC2Icon": "./dist/AmazonEC2Icon.jsx", - "./AmazonSimpleStorageService": "./dist/AmazonSimpleStorageService.jsx" + ".": { + "types": "./dist/index.d.ts", + "import": "./dist/index.js", + "require": "./dist/index.cjs" + }, + "./*": { + "types": "./dist/*.d.ts", + "import": "./dist/*.js", + "require": "./dist/*.cjs" + } }, "husky": { "hooks": { @@ -68,6 +77,11 @@ "@semantic-release/git": "^10.0.1", "@semantic-release/github": "^9.0.4", "@semantic-release/npm": "^12.0.1", + "@svgr/core": "^8.1.0", + "@svgr/plugin-jsx": "^8.1.0", + "@svgr/plugin-prettier": "^8.1.0", + "@svgr/plugin-svgo": "^8.1.0", + "@svgr/rollup": "^8.1.0", "@types/node": "^22.14.1", "@types/react": "^18.2.56", "@typescript-eslint/eslint-plugin": "^8.30.1", @@ -81,6 +95,7 @@ "lint-staged": "^15.5.1", "prettier": "^3.5.3", "semantic-release": "^24.2.3", + "tsx": "^4.19.3", "typescript": "^5.8.3" }, "peerDependencies": { diff --git a/src/icons/AWSLambda.svg b/src/icons/AWSLambda.svg new file mode 100644 index 0000000..b2718d1 --- /dev/null +++ b/src/icons/AWSLambda.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Lambda_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/AmazonDynamoDB.svg b/src/icons/AmazonDynamoDB.svg new file mode 100644 index 0000000..948ee42 --- /dev/null +++ b/src/icons/AmazonDynamoDB.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-DynamoDB_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/AmazonDynamoDB.tsx b/src/icons/AmazonDynamoDB.tsx deleted file mode 100644 index 743c137..0000000 --- a/src/icons/AmazonDynamoDB.tsx +++ /dev/null @@ -1,35 +0,0 @@ -import React from 'react'; - -interface AmazonDynamoDBIconProps extends React.SVGProps { - size?: number | string; - color?: string; - title?: string; -} - -export const AmazonDynamoDBIcon: React.FC = ({ - size = 40, - color = '#C925D1', // DynamoDB's purple color - title = 'Amazon DynamoDB Icon', - ...props -}) => ( - - {title && {title}} - - - - - - - -); \ No newline at end of file diff --git a/src/icons/AmazonEC2.svg b/src/icons/AmazonEC2.svg new file mode 100644 index 0000000..df01964 --- /dev/null +++ b/src/icons/AmazonEC2.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-EC2_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/AmazonEC2Icon.tsx b/src/icons/AmazonEC2Icon.tsx deleted file mode 100644 index f3c086f..0000000 --- a/src/icons/AmazonEC2Icon.tsx +++ /dev/null @@ -1,35 +0,0 @@ -import React from 'react'; - -interface AmazonEC2IconProps extends React.SVGProps { - size?: number | string; - color?: string; - title?: string; -} - -export const AmazonEC2Icon: React.FC = ({ - size = 40, - color = '#ED7100', // Default to the original orange color - title = 'Amazon EC2 Icon', - ...props -}) => ( - - {title && {title}} - - - - - - - -); \ No newline at end of file diff --git a/src/icons/AmazonRDS.svg b/src/icons/AmazonRDS.svg new file mode 100644 index 0000000..61793ec --- /dev/null +++ b/src/icons/AmazonRDS.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-RDS_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/AmazonSimpleStorageService.svg b/src/icons/AmazonSimpleStorageService.svg new file mode 100644 index 0000000..6a2edca --- /dev/null +++ b/src/icons/AmazonSimpleStorageService.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Amazon-Simple-Storage-Service_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/AmazonSimpleStorageService.tsx b/src/icons/AmazonSimpleStorageService.tsx deleted file mode 100644 index d89019a..0000000 --- a/src/icons/AmazonSimpleStorageService.tsx +++ /dev/null @@ -1,33 +0,0 @@ -import React from 'react'; - -interface AmazonS3IconProps extends React.SVGProps { - size?: number | string; - color?: string; // Optional override for background - title?: string; -} - -export const AmazonS3Icon: React.FC = ({ - size = 40, - color = '#7AA116', - title = 'Amazon S3 Icon', - ...props -}) => ( - - {title && {title}} - - - - - - - - - -); diff --git a/src/icons/AmazonVirtualPrivateCloud.svg b/src/icons/AmazonVirtualPrivateCloud.svg new file mode 100644 index 0000000..a41f49c --- /dev/null +++ b/src/icons/AmazonVirtualPrivateCloud.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Virtual-Private-Cloud_32 + + + + + + + \ No newline at end of file diff --git a/src/index.ts b/src/index.ts index 176e056..ab97efe 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,3 +1,6 @@ -export * from './icons/AmazonEC2Icon.js'; -export * from './icons/AmazonDynamoDB.js'; -export * from './icons/AmazonSimpleStorageService.js'; +export { default as AmazonEC2Icon } from './icons/AmazonEC2.svg'; +export { default as AmazonDynamoDBIcon } from './icons/AmazonDynamoDB.svg'; +export { default as AmazonRDSIcon } from './icons/AmazonRDS.svg'; +export { default as AmazonSimpleStorageServiceIcon } from './icons/AmazonSimpleStorageService.svg'; +export { default as AmazonVirtualPrivateCloudIcon } from './icons/AmazonVirtualPrivateCloud.svg'; +export { default as AWSLambdaIcon } from './icons/AWSLambda.svg'; \ No newline at end of file diff --git a/src/types.d.ts b/src/types.d.ts new file mode 100644 index 0000000..b2a9945 --- /dev/null +++ b/src/types.d.ts @@ -0,0 +1,9 @@ +declare module '*.svg' { + import React from 'react'; + const content: React.FC & { + size?: number | string; + color?: string; + title?: string; + }>; + export default content; +} \ No newline at end of file diff --git a/src/types/svg.d.ts b/src/types/svg.d.ts new file mode 100644 index 0000000..dab663c --- /dev/null +++ b/src/types/svg.d.ts @@ -0,0 +1,5 @@ +declare module '*.svg' { + import React from 'react'; + const content: React.FC>; + export default content; +} \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json index 5810cc0..908e4a3 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -9,6 +9,8 @@ "strict": true, "moduleResolution": "node16", "esModuleInterop": true, + "allowSyntheticDefaultImports": true, + "resolveJsonModule": true, "skipLibCheck": true, "forceConsistentCasingInFileNames": true, "jsx": "react-jsx", @@ -17,14 +19,30 @@ "paths": { "@/*": ["./src/*"] }, - // Add these new options: "emitDeclarationOnly": false, "allowJs": false, "isolatedModules": true, + "jsxImportSource": "react", + "typeRoots": [ + "./node_modules/@types", + "./src/types" + ], "noEmit": false, "rootDir": "src", "types": ["node"] }, - "include": ["src"], - "exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.test.tsx"] + "include": [ + "src", + "src/**/*.ts", + "src/**/*.tsx", + "types/**/*.d.ts" + ], + "exclude": [ + "node_modules", + "dist", + "**/*.test.ts", + "**/*.test.tsx", + "**/*.stories.tsx", + "**/__mocks__/**" + ] } \ No newline at end of file From 08cfbc6539371d610d1ca127bfba9a28120321fd Mon Sep 17 00:00:00 2001 From: Aryan Aghf Date: Tue, 22 Apr 2025 08:38:57 +0330 Subject: [PATCH 04/15] feat(svg): updated config --- .gitignore | 2 ++ .npmignore | 9 ++++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 1170717..068d8a9 100644 --- a/.gitignore +++ b/.gitignore @@ -42,6 +42,8 @@ build/Release node_modules/ jspm_packages/ +package-lock.json +dist/ # Snowpack dependency directory (https://snowpack.dev/) web_modules/ diff --git a/.npmignore b/.npmignore index 21242e4..c206a49 100644 --- a/.npmignore +++ b/.npmignore @@ -3,4 +3,11 @@ src/ .husky/ .eslintrc.js .prettierrc -tsconfig.json \ No newline at end of file +tsconfig.json +build-icons.ts +*.config.js +.gitignore +.git/ +.env +.env.* +.vscode/ From 19b704b34a0b9eb72ae36ea91f4bb7b549596c2d Mon Sep 17 00:00:00 2001 From: Aryan Aghf Date: Tue, 22 Apr 2025 13:53:09 +0330 Subject: [PATCH 05/15] feat(svg) auto build tsx component --- .npmignore | 2 + build-icons.ts | 120 ++++++++++++------ package.json | 22 ++-- .../compute-services}/AWSLambda.svg | 0 .../compute-services}/AmazonEC2.svg | 0 .../database-services}/AmazonDynamoDB.svg | 0 .../database-services}/AmazonRDS.svg | 0 .../AmazonVirtualPrivateCloud.svg | 0 .../AmazonSimpleStorageService.svg | 0 src/index.ts | 6 - 10 files changed, 90 insertions(+), 60 deletions(-) rename src/icons/{ => amazon/compute-services}/AWSLambda.svg (100%) rename src/icons/{ => amazon/compute-services}/AmazonEC2.svg (100%) rename src/icons/{ => amazon/database-services}/AmazonDynamoDB.svg (100%) rename src/icons/{ => amazon/database-services}/AmazonRDS.svg (100%) rename src/icons/{ => amazon/networking-security}/AmazonVirtualPrivateCloud.svg (100%) rename src/icons/{ => amazon/storage-services}/AmazonSimpleStorageService.svg (100%) delete mode 100644 src/index.ts diff --git a/.npmignore b/.npmignore index c206a49..e6d123a 100644 --- a/.npmignore +++ b/.npmignore @@ -11,3 +11,5 @@ build-icons.ts .env .env.* .vscode/ +*.tsx +*.map diff --git a/build-icons.ts b/build-icons.ts index 4fe248e..b0155d6 100644 --- a/build-icons.ts +++ b/build-icons.ts @@ -1,64 +1,100 @@ import fs from 'fs/promises'; import path from 'path'; import { transform } from '@svgr/core'; + const ICONS_DIR = path.join(process.cwd(), 'src/icons'); const OUT_DIR = path.join(process.cwd(), 'dist/icons'); const OUT_DIR_INDEX = path.join(process.cwd(), 'dist'); +interface IconExport { + componentName: string; + importPath: string; +} +async function processDirectory(dir: string, relativePath = ''): Promise { + const files = await fs.readdir(dir); + let allExports: IconExport[] = []; + + for (const file of files) { + const fullPath = path.join(dir, file); + const relativeFilePath = path.join(relativePath, file); + const stat = await fs.stat(fullPath); -async function buildIcons() { - try { - await fs.mkdir(OUT_DIR, { recursive: true }); - - const files = await fs.readdir(ICONS_DIR); - const svgFiles = files.filter(file => file.endsWith('.svg')); - - for (const file of svgFiles) { - const svgCode = await fs.readFile(path.join(ICONS_DIR, file), 'utf8'); + if (stat.isDirectory()) { + const subDirExports = await processDirectory(fullPath, relativeFilePath); + allExports = [...allExports, ...subDirExports]; + } else if (file.endsWith('.svg')) { + const svgCode = await fs.readFile(fullPath, 'utf8'); const componentName = path.basename(file, '.svg'); - + const pascalCaseName = componentName + .replace(/(^|-)(\w)/g, (_, __, char) => char.toUpperCase()); + + // Generate TSX component const tsxCode = await transform( svgCode, { plugins: ['@svgr/plugin-svgo', '@svgr/plugin-jsx', '@svgr/plugin-prettier'], - typescript: true, - icon: true, + typescript: true, // Enable TypeScript output jsxRuntime: 'automatic', + // Add these for better TS support: + template: ({ componentName, jsx }, { tpl }) => tpl` + import * as React from 'react'; + import type { SVGProps } from 'react'; + + const ${componentName} = (props: SVGProps) => ${jsx}; + export default ${componentName}; + ` }, - { componentName } + { componentName: pascalCaseName } ); - await fs.writeFile(path.join(OUT_DIR, `${componentName}.tsx`), tsxCode); - const indexTSXContent = svgFiles - .map(file => { - const componentName = path.basename(file, '.svg') - .replace(/(^|-)(\w)/g, (_, __, char) => char.toUpperCase()); - return `export { default as ${componentName} } from './icons/${componentName}.tsx';`; - }) - .join('\n'); - await fs.writeFile(path.join(OUT_DIR_INDEX, 'index.ts'), indexTSXContent); - - const jsxCode = await transform( - svgCode, - { - plugins: ['@svgr/plugin-svgo', '@svgr/plugin-jsx', '@svgr/plugin-prettier'], - icon: true, - replaceAttrValues: { '#000': 'currentColor' }, - jsxRuntime: 'automatic', - }, - { componentName } + + // Create output directory + const outSubDir = path.join(OUT_DIR, relativePath); + await fs.mkdir(outSubDir, { recursive: true }); + + // Write TSX component file + await fs.writeFile( + path.join(outSubDir, `${pascalCaseName}.tsx`), + tsxCode ); - const outFile = path.join(OUT_DIR, `${componentName}.jsx`); - await fs.writeFile(outFile, jsxCode); + + // Update declaration file content + const dtsContent = `import * as React from 'react';\nimport type { SVGProps } from 'react';\ndeclare const ${pascalCaseName}: React.FC>;\nexport default ${pascalCaseName};`; + await fs.writeFile(path.join(outSubDir, `${pascalCaseName}.d.ts`), dtsContent); + + const exportPath = path.join('icons', relativePath, pascalCaseName); + allExports.push({ + componentName: pascalCaseName, + importPath: exportPath.replace(/\\/g, '/') + }); } - const indexJSXContent = svgFiles - .map(file => { - const componentName = path.basename(file, '.svg') - .replace(/(^|-)(\w)/g, (_, __, char) => char.toUpperCase()); - return `export { default as ${componentName} } from './icons/${componentName}.jsx';`; - }) + } + + return allExports; +} + +async function buildIcons() { + try { + await fs.mkdir(OUT_DIR, { recursive: true }); + + const allExports = await processDirectory(ICONS_DIR); + + const indexContent = allExports + .map(({ componentName, importPath }) => + `export { default as ${componentName} } from './${importPath}.tsx';` + ) + .join('\n'); + + await fs.writeFile(path.join(OUT_DIR_INDEX, 'index.js'), indexContent); + + const dtsContent = allExports + .map(({ componentName,importPath }) => + `export { default as ${componentName} } from './${importPath}.tsx';` + ) .join('\n'); - await fs.writeFile(path.join(OUT_DIR_INDEX, 'index.js'), indexJSXContent); + + await fs.writeFile(path.join(OUT_DIR_INDEX, 'index.d.ts'), dtsContent); + - console.log(`Generated ${svgFiles.length} icon components`); + console.log(`Generated ${allExports.length} icon components`); } catch (error) { console.error('Error building icons:', error); process.exit(1); diff --git a/package.json b/package.json index 05f36aa..69e5c64 100644 --- a/package.json +++ b/package.json @@ -19,11 +19,8 @@ "engines": { "node": ">=16.0.0" }, - "files": [ - "dist" - ], "scripts": { - "build": "tsc && tsx build-icons.ts && cp src/index.ts dist/", + "build": "tsx build-icons.ts dist/", "prepublishOnly": "npm run build", "lint": "eslint src --ext .ts,.tsx", "format": "prettier --write \"src/**/*.{ts,tsx}\"", @@ -32,18 +29,20 @@ "commit": "git-cz" }, "main": "dist/index.js", - "module": "dist/index.js", "types": "dist/index.d.ts", + "files": [ + "dist" + ], "exports": { ".": { - "types": "./dist/index.d.ts", "import": "./dist/index.js", - "require": "./dist/index.cjs" + "require": "./dist/index.js", + "types": "./dist/index.d.ts" }, "./*": { - "types": "./dist/*.d.ts", "import": "./dist/*.js", - "require": "./dist/*.cjs" + "require": "./dist/*.js", + "types": "./dist/*.d.ts" } }, "husky": { @@ -66,8 +65,7 @@ "path": "./node_modules/cz-conventional-changelog" } }, - "author": "Your Name ", - "license": "ISC", + "license": "MIT", "bugs": { "url": "https://github.com/ctrlcloudnet/icons/issues" }, @@ -99,6 +97,6 @@ "typescript": "^5.8.3" }, "peerDependencies": { - "react": "^18.0.0" + "react": ">=18.0.0 || ^19.0.0" } } \ No newline at end of file diff --git a/src/icons/AWSLambda.svg b/src/icons/amazon/compute-services/AWSLambda.svg similarity index 100% rename from src/icons/AWSLambda.svg rename to src/icons/amazon/compute-services/AWSLambda.svg diff --git a/src/icons/AmazonEC2.svg b/src/icons/amazon/compute-services/AmazonEC2.svg similarity index 100% rename from src/icons/AmazonEC2.svg rename to src/icons/amazon/compute-services/AmazonEC2.svg diff --git a/src/icons/AmazonDynamoDB.svg b/src/icons/amazon/database-services/AmazonDynamoDB.svg similarity index 100% rename from src/icons/AmazonDynamoDB.svg rename to src/icons/amazon/database-services/AmazonDynamoDB.svg diff --git a/src/icons/AmazonRDS.svg b/src/icons/amazon/database-services/AmazonRDS.svg similarity index 100% rename from src/icons/AmazonRDS.svg rename to src/icons/amazon/database-services/AmazonRDS.svg diff --git a/src/icons/AmazonVirtualPrivateCloud.svg b/src/icons/amazon/networking-security/AmazonVirtualPrivateCloud.svg similarity index 100% rename from src/icons/AmazonVirtualPrivateCloud.svg rename to src/icons/amazon/networking-security/AmazonVirtualPrivateCloud.svg diff --git a/src/icons/AmazonSimpleStorageService.svg b/src/icons/amazon/storage-services/AmazonSimpleStorageService.svg similarity index 100% rename from src/icons/AmazonSimpleStorageService.svg rename to src/icons/amazon/storage-services/AmazonSimpleStorageService.svg diff --git a/src/index.ts b/src/index.ts deleted file mode 100644 index ab97efe..0000000 --- a/src/index.ts +++ /dev/null @@ -1,6 +0,0 @@ -export { default as AmazonEC2Icon } from './icons/AmazonEC2.svg'; -export { default as AmazonDynamoDBIcon } from './icons/AmazonDynamoDB.svg'; -export { default as AmazonRDSIcon } from './icons/AmazonRDS.svg'; -export { default as AmazonSimpleStorageServiceIcon } from './icons/AmazonSimpleStorageService.svg'; -export { default as AmazonVirtualPrivateCloudIcon } from './icons/AmazonVirtualPrivateCloud.svg'; -export { default as AWSLambdaIcon } from './icons/AWSLambda.svg'; \ No newline at end of file From 884e07a6bbf923877ce9397f4cda07a50a1c10d5 Mon Sep 17 00:00:00 2001 From: Aryan Aghf Date: Wed, 23 Apr 2025 09:50:54 +0330 Subject: [PATCH 06/15] feat(icon-builder): now support for js project --- build-icons.ts | 62 +++-- package-lock.json | 634 +++++++++++++++------------------------------ src/types.d.ts | 9 - src/types/svg.d.ts | 5 - 4 files changed, 239 insertions(+), 471 deletions(-) delete mode 100644 src/types.d.ts delete mode 100644 src/types/svg.d.ts diff --git a/build-icons.ts b/build-icons.ts index b0155d6..3509201 100644 --- a/build-icons.ts +++ b/build-icons.ts @@ -5,14 +5,16 @@ import { transform } from '@svgr/core'; const ICONS_DIR = path.join(process.cwd(), 'src/icons'); const OUT_DIR = path.join(process.cwd(), 'dist/icons'); const OUT_DIR_INDEX = path.join(process.cwd(), 'dist'); + interface IconExport { componentName: string; importPath: string; } + async function processDirectory(dir: string, relativePath = ''): Promise { const files = await fs.readdir(dir); let allExports: IconExport[] = []; - + for (const file of files) { const fullPath = path.join(dir, file); const relativeFilePath = path.join(relativePath, file); @@ -24,50 +26,47 @@ async function processDirectory(dir: string, relativePath = ''): Promise char.toUpperCase()); + const pascalCaseName = componentName.replace(/(^|-)(\w)/g, (_, __, char) => char.toUpperCase()); - // Generate TSX component - const tsxCode = await transform( + const jsCode = await transform( svgCode, { plugins: ['@svgr/plugin-svgo', '@svgr/plugin-jsx', '@svgr/plugin-prettier'], - typescript: true, // Enable TypeScript output - jsxRuntime: 'automatic', - // Add these for better TS support: + typescript: false, + jsxRuntime: 'classic', + expandProps: 'end', template: ({ componentName, jsx }, { tpl }) => tpl` - import * as React from 'react'; - import type { SVGProps } from 'react'; - - const ${componentName} = (props: SVGProps) => ${jsx}; + import React from 'react'; + + const ${componentName} = (props) => ${jsx}; + export default ${componentName}; ` }, { componentName: pascalCaseName } ); - // Create output directory + const outSubDir = path.join(OUT_DIR, relativePath); await fs.mkdir(outSubDir, { recursive: true }); - - // Write TSX component file + await fs.writeFile( - path.join(outSubDir, `${pascalCaseName}.tsx`), - tsxCode + path.join(outSubDir, `${pascalCaseName}.jsx`), + jsCode ); - // Update declaration file content + // Create corresponding .d.ts file const dtsContent = `import * as React from 'react';\nimport type { SVGProps } from 'react';\ndeclare const ${pascalCaseName}: React.FC>;\nexport default ${pascalCaseName};`; await fs.writeFile(path.join(outSubDir, `${pascalCaseName}.d.ts`), dtsContent); - + const exportPath = path.join('icons', relativePath, pascalCaseName); allExports.push({ componentName: pascalCaseName, - importPath: exportPath.replace(/\\/g, '/') + importPath: exportPath.replace(/\\/g, '/'), }); } } - + return allExports; } @@ -76,23 +75,22 @@ async function buildIcons() { await fs.mkdir(OUT_DIR, { recursive: true }); const allExports = await processDirectory(ICONS_DIR); - + const indexContent = allExports - .map(({ componentName, importPath }) => - `export { default as ${componentName} } from './${importPath}.tsx';` + .map(({ componentName, importPath }) => + `export { default as ${componentName} } from './${importPath}.jsx';` ) .join('\n'); - + await fs.writeFile(path.join(OUT_DIR_INDEX, 'index.js'), indexContent); const dtsContent = allExports - .map(({ componentName,importPath }) => - `export { default as ${componentName} } from './${importPath}.tsx';` - ) - .join('\n'); - - await fs.writeFile(path.join(OUT_DIR_INDEX, 'index.d.ts'), dtsContent); + .map(({ componentName, importPath }) => + `export { default as ${componentName} } from './${importPath}.js';` + ) + .join('\n'); + await fs.writeFile(path.join(OUT_DIR_INDEX, 'index.d.ts'), dtsContent); console.log(`Generated ${allExports.length} icon components`); } catch (error) { @@ -101,4 +99,4 @@ async function buildIcons() { } } -buildIcons(); \ No newline at end of file +buildIcons(); diff --git a/package-lock.json b/package-lock.json index d6091a3..2fc70d7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -7,7 +7,7 @@ "": { "name": "icons", "version": "1.0.0", - "license": "ISC", + "license": "MIT", "devDependencies": { "@semantic-release/changelog": "^6.0.3", "@semantic-release/git": "^10.0.1", @@ -38,7 +38,7 @@ "node": ">=16.0.0" }, "peerDependencies": { - "react": "^18.0.0" + "react": ">=18.0.0 || ^19.0.0" } }, "node_modules/@ampproject/remapping": { @@ -55,6 +55,56 @@ "node": ">=6.0.0" } }, + "node_modules/@babel/cli": { + "version": "7.27.0", + "resolved": "https://registry.npmjs.org/@babel/cli/-/cli-7.27.0.tgz", + "integrity": "sha512-bZfxn8DRxwiVzDO5CEeV+7IqXeCkzI4yYnrQbpwjT76CUyossQc6RYE7n+xfm0/2k40lPaCpW0FhxYs7EBAetw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.25", + "commander": "^6.2.0", + "convert-source-map": "^2.0.0", + "fs-readdir-recursive": "^1.1.0", + "glob": "^7.2.0", + "make-dir": "^2.1.0", + "slash": "^2.0.0" + }, + "bin": { + "babel": "bin/babel.js", + "babel-external-helpers": "bin/babel-external-helpers.js" + }, + "engines": { + "node": ">=6.9.0" + }, + "optionalDependencies": { + "@nicolo-ribaudo/chokidar-2": "2.1.8-no-fsevents.3", + "chokidar": "^3.6.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/cli/node_modules/commander": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", + "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/@babel/cli/node_modules/slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, "node_modules/@babel/code-frame": { "version": "7.26.2", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", @@ -1932,414 +1982,6 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@esbuild/aix-ppc64": { - "version": "0.25.2", - "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.2.tgz", - "integrity": "sha512-wCIboOL2yXZym2cgm6mlA742s9QeJ8DjGVaL39dLN4rRwrOgOyYSnOaFPhKZGLb2ngj4EyfAFjsNJwPXZvseag==", - "cpu": [ - "ppc64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "aix" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/android-arm": { - "version": "0.25.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.2.tgz", - "integrity": "sha512-NQhH7jFstVY5x8CKbcfa166GoV0EFkaPkCKBQkdPJFvo5u+nGXLEH/ooniLb3QI8Fk58YAx7nsPLozUWfCBOJA==", - "cpu": [ - "arm" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/android-arm64": { - "version": "0.25.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.2.tgz", - "integrity": "sha512-5ZAX5xOmTligeBaeNEPnPaeEuah53Id2tX4c2CVP3JaROTH+j4fnfHCkr1PjXMd78hMst+TlkfKcW/DlTq0i4w==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/android-x64": { - "version": "0.25.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.2.tgz", - "integrity": "sha512-Ffcx+nnma8Sge4jzddPHCZVRvIfQ0kMsUsCMcJRHkGJ1cDmhe4SsrYIjLUKn1xpHZybmOqCWwB0zQvsjdEHtkg==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/darwin-arm64": { - "version": "0.25.2", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.2.tgz", - "integrity": "sha512-MpM6LUVTXAzOvN4KbjzU/q5smzryuoNjlriAIx+06RpecwCkL9JpenNzpKd2YMzLJFOdPqBpuub6eVRP5IgiSA==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/darwin-x64": { - "version": "0.25.2", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.2.tgz", - "integrity": "sha512-5eRPrTX7wFyuWe8FqEFPG2cU0+butQQVNcT4sVipqjLYQjjh8a8+vUTfgBKM88ObB85ahsnTwF7PSIt6PG+QkA==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/freebsd-arm64": { - "version": "0.25.2", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.2.tgz", - "integrity": "sha512-mLwm4vXKiQ2UTSX4+ImyiPdiHjiZhIaE9QvC7sw0tZ6HoNMjYAqQpGyui5VRIi5sGd+uWq940gdCbY3VLvsO1w==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/freebsd-x64": { - "version": "0.25.2", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.2.tgz", - "integrity": "sha512-6qyyn6TjayJSwGpm8J9QYYGQcRgc90nmfdUb0O7pp1s4lTY+9D0H9O02v5JqGApUyiHOtkz6+1hZNvNtEhbwRQ==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/linux-arm": { - "version": "0.25.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.2.tgz", - "integrity": "sha512-UHBRgJcmjJv5oeQF8EpTRZs/1knq6loLxTsjc3nxO9eXAPDLcWW55flrMVc97qFPbmZP31ta1AZVUKQzKTzb0g==", - "cpu": [ - "arm" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/linux-arm64": { - "version": "0.25.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.2.tgz", - "integrity": "sha512-gq/sjLsOyMT19I8obBISvhoYiZIAaGF8JpeXu1u8yPv8BE5HlWYobmlsfijFIZ9hIVGYkbdFhEqC0NvM4kNO0g==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/linux-ia32": { - "version": "0.25.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.2.tgz", - "integrity": "sha512-bBYCv9obgW2cBP+2ZWfjYTU+f5cxRoGGQ5SeDbYdFCAZpYWrfjjfYwvUpP8MlKbP0nwZ5gyOU/0aUzZ5HWPuvQ==", - "cpu": [ - "ia32" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/linux-loong64": { - "version": "0.25.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.2.tgz", - "integrity": "sha512-SHNGiKtvnU2dBlM5D8CXRFdd+6etgZ9dXfaPCeJtz+37PIUlixvlIhI23L5khKXs3DIzAn9V8v+qb1TRKrgT5w==", - "cpu": [ - "loong64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/linux-mips64el": { - "version": "0.25.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.2.tgz", - "integrity": "sha512-hDDRlzE6rPeoj+5fsADqdUZl1OzqDYow4TB4Y/3PlKBD0ph1e6uPHzIQcv2Z65u2K0kpeByIyAjCmjn1hJgG0Q==", - "cpu": [ - "mips64el" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/linux-ppc64": { - "version": "0.25.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.2.tgz", - "integrity": "sha512-tsHu2RRSWzipmUi9UBDEzc0nLc4HtpZEI5Ba+Omms5456x5WaNuiG3u7xh5AO6sipnJ9r4cRWQB2tUjPyIkc6g==", - "cpu": [ - "ppc64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/linux-riscv64": { - "version": "0.25.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.2.tgz", - "integrity": "sha512-k4LtpgV7NJQOml/10uPU0s4SAXGnowi5qBSjaLWMojNCUICNu7TshqHLAEbkBdAszL5TabfvQ48kK84hyFzjnw==", - "cpu": [ - "riscv64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/linux-s390x": { - "version": "0.25.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.2.tgz", - "integrity": "sha512-GRa4IshOdvKY7M/rDpRR3gkiTNp34M0eLTaC1a08gNrh4u488aPhuZOCpkF6+2wl3zAN7L7XIpOFBhnaE3/Q8Q==", - "cpu": [ - "s390x" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/linux-x64": { - "version": "0.25.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.2.tgz", - "integrity": "sha512-QInHERlqpTTZ4FRB0fROQWXcYRD64lAoiegezDunLpalZMjcUcld3YzZmVJ2H/Cp0wJRZ8Xtjtj0cEHhYc/uUg==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/netbsd-arm64": { - "version": "0.25.2", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.2.tgz", - "integrity": "sha512-talAIBoY5M8vHc6EeI2WW9d/CkiO9MQJ0IOWX8hrLhxGbro/vBXJvaQXefW2cP0z0nQVTdQ/eNyGFV1GSKrxfw==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "netbsd" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/netbsd-x64": { - "version": "0.25.2", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.2.tgz", - "integrity": "sha512-voZT9Z+tpOxrvfKFyfDYPc4DO4rk06qamv1a/fkuzHpiVBMOhpjK+vBmWM8J1eiB3OLSMFYNaOaBNLXGChf5tg==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "netbsd" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/openbsd-arm64": { - "version": "0.25.2", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.2.tgz", - "integrity": "sha512-dcXYOC6NXOqcykeDlwId9kB6OkPUxOEqU+rkrYVqJbK2hagWOMrsTGsMr8+rW02M+d5Op5NNlgMmjzecaRf7Tg==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "openbsd" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/openbsd-x64": { - "version": "0.25.2", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.2.tgz", - "integrity": "sha512-t/TkWwahkH0Tsgoq1Ju7QfgGhArkGLkF1uYz8nQS/PPFlXbP5YgRpqQR3ARRiC2iXoLTWFxc6DJMSK10dVXluw==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "openbsd" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/sunos-x64": { - "version": "0.25.2", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.2.tgz", - "integrity": "sha512-cfZH1co2+imVdWCjd+D1gf9NjkchVhhdpgb1q5y6Hcv9TP6Zi9ZG/beI3ig8TvwT9lH9dlxLq5MQBBgwuj4xvA==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "sunos" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/win32-arm64": { - "version": "0.25.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.2.tgz", - "integrity": "sha512-7Loyjh+D/Nx/sOTzV8vfbB3GJuHdOQyrOryFdZvPHLf42Tk9ivBU5Aedi7iyX+x6rbn2Mh68T4qq1SDqJBQO5Q==", - "cpu": [ - "arm64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@esbuild/win32-ia32": { - "version": "0.25.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.2.tgz", - "integrity": "sha512-WRJgsz9un0nqZJ4MfhabxaD9Ft8KioqU3JMinOTvobbX6MOSUigSBlogP8QB3uxpJDsFS6yN+3FDBdqE5lg9kg==", - "cpu": [ - "ia32" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=18" - } - }, "node_modules/@esbuild/win32-x64": { "version": "0.25.2", "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.2.tgz", @@ -2673,6 +2315,14 @@ "@jridgewell/sourcemap-codec": "^1.4.14" } }, + "node_modules/@nicolo-ribaudo/chokidar-2": { + "version": "2.1.8-no-fsevents.3", + "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/chokidar-2/-/chokidar-2-2.1.8-no-fsevents.3.tgz", + "integrity": "sha512-s88O1aVtXftvp5bCPB7WnmXc5IwOZZ7YPuwNPt+GtOOXpPvad1LfbmjYv+qII7zP6RU2QGnqve27dnLycEnyEQ==", + "dev": true, + "license": "MIT", + "optional": true + }, "node_modules/@nodelib/fs.scandir": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", @@ -4257,6 +3907,21 @@ "dev": true, "license": "MIT" }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "license": "ISC", + "optional": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, "node_modules/argparse": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", @@ -4375,6 +4040,20 @@ "dev": true, "license": "Apache-2.0" }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/bl": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", @@ -4568,6 +4247,46 @@ "dev": true, "license": "MIT" }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chokidar/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", + "optional": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/clean-stack": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", @@ -6524,6 +6243,13 @@ "node": ">=14.14" } }, + "node_modules/fs-readdir-recursive": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz", + "integrity": "sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==", + "dev": true, + "license": "MIT" + }, "node_modules/fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", @@ -6531,21 +6257,6 @@ "dev": true, "license": "ISC" }, - "node_modules/fsevents": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", - "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", - "dev": true, - "hasInstallScript": true, - "license": "MIT", - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } - }, "node_modules/function-bind": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", @@ -7289,6 +7000,20 @@ "dev": true, "license": "MIT" }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/is-core-module": { "version": "2.16.1", "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", @@ -8370,6 +8095,40 @@ "dev": true, "license": "ISC" }, + "node_modules/make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/make-dir/node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, "node_modules/marked": { "version": "12.0.2", "resolved": "https://registry.npmjs.org/marked/-/marked-12.0.2.tgz", @@ -8653,6 +8412,17 @@ "node": "^16.14.0 || >=18.0.0" } }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/normalize-url": { "version": "8.0.1", "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.1.tgz", @@ -12210,6 +11980,20 @@ "node": ">= 6" } }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "license": "MIT", + "optional": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, "node_modules/regenerate": { "version": "1.4.2", "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", diff --git a/src/types.d.ts b/src/types.d.ts deleted file mode 100644 index b2a9945..0000000 --- a/src/types.d.ts +++ /dev/null @@ -1,9 +0,0 @@ -declare module '*.svg' { - import React from 'react'; - const content: React.FC & { - size?: number | string; - color?: string; - title?: string; - }>; - export default content; -} \ No newline at end of file diff --git a/src/types/svg.d.ts b/src/types/svg.d.ts deleted file mode 100644 index dab663c..0000000 --- a/src/types/svg.d.ts +++ /dev/null @@ -1,5 +0,0 @@ -declare module '*.svg' { - import React from 'react'; - const content: React.FC>; - export default content; -} \ No newline at end of file From 1ebffcdcdd234cb0db493d3f385d7c8ef53eedce Mon Sep 17 00:00:00 2001 From: Aryan Aghf Date: Wed, 23 Apr 2025 09:53:54 +0330 Subject: [PATCH 07/15] feat(svg): clean up --- package-lock.json | 14045 -------------------------------------------- 1 file changed, 14045 deletions(-) delete mode 100644 package-lock.json diff --git a/package-lock.json b/package-lock.json deleted file mode 100644 index 2fc70d7..0000000 --- a/package-lock.json +++ /dev/null @@ -1,14045 +0,0 @@ -{ - "name": "icons", - "version": "1.0.0", - "lockfileVersion": 3, - "requires": true, - "packages": { - "": { - "name": "icons", - "version": "1.0.0", - "license": "MIT", - "devDependencies": { - "@semantic-release/changelog": "^6.0.3", - "@semantic-release/git": "^10.0.1", - "@semantic-release/github": "^9.0.4", - "@semantic-release/npm": "^12.0.1", - "@svgr/core": "^8.1.0", - "@svgr/plugin-jsx": "^8.1.0", - "@svgr/plugin-prettier": "^8.1.0", - "@svgr/plugin-svgo": "^8.1.0", - "@svgr/rollup": "^8.1.0", - "@types/node": "^22.14.1", - "@types/react": "^18.2.56", - "@typescript-eslint/eslint-plugin": "^8.30.1", - "@typescript-eslint/parser": "^8.30.1", - "commitizen": "^4.3.1", - "cz-conventional-changelog": "^3.3.0", - "eslint": "^9.25.0", - "eslint-config-prettier": "^10.1.2", - "eslint-plugin-prettier": "^5.2.6", - "husky": "^9.1.7", - "lint-staged": "^15.5.1", - "prettier": "^3.5.3", - "semantic-release": "^24.2.3", - "tsx": "^4.19.3", - "typescript": "^5.8.3" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "react": ">=18.0.0 || ^19.0.0" - } - }, - "node_modules/@ampproject/remapping": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", - "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.24" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/cli": { - "version": "7.27.0", - "resolved": "https://registry.npmjs.org/@babel/cli/-/cli-7.27.0.tgz", - "integrity": "sha512-bZfxn8DRxwiVzDO5CEeV+7IqXeCkzI4yYnrQbpwjT76CUyossQc6RYE7n+xfm0/2k40lPaCpW0FhxYs7EBAetw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@jridgewell/trace-mapping": "^0.3.25", - "commander": "^6.2.0", - "convert-source-map": "^2.0.0", - "fs-readdir-recursive": "^1.1.0", - "glob": "^7.2.0", - "make-dir": "^2.1.0", - "slash": "^2.0.0" - }, - "bin": { - "babel": "bin/babel.js", - "babel-external-helpers": "bin/babel-external-helpers.js" - }, - "engines": { - "node": ">=6.9.0" - }, - "optionalDependencies": { - "@nicolo-ribaudo/chokidar-2": "2.1.8-no-fsevents.3", - "chokidar": "^3.6.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/cli/node_modules/commander": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", - "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 6" - } - }, - "node_modules/@babel/cli/node_modules/slash": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", - "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/@babel/code-frame": { - "version": "7.26.2", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", - "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-validator-identifier": "^7.25.9", - "js-tokens": "^4.0.0", - "picocolors": "^1.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/compat-data": { - "version": "7.26.8", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.8.tgz", - "integrity": "sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/core": { - "version": "7.26.10", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.10.tgz", - "integrity": "sha512-vMqyb7XCDMPvJFFOaT9kxtiRh42GwlZEg1/uIgtZshS5a/8OaduUfCi7kynKgc3Tw/6Uo2D+db9qBttghhmxwQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.26.2", - "@babel/generator": "^7.26.10", - "@babel/helper-compilation-targets": "^7.26.5", - "@babel/helper-module-transforms": "^7.26.0", - "@babel/helpers": "^7.26.10", - "@babel/parser": "^7.26.10", - "@babel/template": "^7.26.9", - "@babel/traverse": "^7.26.10", - "@babel/types": "^7.26.10", - "convert-source-map": "^2.0.0", - "debug": "^4.1.0", - "gensync": "^1.0.0-beta.2", - "json5": "^2.2.3", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/babel" - } - }, - "node_modules/@babel/core/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/generator": { - "version": "7.27.0", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.27.0.tgz", - "integrity": "sha512-VybsKvpiN1gU1sdMZIp7FcqphVVKEwcuj02x73uvcHE0PTihx1nlBcowYWhDwjpoAXRv43+gDzyggGnn1XZhVw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/parser": "^7.27.0", - "@babel/types": "^7.27.0", - "@jridgewell/gen-mapping": "^0.3.5", - "@jridgewell/trace-mapping": "^0.3.25", - "jsesc": "^3.0.2" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-annotate-as-pure": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz", - "integrity": "sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-compilation-targets": { - "version": "7.27.0", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.0.tgz", - "integrity": "sha512-LVk7fbXml0H2xH34dFzKQ7TDZ2G4/rVTOrq9V+icbbadjbVxxeFeDsNHv2SrZeWoA+6ZiTyWYWtScEIW07EAcA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/compat-data": "^7.26.8", - "@babel/helper-validator-option": "^7.25.9", - "browserslist": "^4.24.0", - "lru-cache": "^5.1.1", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-compilation-targets/node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", - "dev": true, - "license": "ISC", - "dependencies": { - "yallist": "^3.0.2" - } - }, - "node_modules/@babel/helper-compilation-targets/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.27.0", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.27.0.tgz", - "integrity": "sha512-vSGCvMecvFCd/BdpGlhpXYNhhC4ccxyvQWpbGL4CWbvfEoLFWUZuSuf7s9Aw70flgQF+6vptvgK2IfOnKlRmBg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.25.9", - "@babel/helper-member-expression-to-functions": "^7.25.9", - "@babel/helper-optimise-call-expression": "^7.25.9", - "@babel/helper-replace-supers": "^7.26.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", - "@babel/traverse": "^7.27.0", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/helper-create-regexp-features-plugin": { - "version": "7.27.0", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.27.0.tgz", - "integrity": "sha512-fO8l08T76v48BhpNRW/nQ0MxfnSdoSKUJBMjubOAYffsVuGG5qOfMq7N6Es7UJvi7Y8goXXo07EfcHZXDPuELQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.25.9", - "regexpu-core": "^6.2.0", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/helper-define-polyfill-provider": { - "version": "0.6.4", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.4.tgz", - "integrity": "sha512-jljfR1rGnXXNWnmQg2K3+bvhkxB51Rl32QRaOTuwwjviGrHzIbSc8+x9CpraDtbT7mfyjXObULP4w/adunNwAw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-compilation-targets": "^7.22.6", - "@babel/helper-plugin-utils": "^7.22.5", - "debug": "^4.1.1", - "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2" - }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" - } - }, - "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.9.tgz", - "integrity": "sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/traverse": "^7.25.9", - "@babel/types": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-imports": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz", - "integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/traverse": "^7.25.9", - "@babel/types": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-module-transforms": { - "version": "7.26.0", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz", - "integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-module-imports": "^7.25.9", - "@babel/helper-validator-identifier": "^7.25.9", - "@babel/traverse": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-optimise-call-expression": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.25.9.tgz", - "integrity": "sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-plugin-utils": { - "version": "7.26.5", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.26.5.tgz", - "integrity": "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-remap-async-to-generator": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.9.tgz", - "integrity": "sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.25.9", - "@babel/helper-wrap-function": "^7.25.9", - "@babel/traverse": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-replace-supers": { - "version": "7.26.5", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.26.5.tgz", - "integrity": "sha512-bJ6iIVdYX1YooY2X7w1q6VITt+LnUILtNk7zT78ykuwStx8BauCzxvFqFaHjOpW1bVnSUM1PN1f0p5P21wHxvg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-member-expression-to-functions": "^7.25.9", - "@babel/helper-optimise-call-expression": "^7.25.9", - "@babel/traverse": "^7.26.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.9.tgz", - "integrity": "sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/traverse": "^7.25.9", - "@babel/types": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-string-parser": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz", - "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-identifier": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", - "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-validator-option": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz", - "integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-wrap-function": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.25.9.tgz", - "integrity": "sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/template": "^7.25.9", - "@babel/traverse": "^7.25.9", - "@babel/types": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helpers": { - "version": "7.27.0", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.27.0.tgz", - "integrity": "sha512-U5eyP/CTFPuNE3qk+WZMxFkp/4zUzdceQlfzf7DdGdhp+Fezd7HD+i8Y24ZuTMKX3wQBld449jijbGq6OdGNQg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/template": "^7.27.0", - "@babel/types": "^7.27.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/parser": { - "version": "7.27.0", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.27.0.tgz", - "integrity": "sha512-iaepho73/2Pz7w2eMS0Q5f83+0RKI7i4xmiYeBmDzfRVbQtTOG7Ts0S4HzJVsTMGI9keU8rNfuZr8DKfSt7Yyg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.27.0" - }, - "bin": { - "parser": "bin/babel-parser.js" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.25.9.tgz", - "integrity": "sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/traverse": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/plugin-bugfix-safari-class-field-initializer-scope": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.25.9.tgz", - "integrity": "sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.25.9.tgz", - "integrity": "sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.25.9.tgz", - "integrity": "sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", - "@babel/plugin-transform-optional-chaining": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.13.0" - } - }, - "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.25.9.tgz", - "integrity": "sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/traverse": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/plugin-proposal-private-property-in-object": { - "version": "7.21.0-placeholder-for-preset-env.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", - "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-import-assertions": { - "version": "7.26.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.26.0.tgz", - "integrity": "sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-import-attributes": { - "version": "7.26.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.26.0.tgz", - "integrity": "sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-jsx": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.9.tgz", - "integrity": "sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-typescript": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.25.9.tgz", - "integrity": "sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-unicode-sets-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", - "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/plugin-transform-arrow-functions": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.25.9.tgz", - "integrity": "sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-async-generator-functions": { - "version": "7.26.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.26.8.tgz", - "integrity": "sha512-He9Ej2X7tNf2zdKMAGOsmg2MrFc+hfoAhd3po4cWfo/NWjzEAKa0oQruj1ROVUdl0e6fb6/kE/G3SSxE0lRJOg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.26.5", - "@babel/helper-remap-async-to-generator": "^7.25.9", - "@babel/traverse": "^7.26.8" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-async-to-generator": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.25.9.tgz", - "integrity": "sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-module-imports": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/helper-remap-async-to-generator": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-block-scoped-functions": { - "version": "7.26.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.26.5.tgz", - "integrity": "sha512-chuTSY+hq09+/f5lMj8ZSYgCFpppV2CbYrhNFJ1BFoXpiWPnnAb7R0MqrafCpN8E1+YRrtM1MXZHJdIx8B6rMQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.26.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-block-scoping": { - "version": "7.27.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.27.0.tgz", - "integrity": "sha512-u1jGphZ8uDI2Pj/HJj6YQ6XQLZCNjOlprjxB5SVz6rq2T6SwAR+CdrWK0CP7F+9rDVMXdB0+r6Am5G5aobOjAQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.26.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-class-properties": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.25.9.tgz", - "integrity": "sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-class-static-block": { - "version": "7.26.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.26.0.tgz", - "integrity": "sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.12.0" - } - }, - "node_modules/@babel/plugin-transform-classes": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.9.tgz", - "integrity": "sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.25.9", - "@babel/helper-compilation-targets": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/helper-replace-supers": "^7.25.9", - "@babel/traverse": "^7.25.9", - "globals": "^11.1.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-classes/node_modules/globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/plugin-transform-computed-properties": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.25.9.tgz", - "integrity": "sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/template": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-destructuring": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.25.9.tgz", - "integrity": "sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-dotall-regex": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.25.9.tgz", - "integrity": "sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-duplicate-keys": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.25.9.tgz", - "integrity": "sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-duplicate-named-capturing-groups-regex": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.25.9.tgz", - "integrity": "sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/plugin-transform-dynamic-import": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.25.9.tgz", - "integrity": "sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-exponentiation-operator": { - "version": "7.26.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.26.3.tgz", - "integrity": "sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-export-namespace-from": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.25.9.tgz", - "integrity": "sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-for-of": { - "version": "7.26.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.26.9.tgz", - "integrity": "sha512-Hry8AusVm8LW5BVFgiyUReuoGzPUpdHQQqJY5bZnbbf+ngOHWuCuYFKw/BqaaWlvEUrF91HMhDtEaI1hZzNbLg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.26.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-function-name": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.9.tgz", - "integrity": "sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-compilation-targets": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/traverse": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-json-strings": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.25.9.tgz", - "integrity": "sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-literals": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.9.tgz", - "integrity": "sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-logical-assignment-operators": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.25.9.tgz", - "integrity": "sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-member-expression-literals": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.25.9.tgz", - "integrity": "sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-amd": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.25.9.tgz", - "integrity": "sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-module-transforms": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.26.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.26.3.tgz", - "integrity": "sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-module-transforms": "^7.26.0", - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-systemjs": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.9.tgz", - "integrity": "sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-module-transforms": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/helper-validator-identifier": "^7.25.9", - "@babel/traverse": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-umd": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.25.9.tgz", - "integrity": "sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-module-transforms": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.25.9.tgz", - "integrity": "sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/plugin-transform-new-target": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.25.9.tgz", - "integrity": "sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { - "version": "7.26.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.26.6.tgz", - "integrity": "sha512-CKW8Vu+uUZneQCPtXmSBUC6NCAUdya26hWCElAWh5mVSlSRsmiCPUUDKb3Z0szng1hiAJa098Hkhg9o4SE35Qw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.26.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-numeric-separator": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.25.9.tgz", - "integrity": "sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-object-rest-spread": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.25.9.tgz", - "integrity": "sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-compilation-targets": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/plugin-transform-parameters": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-object-super": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.25.9.tgz", - "integrity": "sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/helper-replace-supers": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-optional-catch-binding": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.25.9.tgz", - "integrity": "sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-optional-chaining": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.25.9.tgz", - "integrity": "sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-parameters": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.25.9.tgz", - "integrity": "sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-private-methods": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.25.9.tgz", - "integrity": "sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-private-property-in-object": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.25.9.tgz", - "integrity": "sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.25.9", - "@babel/helper-create-class-features-plugin": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-property-literals": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.25.9.tgz", - "integrity": "sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-react-constant-elements": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.25.9.tgz", - "integrity": "sha512-Ncw2JFsJVuvfRsa2lSHiC55kETQVLSnsYGQ1JDDwkUeWGTL/8Tom8aLTnlqgoeuopWrbbGndrc9AlLYrIosrow==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-react-display-name": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.25.9.tgz", - "integrity": "sha512-KJfMlYIUxQB1CJfO3e0+h0ZHWOTLCPP115Awhaz8U0Zpq36Gl/cXlpoyMRnUWlhNUBAzldnCiAZNvCDj7CrKxQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-react-jsx": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.25.9.tgz", - "integrity": "sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.25.9", - "@babel/helper-module-imports": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/plugin-syntax-jsx": "^7.25.9", - "@babel/types": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-react-jsx-development": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.25.9.tgz", - "integrity": "sha512-9mj6rm7XVYs4mdLIpbZnHOYdpW42uoiBCTVowg7sP1thUOiANgMb4UtpRivR0pp5iL+ocvUv7X4mZgFRpJEzGw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/plugin-transform-react-jsx": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-react-pure-annotations": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.25.9.tgz", - "integrity": "sha512-KQ/Takk3T8Qzj5TppkS1be588lkbTp5uj7w6a0LeQaTMSckU/wK0oJ/pih+T690tkgI5jfmg2TqDJvd41Sj1Cg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-regenerator": { - "version": "7.27.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.27.0.tgz", - "integrity": "sha512-LX/vCajUJQDqE7Aum/ELUMZAY19+cDpghxrnyt5I1tV6X5PyC86AOoWXWFYFeIvauyeSA6/ktn4tQVn/3ZifsA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.26.5", - "regenerator-transform": "^0.15.2" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-regexp-modifiers": { - "version": "7.26.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.26.0.tgz", - "integrity": "sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/plugin-transform-reserved-words": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.25.9.tgz", - "integrity": "sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-shorthand-properties": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.25.9.tgz", - "integrity": "sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-spread": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.25.9.tgz", - "integrity": "sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-sticky-regex": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.25.9.tgz", - "integrity": "sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-template-literals": { - "version": "7.26.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.26.8.tgz", - "integrity": "sha512-OmGDL5/J0CJPJZTHZbi2XpO0tyT2Ia7fzpW5GURwdtp2X3fMmN8au/ej6peC/T33/+CRiIpA8Krse8hFGVmT5Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.26.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-typeof-symbol": { - "version": "7.27.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.27.0.tgz", - "integrity": "sha512-+LLkxA9rKJpNoGsbLnAgOCdESl73vwYn+V6b+5wHbrE7OGKVDPHIQvbFSzqE6rwqaCw2RE+zdJrlLkcf8YOA0w==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.26.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-typescript": { - "version": "7.27.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.27.0.tgz", - "integrity": "sha512-fRGGjO2UEGPjvEcyAZXRXAS8AfdaQoq7HnxAbJoAoW10B9xOKesmmndJv+Sym2a+9FHWZ9KbyyLCe9s0Sn5jtg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.25.9", - "@babel/helper-create-class-features-plugin": "^7.27.0", - "@babel/helper-plugin-utils": "^7.26.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", - "@babel/plugin-syntax-typescript": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-unicode-escapes": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.25.9.tgz", - "integrity": "sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-unicode-property-regex": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.25.9.tgz", - "integrity": "sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-unicode-regex": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.25.9.tgz", - "integrity": "sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-unicode-sets-regex": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.25.9.tgz", - "integrity": "sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.25.9", - "@babel/helper-plugin-utils": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/preset-env": { - "version": "7.26.9", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.26.9.tgz", - "integrity": "sha512-vX3qPGE8sEKEAZCWk05k3cpTAE3/nOYca++JA+Rd0z2NCNzabmYvEiSShKzm10zdquOIAVXsy2Ei/DTW34KlKQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/compat-data": "^7.26.8", - "@babel/helper-compilation-targets": "^7.26.5", - "@babel/helper-plugin-utils": "^7.26.5", - "@babel/helper-validator-option": "^7.25.9", - "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.25.9", - "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.25.9", - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.25.9", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.25.9", - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.25.9", - "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", - "@babel/plugin-syntax-import-assertions": "^7.26.0", - "@babel/plugin-syntax-import-attributes": "^7.26.0", - "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", - "@babel/plugin-transform-arrow-functions": "^7.25.9", - "@babel/plugin-transform-async-generator-functions": "^7.26.8", - "@babel/plugin-transform-async-to-generator": "^7.25.9", - "@babel/plugin-transform-block-scoped-functions": "^7.26.5", - "@babel/plugin-transform-block-scoping": "^7.25.9", - "@babel/plugin-transform-class-properties": "^7.25.9", - "@babel/plugin-transform-class-static-block": "^7.26.0", - "@babel/plugin-transform-classes": "^7.25.9", - "@babel/plugin-transform-computed-properties": "^7.25.9", - "@babel/plugin-transform-destructuring": "^7.25.9", - "@babel/plugin-transform-dotall-regex": "^7.25.9", - "@babel/plugin-transform-duplicate-keys": "^7.25.9", - "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.25.9", - "@babel/plugin-transform-dynamic-import": "^7.25.9", - "@babel/plugin-transform-exponentiation-operator": "^7.26.3", - "@babel/plugin-transform-export-namespace-from": "^7.25.9", - "@babel/plugin-transform-for-of": "^7.26.9", - "@babel/plugin-transform-function-name": "^7.25.9", - "@babel/plugin-transform-json-strings": "^7.25.9", - "@babel/plugin-transform-literals": "^7.25.9", - "@babel/plugin-transform-logical-assignment-operators": "^7.25.9", - "@babel/plugin-transform-member-expression-literals": "^7.25.9", - "@babel/plugin-transform-modules-amd": "^7.25.9", - "@babel/plugin-transform-modules-commonjs": "^7.26.3", - "@babel/plugin-transform-modules-systemjs": "^7.25.9", - "@babel/plugin-transform-modules-umd": "^7.25.9", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.25.9", - "@babel/plugin-transform-new-target": "^7.25.9", - "@babel/plugin-transform-nullish-coalescing-operator": "^7.26.6", - "@babel/plugin-transform-numeric-separator": "^7.25.9", - "@babel/plugin-transform-object-rest-spread": "^7.25.9", - "@babel/plugin-transform-object-super": "^7.25.9", - "@babel/plugin-transform-optional-catch-binding": "^7.25.9", - "@babel/plugin-transform-optional-chaining": "^7.25.9", - "@babel/plugin-transform-parameters": "^7.25.9", - "@babel/plugin-transform-private-methods": "^7.25.9", - "@babel/plugin-transform-private-property-in-object": "^7.25.9", - "@babel/plugin-transform-property-literals": "^7.25.9", - "@babel/plugin-transform-regenerator": "^7.25.9", - "@babel/plugin-transform-regexp-modifiers": "^7.26.0", - "@babel/plugin-transform-reserved-words": "^7.25.9", - "@babel/plugin-transform-shorthand-properties": "^7.25.9", - "@babel/plugin-transform-spread": "^7.25.9", - "@babel/plugin-transform-sticky-regex": "^7.25.9", - "@babel/plugin-transform-template-literals": "^7.26.8", - "@babel/plugin-transform-typeof-symbol": "^7.26.7", - "@babel/plugin-transform-unicode-escapes": "^7.25.9", - "@babel/plugin-transform-unicode-property-regex": "^7.25.9", - "@babel/plugin-transform-unicode-regex": "^7.25.9", - "@babel/plugin-transform-unicode-sets-regex": "^7.25.9", - "@babel/preset-modules": "0.1.6-no-external-plugins", - "babel-plugin-polyfill-corejs2": "^0.4.10", - "babel-plugin-polyfill-corejs3": "^0.11.0", - "babel-plugin-polyfill-regenerator": "^0.6.1", - "core-js-compat": "^3.40.0", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/preset-env/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/@babel/preset-modules": { - "version": "0.1.6-no-external-plugins", - "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", - "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/types": "^7.4.4", - "esutils": "^2.0.2" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" - } - }, - "node_modules/@babel/preset-react": { - "version": "7.26.3", - "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.26.3.tgz", - "integrity": "sha512-Nl03d6T9ky516DGK2YMxrTqvnpUW63TnJMOMonj+Zae0JiPC5BC9xPMSL6L8fiSpA5vP88qfygavVQvnLp+6Cw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.25.9", - "@babel/helper-validator-option": "^7.25.9", - "@babel/plugin-transform-react-display-name": "^7.25.9", - "@babel/plugin-transform-react-jsx": "^7.25.9", - "@babel/plugin-transform-react-jsx-development": "^7.25.9", - "@babel/plugin-transform-react-pure-annotations": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/preset-typescript": { - "version": "7.27.0", - "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.27.0.tgz", - "integrity": "sha512-vxaPFfJtHhgeOVXRKuHpHPAOgymmy8V8I65T1q53R7GCZlefKeCaTyDs3zOPHTTbmquvNlQYC5klEvWsBAtrBQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-plugin-utils": "^7.26.5", - "@babel/helper-validator-option": "^7.25.9", - "@babel/plugin-syntax-jsx": "^7.25.9", - "@babel/plugin-transform-modules-commonjs": "^7.26.3", - "@babel/plugin-transform-typescript": "^7.27.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/runtime": { - "version": "7.27.0", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.27.0.tgz", - "integrity": "sha512-VtPOkrdPHZsKc/clNqyi9WUA8TINkZ4cGk63UUE3u4pmB2k+ZMQRDuIOagv8UVd6j7k0T3+RRIb7beKTebNbcw==", - "dev": true, - "license": "MIT", - "dependencies": { - "regenerator-runtime": "^0.14.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/template": { - "version": "7.27.0", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.0.tgz", - "integrity": "sha512-2ncevenBqXI6qRMukPlXwHKHchC7RyMuu4xv5JBXRfOGVcTy1mXCD12qrp7Jsoxll1EV3+9sE4GugBVRjT2jFA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.26.2", - "@babel/parser": "^7.27.0", - "@babel/types": "^7.27.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/traverse": { - "version": "7.27.0", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.27.0.tgz", - "integrity": "sha512-19lYZFzYVQkkHkl4Cy4WrAVcqBkgvV2YM2TU3xG6DIwO7O3ecbDPfW3yM3bjAGcqcQHi+CCtjMR3dIEHxsd6bA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.26.2", - "@babel/generator": "^7.27.0", - "@babel/parser": "^7.27.0", - "@babel/template": "^7.27.0", - "@babel/types": "^7.27.0", - "debug": "^4.3.1", - "globals": "^11.1.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/traverse/node_modules/globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/@babel/types": { - "version": "7.27.0", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.27.0.tgz", - "integrity": "sha512-H45s8fVLYjbhFH62dIJ3WtmJ6RSPt/3DRO0ZcT2SUiYiQyz3BLVb9ADEnLl91m74aQPS3AzzeajZHYOalWe3bg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-string-parser": "^7.25.9", - "@babel/helper-validator-identifier": "^7.25.9" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@colors/colors": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", - "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==", - "dev": true, - "license": "MIT", - "optional": true, - "engines": { - "node": ">=0.1.90" - } - }, - "node_modules/@commitlint/config-validator": { - "version": "19.8.0", - "resolved": "https://registry.npmjs.org/@commitlint/config-validator/-/config-validator-19.8.0.tgz", - "integrity": "sha512-+r5ZvD/0hQC3w5VOHJhGcCooiAVdynFlCe2d6I9dU+PvXdV3O+fU4vipVg+6hyLbQUuCH82mz3HnT/cBQTYYuA==", - "dev": true, - "license": "MIT", - "optional": true, - "dependencies": { - "@commitlint/types": "^19.8.0", - "ajv": "^8.11.0" - }, - "engines": { - "node": ">=v18" - } - }, - "node_modules/@commitlint/execute-rule": { - "version": "19.8.0", - "resolved": "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-19.8.0.tgz", - "integrity": "sha512-fuLeI+EZ9x2v/+TXKAjplBJWI9CNrHnyi5nvUQGQt4WRkww/d95oVRsc9ajpt4xFrFmqMZkd/xBQHZDvALIY7A==", - "dev": true, - "license": "MIT", - "optional": true, - "engines": { - "node": ">=v18" - } - }, - "node_modules/@commitlint/load": { - "version": "19.8.0", - "resolved": "https://registry.npmjs.org/@commitlint/load/-/load-19.8.0.tgz", - "integrity": "sha512-4rvmm3ff81Sfb+mcWT5WKlyOa+Hd33WSbirTVUer0wjS1Hv/Hzr07Uv1ULIV9DkimZKNyOwXn593c+h8lsDQPQ==", - "dev": true, - "license": "MIT", - "optional": true, - "dependencies": { - "@commitlint/config-validator": "^19.8.0", - "@commitlint/execute-rule": "^19.8.0", - "@commitlint/resolve-extends": "^19.8.0", - "@commitlint/types": "^19.8.0", - "chalk": "^5.3.0", - "cosmiconfig": "^9.0.0", - "cosmiconfig-typescript-loader": "^6.1.0", - "lodash.isplainobject": "^4.0.6", - "lodash.merge": "^4.6.2", - "lodash.uniq": "^4.5.0" - }, - "engines": { - "node": ">=v18" - } - }, - "node_modules/@commitlint/load/node_modules/chalk": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.4.1.tgz", - "integrity": "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==", - "dev": true, - "license": "MIT", - "optional": true, - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@commitlint/resolve-extends": { - "version": "19.8.0", - "resolved": "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-19.8.0.tgz", - "integrity": "sha512-CLanRQwuG2LPfFVvrkTrBR/L/DMy3+ETsgBqW1OvRxmzp/bbVJW0Xw23LnnExgYcsaFtos967lul1CsbsnJlzQ==", - "dev": true, - "license": "MIT", - "optional": true, - "dependencies": { - "@commitlint/config-validator": "^19.8.0", - "@commitlint/types": "^19.8.0", - "global-directory": "^4.0.1", - "import-meta-resolve": "^4.0.0", - "lodash.mergewith": "^4.6.2", - "resolve-from": "^5.0.0" - }, - "engines": { - "node": ">=v18" - } - }, - "node_modules/@commitlint/types": { - "version": "19.8.0", - "resolved": "https://registry.npmjs.org/@commitlint/types/-/types-19.8.0.tgz", - "integrity": "sha512-LRjP623jPyf3Poyfb0ohMj8I3ORyBDOwXAgxxVPbSD0unJuW2mJWeiRfaQinjtccMqC5Wy1HOMfa4btKjbNxbg==", - "dev": true, - "license": "MIT", - "optional": true, - "dependencies": { - "@types/conventional-commits-parser": "^5.0.0", - "chalk": "^5.3.0" - }, - "engines": { - "node": ">=v18" - } - }, - "node_modules/@commitlint/types/node_modules/chalk": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.4.1.tgz", - "integrity": "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==", - "dev": true, - "license": "MIT", - "optional": true, - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/@esbuild/win32-x64": { - "version": "0.25.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.2.tgz", - "integrity": "sha512-kM3HKb16VIXZyIeVrM1ygYmZBKybX8N4p754bw390wGO3Tf2j4L2/WYL+4suWujpgf6GBYs3jv7TyUivdd05JA==", - "cpu": [ - "x64" - ], - "dev": true, - "license": "MIT", - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=18" - } - }, - "node_modules/@eslint-community/eslint-utils": { - "version": "4.6.1", - "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.6.1.tgz", - "integrity": "sha512-KTsJMmobmbrFLe3LDh0PC2FXpcSYJt/MLjlkh/9LEnmKYLSYmT/0EW9JWANjeoemiuZrmogti0tW5Ch+qNUYDw==", - "dev": true, - "license": "MIT", - "dependencies": { - "eslint-visitor-keys": "^3.4.3" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" - } - }, - "node_modules/@eslint-community/regexpp": { - "version": "4.12.1", - "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", - "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": "^12.0.0 || ^14.0.0 || >=16.0.0" - } - }, - "node_modules/@eslint/config-array": { - "version": "0.20.0", - "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.20.0.tgz", - "integrity": "sha512-fxlS1kkIjx8+vy2SjuCB94q3htSNrufYTXubwiBFeaQHbH6Ipi43gFJq2zCMt6PHhImH3Xmr0NksKDvchWlpQQ==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@eslint/object-schema": "^2.1.6", - "debug": "^4.3.1", - "minimatch": "^3.1.2" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - } - }, - "node_modules/@eslint/config-array/node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/@eslint/config-array/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/@eslint/config-helpers": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/@eslint/config-helpers/-/config-helpers-0.2.1.tgz", - "integrity": "sha512-RI17tsD2frtDu/3dmI7QRrD4bedNKPM08ziRYaC5AhkGrzIAJelm9kJU1TznK+apx6V+cqRz8tfpEeG3oIyjxw==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - } - }, - "node_modules/@eslint/core": { - "version": "0.13.0", - "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.13.0.tgz", - "integrity": "sha512-yfkgDw1KR66rkT5A8ci4irzDysN7FRpq3ttJolR88OqQikAWqwA8j5VZyas+vjyBNFIJ7MfybJ9plMILI2UrCw==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@types/json-schema": "^7.0.15" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - } - }, - "node_modules/@eslint/eslintrc": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.3.1.tgz", - "integrity": "sha512-gtF186CXhIl1p4pJNGZw8Yc6RlshoePRvE0X91oPGb3vZ8pM3qOS9W9NGPat9LziaBV7XrJWGylNQXkGcnM3IQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ajv": "^6.12.4", - "debug": "^4.3.2", - "espree": "^10.0.1", - "globals": "^14.0.0", - "ignore": "^5.2.0", - "import-fresh": "^3.2.1", - "js-yaml": "^4.1.0", - "minimatch": "^3.1.2", - "strip-json-comments": "^3.1.1" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/@eslint/eslintrc/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/@eslint/eslintrc/node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/@eslint/eslintrc/node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true, - "license": "MIT" - }, - "node_modules/@eslint/eslintrc/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/@eslint/js": { - "version": "9.25.0", - "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.25.0.tgz", - "integrity": "sha512-iWhsUS8Wgxz9AXNfvfOPFSW4VfMXdVhp1hjkZVhXCrpgh/aLcc45rX6MPu+tIVUWDw0HfNwth7O28M1xDxNf9w==", - "dev": true, - "license": "MIT", - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - } - }, - "node_modules/@eslint/object-schema": { - "version": "2.1.6", - "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.6.tgz", - "integrity": "sha512-RBMg5FRL0I0gs51M/guSAj5/e14VQ4tpZnQNWwuDT66P14I43ItmPfIZRhO9fUVIPOAQXU47atlywZ/czoqFPA==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - } - }, - "node_modules/@eslint/plugin-kit": { - "version": "0.2.8", - "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.8.tgz", - "integrity": "sha512-ZAoA40rNMPwSm+AeHpCq8STiNAwzWLJuP8Xv4CHIc9wv/PSuExjMrmjfYNj682vW0OOiZ1HKxzvjQr9XZIisQA==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@eslint/core": "^0.13.0", - "levn": "^0.4.1" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - } - }, - "node_modules/@humanfs/core": { - "version": "0.19.1", - "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.1.tgz", - "integrity": "sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=18.18.0" - } - }, - "node_modules/@humanfs/node": { - "version": "0.16.6", - "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.6.tgz", - "integrity": "sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "@humanfs/core": "^0.19.1", - "@humanwhocodes/retry": "^0.3.0" - }, - "engines": { - "node": ">=18.18.0" - } - }, - "node_modules/@humanfs/node/node_modules/@humanwhocodes/retry": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz", - "integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=18.18" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/nzakas" - } - }, - "node_modules/@humanwhocodes/module-importer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", - "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=12.22" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/nzakas" - } - }, - "node_modules/@humanwhocodes/retry": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.4.2.tgz", - "integrity": "sha512-xeO57FpIu4p1Ri3Jq/EXq4ClRm86dVF2z/+kvFnyqVYRavTZmaFaUBbWCOuuTh0o/g7DSsk6kc2vrS4Vl5oPOQ==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=18.18" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/nzakas" - } - }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.8", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz", - "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@jridgewell/set-array": "^1.2.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.24" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", - "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/set-array": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", - "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", - "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.25", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", - "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@jridgewell/resolve-uri": "^3.1.0", - "@jridgewell/sourcemap-codec": "^1.4.14" - } - }, - "node_modules/@nicolo-ribaudo/chokidar-2": { - "version": "2.1.8-no-fsevents.3", - "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/chokidar-2/-/chokidar-2-2.1.8-no-fsevents.3.tgz", - "integrity": "sha512-s88O1aVtXftvp5bCPB7WnmXc5IwOZZ7YPuwNPt+GtOOXpPvad1LfbmjYv+qII7zP6RU2QGnqve27dnLycEnyEQ==", - "dev": true, - "license": "MIT", - "optional": true - }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dev": true, - "license": "MIT", - "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@octokit/auth-token": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-4.0.0.tgz", - "integrity": "sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 18" - } - }, - "node_modules/@octokit/core": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/@octokit/core/-/core-5.2.1.tgz", - "integrity": "sha512-dKYCMuPO1bmrpuogcjQ8z7ICCH3FP6WmxpwC03yjzGfZhj9fTJg6+bS1+UAplekbN2C+M61UNllGOOoAfGCrdQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@octokit/auth-token": "^4.0.0", - "@octokit/graphql": "^7.1.0", - "@octokit/request": "^8.4.1", - "@octokit/request-error": "^5.1.1", - "@octokit/types": "^13.0.0", - "before-after-hook": "^2.2.0", - "universal-user-agent": "^6.0.0" - }, - "engines": { - "node": ">= 18" - } - }, - "node_modules/@octokit/endpoint": { - "version": "9.0.6", - "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-9.0.6.tgz", - "integrity": "sha512-H1fNTMA57HbkFESSt3Y9+FBICv+0jFceJFPWDePYlR/iMGrwM5ph+Dd4XRQs+8X+PUFURLQgX9ChPfhJ/1uNQw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@octokit/types": "^13.1.0", - "universal-user-agent": "^6.0.0" - }, - "engines": { - "node": ">= 18" - } - }, - "node_modules/@octokit/graphql": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-7.1.1.tgz", - "integrity": "sha512-3mkDltSfcDUoa176nlGoA32RGjeWjl3K7F/BwHwRMJUW/IteSa4bnSV8p2ThNkcIcZU2umkZWxwETSSCJf2Q7g==", - "dev": true, - "license": "MIT", - "dependencies": { - "@octokit/request": "^8.4.1", - "@octokit/types": "^13.0.0", - "universal-user-agent": "^6.0.0" - }, - "engines": { - "node": ">= 18" - } - }, - "node_modules/@octokit/openapi-types": { - "version": "24.2.0", - "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-24.2.0.tgz", - "integrity": "sha512-9sIH3nSUttelJSXUrmGzl7QUBFul0/mB8HRYl3fOlgHbIWG+WnYDXU3v/2zMtAvuzZ/ed00Ei6on975FhBfzrg==", - "dev": true, - "license": "MIT" - }, - "node_modules/@octokit/plugin-paginate-rest": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-9.2.2.tgz", - "integrity": "sha512-u3KYkGF7GcZnSD/3UP0S7K5XUFT2FkOQdcfXZGZQPGv3lm4F2Xbf71lvjldr8c1H3nNbF+33cLEkWYbokGWqiQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@octokit/types": "^12.6.0" - }, - "engines": { - "node": ">= 18" - }, - "peerDependencies": { - "@octokit/core": "5" - } - }, - "node_modules/@octokit/plugin-paginate-rest/node_modules/@octokit/openapi-types": { - "version": "20.0.0", - "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-20.0.0.tgz", - "integrity": "sha512-EtqRBEjp1dL/15V7WiX5LJMIxxkdiGJnabzYx5Apx4FkQIFgAfKumXeYAqqJCj1s+BMX4cPFIFC4OLCR6stlnA==", - "dev": true, - "license": "MIT" - }, - "node_modules/@octokit/plugin-paginate-rest/node_modules/@octokit/types": { - "version": "12.6.0", - "resolved": "https://registry.npmjs.org/@octokit/types/-/types-12.6.0.tgz", - "integrity": "sha512-1rhSOfRa6H9w4YwK0yrf5faDaDTb+yLyBUKOCV4xtCDB5VmIPqd/v9yr9o6SAzOAlRxMiRiCic6JVM1/kunVkw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@octokit/openapi-types": "^20.0.0" - } - }, - "node_modules/@octokit/plugin-retry": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/@octokit/plugin-retry/-/plugin-retry-6.1.0.tgz", - "integrity": "sha512-WrO3bvq4E1Xh1r2mT9w6SDFg01gFmP81nIG77+p/MqW1JeXXgL++6umim3t6x0Zj5pZm3rXAN+0HEjmmdhIRig==", - "dev": true, - "license": "MIT", - "dependencies": { - "@octokit/request-error": "^5.0.0", - "@octokit/types": "^13.0.0", - "bottleneck": "^2.15.3" - }, - "engines": { - "node": ">= 18" - }, - "peerDependencies": { - "@octokit/core": "5" - } - }, - "node_modules/@octokit/plugin-throttling": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/@octokit/plugin-throttling/-/plugin-throttling-8.2.0.tgz", - "integrity": "sha512-nOpWtLayKFpgqmgD0y3GqXafMFuKcA4tRPZIfu7BArd2lEZeb1988nhWhwx4aZWmjDmUfdgVf7W+Tt4AmvRmMQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@octokit/types": "^12.2.0", - "bottleneck": "^2.15.3" - }, - "engines": { - "node": ">= 18" - }, - "peerDependencies": { - "@octokit/core": "^5.0.0" - } - }, - "node_modules/@octokit/plugin-throttling/node_modules/@octokit/openapi-types": { - "version": "20.0.0", - "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-20.0.0.tgz", - "integrity": "sha512-EtqRBEjp1dL/15V7WiX5LJMIxxkdiGJnabzYx5Apx4FkQIFgAfKumXeYAqqJCj1s+BMX4cPFIFC4OLCR6stlnA==", - "dev": true, - "license": "MIT" - }, - "node_modules/@octokit/plugin-throttling/node_modules/@octokit/types": { - "version": "12.6.0", - "resolved": "https://registry.npmjs.org/@octokit/types/-/types-12.6.0.tgz", - "integrity": "sha512-1rhSOfRa6H9w4YwK0yrf5faDaDTb+yLyBUKOCV4xtCDB5VmIPqd/v9yr9o6SAzOAlRxMiRiCic6JVM1/kunVkw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@octokit/openapi-types": "^20.0.0" - } - }, - "node_modules/@octokit/request": { - "version": "8.4.1", - "resolved": "https://registry.npmjs.org/@octokit/request/-/request-8.4.1.tgz", - "integrity": "sha512-qnB2+SY3hkCmBxZsR/MPCybNmbJe4KAlfWErXq+rBKkQJlbjdJeS85VI9r8UqeLYLvnAenU8Q1okM/0MBsAGXw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@octokit/endpoint": "^9.0.6", - "@octokit/request-error": "^5.1.1", - "@octokit/types": "^13.1.0", - "universal-user-agent": "^6.0.0" - }, - "engines": { - "node": ">= 18" - } - }, - "node_modules/@octokit/request-error": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-5.1.1.tgz", - "integrity": "sha512-v9iyEQJH6ZntoENr9/yXxjuezh4My67CBSu9r6Ve/05Iu5gNgnisNWOsoJHTP6k0Rr0+HQIpnH+kyammu90q/g==", - "dev": true, - "license": "MIT", - "dependencies": { - "@octokit/types": "^13.1.0", - "deprecation": "^2.0.0", - "once": "^1.4.0" - }, - "engines": { - "node": ">= 18" - } - }, - "node_modules/@octokit/types": { - "version": "13.10.0", - "resolved": "https://registry.npmjs.org/@octokit/types/-/types-13.10.0.tgz", - "integrity": "sha512-ifLaO34EbbPj0Xgro4G5lP5asESjwHracYJvVaPIyXMuiuXLlhic3S47cBdTb+jfODkTE5YtGCLt3Ay3+J97sA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@octokit/openapi-types": "^24.2.0" - } - }, - "node_modules/@pkgr/core": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/@pkgr/core/-/core-0.2.4.tgz", - "integrity": "sha512-ROFF39F6ZrnzSUEmQQZUar0Jt4xVoP9WnDRdWwF4NNcXs3xBTLgBUDoOwW141y1jP+S8nahIbdxbFC7IShw9Iw==", - "dev": true, - "license": "MIT", - "engines": { - "node": "^12.20.0 || ^14.18.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/pkgr" - } - }, - "node_modules/@pnpm/config.env-replace": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@pnpm/config.env-replace/-/config.env-replace-1.1.0.tgz", - "integrity": "sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12.22.0" - } - }, - "node_modules/@pnpm/network.ca-file": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@pnpm/network.ca-file/-/network.ca-file-1.0.2.tgz", - "integrity": "sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==", - "dev": true, - "license": "MIT", - "dependencies": { - "graceful-fs": "4.2.10" - }, - "engines": { - "node": ">=12.22.0" - } - }, - "node_modules/@pnpm/network.ca-file/node_modules/graceful-fs": { - "version": "4.2.10", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", - "dev": true, - "license": "ISC" - }, - "node_modules/@pnpm/npm-conf": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/@pnpm/npm-conf/-/npm-conf-2.3.1.tgz", - "integrity": "sha512-c83qWb22rNRuB0UaVCI0uRPNRr8Z0FWnEIvT47jiHAmOIUHbBOg5XvV7pM5x+rKn9HRpjxquDbXYSXr3fAKFcw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@pnpm/config.env-replace": "^1.1.0", - "@pnpm/network.ca-file": "^1.0.1", - "config-chain": "^1.1.11" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/@rollup/pluginutils": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.1.4.tgz", - "integrity": "sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/estree": "^1.0.0", - "estree-walker": "^2.0.2", - "picomatch": "^4.0.2" - }, - "engines": { - "node": ">=14.0.0" - }, - "peerDependencies": { - "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" - }, - "peerDependenciesMeta": { - "rollup": { - "optional": true - } - } - }, - "node_modules/@rollup/pluginutils/node_modules/picomatch": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz", - "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/@sec-ant/readable-stream": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/@sec-ant/readable-stream/-/readable-stream-0.4.1.tgz", - "integrity": "sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==", - "dev": true, - "license": "MIT" - }, - "node_modules/@semantic-release/changelog": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/@semantic-release/changelog/-/changelog-6.0.3.tgz", - "integrity": "sha512-dZuR5qByyfe3Y03TpmCvAxCyTnp7r5XwtHRf/8vD9EAn4ZWbavUX8adMtXYzE86EVh0gyLA7lm5yW4IV30XUag==", - "dev": true, - "license": "MIT", - "dependencies": { - "@semantic-release/error": "^3.0.0", - "aggregate-error": "^3.0.0", - "fs-extra": "^11.0.0", - "lodash": "^4.17.4" - }, - "engines": { - "node": ">=14.17" - }, - "peerDependencies": { - "semantic-release": ">=18.0.0" - } - }, - "node_modules/@semantic-release/commit-analyzer": { - "version": "13.0.1", - "resolved": "https://registry.npmjs.org/@semantic-release/commit-analyzer/-/commit-analyzer-13.0.1.tgz", - "integrity": "sha512-wdnBPHKkr9HhNhXOhZD5a2LNl91+hs8CC2vsAVYxtZH3y0dV3wKn+uZSN61rdJQZ8EGxzWB3inWocBHV9+u/CQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "conventional-changelog-angular": "^8.0.0", - "conventional-changelog-writer": "^8.0.0", - "conventional-commits-filter": "^5.0.0", - "conventional-commits-parser": "^6.0.0", - "debug": "^4.0.0", - "import-from-esm": "^2.0.0", - "lodash-es": "^4.17.21", - "micromatch": "^4.0.2" - }, - "engines": { - "node": ">=20.8.1" - }, - "peerDependencies": { - "semantic-release": ">=20.1.0" - } - }, - "node_modules/@semantic-release/error": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-3.0.0.tgz", - "integrity": "sha512-5hiM4Un+tpl4cKw3lV4UgzJj+SmfNIDCLLw0TepzQxz9ZGV5ixnqkzIVF+3tp0ZHgcMKE+VNGHJjEeyFG2dcSw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=14.17" - } - }, - "node_modules/@semantic-release/git": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/@semantic-release/git/-/git-10.0.1.tgz", - "integrity": "sha512-eWrx5KguUcU2wUPaO6sfvZI0wPafUKAMNC18aXY4EnNcrZL86dEmpNVnC9uMpGZkmZJ9EfCVJBQx4pV4EMGT1w==", - "dev": true, - "license": "MIT", - "dependencies": { - "@semantic-release/error": "^3.0.0", - "aggregate-error": "^3.0.0", - "debug": "^4.0.0", - "dir-glob": "^3.0.0", - "execa": "^5.0.0", - "lodash": "^4.17.4", - "micromatch": "^4.0.0", - "p-reduce": "^2.0.0" - }, - "engines": { - "node": ">=14.17" - }, - "peerDependencies": { - "semantic-release": ">=18.0.0" - } - }, - "node_modules/@semantic-release/github": { - "version": "9.2.6", - "resolved": "https://registry.npmjs.org/@semantic-release/github/-/github-9.2.6.tgz", - "integrity": "sha512-shi+Lrf6exeNZF+sBhK+P011LSbhmIAoUEgEY6SsxF8irJ+J2stwI5jkyDQ+4gzYyDImzV6LCKdYB9FXnQRWKA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@octokit/core": "^5.0.0", - "@octokit/plugin-paginate-rest": "^9.0.0", - "@octokit/plugin-retry": "^6.0.0", - "@octokit/plugin-throttling": "^8.0.0", - "@semantic-release/error": "^4.0.0", - "aggregate-error": "^5.0.0", - "debug": "^4.3.4", - "dir-glob": "^3.0.1", - "globby": "^14.0.0", - "http-proxy-agent": "^7.0.0", - "https-proxy-agent": "^7.0.0", - "issue-parser": "^6.0.0", - "lodash-es": "^4.17.21", - "mime": "^4.0.0", - "p-filter": "^4.0.0", - "url-join": "^5.0.0" - }, - "engines": { - "node": ">=18" - }, - "peerDependencies": { - "semantic-release": ">=20.1.0" - } - }, - "node_modules/@semantic-release/github/node_modules/@semantic-release/error": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-4.0.0.tgz", - "integrity": "sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=18" - } - }, - "node_modules/@semantic-release/github/node_modules/aggregate-error": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-5.0.0.tgz", - "integrity": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==", - "dev": true, - "license": "MIT", - "dependencies": { - "clean-stack": "^5.2.0", - "indent-string": "^5.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@semantic-release/github/node_modules/clean-stack": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-5.2.0.tgz", - "integrity": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "escape-string-regexp": "5.0.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@semantic-release/github/node_modules/escape-string-regexp": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", - "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@semantic-release/github/node_modules/indent-string": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", - "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@semantic-release/npm": { - "version": "12.0.1", - "resolved": "https://registry.npmjs.org/@semantic-release/npm/-/npm-12.0.1.tgz", - "integrity": "sha512-/6nntGSUGK2aTOI0rHPwY3ZjgY9FkXmEHbW9Kr+62NVOsyqpKKeP0lrCH+tphv+EsNdJNmqqwijTEnVWUMQ2Nw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@semantic-release/error": "^4.0.0", - "aggregate-error": "^5.0.0", - "execa": "^9.0.0", - "fs-extra": "^11.0.0", - "lodash-es": "^4.17.21", - "nerf-dart": "^1.0.0", - "normalize-url": "^8.0.0", - "npm": "^10.5.0", - "rc": "^1.2.8", - "read-pkg": "^9.0.0", - "registry-auth-token": "^5.0.0", - "semver": "^7.1.2", - "tempy": "^3.0.0" - }, - "engines": { - "node": ">=20.8.1" - }, - "peerDependencies": { - "semantic-release": ">=20.1.0" - } - }, - "node_modules/@semantic-release/npm/node_modules/@semantic-release/error": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-4.0.0.tgz", - "integrity": "sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=18" - } - }, - "node_modules/@semantic-release/npm/node_modules/@sindresorhus/merge-streams": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-4.0.0.tgz", - "integrity": "sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@semantic-release/npm/node_modules/aggregate-error": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-5.0.0.tgz", - "integrity": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==", - "dev": true, - "license": "MIT", - "dependencies": { - "clean-stack": "^5.2.0", - "indent-string": "^5.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@semantic-release/npm/node_modules/clean-stack": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-5.2.0.tgz", - "integrity": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "escape-string-regexp": "5.0.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@semantic-release/npm/node_modules/escape-string-regexp": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", - "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@semantic-release/npm/node_modules/execa": { - "version": "9.5.2", - "resolved": "https://registry.npmjs.org/execa/-/execa-9.5.2.tgz", - "integrity": "sha512-EHlpxMCpHWSAh1dgS6bVeoLAXGnJNdR93aabr4QCGbzOM73o5XmRfM/e5FUqsw3aagP8S8XEWUWFAxnRBnAF0Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "@sindresorhus/merge-streams": "^4.0.0", - "cross-spawn": "^7.0.3", - "figures": "^6.1.0", - "get-stream": "^9.0.0", - "human-signals": "^8.0.0", - "is-plain-obj": "^4.1.0", - "is-stream": "^4.0.1", - "npm-run-path": "^6.0.0", - "pretty-ms": "^9.0.0", - "signal-exit": "^4.1.0", - "strip-final-newline": "^4.0.0", - "yoctocolors": "^2.0.0" - }, - "engines": { - "node": "^18.19.0 || >=20.5.0" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/@semantic-release/npm/node_modules/figures": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-6.1.0.tgz", - "integrity": "sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-unicode-supported": "^2.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@semantic-release/npm/node_modules/get-stream": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-9.0.1.tgz", - "integrity": "sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@sec-ant/readable-stream": "^0.4.1", - "is-stream": "^4.0.1" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@semantic-release/npm/node_modules/human-signals": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-8.0.1.tgz", - "integrity": "sha512-eKCa6bwnJhvxj14kZk5NCPc6Hb6BdsU9DZcOnmQKSnO1VKrfV0zCvtttPZUsBvjmNDn8rpcJfpwSYnHBjc95MQ==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=18.18.0" - } - }, - "node_modules/@semantic-release/npm/node_modules/indent-string": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", - "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@semantic-release/npm/node_modules/is-stream": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-4.0.1.tgz", - "integrity": "sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@semantic-release/npm/node_modules/is-unicode-supported": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.1.0.tgz", - "integrity": "sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@semantic-release/npm/node_modules/npm-run-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-6.0.0.tgz", - "integrity": "sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==", - "dev": true, - "license": "MIT", - "dependencies": { - "path-key": "^4.0.0", - "unicorn-magic": "^0.3.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@semantic-release/npm/node_modules/path-key": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", - "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@semantic-release/npm/node_modules/signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "dev": true, - "license": "ISC", - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/@semantic-release/npm/node_modules/strip-final-newline": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-4.0.0.tgz", - "integrity": "sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@semantic-release/npm/node_modules/unicorn-magic": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.3.0.tgz", - "integrity": "sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@semantic-release/release-notes-generator": { - "version": "14.0.3", - "resolved": "https://registry.npmjs.org/@semantic-release/release-notes-generator/-/release-notes-generator-14.0.3.tgz", - "integrity": "sha512-XxAZRPWGwO5JwJtS83bRdoIhCiYIx8Vhr+u231pQAsdFIAbm19rSVJLdnBN+Avvk7CKvNQE/nJ4y7uqKH6WTiw==", - "dev": true, - "license": "MIT", - "dependencies": { - "conventional-changelog-angular": "^8.0.0", - "conventional-changelog-writer": "^8.0.0", - "conventional-commits-filter": "^5.0.0", - "conventional-commits-parser": "^6.0.0", - "debug": "^4.0.0", - "get-stream": "^7.0.0", - "import-from-esm": "^2.0.0", - "into-stream": "^7.0.0", - "lodash-es": "^4.17.21", - "read-package-up": "^11.0.0" - }, - "engines": { - "node": ">=20.8.1" - }, - "peerDependencies": { - "semantic-release": ">=20.1.0" - } - }, - "node_modules/@semantic-release/release-notes-generator/node_modules/get-stream": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-7.0.1.tgz", - "integrity": "sha512-3M8C1EOFN6r8AMUhwUAACIoXZJEOufDU5+0gFFN5uNs6XYOralD2Pqkl7m046va6x77FwposWXbAhPPIOus7mQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@sindresorhus/is": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", - "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/is?sponsor=1" - } - }, - "node_modules/@sindresorhus/merge-streams": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz", - "integrity": "sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@svgr/babel-plugin-add-jsx-attribute": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-8.0.0.tgz", - "integrity": "sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@svgr/babel-plugin-remove-jsx-attribute": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-8.0.0.tgz", - "integrity": "sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-8.0.0.tgz", - "integrity": "sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-8.0.0.tgz", - "integrity": "sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@svgr/babel-plugin-svg-dynamic-title": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-8.0.0.tgz", - "integrity": "sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@svgr/babel-plugin-svg-em-dimensions": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-8.0.0.tgz", - "integrity": "sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@svgr/babel-plugin-transform-react-native-svg": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-8.1.0.tgz", - "integrity": "sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@svgr/babel-plugin-transform-svg-component": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-8.0.0.tgz", - "integrity": "sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@svgr/babel-preset": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-8.1.0.tgz", - "integrity": "sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug==", - "dev": true, - "license": "MIT", - "dependencies": { - "@svgr/babel-plugin-add-jsx-attribute": "8.0.0", - "@svgr/babel-plugin-remove-jsx-attribute": "8.0.0", - "@svgr/babel-plugin-remove-jsx-empty-expression": "8.0.0", - "@svgr/babel-plugin-replace-jsx-attribute-value": "8.0.0", - "@svgr/babel-plugin-svg-dynamic-title": "8.0.0", - "@svgr/babel-plugin-svg-em-dimensions": "8.0.0", - "@svgr/babel-plugin-transform-react-native-svg": "8.1.0", - "@svgr/babel-plugin-transform-svg-component": "8.0.0" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@svgr/core": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@svgr/core/-/core-8.1.0.tgz", - "integrity": "sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/core": "^7.21.3", - "@svgr/babel-preset": "8.1.0", - "camelcase": "^6.2.0", - "cosmiconfig": "^8.1.3", - "snake-case": "^3.0.4" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - } - }, - "node_modules/@svgr/core/node_modules/cosmiconfig": { - "version": "8.3.6", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", - "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", - "dev": true, - "license": "MIT", - "dependencies": { - "import-fresh": "^3.3.0", - "js-yaml": "^4.1.0", - "parse-json": "^5.2.0", - "path-type": "^4.0.0" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/d-fischer" - }, - "peerDependencies": { - "typescript": ">=4.9.5" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@svgr/hast-util-to-babel-ast": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-8.0.0.tgz", - "integrity": "sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/types": "^7.21.3", - "entities": "^4.4.0" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - } - }, - "node_modules/@svgr/plugin-jsx": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-8.1.0.tgz", - "integrity": "sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/core": "^7.21.3", - "@svgr/babel-preset": "8.1.0", - "@svgr/hast-util-to-babel-ast": "8.0.0", - "svg-parser": "^2.0.4" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@svgr/core": "*" - } - }, - "node_modules/@svgr/plugin-prettier": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@svgr/plugin-prettier/-/plugin-prettier-8.1.0.tgz", - "integrity": "sha512-o4/uFI8G64tAjBZ4E7gJfH+VP7Qi3T0+M4WnIsP91iFnGPqs5WvPDkpZALXPiyWEtzfYs1Rmwy1Zdfu8qoZuKw==", - "dev": true, - "license": "MIT", - "dependencies": { - "deepmerge": "^4.3.1", - "prettier": "^2.8.7" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@svgr/core": "*" - } - }, - "node_modules/@svgr/plugin-prettier/node_modules/prettier": { - "version": "2.8.8", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", - "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", - "dev": true, - "license": "MIT", - "bin": { - "prettier": "bin-prettier.js" - }, - "engines": { - "node": ">=10.13.0" - }, - "funding": { - "url": "https://github.com/prettier/prettier?sponsor=1" - } - }, - "node_modules/@svgr/plugin-svgo": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-8.1.0.tgz", - "integrity": "sha512-Ywtl837OGO9pTLIN/onoWLmDQ4zFUycI1g76vuKGEz6evR/ZTJlJuz3G/fIkb6OVBJ2g0o6CGJzaEjfmEo3AHA==", - "dev": true, - "license": "MIT", - "dependencies": { - "cosmiconfig": "^8.1.3", - "deepmerge": "^4.3.1", - "svgo": "^3.0.2" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - }, - "peerDependencies": { - "@svgr/core": "*" - } - }, - "node_modules/@svgr/plugin-svgo/node_modules/cosmiconfig": { - "version": "8.3.6", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", - "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", - "dev": true, - "license": "MIT", - "dependencies": { - "import-fresh": "^3.3.0", - "js-yaml": "^4.1.0", - "parse-json": "^5.2.0", - "path-type": "^4.0.0" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/d-fischer" - }, - "peerDependencies": { - "typescript": ">=4.9.5" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/@svgr/rollup": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@svgr/rollup/-/rollup-8.1.0.tgz", - "integrity": "sha512-0XR1poYvPQoPpmfDYLEqUGu5ePAQ4pdgN3VFsZBNAeze7qubVpsIY1o1R6PZpKep/DKu33GSm2NhwpCLkMs2Cw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/core": "^7.21.3", - "@babel/plugin-transform-react-constant-elements": "^7.21.3", - "@babel/preset-env": "^7.20.2", - "@babel/preset-react": "^7.18.6", - "@babel/preset-typescript": "^7.21.0", - "@rollup/pluginutils": "^5.0.2", - "@svgr/core": "8.1.0", - "@svgr/plugin-jsx": "8.1.0", - "@svgr/plugin-svgo": "8.1.0" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - } - }, - "node_modules/@trysound/sax": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", - "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", - "dev": true, - "license": "ISC", - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/@types/conventional-commits-parser": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@types/conventional-commits-parser/-/conventional-commits-parser-5.0.1.tgz", - "integrity": "sha512-7uz5EHdzz2TqoMfV7ee61Egf5y6NkcO4FB/1iCCQnbeiI1F3xzv3vK5dBCXUCLQgGYS+mUeigK1iKQzvED+QnQ==", - "dev": true, - "license": "MIT", - "optional": true, - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/estree": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.7.tgz", - "integrity": "sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/json-schema": { - "version": "7.0.15", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", - "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/node": { - "version": "22.14.1", - "resolved": "https://registry.npmjs.org/@types/node/-/node-22.14.1.tgz", - "integrity": "sha512-u0HuPQwe/dHrItgHHpmw3N2fYCR6x4ivMNbPHRkBVP4CvN+kiRrKHWk3i8tXiO/joPwXLMYvF9TTF0eqgHIuOw==", - "dev": true, - "license": "MIT", - "dependencies": { - "undici-types": "~6.21.0" - } - }, - "node_modules/@types/normalize-package-data": { - "version": "2.4.4", - "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", - "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/prop-types": { - "version": "15.7.14", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.14.tgz", - "integrity": "sha512-gNMvNH49DJ7OJYv+KAKn0Xp45p8PLl6zo2YnvDIbTd4J6MER2BmWN49TG7n9LvkyihINxeKW8+3bfS2yDC9dzQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/@types/react": { - "version": "18.3.20", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.20.tgz", - "integrity": "sha512-IPaCZN7PShZK/3t6Q87pfTkRm6oLTd4vztyoj+cbHUF1g3FfVb2tFIL79uCRKEfv16AhqDMBywP2VW3KIZUvcg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/prop-types": "*", - "csstype": "^3.0.2" - } - }, - "node_modules/@typescript-eslint/eslint-plugin": { - "version": "8.30.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.30.1.tgz", - "integrity": "sha512-v+VWphxMjn+1t48/jO4t950D6KR8JaJuNXzi33Ve6P8sEmPr5k6CEXjdGwT6+LodVnEa91EQCtwjWNUCPweo+Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "@eslint-community/regexpp": "^4.10.0", - "@typescript-eslint/scope-manager": "8.30.1", - "@typescript-eslint/type-utils": "8.30.1", - "@typescript-eslint/utils": "8.30.1", - "@typescript-eslint/visitor-keys": "8.30.1", - "graphemer": "^1.4.0", - "ignore": "^5.3.1", - "natural-compare": "^1.4.0", - "ts-api-utils": "^2.0.1" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "@typescript-eslint/parser": "^8.0.0 || ^8.0.0-alpha.0", - "eslint": "^8.57.0 || ^9.0.0", - "typescript": ">=4.8.4 <5.9.0" - } - }, - "node_modules/@typescript-eslint/parser": { - "version": "8.30.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.30.1.tgz", - "integrity": "sha512-H+vqmWwT5xoNrXqWs/fesmssOW70gxFlgcMlYcBaWNPIEWDgLa4W9nkSPmhuOgLnXq9QYgkZ31fhDyLhleCsAg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@typescript-eslint/scope-manager": "8.30.1", - "@typescript-eslint/types": "8.30.1", - "@typescript-eslint/typescript-estree": "8.30.1", - "@typescript-eslint/visitor-keys": "8.30.1", - "debug": "^4.3.4" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^8.57.0 || ^9.0.0", - "typescript": ">=4.8.4 <5.9.0" - } - }, - "node_modules/@typescript-eslint/scope-manager": { - "version": "8.30.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.30.1.tgz", - "integrity": "sha512-+C0B6ChFXZkuaNDl73FJxRYT0G7ufVPOSQkqkpM/U198wUwUFOtgo1k/QzFh1KjpBitaK7R1tgjVz6o9HmsRPg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@typescript-eslint/types": "8.30.1", - "@typescript-eslint/visitor-keys": "8.30.1" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/type-utils": { - "version": "8.30.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.30.1.tgz", - "integrity": "sha512-64uBF76bfQiJyHgZISC7vcNz3adqQKIccVoKubyQcOnNcdJBvYOILV1v22Qhsw3tw3VQu5ll8ND6hycgAR5fEA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@typescript-eslint/typescript-estree": "8.30.1", - "@typescript-eslint/utils": "8.30.1", - "debug": "^4.3.4", - "ts-api-utils": "^2.0.1" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^8.57.0 || ^9.0.0", - "typescript": ">=4.8.4 <5.9.0" - } - }, - "node_modules/@typescript-eslint/types": { - "version": "8.30.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.30.1.tgz", - "integrity": "sha512-81KawPfkuulyWo5QdyG/LOKbspyyiW+p4vpn4bYO7DM/hZImlVnFwrpCTnmNMOt8CvLRr5ojI9nU1Ekpw4RcEw==", - "dev": true, - "license": "MIT", - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/typescript-estree": { - "version": "8.30.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.30.1.tgz", - "integrity": "sha512-kQQnxymiUy9tTb1F2uep9W6aBiYODgq5EMSk6Nxh4Z+BDUoYUSa029ISs5zTzKBFnexQEh71KqwjKnRz58lusQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@typescript-eslint/types": "8.30.1", - "@typescript-eslint/visitor-keys": "8.30.1", - "debug": "^4.3.4", - "fast-glob": "^3.3.2", - "is-glob": "^4.0.3", - "minimatch": "^9.0.4", - "semver": "^7.6.0", - "ts-api-utils": "^2.0.1" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "typescript": ">=4.8.4 <5.9.0" - } - }, - "node_modules/@typescript-eslint/utils": { - "version": "8.30.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.30.1.tgz", - "integrity": "sha512-T/8q4R9En2tcEsWPQgB5BQ0XJVOtfARcUvOa8yJP3fh9M/mXraLxZrkCfGb6ChrO/V3W+Xbd04RacUEqk1CFEQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@eslint-community/eslint-utils": "^4.4.0", - "@typescript-eslint/scope-manager": "8.30.1", - "@typescript-eslint/types": "8.30.1", - "@typescript-eslint/typescript-estree": "8.30.1" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^8.57.0 || ^9.0.0", - "typescript": ">=4.8.4 <5.9.0" - } - }, - "node_modules/@typescript-eslint/visitor-keys": { - "version": "8.30.1", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.30.1.tgz", - "integrity": "sha512-aEhgas7aJ6vZnNFC7K4/vMGDGyOiqWcYZPpIWrTKuTAlsvDNKy2GFDqh9smL+iq069ZvR0YzEeq0B8NJlLzjFA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@typescript-eslint/types": "8.30.1", - "eslint-visitor-keys": "^4.2.0" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - } - }, - "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", - "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/acorn": { - "version": "8.14.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz", - "integrity": "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==", - "dev": true, - "license": "MIT", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", - "dev": true, - "license": "MIT", - "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" - } - }, - "node_modules/agent-base": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.3.tgz", - "integrity": "sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 14" - } - }, - "node_modules/aggregate-error": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", - "dev": true, - "license": "MIT", - "dependencies": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/ajv": { - "version": "8.17.1", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", - "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", - "dev": true, - "license": "MIT", - "optional": true, - "dependencies": { - "fast-deep-equal": "^3.1.3", - "fast-uri": "^3.0.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "type-fest": "^0.21.3" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ansi-regex": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", - "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/any-promise": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", - "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", - "dev": true, - "license": "MIT" - }, - "node_modules/anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "dev": true, - "license": "ISC", - "optional": true, - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true, - "license": "Python-2.0" - }, - "node_modules/argv-formatter": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/argv-formatter/-/argv-formatter-1.0.0.tgz", - "integrity": "sha512-F2+Hkm9xFaRg+GkaNnbwXNDV5O6pnCFEmqyhvfC/Ic5LbgOWjJh3L+mN/s91rxVL3znE7DYVpW0GJFT+4YBgWw==", - "dev": true, - "license": "MIT" - }, - "node_modules/array-ify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz", - "integrity": "sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==", - "dev": true, - "license": "MIT" - }, - "node_modules/at-least-node": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", - "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", - "dev": true, - "license": "ISC", - "engines": { - "node": ">= 4.0.0" - } - }, - "node_modules/babel-plugin-polyfill-corejs2": { - "version": "0.4.13", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.13.tgz", - "integrity": "sha512-3sX/eOms8kd3q2KZ6DAhKPc0dgm525Gqq5NtWKZ7QYYZEv57OQ54KtblzJzH1lQF/eQxO8KjWGIK9IPUJNus5g==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/compat-data": "^7.22.6", - "@babel/helper-define-polyfill-provider": "^0.6.4", - "semver": "^6.3.1" - }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" - } - }, - "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/babel-plugin-polyfill-corejs3": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.11.1.tgz", - "integrity": "sha512-yGCqvBT4rwMczo28xkH/noxJ6MZ4nJfkVYdoDaC/utLtWrXxv27HVrzAeSbqR8SxDsp46n0YF47EbHoixy6rXQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.6.3", - "core-js-compat": "^3.40.0" - }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" - } - }, - "node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.6.4", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.4.tgz", - "integrity": "sha512-7gD3pRadPrbjhjLyxebmx/WrFYcuSjZ0XbdUujQMZ/fcE9oeewk2U/7PCvez84UeuK3oSjmPZ0Ch0dlupQvGzw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.6.4" - }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" - } - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true, - "license": "MIT" - }, - "node_modules/base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT" - }, - "node_modules/before-after-hook": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.3.tgz", - "integrity": "sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==", - "dev": true, - "license": "Apache-2.0" - }, - "node_modules/binary-extensions": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", - "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", - "dev": true, - "license": "MIT", - "optional": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/bl": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", - "dev": true, - "license": "MIT", - "dependencies": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" - } - }, - "node_modules/boolbase": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", - "dev": true, - "license": "ISC" - }, - "node_modules/bottleneck": { - "version": "2.19.5", - "resolved": "https://registry.npmjs.org/bottleneck/-/bottleneck-2.19.5.tgz", - "integrity": "sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw==", - "dev": true, - "license": "MIT" - }, - "node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/braces": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", - "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", - "dev": true, - "license": "MIT", - "dependencies": { - "fill-range": "^7.1.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/browserslist": { - "version": "4.24.4", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.4.tgz", - "integrity": "sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "MIT", - "dependencies": { - "caniuse-lite": "^1.0.30001688", - "electron-to-chromium": "^1.5.73", - "node-releases": "^2.0.19", - "update-browserslist-db": "^1.1.1" - }, - "bin": { - "browserslist": "cli.js" - }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - } - }, - "node_modules/buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT", - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" - } - }, - "node_modules/cachedir": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/cachedir/-/cachedir-2.3.0.tgz", - "integrity": "sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/caniuse-lite": { - "version": "1.0.30001715", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001715.tgz", - "integrity": "sha512-7ptkFGMm2OAOgvZpwgA4yjQ5SQbrNVGdRjzH0pBdy1Fasvcr+KAeECmbCAECzTuDuoX0FCY8KzUxjf9+9kfZEw==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "CC-BY-4.0" - }, - "node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/char-regex": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", - "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - } - }, - "node_modules/chardet": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", - "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", - "dev": true, - "license": "MIT" - }, - "node_modules/chokidar": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", - "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", - "dev": true, - "license": "MIT", - "optional": true, - "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, - "engines": { - "node": ">= 8.10.0" - }, - "funding": { - "url": "https://paulmillr.com/funding/" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/chokidar/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "license": "ISC", - "optional": true, - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/cli-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", - "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", - "dev": true, - "license": "MIT", - "dependencies": { - "restore-cursor": "^3.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/cli-highlight": { - "version": "2.1.11", - "resolved": "https://registry.npmjs.org/cli-highlight/-/cli-highlight-2.1.11.tgz", - "integrity": "sha512-9KDcoEVwyUXrjcJNvHD0NFc/hiwe/WPVYIleQh2O1N2Zro5gWJZ/K+3DGn8w8P/F6FxOgzyC5bxDyHIgCSPhGg==", - "dev": true, - "license": "ISC", - "dependencies": { - "chalk": "^4.0.0", - "highlight.js": "^10.7.1", - "mz": "^2.4.0", - "parse5": "^5.1.1", - "parse5-htmlparser2-tree-adapter": "^6.0.0", - "yargs": "^16.0.0" - }, - "bin": { - "highlight": "bin/highlight" - }, - "engines": { - "node": ">=8.0.0", - "npm": ">=5.0.0" - } - }, - "node_modules/cli-highlight/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/cli-highlight/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/cli-highlight/node_modules/cliui": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", - "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", - "dev": true, - "license": "ISC", - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^7.0.0" - } - }, - "node_modules/cli-highlight/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/cli-highlight/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true, - "license": "MIT" - }, - "node_modules/cli-highlight/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/cli-highlight/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/cli-highlight/node_modules/yargs": { - "version": "16.2.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", - "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", - "dev": true, - "license": "MIT", - "dependencies": { - "cliui": "^7.0.2", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.0", - "y18n": "^5.0.5", - "yargs-parser": "^20.2.2" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/cli-highlight/node_modules/yargs-parser": { - "version": "20.2.9", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", - "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", - "dev": true, - "license": "ISC", - "engines": { - "node": ">=10" - } - }, - "node_modules/cli-spinners": { - "version": "2.9.2", - "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz", - "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/cli-table3": { - "version": "0.6.5", - "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.5.tgz", - "integrity": "sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "string-width": "^4.2.0" - }, - "engines": { - "node": "10.* || >= 12.*" - }, - "optionalDependencies": { - "@colors/colors": "1.5.0" - } - }, - "node_modules/cli-truncate": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-4.0.0.tgz", - "integrity": "sha512-nPdaFdQ0h/GEigbPClz11D0v/ZJEwxmeVZGeMo3Z5StPtUTkA9o1lD6QwoirYiSDzbcwn2XcjwmCp68W1IS4TA==", - "dev": true, - "license": "MIT", - "dependencies": { - "slice-ansi": "^5.0.0", - "string-width": "^7.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/cli-truncate/node_modules/emoji-regex": { - "version": "10.4.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.4.0.tgz", - "integrity": "sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==", - "dev": true, - "license": "MIT" - }, - "node_modules/cli-truncate/node_modules/string-width": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz", - "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "emoji-regex": "^10.3.0", - "get-east-asian-width": "^1.0.0", - "strip-ansi": "^7.1.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/cli-truncate/node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, - "node_modules/cli-width": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", - "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", - "dev": true, - "license": "ISC", - "engines": { - "node": ">= 10" - } - }, - "node_modules/cliui": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", - "dev": true, - "license": "ISC", - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/clone": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", - "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.8" - } - }, - "node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "dev": true, - "license": "MIT" - }, - "node_modules/colorette": { - "version": "2.0.20", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", - "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", - "dev": true, - "license": "MIT" - }, - "node_modules/commander": { - "version": "13.1.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-13.1.0.tgz", - "integrity": "sha512-/rFeCpNJQbhSZjGVwO9RFV3xPqbnERS8MmIQzCtD/zl6gpJuV/bMLuN92oG3F7d8oDEHHRrujSXNUr8fpjntKw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=18" - } - }, - "node_modules/commitizen": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/commitizen/-/commitizen-4.3.1.tgz", - "integrity": "sha512-gwAPAVTy/j5YcOOebcCRIijn+mSjWJC+IYKivTu6aG8Ei/scoXgfsMRnuAk6b0GRste2J4NGxVdMN3ZpfNaVaw==", - "dev": true, - "license": "MIT", - "dependencies": { - "cachedir": "2.3.0", - "cz-conventional-changelog": "3.3.0", - "dedent": "0.7.0", - "detect-indent": "6.1.0", - "find-node-modules": "^2.1.2", - "find-root": "1.1.0", - "fs-extra": "9.1.0", - "glob": "7.2.3", - "inquirer": "8.2.5", - "is-utf8": "^0.2.1", - "lodash": "4.17.21", - "minimist": "1.2.7", - "strip-bom": "4.0.0", - "strip-json-comments": "3.1.1" - }, - "bin": { - "commitizen": "bin/commitizen", - "cz": "bin/git-cz", - "git-cz": "bin/git-cz" - }, - "engines": { - "node": ">= 12" - } - }, - "node_modules/commitizen/node_modules/fs-extra": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", - "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "at-least-node": "^1.0.0", - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/compare-func": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/compare-func/-/compare-func-2.0.0.tgz", - "integrity": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==", - "dev": true, - "license": "MIT", - "dependencies": { - "array-ify": "^1.0.0", - "dot-prop": "^5.1.0" - } - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true, - "license": "MIT" - }, - "node_modules/config-chain": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", - "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ini": "^1.3.4", - "proto-list": "~1.2.1" - } - }, - "node_modules/config-chain/node_modules/ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "dev": true, - "license": "ISC" - }, - "node_modules/conventional-changelog-angular": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-8.0.0.tgz", - "integrity": "sha512-CLf+zr6St0wIxos4bmaKHRXWAcsCXrJU6F4VdNDrGRK3B8LDLKoX3zuMV5GhtbGkVR/LohZ6MT6im43vZLSjmA==", - "dev": true, - "license": "ISC", - "dependencies": { - "compare-func": "^2.0.0" - }, - "engines": { - "node": ">=18" - } - }, - "node_modules/conventional-changelog-writer": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-8.0.1.tgz", - "integrity": "sha512-hlqcy3xHred2gyYg/zXSMXraY2mjAYYo0msUCpK+BGyaVJMFCKWVXPIHiaacGO2GGp13kvHWXFhYmxT4QQqW3Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "conventional-commits-filter": "^5.0.0", - "handlebars": "^4.7.7", - "meow": "^13.0.0", - "semver": "^7.5.2" - }, - "bin": { - "conventional-changelog-writer": "dist/cli/index.js" - }, - "engines": { - "node": ">=18" - } - }, - "node_modules/conventional-commit-types": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/conventional-commit-types/-/conventional-commit-types-3.0.0.tgz", - "integrity": "sha512-SmmCYnOniSsAa9GqWOeLqc179lfr5TRu5b4QFDkbsrJ5TZjPJx85wtOr3zn+1dbeNiXDKGPbZ72IKbPhLXh/Lg==", - "dev": true, - "license": "ISC" - }, - "node_modules/conventional-commits-filter": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-5.0.0.tgz", - "integrity": "sha512-tQMagCOC59EVgNZcC5zl7XqO30Wki9i9J3acbUvkaosCT6JX3EeFwJD7Qqp4MCikRnzS18WXV3BLIQ66ytu6+Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=18" - } - }, - "node_modules/conventional-commits-parser": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-6.1.0.tgz", - "integrity": "sha512-5nxDo7TwKB5InYBl4ZC//1g9GRwB/F3TXOGR9hgUjMGfvSP4Vu5NkpNro2+1+TIEy1vwxApl5ircECr2ri5JIw==", - "dev": true, - "license": "MIT", - "dependencies": { - "meow": "^13.0.0" - }, - "bin": { - "conventional-commits-parser": "dist/cli/index.js" - }, - "engines": { - "node": ">=18" - } - }, - "node_modules/convert-hrtime": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/convert-hrtime/-/convert-hrtime-5.0.0.tgz", - "integrity": "sha512-lOETlkIeYSJWcbbcvjRKGxVMXJR+8+OQb/mTPbA4ObPMytYIsUbuOE0Jzy60hjARYszq1id0j8KgVhC+WGZVTg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/convert-source-map": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", - "dev": true, - "license": "MIT" - }, - "node_modules/core-js-compat": { - "version": "3.41.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.41.0.tgz", - "integrity": "sha512-RFsU9LySVue9RTwdDVX/T0e2Y6jRYWXERKElIjpuEOEnxaXffI0X7RUwVzfYLfzuLXSNJDYoRYUAmRUcyln20A==", - "dev": true, - "license": "MIT", - "dependencies": { - "browserslist": "^4.24.4" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" - } - }, - "node_modules/core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/cosmiconfig": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.0.tgz", - "integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==", - "dev": true, - "license": "MIT", - "dependencies": { - "env-paths": "^2.2.1", - "import-fresh": "^3.3.0", - "js-yaml": "^4.1.0", - "parse-json": "^5.2.0" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/d-fischer" - }, - "peerDependencies": { - "typescript": ">=4.9.5" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/cosmiconfig-typescript-loader": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-6.1.0.tgz", - "integrity": "sha512-tJ1w35ZRUiM5FeTzT7DtYWAFFv37ZLqSRkGi2oeCK1gPhvaWjkAtfXvLmvE1pRfxxp9aQo6ba/Pvg1dKj05D4g==", - "dev": true, - "license": "MIT", - "optional": true, - "dependencies": { - "jiti": "^2.4.1" - }, - "engines": { - "node": ">=v18" - }, - "peerDependencies": { - "@types/node": "*", - "cosmiconfig": ">=9", - "typescript": ">=5" - } - }, - "node_modules/cross-spawn": { - "version": "7.0.6", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", - "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", - "dev": true, - "license": "MIT", - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/crypto-random-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-4.0.0.tgz", - "integrity": "sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==", - "dev": true, - "license": "MIT", - "dependencies": { - "type-fest": "^1.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/crypto-random-string/node_modules/type-fest": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", - "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", - "dev": true, - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/css-select": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", - "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "boolbase": "^1.0.0", - "css-what": "^6.1.0", - "domhandler": "^5.0.2", - "domutils": "^3.0.1", - "nth-check": "^2.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" - } - }, - "node_modules/css-tree": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", - "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", - "dev": true, - "license": "MIT", - "dependencies": { - "mdn-data": "2.0.30", - "source-map-js": "^1.0.1" - }, - "engines": { - "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" - } - }, - "node_modules/css-what": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", - "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", - "dev": true, - "license": "BSD-2-Clause", - "engines": { - "node": ">= 6" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" - } - }, - "node_modules/csso": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz", - "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "css-tree": "~2.2.0" - }, - "engines": { - "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/csso/node_modules/css-tree": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz", - "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==", - "dev": true, - "license": "MIT", - "dependencies": { - "mdn-data": "2.0.28", - "source-map-js": "^1.0.1" - }, - "engines": { - "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/csso/node_modules/mdn-data": { - "version": "2.0.28", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz", - "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==", - "dev": true, - "license": "CC0-1.0" - }, - "node_modules/csstype": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", - "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", - "dev": true, - "license": "MIT" - }, - "node_modules/cz-conventional-changelog": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/cz-conventional-changelog/-/cz-conventional-changelog-3.3.0.tgz", - "integrity": "sha512-U466fIzU5U22eES5lTNiNbZ+d8dfcHcssH4o7QsdWaCcRs/feIPCxKYSWkYBNs5mny7MvEfwpTLWjvbm94hecw==", - "dev": true, - "license": "MIT", - "dependencies": { - "chalk": "^2.4.1", - "commitizen": "^4.0.3", - "conventional-commit-types": "^3.0.0", - "lodash.map": "^4.5.1", - "longest": "^2.0.1", - "word-wrap": "^1.0.3" - }, - "engines": { - "node": ">= 10" - }, - "optionalDependencies": { - "@commitlint/load": ">6.1.1" - } - }, - "node_modules/debug": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", - "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", - "dev": true, - "license": "MIT", - "dependencies": { - "ms": "^2.1.3" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/dedent": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", - "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", - "dev": true, - "license": "MIT" - }, - "node_modules/deep-extend": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", - "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/deepmerge": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", - "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/defaults": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", - "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", - "dev": true, - "license": "MIT", - "dependencies": { - "clone": "^1.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/deprecation": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz", - "integrity": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==", - "dev": true, - "license": "ISC" - }, - "node_modules/detect-file": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", - "integrity": "sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/detect-indent": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", - "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "dev": true, - "license": "MIT", - "dependencies": { - "path-type": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/dom-serializer": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", - "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", - "dev": true, - "license": "MIT", - "dependencies": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.2", - "entities": "^4.2.0" - }, - "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" - } - }, - "node_modules/domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ], - "license": "BSD-2-Clause" - }, - "node_modules/domhandler": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", - "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "domelementtype": "^2.3.0" - }, - "engines": { - "node": ">= 4" - }, - "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" - } - }, - "node_modules/domutils": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.2.2.tgz", - "integrity": "sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "dom-serializer": "^2.0.0", - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3" - }, - "funding": { - "url": "https://github.com/fb55/domutils?sponsor=1" - } - }, - "node_modules/dot-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", - "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", - "dev": true, - "license": "MIT", - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/dot-prop": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", - "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-obj": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/duplexer2": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz", - "integrity": "sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "readable-stream": "^2.0.2" - } - }, - "node_modules/duplexer2/node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dev": true, - "license": "MIT", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/duplexer2/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true, - "license": "MIT" - }, - "node_modules/duplexer2/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/electron-to-chromium": { - "version": "1.5.139", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.139.tgz", - "integrity": "sha512-GGnRYOTdN5LYpwbIr0rwP/ZHOQSvAF6TG0LSzp28uCBb9JiXHJGmaaKw29qjNJc5bGnnp6kXJqRnGMQoELwi5w==", - "dev": true, - "license": "ISC" - }, - "node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", - "dev": true, - "license": "MIT" - }, - "node_modules/emojilib": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/emojilib/-/emojilib-2.4.0.tgz", - "integrity": "sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw==", - "dev": true, - "license": "MIT" - }, - "node_modules/entities": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", - "dev": true, - "license": "BSD-2-Clause", - "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/env-ci": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/env-ci/-/env-ci-11.1.0.tgz", - "integrity": "sha512-Z8dnwSDbV1XYM9SBF2J0GcNVvmfmfh3a49qddGIROhBoVro6MZVTji15z/sJbQ2ko2ei8n988EU1wzoLU/tF+g==", - "dev": true, - "license": "MIT", - "dependencies": { - "execa": "^8.0.0", - "java-properties": "^1.0.2" - }, - "engines": { - "node": "^18.17 || >=20.6.1" - } - }, - "node_modules/env-ci/node_modules/execa": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", - "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", - "dev": true, - "license": "MIT", - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^8.0.1", - "human-signals": "^5.0.0", - "is-stream": "^3.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^5.1.0", - "onetime": "^6.0.0", - "signal-exit": "^4.1.0", - "strip-final-newline": "^3.0.0" - }, - "engines": { - "node": ">=16.17" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/env-ci/node_modules/get-stream": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", - "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/env-ci/node_modules/human-signals": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", - "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=16.17.0" - } - }, - "node_modules/env-ci/node_modules/is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", - "dev": true, - "license": "MIT", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/env-ci/node_modules/mimic-fn": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", - "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/env-ci/node_modules/npm-run-path": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz", - "integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "path-key": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/env-ci/node_modules/onetime": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", - "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "mimic-fn": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/env-ci/node_modules/path-key": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", - "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/env-ci/node_modules/signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "dev": true, - "license": "ISC", - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/env-ci/node_modules/strip-final-newline": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", - "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/env-paths": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", - "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/environment": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/environment/-/environment-1.1.0.tgz", - "integrity": "sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-arrayish": "^0.2.1" - } - }, - "node_modules/esbuild": { - "version": "0.25.2", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.2.tgz", - "integrity": "sha512-16854zccKPnC+toMywC+uKNeYSv+/eXkevRAfwRD/G9Cleq66m8XFIrigkbvauLLlCfDL45Q2cWegSg53gGBnQ==", - "dev": true, - "hasInstallScript": true, - "license": "MIT", - "bin": { - "esbuild": "bin/esbuild" - }, - "engines": { - "node": ">=18" - }, - "optionalDependencies": { - "@esbuild/aix-ppc64": "0.25.2", - "@esbuild/android-arm": "0.25.2", - "@esbuild/android-arm64": "0.25.2", - "@esbuild/android-x64": "0.25.2", - "@esbuild/darwin-arm64": "0.25.2", - "@esbuild/darwin-x64": "0.25.2", - "@esbuild/freebsd-arm64": "0.25.2", - "@esbuild/freebsd-x64": "0.25.2", - "@esbuild/linux-arm": "0.25.2", - "@esbuild/linux-arm64": "0.25.2", - "@esbuild/linux-ia32": "0.25.2", - "@esbuild/linux-loong64": "0.25.2", - "@esbuild/linux-mips64el": "0.25.2", - "@esbuild/linux-ppc64": "0.25.2", - "@esbuild/linux-riscv64": "0.25.2", - "@esbuild/linux-s390x": "0.25.2", - "@esbuild/linux-x64": "0.25.2", - "@esbuild/netbsd-arm64": "0.25.2", - "@esbuild/netbsd-x64": "0.25.2", - "@esbuild/openbsd-arm64": "0.25.2", - "@esbuild/openbsd-x64": "0.25.2", - "@esbuild/sunos-x64": "0.25.2", - "@esbuild/win32-arm64": "0.25.2", - "@esbuild/win32-ia32": "0.25.2", - "@esbuild/win32-x64": "0.25.2" - } - }, - "node_modules/escalade": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", - "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/eslint": { - "version": "9.25.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.25.0.tgz", - "integrity": "sha512-MsBdObhM4cEwkzCiraDv7A6txFXEqtNXOb877TsSp2FCkBNl8JfVQrmiuDqC1IkejT6JLPzYBXx/xAiYhyzgGA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@eslint-community/regexpp": "^4.12.1", - "@eslint/config-array": "^0.20.0", - "@eslint/config-helpers": "^0.2.1", - "@eslint/core": "^0.13.0", - "@eslint/eslintrc": "^3.3.1", - "@eslint/js": "9.25.0", - "@eslint/plugin-kit": "^0.2.8", - "@humanfs/node": "^0.16.6", - "@humanwhocodes/module-importer": "^1.0.1", - "@humanwhocodes/retry": "^0.4.2", - "@types/estree": "^1.0.6", - "@types/json-schema": "^7.0.15", - "ajv": "^6.12.4", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.6", - "debug": "^4.3.2", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^8.3.0", - "eslint-visitor-keys": "^4.2.0", - "espree": "^10.3.0", - "esquery": "^1.5.0", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^8.0.0", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "ignore": "^5.2.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.3" - }, - "bin": { - "eslint": "bin/eslint.js" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "url": "https://eslint.org/donate" - }, - "peerDependencies": { - "jiti": "*" - }, - "peerDependenciesMeta": { - "jiti": { - "optional": true - } - } - }, - "node_modules/eslint-config-prettier": { - "version": "10.1.2", - "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-10.1.2.tgz", - "integrity": "sha512-Epgp/EofAUeEpIdZkW60MHKvPyru1ruQJxPL+WIycnaPApuseK0Zpkrh/FwL9oIpQvIhJwV7ptOy0DWUjTlCiA==", - "dev": true, - "license": "MIT", - "bin": { - "eslint-config-prettier": "bin/cli.js" - }, - "peerDependencies": { - "eslint": ">=7.0.0" - } - }, - "node_modules/eslint-plugin-prettier": { - "version": "5.2.6", - "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-5.2.6.tgz", - "integrity": "sha512-mUcf7QG2Tjk7H055Jk0lGBjbgDnfrvqjhXh9t2xLMSCjZVcw9Rb1V6sVNXO0th3jgeO7zllWPTNRil3JW94TnQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "prettier-linter-helpers": "^1.0.0", - "synckit": "^0.11.0" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint-plugin-prettier" - }, - "peerDependencies": { - "@types/eslint": ">=8.0.0", - "eslint": ">=8.0.0", - "eslint-config-prettier": ">= 7.0.0 <10.0.0 || >=10.1.0", - "prettier": ">=3.0.0" - }, - "peerDependenciesMeta": { - "@types/eslint": { - "optional": true - }, - "eslint-config-prettier": { - "optional": true - } - } - }, - "node_modules/eslint-scope": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.3.0.tgz", - "integrity": "sha512-pUNxi75F8MJ/GdeKtVLSbYg4ZI34J6C0C7sbL4YOp2exGwen7ZsuBqKzUhXd0qMQ362yET3z+uPwKeg/0C2XCQ==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint-visitor-keys": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", - "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint/node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dev": true, - "license": "MIT", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/eslint/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/eslint/node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/eslint/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/eslint/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/eslint/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true, - "license": "MIT" - }, - "node_modules/eslint/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/eslint/node_modules/eslint-visitor-keys": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", - "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/eslint/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/eslint/node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true, - "license": "MIT" - }, - "node_modules/eslint/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/eslint/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/espree": { - "version": "10.3.0", - "resolved": "https://registry.npmjs.org/espree/-/espree-10.3.0.tgz", - "integrity": "sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "acorn": "^8.14.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^4.2.0" - }, - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/espree/node_modules/eslint-visitor-keys": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.2.0.tgz", - "integrity": "sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": "^18.18.0 || ^20.9.0 || >=21.1.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" - } - }, - "node_modules/esquery": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", - "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", - "dev": true, - "license": "BSD-3-Clause", - "dependencies": { - "estraverse": "^5.1.0" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "estraverse": "^5.2.0" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "dev": true, - "license": "BSD-2-Clause", - "engines": { - "node": ">=4.0" - } - }, - "node_modules/estree-walker": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", - "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", - "dev": true, - "license": "MIT" - }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "dev": true, - "license": "BSD-2-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/eventemitter3": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz", - "integrity": "sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==", - "dev": true, - "license": "MIT" - }, - "node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dev": true, - "license": "MIT", - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/expand-tilde": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", - "integrity": "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==", - "dev": true, - "license": "MIT", - "dependencies": { - "homedir-polyfill": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/external-editor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", - "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", - "dev": true, - "license": "MIT", - "dependencies": { - "chardet": "^0.7.0", - "iconv-lite": "^0.4.24", - "tmp": "^0.0.33" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/fast-content-type-parse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/fast-content-type-parse/-/fast-content-type-parse-2.0.1.tgz", - "integrity": "sha512-nGqtvLrj5w0naR6tDPfB4cUmYCqouzyQiz6C5y/LtcDllJdrcc6WaWW6iXyIIOErTa/XRybj28aasdn4LkVk6Q==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/fastify" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/fastify" - } - ], - "license": "MIT" - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", - "dev": true, - "license": "MIT" - }, - "node_modules/fast-diff": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.3.0.tgz", - "integrity": "sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==", - "dev": true, - "license": "Apache-2.0" - }, - "node_modules/fast-glob": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", - "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.8" - }, - "engines": { - "node": ">=8.6.0" - } - }, - "node_modules/fast-glob/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dev": true, - "license": "ISC", - "dependencies": { - "is-glob": "^4.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", - "dev": true, - "license": "MIT" - }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true, - "license": "MIT" - }, - "node_modules/fast-uri": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.6.tgz", - "integrity": "sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/fastify" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/fastify" - } - ], - "license": "BSD-3-Clause", - "optional": true - }, - "node_modules/fastq": { - "version": "1.19.1", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz", - "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==", - "dev": true, - "license": "ISC", - "dependencies": { - "reusify": "^1.0.4" - } - }, - "node_modules/figures": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", - "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", - "dev": true, - "license": "MIT", - "dependencies": { - "escape-string-regexp": "^1.0.5" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/file-entry-cache": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", - "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "flat-cache": "^4.0.0" - }, - "engines": { - "node": ">=16.0.0" - } - }, - "node_modules/fill-range": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", - "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", - "dev": true, - "license": "MIT", - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/find-node-modules": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/find-node-modules/-/find-node-modules-2.1.3.tgz", - "integrity": "sha512-UC2I2+nx1ZuOBclWVNdcnbDR5dlrOdVb7xNjmT/lHE+LsgztWks3dG7boJ37yTS/venXw84B/mAW9uHVoC5QRg==", - "dev": true, - "license": "MIT", - "dependencies": { - "findup-sync": "^4.0.0", - "merge": "^2.1.1" - } - }, - "node_modules/find-root": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", - "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==", - "dev": true, - "license": "MIT" - }, - "node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, - "license": "MIT", - "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/find-up-simple": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/find-up-simple/-/find-up-simple-1.0.1.tgz", - "integrity": "sha512-afd4O7zpqHeRyg4PfDQsXmlDe2PfdHtJt6Akt8jOWaApLOZk5JXs6VMR29lz03pRe9mpykrRCYIYxaJYcfpncQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/find-versions": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/find-versions/-/find-versions-6.0.0.tgz", - "integrity": "sha512-2kCCtc+JvcZ86IGAz3Z2Y0A1baIz9fL31pH/0S1IqZr9Iwnjq8izfPtrCyQKO6TLMPELLsQMre7VDqeIKCsHkA==", - "dev": true, - "license": "MIT", - "dependencies": { - "semver-regex": "^4.0.5", - "super-regex": "^1.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/findup-sync": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-4.0.0.tgz", - "integrity": "sha512-6jvvn/12IC4quLBL1KNokxC7wWTvYncaVUYSoxWw7YykPLuRrnv4qdHcSOywOI5RpkOVGeQRtWM8/q+G6W6qfQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "detect-file": "^1.0.0", - "is-glob": "^4.0.0", - "micromatch": "^4.0.2", - "resolve-dir": "^1.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/flat-cache": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", - "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", - "dev": true, - "license": "MIT", - "dependencies": { - "flatted": "^3.2.9", - "keyv": "^4.5.4" - }, - "engines": { - "node": ">=16" - } - }, - "node_modules/flatted": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.3.tgz", - "integrity": "sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==", - "dev": true, - "license": "ISC" - }, - "node_modules/from2": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", - "integrity": "sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==", - "dev": true, - "license": "MIT", - "dependencies": { - "inherits": "^2.0.1", - "readable-stream": "^2.0.0" - } - }, - "node_modules/from2/node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dev": true, - "license": "MIT", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/from2/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true, - "license": "MIT" - }, - "node_modules/from2/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/fs-extra": { - "version": "11.3.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.0.tgz", - "integrity": "sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==", - "dev": true, - "license": "MIT", - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=14.14" - } - }, - "node_modules/fs-readdir-recursive": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz", - "integrity": "sha512-GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA==", - "dev": true, - "license": "MIT" - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "dev": true, - "license": "ISC" - }, - "node_modules/function-bind": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/function-timeout": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/function-timeout/-/function-timeout-1.0.2.tgz", - "integrity": "sha512-939eZS4gJ3htTHAldmyyuzlrD58P03fHG49v2JfFXbV6OhvZKRC9j2yAtdHw/zrp2zXHuv05zMIy40F0ge7spA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "dev": true, - "license": "ISC", - "engines": { - "node": "6.* || 8.* || >= 10.*" - } - }, - "node_modules/get-east-asian-width": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.3.0.tgz", - "integrity": "sha512-vpeMIQKxczTD/0s2CdEWHcb0eeJe6TFjxb+J5xgX7hScxqrGuyjmv4c1D4A/gelKfyox0gJJwIHF+fLjeaM8kQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/get-tsconfig": { - "version": "4.10.0", - "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.10.0.tgz", - "integrity": "sha512-kGzZ3LWWQcGIAmg6iWvXn0ei6WDtV26wzHRMwDSzmAbcXrTEXxHy6IehI6/4eT6VRKyMP1eF1VqwrVUmE/LR7A==", - "dev": true, - "license": "MIT", - "dependencies": { - "resolve-pkg-maps": "^1.0.0" - }, - "funding": { - "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" - } - }, - "node_modules/git-log-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/git-log-parser/-/git-log-parser-1.2.1.tgz", - "integrity": "sha512-PI+sPDvHXNPl5WNOErAK05s3j0lgwUzMN6o8cyQrDaKfT3qd7TmNJKeXX+SknI5I0QhG5fVPAEwSY4tRGDtYoQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "argv-formatter": "~1.0.0", - "spawn-error-forwarder": "~1.0.0", - "split2": "~1.0.0", - "stream-combiner2": "~1.1.1", - "through2": "~2.0.0", - "traverse": "0.6.8" - } - }, - "node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "deprecated": "Glob versions prior to v9 are no longer supported", - "dev": true, - "license": "ISC", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", - "dev": true, - "license": "ISC", - "dependencies": { - "is-glob": "^4.0.3" - }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/glob/node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/glob/node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" - } - }, - "node_modules/global-directory": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/global-directory/-/global-directory-4.0.1.tgz", - "integrity": "sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==", - "dev": true, - "license": "MIT", - "optional": true, - "dependencies": { - "ini": "4.1.1" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/global-modules": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", - "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", - "dev": true, - "license": "MIT", - "dependencies": { - "global-prefix": "^1.0.1", - "is-windows": "^1.0.1", - "resolve-dir": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/global-prefix": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", - "integrity": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==", - "dev": true, - "license": "MIT", - "dependencies": { - "expand-tilde": "^2.0.2", - "homedir-polyfill": "^1.0.1", - "ini": "^1.3.4", - "is-windows": "^1.0.1", - "which": "^1.2.14" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/global-prefix/node_modules/ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "dev": true, - "license": "ISC" - }, - "node_modules/global-prefix/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, - "license": "ISC", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" - } - }, - "node_modules/globals": { - "version": "14.0.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", - "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/globby": { - "version": "14.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-14.1.0.tgz", - "integrity": "sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@sindresorhus/merge-streams": "^2.1.0", - "fast-glob": "^3.3.3", - "ignore": "^7.0.3", - "path-type": "^6.0.0", - "slash": "^5.1.0", - "unicorn-magic": "^0.3.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/globby/node_modules/ignore": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-7.0.3.tgz", - "integrity": "sha512-bAH5jbK/F3T3Jls4I0SO1hmPR0dKU0a7+SY6n1yzRtG54FLO8d6w/nxLFX2Nb7dBu6cCWXPaAME6cYqFUMmuCA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 4" - } - }, - "node_modules/globby/node_modules/path-type": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-6.0.0.tgz", - "integrity": "sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/globby/node_modules/unicorn-magic": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.3.0.tgz", - "integrity": "sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", - "dev": true, - "license": "ISC" - }, - "node_modules/graphemer": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", - "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", - "dev": true, - "license": "MIT" - }, - "node_modules/handlebars": { - "version": "4.7.8", - "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.8.tgz", - "integrity": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "minimist": "^1.2.5", - "neo-async": "^2.6.2", - "source-map": "^0.6.1", - "wordwrap": "^1.0.0" - }, - "bin": { - "handlebars": "bin/handlebars" - }, - "engines": { - "node": ">=0.4.7" - }, - "optionalDependencies": { - "uglify-js": "^3.1.4" - } - }, - "node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/hasown": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", - "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "function-bind": "^1.1.2" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/highlight.js": { - "version": "10.7.3", - "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-10.7.3.tgz", - "integrity": "sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==", - "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": "*" - } - }, - "node_modules/homedir-polyfill": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", - "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", - "dev": true, - "license": "MIT", - "dependencies": { - "parse-passwd": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/hook-std": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/hook-std/-/hook-std-3.0.0.tgz", - "integrity": "sha512-jHRQzjSDzMtFy34AGj1DN+vq54WVuhSvKgrHf0OMiFQTwDD4L/qqofVEWjLOBMTn5+lCD3fPg32W9yOfnEJTTw==", - "dev": true, - "license": "MIT", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/hosted-git-info": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.2.tgz", - "integrity": "sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==", - "dev": true, - "license": "ISC", - "dependencies": { - "lru-cache": "^10.0.1" - }, - "engines": { - "node": "^16.14.0 || >=18.0.0" - } - }, - "node_modules/http-proxy-agent": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", - "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", - "dev": true, - "license": "MIT", - "dependencies": { - "agent-base": "^7.1.0", - "debug": "^4.3.4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/https-proxy-agent": { - "version": "7.0.6", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz", - "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==", - "dev": true, - "license": "MIT", - "dependencies": { - "agent-base": "^7.1.2", - "debug": "4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=10.17.0" - } - }, - "node_modules/husky": { - "version": "9.1.7", - "resolved": "https://registry.npmjs.org/husky/-/husky-9.1.7.tgz", - "integrity": "sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA==", - "dev": true, - "license": "MIT", - "bin": { - "husky": "bin.js" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/typicode" - } - }, - "node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "dev": true, - "license": "MIT", - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "BSD-3-Clause" - }, - "node_modules/ignore": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", - "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 4" - } - }, - "node_modules/import-fresh": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.1.tgz", - "integrity": "sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/import-fresh/node_modules/resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/import-from-esm": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/import-from-esm/-/import-from-esm-2.0.0.tgz", - "integrity": "sha512-YVt14UZCgsX1vZQ3gKjkWVdBdHQ6eu3MPU1TBgL1H5orXe2+jWD006WCPPtOuwlQm10NuzOW5WawiF1Q9veW8g==", - "dev": true, - "license": "MIT", - "dependencies": { - "debug": "^4.3.4", - "import-meta-resolve": "^4.0.0" - }, - "engines": { - "node": ">=18.20" - } - }, - "node_modules/import-meta-resolve": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-4.1.0.tgz", - "integrity": "sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==", - "dev": true, - "license": "MIT", - "funding": { - "type": "github", - "url": "https://github.com/sponsors/wooorm" - } - }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.8.19" - } - }, - "node_modules/indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/index-to-position": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/index-to-position/-/index-to-position-1.1.0.tgz", - "integrity": "sha512-XPdx9Dq4t9Qk1mTMbWONJqU7boCoumEH7fRET37HX5+khDUl3J2W6PdALxhILYlIYx2amlwYcRPp28p0tSiojg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", - "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", - "dev": true, - "license": "ISC", - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true, - "license": "ISC" - }, - "node_modules/ini": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/ini/-/ini-4.1.1.tgz", - "integrity": "sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==", - "dev": true, - "license": "ISC", - "optional": true, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/inquirer": { - "version": "8.2.5", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.5.tgz", - "integrity": "sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.1", - "cli-cursor": "^3.1.0", - "cli-width": "^3.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", - "lodash": "^4.17.21", - "mute-stream": "0.0.8", - "ora": "^5.4.1", - "run-async": "^2.4.0", - "rxjs": "^7.5.5", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6", - "wrap-ansi": "^7.0.0" - }, - "engines": { - "node": ">=12.0.0" - } - }, - "node_modules/inquirer/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/inquirer/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/inquirer/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/inquirer/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true, - "license": "MIT" - }, - "node_modules/inquirer/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/inquirer/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/into-stream": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/into-stream/-/into-stream-7.0.0.tgz", - "integrity": "sha512-2dYz766i9HprMBasCMvHMuazJ7u4WzhJwo5kb3iPSiW/iRYV6uPari3zHoqZlnuaR7V1bEiNMxikhp37rdBXbw==", - "dev": true, - "license": "MIT", - "dependencies": { - "from2": "^2.3.0", - "p-is-promise": "^3.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", - "dev": true, - "license": "MIT" - }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", - "dev": true, - "license": "MIT", - "optional": true, - "dependencies": { - "binary-extensions": "^2.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/is-core-module": { - "version": "2.16.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", - "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", - "dev": true, - "license": "MIT", - "dependencies": { - "hasown": "^2.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-fullwidth-code-point": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz", - "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-extglob": "^2.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/is-interactive": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", - "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/is-obj": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", - "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/is-plain-obj": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", - "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-unicode-supported": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", - "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/is-utf8": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", - "integrity": "sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==", - "dev": true, - "license": "MIT" - }, - "node_modules/is-windows": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", - "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true, - "license": "ISC" - }, - "node_modules/issue-parser": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/issue-parser/-/issue-parser-6.0.0.tgz", - "integrity": "sha512-zKa/Dxq2lGsBIXQ7CUZWTHfvxPC2ej0KfO7fIPqLlHB9J2hJ7rGhZ5rilhuufylr4RXYPzJUeFjKxz305OsNlA==", - "dev": true, - "license": "MIT", - "dependencies": { - "lodash.capitalize": "^4.2.1", - "lodash.escaperegexp": "^4.1.2", - "lodash.isplainobject": "^4.0.6", - "lodash.isstring": "^4.0.1", - "lodash.uniqby": "^4.7.0" - }, - "engines": { - "node": ">=10.13" - } - }, - "node_modules/java-properties": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/java-properties/-/java-properties-1.0.2.tgz", - "integrity": "sha512-qjdpeo2yKlYTH7nFdK0vbZWuTCesk4o63v5iVOlhMQPfuIZQfW/HI35SjfhA+4qpg36rnFSvUK5b1m+ckIblQQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.6.0" - } - }, - "node_modules/jiti": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/jiti/-/jiti-2.4.2.tgz", - "integrity": "sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==", - "dev": true, - "license": "MIT", - "optional": true, - "bin": { - "jiti": "lib/jiti-cli.mjs" - } - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "license": "MIT" - }, - "node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "license": "MIT", - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/jsesc": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", - "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", - "dev": true, - "license": "MIT", - "bin": { - "jsesc": "bin/jsesc" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/json-parse-better-errors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", - "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", - "dev": true, - "license": "MIT" - }, - "node_modules/json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", - "dev": true, - "license": "MIT" - }, - "node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true, - "license": "MIT", - "optional": true - }, - "node_modules/json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", - "dev": true, - "license": "MIT" - }, - "node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "dev": true, - "license": "MIT", - "bin": { - "json5": "lib/cli.js" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/keyv": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", - "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", - "dev": true, - "license": "MIT", - "dependencies": { - "json-buffer": "3.0.1" - } - }, - "node_modules/levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/lilconfig": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz", - "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/antonk52" - } - }, - "node_modules/lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", - "dev": true, - "license": "MIT" - }, - "node_modules/lint-staged": { - "version": "15.5.1", - "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-15.5.1.tgz", - "integrity": "sha512-6m7u8mue4Xn6wK6gZvSCQwBvMBR36xfY24nF5bMTf2MHDYG6S3yhJuOgdYVw99hsjyDt2d4z168b3naI8+NWtQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "chalk": "^5.4.1", - "commander": "^13.1.0", - "debug": "^4.4.0", - "execa": "^8.0.1", - "lilconfig": "^3.1.3", - "listr2": "^8.2.5", - "micromatch": "^4.0.8", - "pidtree": "^0.6.0", - "string-argv": "^0.3.2", - "yaml": "^2.7.0" - }, - "bin": { - "lint-staged": "bin/lint-staged.js" - }, - "engines": { - "node": ">=18.12.0" - }, - "funding": { - "url": "https://opencollective.com/lint-staged" - } - }, - "node_modules/lint-staged/node_modules/chalk": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.4.1.tgz", - "integrity": "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==", - "dev": true, - "license": "MIT", - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/lint-staged/node_modules/execa": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", - "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", - "dev": true, - "license": "MIT", - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^8.0.1", - "human-signals": "^5.0.0", - "is-stream": "^3.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^5.1.0", - "onetime": "^6.0.0", - "signal-exit": "^4.1.0", - "strip-final-newline": "^3.0.0" - }, - "engines": { - "node": ">=16.17" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/lint-staged/node_modules/get-stream": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", - "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lint-staged/node_modules/human-signals": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", - "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=16.17.0" - } - }, - "node_modules/lint-staged/node_modules/is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", - "dev": true, - "license": "MIT", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lint-staged/node_modules/mimic-fn": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", - "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lint-staged/node_modules/npm-run-path": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz", - "integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "path-key": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lint-staged/node_modules/onetime": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", - "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "mimic-fn": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lint-staged/node_modules/path-key": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", - "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lint-staged/node_modules/signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "dev": true, - "license": "ISC", - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/lint-staged/node_modules/strip-final-newline": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", - "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/listr2": { - "version": "8.3.2", - "resolved": "https://registry.npmjs.org/listr2/-/listr2-8.3.2.tgz", - "integrity": "sha512-vsBzcU4oE+v0lj4FhVLzr9dBTv4/fHIa57l+GCwovP8MoFNZJTOhGU8PXd4v2VJCbECAaijBiHntiekFMLvo0g==", - "dev": true, - "license": "MIT", - "dependencies": { - "cli-truncate": "^4.0.0", - "colorette": "^2.0.20", - "eventemitter3": "^5.0.1", - "log-update": "^6.1.0", - "rfdc": "^1.4.1", - "wrap-ansi": "^9.0.0" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/listr2/node_modules/ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/listr2/node_modules/emoji-regex": { - "version": "10.4.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.4.0.tgz", - "integrity": "sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==", - "dev": true, - "license": "MIT" - }, - "node_modules/listr2/node_modules/string-width": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz", - "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "emoji-regex": "^10.3.0", - "get-east-asian-width": "^1.0.0", - "strip-ansi": "^7.1.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/listr2/node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, - "node_modules/listr2/node_modules/wrap-ansi": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.0.tgz", - "integrity": "sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^6.2.1", - "string-width": "^7.0.0", - "strip-ansi": "^7.1.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/load-json-file": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", - "integrity": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==", - "dev": true, - "license": "MIT", - "dependencies": { - "graceful-fs": "^4.1.2", - "parse-json": "^4.0.0", - "pify": "^3.0.0", - "strip-bom": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/load-json-file/node_modules/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", - "dev": true, - "license": "MIT", - "dependencies": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/load-json-file/node_modules/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, - "license": "MIT", - "dependencies": { - "p-locate": "^5.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash-es": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", - "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.capitalize": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz", - "integrity": "sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.debounce": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.escaperegexp": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz", - "integrity": "sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.isplainobject": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", - "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.isstring": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", - "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.map": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz", - "integrity": "sha512-worNHGKLDetmcEYDvh2stPCrrQRkP20E4l0iIS7F8EvzMqBBi7ltvFN5m1HvTf1P7Jk1txKhvFcmYsCr8O2F1Q==", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/lodash.mergewith": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz", - "integrity": "sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==", - "dev": true, - "license": "MIT", - "optional": true - }, - "node_modules/lodash.uniq": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", - "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", - "dev": true, - "license": "MIT", - "optional": true - }, - "node_modules/lodash.uniqby": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/lodash.uniqby/-/lodash.uniqby-4.7.0.tgz", - "integrity": "sha512-e/zcLx6CSbmaEgFHCA7BnoQKyCtKMxnuWrJygbwPs/AIn+IMKl66L8/s+wBUn5LRw2pZx3bUHibiV1b6aTWIww==", - "dev": true, - "license": "MIT" - }, - "node_modules/log-symbols": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", - "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", - "dev": true, - "license": "MIT", - "dependencies": { - "chalk": "^4.1.0", - "is-unicode-supported": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/log-symbols/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/log-symbols/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/log-symbols/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/log-symbols/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true, - "license": "MIT" - }, - "node_modules/log-symbols/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/log-symbols/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/log-update": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/log-update/-/log-update-6.1.0.tgz", - "integrity": "sha512-9ie8ItPR6tjY5uYJh8K/Zrv/RMZ5VOlOWvtZdEHYSTFKZfIBPQa9tOAEeAWhd+AnIneLJ22w5fjOYtoutpWq5w==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-escapes": "^7.0.0", - "cli-cursor": "^5.0.0", - "slice-ansi": "^7.1.0", - "strip-ansi": "^7.1.0", - "wrap-ansi": "^9.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/log-update/node_modules/ansi-escapes": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-7.0.0.tgz", - "integrity": "sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==", - "dev": true, - "license": "MIT", - "dependencies": { - "environment": "^1.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/log-update/node_modules/ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/log-update/node_modules/cli-cursor": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-5.0.0.tgz", - "integrity": "sha512-aCj4O5wKyszjMmDT4tZj93kxyydN/K5zPWSCe6/0AV/AA1pqe5ZBIw0a2ZfPQV7lL5/yb5HsUreJ6UFAF1tEQw==", - "dev": true, - "license": "MIT", - "dependencies": { - "restore-cursor": "^5.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/log-update/node_modules/emoji-regex": { - "version": "10.4.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.4.0.tgz", - "integrity": "sha512-EC+0oUMY1Rqm4O6LLrgjtYDvcVYTy7chDnM4Q7030tP4Kwj3u/pR6gP9ygnp2CJMK5Gq+9Q2oqmrFJAz01DXjw==", - "dev": true, - "license": "MIT" - }, - "node_modules/log-update/node_modules/is-fullwidth-code-point": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-5.0.0.tgz", - "integrity": "sha512-OVa3u9kkBbw7b8Xw5F9P+D/T9X+Z4+JruYVNapTjPYZYUznQ5YfWeFkOj606XYYW8yugTfC8Pj0hYqvi4ryAhA==", - "dev": true, - "license": "MIT", - "dependencies": { - "get-east-asian-width": "^1.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/log-update/node_modules/onetime": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-7.0.0.tgz", - "integrity": "sha512-VXJjc87FScF88uafS3JllDgvAm+c/Slfz06lorj2uAY34rlUu0Nt+v8wreiImcrgAjjIHp1rXpTDlLOGw29WwQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "mimic-function": "^5.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/log-update/node_modules/restore-cursor": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-5.1.0.tgz", - "integrity": "sha512-oMA2dcrw6u0YfxJQXm342bFKX/E4sG9rbTzO9ptUcR/e8A33cHuvStiYOwH7fszkZlZ1z/ta9AAoPk2F4qIOHA==", - "dev": true, - "license": "MIT", - "dependencies": { - "onetime": "^7.0.0", - "signal-exit": "^4.1.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/log-update/node_modules/signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "dev": true, - "license": "ISC", - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/log-update/node_modules/slice-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-7.1.0.tgz", - "integrity": "sha512-bSiSngZ/jWeX93BqeIAbImyTbEihizcwNjFoRUIY/T1wWQsfsm2Vw1agPKylXvQTU7iASGdHhyqRlqQzfz+Htg==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^6.2.1", - "is-fullwidth-code-point": "^5.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/chalk/slice-ansi?sponsor=1" - } - }, - "node_modules/log-update/node_modules/string-width": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.2.0.tgz", - "integrity": "sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "emoji-regex": "^10.3.0", - "get-east-asian-width": "^1.0.0", - "strip-ansi": "^7.1.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/log-update/node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, - "node_modules/log-update/node_modules/wrap-ansi": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-9.0.0.tgz", - "integrity": "sha512-G8ura3S+3Z2G+mkgNRq8dqaFZAuxfsxpBB8OCTGRTCtp+l/v9nbFNmCUP1BZMts3G1142MsZfn6eeUKrr4PD1Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^6.2.1", - "string-width": "^7.0.0", - "strip-ansi": "^7.1.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/longest": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/longest/-/longest-2.0.1.tgz", - "integrity": "sha512-Ajzxb8CM6WAnFjgiloPsI3bF+WCxcvhdIG3KNA2KN962+tdBsHcuQ4k4qX/EcS/2CRkcc0iAkR956Nib6aXU/Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", - "license": "MIT", - "peer": true, - "dependencies": { - "js-tokens": "^3.0.0 || ^4.0.0" - }, - "bin": { - "loose-envify": "cli.js" - } - }, - "node_modules/lower-case": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", - "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", - "dev": true, - "license": "MIT", - "dependencies": { - "tslib": "^2.0.3" - } - }, - "node_modules/lru-cache": { - "version": "10.4.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", - "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", - "dev": true, - "license": "ISC" - }, - "node_modules/make-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", - "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", - "dev": true, - "license": "MIT", - "dependencies": { - "pify": "^4.0.1", - "semver": "^5.6.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/make-dir/node_modules/pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/make-dir/node_modules/semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/marked": { - "version": "12.0.2", - "resolved": "https://registry.npmjs.org/marked/-/marked-12.0.2.tgz", - "integrity": "sha512-qXUm7e/YKFoqFPYPa3Ukg9xlI5cyAtGmyEIzMfW//m6kXwCy2Ps9DYf5ioijFKQ8qyuscrHoY04iJGctu2Kg0Q==", - "dev": true, - "license": "MIT", - "bin": { - "marked": "bin/marked.js" - }, - "engines": { - "node": ">= 18" - } - }, - "node_modules/marked-terminal": { - "version": "7.3.0", - "resolved": "https://registry.npmjs.org/marked-terminal/-/marked-terminal-7.3.0.tgz", - "integrity": "sha512-t4rBvPsHc57uE/2nJOLmMbZCQ4tgAccAED3ngXQqW6g+TxA488JzJ+FK3lQkzBQOI1mRV/r/Kq+1ZlJ4D0owQw==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-escapes": "^7.0.0", - "ansi-regex": "^6.1.0", - "chalk": "^5.4.1", - "cli-highlight": "^2.1.11", - "cli-table3": "^0.6.5", - "node-emoji": "^2.2.0", - "supports-hyperlinks": "^3.1.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "peerDependencies": { - "marked": ">=1 <16" - } - }, - "node_modules/marked-terminal/node_modules/ansi-escapes": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-7.0.0.tgz", - "integrity": "sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==", - "dev": true, - "license": "MIT", - "dependencies": { - "environment": "^1.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/marked-terminal/node_modules/chalk": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.4.1.tgz", - "integrity": "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==", - "dev": true, - "license": "MIT", - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/mdn-data": { - "version": "2.0.30", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", - "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==", - "dev": true, - "license": "CC0-1.0" - }, - "node_modules/meow": { - "version": "13.2.0", - "resolved": "https://registry.npmjs.org/meow/-/meow-13.2.0.tgz", - "integrity": "sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/merge": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/merge/-/merge-2.1.1.tgz", - "integrity": "sha512-jz+Cfrg9GWOZbQAnDQ4hlVnQky+341Yk5ru8bZSe6sIDTCIg8n9i/u7hSQGSVOF3C7lH6mGtqjkiT9G4wFLL0w==", - "dev": true, - "license": "MIT" - }, - "node_modules/merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "dev": true, - "license": "MIT" - }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 8" - } - }, - "node_modules/micromatch": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", - "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", - "dev": true, - "license": "MIT", - "dependencies": { - "braces": "^3.0.3", - "picomatch": "^2.3.1" - }, - "engines": { - "node": ">=8.6" - } - }, - "node_modules/mime": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/mime/-/mime-4.0.7.tgz", - "integrity": "sha512-2OfDPL+e03E0LrXaGYOtTFIYhiuzep94NSsuhrNULq+stylcJedcHdzHtz0atMUuGwJfFYs0YL5xeC/Ca2x0eQ==", - "dev": true, - "funding": [ - "https://github.com/sponsors/broofa" - ], - "license": "MIT", - "bin": { - "mime": "bin/cli.js" - }, - "engines": { - "node": ">=16" - } - }, - "node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/mimic-function": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/mimic-function/-/mimic-function-5.0.1.tgz", - "integrity": "sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/minimatch": { - "version": "9.0.5", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", - "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", - "dev": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/minimist": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz", - "integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true, - "license": "MIT" - }, - "node_modules/mute-stream": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", - "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", - "dev": true, - "license": "ISC" - }, - "node_modules/mz": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", - "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "any-promise": "^1.0.0", - "object-assign": "^4.0.1", - "thenify-all": "^1.0.0" - } - }, - "node_modules/natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true, - "license": "MIT" - }, - "node_modules/neo-async": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", - "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", - "dev": true, - "license": "MIT" - }, - "node_modules/nerf-dart": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/nerf-dart/-/nerf-dart-1.0.0.tgz", - "integrity": "sha512-EZSPZB70jiVsivaBLYDCyntd5eH8NTSMOn3rB+HxwdmKThGELLdYv8qVIMWvZEFy9w8ZZpW9h9OB32l1rGtj7g==", - "dev": true, - "license": "MIT" - }, - "node_modules/no-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", - "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", - "dev": true, - "license": "MIT", - "dependencies": { - "lower-case": "^2.0.2", - "tslib": "^2.0.3" - } - }, - "node_modules/node-emoji": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-2.2.0.tgz", - "integrity": "sha512-Z3lTE9pLaJF47NyMhd4ww1yFTAP8YhYI8SleJiHzM46Fgpm5cnNzSl9XfzFNqbaz+VlJrIj3fXQ4DeN1Rjm6cw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@sindresorhus/is": "^4.6.0", - "char-regex": "^1.0.2", - "emojilib": "^2.4.0", - "skin-tone": "^2.0.0" - }, - "engines": { - "node": ">=18" - } - }, - "node_modules/node-releases": { - "version": "2.0.19", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", - "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", - "dev": true, - "license": "MIT" - }, - "node_modules/normalize-package-data": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.2.tgz", - "integrity": "sha512-V6gygoYb/5EmNI+MEGrWkC+e6+Rr7mTmfHrxDbLzxQogBkgzo76rkok0Am6thgSF7Mv2nLOajAJj5vDJZEFn7g==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "hosted-git-info": "^7.0.0", - "semver": "^7.3.5", - "validate-npm-package-license": "^3.0.4" - }, - "engines": { - "node": "^16.14.0 || >=18.0.0" - } - }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true, - "license": "MIT", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/normalize-url": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.1.tgz", - "integrity": "sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/npm": { - "version": "10.9.2", - "resolved": "https://registry.npmjs.org/npm/-/npm-10.9.2.tgz", - "integrity": "sha512-iriPEPIkoMYUy3F6f3wwSZAU93E0Eg6cHwIR6jzzOXWSy+SD/rOODEs74cVONHKSx2obXtuUoyidVEhISrisgQ==", - "bundleDependencies": [ - "@isaacs/string-locale-compare", - "@npmcli/arborist", - "@npmcli/config", - "@npmcli/fs", - "@npmcli/map-workspaces", - "@npmcli/package-json", - "@npmcli/promise-spawn", - "@npmcli/redact", - "@npmcli/run-script", - "@sigstore/tuf", - "abbrev", - "archy", - "cacache", - "chalk", - "ci-info", - "cli-columns", - "fastest-levenshtein", - "fs-minipass", - "glob", - "graceful-fs", - "hosted-git-info", - "ini", - "init-package-json", - "is-cidr", - "json-parse-even-better-errors", - "libnpmaccess", - "libnpmdiff", - "libnpmexec", - "libnpmfund", - "libnpmhook", - "libnpmorg", - "libnpmpack", - "libnpmpublish", - "libnpmsearch", - "libnpmteam", - "libnpmversion", - "make-fetch-happen", - "minimatch", - "minipass", - "minipass-pipeline", - "ms", - "node-gyp", - "nopt", - "normalize-package-data", - "npm-audit-report", - "npm-install-checks", - "npm-package-arg", - "npm-pick-manifest", - "npm-profile", - "npm-registry-fetch", - "npm-user-validate", - "p-map", - "pacote", - "parse-conflict-json", - "proc-log", - "qrcode-terminal", - "read", - "semver", - "spdx-expression-parse", - "ssri", - "supports-color", - "tar", - "text-table", - "tiny-relative-date", - "treeverse", - "validate-npm-package-name", - "which", - "write-file-atomic" - ], - "dev": true, - "license": "Artistic-2.0", - "workspaces": [ - "docs", - "smoke-tests", - "mock-globals", - "mock-registry", - "workspaces/*" - ], - "dependencies": { - "@isaacs/string-locale-compare": "^1.1.0", - "@npmcli/arborist": "^8.0.0", - "@npmcli/config": "^9.0.0", - "@npmcli/fs": "^4.0.0", - "@npmcli/map-workspaces": "^4.0.2", - "@npmcli/package-json": "^6.1.0", - "@npmcli/promise-spawn": "^8.0.2", - "@npmcli/redact": "^3.0.0", - "@npmcli/run-script": "^9.0.1", - "@sigstore/tuf": "^3.0.0", - "abbrev": "^3.0.0", - "archy": "~1.0.0", - "cacache": "^19.0.1", - "chalk": "^5.3.0", - "ci-info": "^4.1.0", - "cli-columns": "^4.0.0", - "fastest-levenshtein": "^1.0.16", - "fs-minipass": "^3.0.3", - "glob": "^10.4.5", - "graceful-fs": "^4.2.11", - "hosted-git-info": "^8.0.2", - "ini": "^5.0.0", - "init-package-json": "^7.0.2", - "is-cidr": "^5.1.0", - "json-parse-even-better-errors": "^4.0.0", - "libnpmaccess": "^9.0.0", - "libnpmdiff": "^7.0.0", - "libnpmexec": "^9.0.0", - "libnpmfund": "^6.0.0", - "libnpmhook": "^11.0.0", - "libnpmorg": "^7.0.0", - "libnpmpack": "^8.0.0", - "libnpmpublish": "^10.0.1", - "libnpmsearch": "^8.0.0", - "libnpmteam": "^7.0.0", - "libnpmversion": "^7.0.0", - "make-fetch-happen": "^14.0.3", - "minimatch": "^9.0.5", - "minipass": "^7.1.1", - "minipass-pipeline": "^1.2.4", - "ms": "^2.1.2", - "node-gyp": "^11.0.0", - "nopt": "^8.0.0", - "normalize-package-data": "^7.0.0", - "npm-audit-report": "^6.0.0", - "npm-install-checks": "^7.1.1", - "npm-package-arg": "^12.0.0", - "npm-pick-manifest": "^10.0.0", - "npm-profile": "^11.0.1", - "npm-registry-fetch": "^18.0.2", - "npm-user-validate": "^3.0.0", - "p-map": "^4.0.0", - "pacote": "^19.0.1", - "parse-conflict-json": "^4.0.0", - "proc-log": "^5.0.0", - "qrcode-terminal": "^0.12.0", - "read": "^4.0.0", - "semver": "^7.6.3", - "spdx-expression-parse": "^4.0.0", - "ssri": "^12.0.0", - "supports-color": "^9.4.0", - "tar": "^6.2.1", - "text-table": "~0.2.0", - "tiny-relative-date": "^1.3.0", - "treeverse": "^3.0.0", - "validate-npm-package-name": "^6.0.0", - "which": "^5.0.0", - "write-file-atomic": "^6.0.0" - }, - "bin": { - "npm": "bin/npm-cli.js", - "npx": "bin/npx-cli.js" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dev": true, - "license": "MIT", - "dependencies": { - "path-key": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/@isaacs/cliui": { - "version": "8.0.2", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "string-width": "^5.1.2", - "string-width-cjs": "npm:string-width@^4.2.0", - "strip-ansi": "^7.0.1", - "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", - "wrap-ansi": "^8.1.0", - "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/npm/node_modules/@isaacs/cliui/node_modules/ansi-regex": { - "version": "6.1.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex": { - "version": "9.2.2", - "dev": true, - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/@isaacs/cliui/node_modules/string-width": { - "version": "5.1.2", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/npm/node_modules/@isaacs/cliui/node_modules/strip-ansi": { - "version": "7.1.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, - "node_modules/npm/node_modules/@isaacs/fs-minipass": { - "version": "4.0.1", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "minipass": "^7.0.4" - }, - "engines": { - "node": ">=18.0.0" - } - }, - "node_modules/npm/node_modules/@isaacs/string-locale-compare": { - "version": "1.1.0", - "dev": true, - "inBundle": true, - "license": "ISC" - }, - "node_modules/npm/node_modules/@npmcli/agent": { - "version": "3.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "agent-base": "^7.1.0", - "http-proxy-agent": "^7.0.0", - "https-proxy-agent": "^7.0.1", - "lru-cache": "^10.0.1", - "socks-proxy-agent": "^8.0.3" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/@npmcli/arborist": { - "version": "8.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "@isaacs/string-locale-compare": "^1.1.0", - "@npmcli/fs": "^4.0.0", - "@npmcli/installed-package-contents": "^3.0.0", - "@npmcli/map-workspaces": "^4.0.1", - "@npmcli/metavuln-calculator": "^8.0.0", - "@npmcli/name-from-folder": "^3.0.0", - "@npmcli/node-gyp": "^4.0.0", - "@npmcli/package-json": "^6.0.1", - "@npmcli/query": "^4.0.0", - "@npmcli/redact": "^3.0.0", - "@npmcli/run-script": "^9.0.1", - "bin-links": "^5.0.0", - "cacache": "^19.0.1", - "common-ancestor-path": "^1.0.1", - "hosted-git-info": "^8.0.0", - "json-parse-even-better-errors": "^4.0.0", - "json-stringify-nice": "^1.1.4", - "lru-cache": "^10.2.2", - "minimatch": "^9.0.4", - "nopt": "^8.0.0", - "npm-install-checks": "^7.1.0", - "npm-package-arg": "^12.0.0", - "npm-pick-manifest": "^10.0.0", - "npm-registry-fetch": "^18.0.1", - "pacote": "^19.0.0", - "parse-conflict-json": "^4.0.0", - "proc-log": "^5.0.0", - "proggy": "^3.0.0", - "promise-all-reject-late": "^1.0.0", - "promise-call-limit": "^3.0.1", - "read-package-json-fast": "^4.0.0", - "semver": "^7.3.7", - "ssri": "^12.0.0", - "treeverse": "^3.0.0", - "walk-up-path": "^3.0.1" - }, - "bin": { - "arborist": "bin/index.js" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/@npmcli/config": { - "version": "9.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "@npmcli/map-workspaces": "^4.0.1", - "@npmcli/package-json": "^6.0.1", - "ci-info": "^4.0.0", - "ini": "^5.0.0", - "nopt": "^8.0.0", - "proc-log": "^5.0.0", - "semver": "^7.3.5", - "walk-up-path": "^3.0.1" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/@npmcli/fs": { - "version": "4.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "semver": "^7.3.5" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/@npmcli/git": { - "version": "6.0.1", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "@npmcli/promise-spawn": "^8.0.0", - "ini": "^5.0.0", - "lru-cache": "^10.0.1", - "npm-pick-manifest": "^10.0.0", - "proc-log": "^5.0.0", - "promise-inflight": "^1.0.1", - "promise-retry": "^2.0.1", - "semver": "^7.3.5", - "which": "^5.0.0" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/@npmcli/installed-package-contents": { - "version": "3.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "npm-bundled": "^4.0.0", - "npm-normalize-package-bin": "^4.0.0" - }, - "bin": { - "installed-package-contents": "bin/index.js" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/@npmcli/map-workspaces": { - "version": "4.0.2", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "@npmcli/name-from-folder": "^3.0.0", - "@npmcli/package-json": "^6.0.0", - "glob": "^10.2.2", - "minimatch": "^9.0.0" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/@npmcli/metavuln-calculator": { - "version": "8.0.1", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "cacache": "^19.0.0", - "json-parse-even-better-errors": "^4.0.0", - "pacote": "^20.0.0", - "proc-log": "^5.0.0", - "semver": "^7.3.5" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/@npmcli/metavuln-calculator/node_modules/pacote": { - "version": "20.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "@npmcli/git": "^6.0.0", - "@npmcli/installed-package-contents": "^3.0.0", - "@npmcli/package-json": "^6.0.0", - "@npmcli/promise-spawn": "^8.0.0", - "@npmcli/run-script": "^9.0.0", - "cacache": "^19.0.0", - "fs-minipass": "^3.0.0", - "minipass": "^7.0.2", - "npm-package-arg": "^12.0.0", - "npm-packlist": "^9.0.0", - "npm-pick-manifest": "^10.0.0", - "npm-registry-fetch": "^18.0.0", - "proc-log": "^5.0.0", - "promise-retry": "^2.0.1", - "sigstore": "^3.0.0", - "ssri": "^12.0.0", - "tar": "^6.1.11" - }, - "bin": { - "pacote": "bin/index.js" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/@npmcli/name-from-folder": { - "version": "3.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/@npmcli/node-gyp": { - "version": "4.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/@npmcli/package-json": { - "version": "6.1.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "@npmcli/git": "^6.0.0", - "glob": "^10.2.2", - "hosted-git-info": "^8.0.0", - "json-parse-even-better-errors": "^4.0.0", - "normalize-package-data": "^7.0.0", - "proc-log": "^5.0.0", - "semver": "^7.5.3" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/@npmcli/promise-spawn": { - "version": "8.0.2", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "which": "^5.0.0" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/@npmcli/query": { - "version": "4.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "postcss-selector-parser": "^6.1.2" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/@npmcli/redact": { - "version": "3.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/@npmcli/run-script": { - "version": "9.0.2", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "@npmcli/node-gyp": "^4.0.0", - "@npmcli/package-json": "^6.0.0", - "@npmcli/promise-spawn": "^8.0.0", - "node-gyp": "^11.0.0", - "proc-log": "^5.0.0", - "which": "^5.0.0" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/@pkgjs/parseargs": { - "version": "0.11.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "optional": true, - "engines": { - "node": ">=14" - } - }, - "node_modules/npm/node_modules/@sigstore/protobuf-specs": { - "version": "0.3.2", - "dev": true, - "inBundle": true, - "license": "Apache-2.0", - "engines": { - "node": "^16.14.0 || >=18.0.0" - } - }, - "node_modules/npm/node_modules/@sigstore/tuf": { - "version": "3.0.0", - "dev": true, - "inBundle": true, - "license": "Apache-2.0", - "dependencies": { - "@sigstore/protobuf-specs": "^0.3.2", - "tuf-js": "^3.0.1" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/@tufjs/canonical-json": { - "version": "2.0.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": "^16.14.0 || >=18.0.0" - } - }, - "node_modules/npm/node_modules/abbrev": { - "version": "3.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/agent-base": { - "version": "7.1.1", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "debug": "^4.3.4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/npm/node_modules/aggregate-error": { - "version": "3.1.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/ansi-regex": { - "version": "5.0.1", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/ansi-styles": { - "version": "6.2.1", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/npm/node_modules/aproba": { - "version": "2.0.0", - "dev": true, - "inBundle": true, - "license": "ISC" - }, - "node_modules/npm/node_modules/archy": { - "version": "1.0.0", - "dev": true, - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/balanced-match": { - "version": "1.0.2", - "dev": true, - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/bin-links": { - "version": "5.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "cmd-shim": "^7.0.0", - "npm-normalize-package-bin": "^4.0.0", - "proc-log": "^5.0.0", - "read-cmd-shim": "^5.0.0", - "write-file-atomic": "^6.0.0" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/binary-extensions": { - "version": "2.3.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/npm/node_modules/brace-expansion": { - "version": "2.0.1", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/npm/node_modules/cacache": { - "version": "19.0.1", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "@npmcli/fs": "^4.0.0", - "fs-minipass": "^3.0.0", - "glob": "^10.2.2", - "lru-cache": "^10.0.1", - "minipass": "^7.0.3", - "minipass-collect": "^2.0.1", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "p-map": "^7.0.2", - "ssri": "^12.0.0", - "tar": "^7.4.3", - "unique-filename": "^4.0.0" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/cacache/node_modules/chownr": { - "version": "3.0.0", - "dev": true, - "inBundle": true, - "license": "BlueOak-1.0.0", - "engines": { - "node": ">=18" - } - }, - "node_modules/npm/node_modules/cacache/node_modules/minizlib": { - "version": "3.0.1", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "minipass": "^7.0.4", - "rimraf": "^5.0.5" - }, - "engines": { - "node": ">= 18" - } - }, - "node_modules/npm/node_modules/cacache/node_modules/mkdirp": { - "version": "3.0.1", - "dev": true, - "inBundle": true, - "license": "MIT", - "bin": { - "mkdirp": "dist/cjs/src/bin.js" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/npm/node_modules/cacache/node_modules/p-map": { - "version": "7.0.2", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/npm/node_modules/cacache/node_modules/tar": { - "version": "7.4.3", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "@isaacs/fs-minipass": "^4.0.0", - "chownr": "^3.0.0", - "minipass": "^7.1.2", - "minizlib": "^3.0.1", - "mkdirp": "^3.0.1", - "yallist": "^5.0.0" - }, - "engines": { - "node": ">=18" - } - }, - "node_modules/npm/node_modules/cacache/node_modules/yallist": { - "version": "5.0.0", - "dev": true, - "inBundle": true, - "license": "BlueOak-1.0.0", - "engines": { - "node": ">=18" - } - }, - "node_modules/npm/node_modules/chalk": { - "version": "5.3.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/npm/node_modules/chownr": { - "version": "2.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "engines": { - "node": ">=10" - } - }, - "node_modules/npm/node_modules/ci-info": { - "version": "4.1.0", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/sibiraj-s" - } - ], - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/cidr-regex": { - "version": "4.1.1", - "dev": true, - "inBundle": true, - "license": "BSD-2-Clause", - "dependencies": { - "ip-regex": "^5.0.0" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/npm/node_modules/clean-stack": { - "version": "2.2.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/npm/node_modules/cli-columns": { - "version": "4.0.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/npm/node_modules/cmd-shim": { - "version": "7.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/color-convert": { - "version": "2.0.1", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/npm/node_modules/color-name": { - "version": "1.1.4", - "dev": true, - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/common-ancestor-path": { - "version": "1.0.1", - "dev": true, - "inBundle": true, - "license": "ISC" - }, - "node_modules/npm/node_modules/cross-spawn": { - "version": "7.0.6", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/npm/node_modules/cross-spawn/node_modules/which": { - "version": "2.0.2", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/npm/node_modules/cssesc": { - "version": "3.0.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "bin": { - "cssesc": "bin/cssesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/npm/node_modules/debug": { - "version": "4.3.7", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "ms": "^2.1.3" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/npm/node_modules/diff": { - "version": "5.2.0", - "dev": true, - "inBundle": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.3.1" - } - }, - "node_modules/npm/node_modules/eastasianwidth": { - "version": "0.2.0", - "dev": true, - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/emoji-regex": { - "version": "8.0.0", - "dev": true, - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/encoding": { - "version": "0.1.13", - "dev": true, - "inBundle": true, - "license": "MIT", - "optional": true, - "dependencies": { - "iconv-lite": "^0.6.2" - } - }, - "node_modules/npm/node_modules/env-paths": { - "version": "2.2.1", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/npm/node_modules/err-code": { - "version": "2.0.3", - "dev": true, - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/exponential-backoff": { - "version": "3.1.1", - "dev": true, - "inBundle": true, - "license": "Apache-2.0" - }, - "node_modules/npm/node_modules/fastest-levenshtein": { - "version": "1.0.16", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">= 4.9.1" - } - }, - "node_modules/npm/node_modules/foreground-child": { - "version": "3.3.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "cross-spawn": "^7.0.0", - "signal-exit": "^4.0.1" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/npm/node_modules/fs-minipass": { - "version": "3.0.3", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "minipass": "^7.0.3" - }, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/npm/node_modules/glob": { - "version": "10.4.5", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "foreground-child": "^3.1.0", - "jackspeak": "^3.1.2", - "minimatch": "^9.0.4", - "minipass": "^7.1.2", - "package-json-from-dist": "^1.0.0", - "path-scurry": "^1.11.1" - }, - "bin": { - "glob": "dist/esm/bin.mjs" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/npm/node_modules/graceful-fs": { - "version": "4.2.11", - "dev": true, - "inBundle": true, - "license": "ISC" - }, - "node_modules/npm/node_modules/hosted-git-info": { - "version": "8.0.2", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "lru-cache": "^10.0.1" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/http-cache-semantics": { - "version": "4.1.1", - "dev": true, - "inBundle": true, - "license": "BSD-2-Clause" - }, - "node_modules/npm/node_modules/http-proxy-agent": { - "version": "7.0.2", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "agent-base": "^7.1.0", - "debug": "^4.3.4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/npm/node_modules/https-proxy-agent": { - "version": "7.0.5", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "agent-base": "^7.0.2", - "debug": "4" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/npm/node_modules/iconv-lite": { - "version": "0.6.3", - "dev": true, - "inBundle": true, - "license": "MIT", - "optional": true, - "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/npm/node_modules/ignore-walk": { - "version": "7.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "minimatch": "^9.0.0" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/imurmurhash": { - "version": "0.1.4", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">=0.8.19" - } - }, - "node_modules/npm/node_modules/indent-string": { - "version": "4.0.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/ini": { - "version": "5.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/init-package-json": { - "version": "7.0.2", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "@npmcli/package-json": "^6.0.0", - "npm-package-arg": "^12.0.0", - "promzard": "^2.0.0", - "read": "^4.0.0", - "semver": "^7.3.5", - "validate-npm-package-license": "^3.0.4", - "validate-npm-package-name": "^6.0.0" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/ip-address": { - "version": "9.0.5", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "jsbn": "1.1.0", - "sprintf-js": "^1.1.3" - }, - "engines": { - "node": ">= 12" - } - }, - "node_modules/npm/node_modules/ip-regex": { - "version": "5.0.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/npm/node_modules/is-cidr": { - "version": "5.1.0", - "dev": true, - "inBundle": true, - "license": "BSD-2-Clause", - "dependencies": { - "cidr-regex": "^4.1.1" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/npm/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/isexe": { - "version": "2.0.0", - "dev": true, - "inBundle": true, - "license": "ISC" - }, - "node_modules/npm/node_modules/jackspeak": { - "version": "3.4.3", - "dev": true, - "inBundle": true, - "license": "BlueOak-1.0.0", - "dependencies": { - "@isaacs/cliui": "^8.0.2" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - }, - "optionalDependencies": { - "@pkgjs/parseargs": "^0.11.0" - } - }, - "node_modules/npm/node_modules/jsbn": { - "version": "1.1.0", - "dev": true, - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/json-parse-even-better-errors": { - "version": "4.0.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/json-stringify-nice": { - "version": "1.1.4", - "dev": true, - "inBundle": true, - "license": "ISC", - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/npm/node_modules/jsonparse": { - "version": "1.3.1", - "dev": true, - "engines": [ - "node >= 0.2.0" - ], - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/just-diff": { - "version": "6.0.2", - "dev": true, - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/just-diff-apply": { - "version": "5.5.0", - "dev": true, - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/libnpmaccess": { - "version": "9.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "npm-package-arg": "^12.0.0", - "npm-registry-fetch": "^18.0.1" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/libnpmdiff": { - "version": "7.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "@npmcli/arborist": "^8.0.0", - "@npmcli/installed-package-contents": "^3.0.0", - "binary-extensions": "^2.3.0", - "diff": "^5.1.0", - "minimatch": "^9.0.4", - "npm-package-arg": "^12.0.0", - "pacote": "^19.0.0", - "tar": "^6.2.1" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/libnpmexec": { - "version": "9.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "@npmcli/arborist": "^8.0.0", - "@npmcli/run-script": "^9.0.1", - "ci-info": "^4.0.0", - "npm-package-arg": "^12.0.0", - "pacote": "^19.0.0", - "proc-log": "^5.0.0", - "read": "^4.0.0", - "read-package-json-fast": "^4.0.0", - "semver": "^7.3.7", - "walk-up-path": "^3.0.1" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/libnpmfund": { - "version": "6.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "@npmcli/arborist": "^8.0.0" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/libnpmhook": { - "version": "11.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "aproba": "^2.0.0", - "npm-registry-fetch": "^18.0.1" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/libnpmorg": { - "version": "7.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "aproba": "^2.0.0", - "npm-registry-fetch": "^18.0.1" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/libnpmpack": { - "version": "8.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "@npmcli/arborist": "^8.0.0", - "@npmcli/run-script": "^9.0.1", - "npm-package-arg": "^12.0.0", - "pacote": "^19.0.0" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/libnpmpublish": { - "version": "10.0.1", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "ci-info": "^4.0.0", - "normalize-package-data": "^7.0.0", - "npm-package-arg": "^12.0.0", - "npm-registry-fetch": "^18.0.1", - "proc-log": "^5.0.0", - "semver": "^7.3.7", - "sigstore": "^3.0.0", - "ssri": "^12.0.0" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/libnpmsearch": { - "version": "8.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "npm-registry-fetch": "^18.0.1" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/libnpmteam": { - "version": "7.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "aproba": "^2.0.0", - "npm-registry-fetch": "^18.0.1" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/libnpmversion": { - "version": "7.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "@npmcli/git": "^6.0.1", - "@npmcli/run-script": "^9.0.1", - "json-parse-even-better-errors": "^4.0.0", - "proc-log": "^5.0.0", - "semver": "^7.3.7" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/lru-cache": { - "version": "10.4.3", - "dev": true, - "inBundle": true, - "license": "ISC" - }, - "node_modules/npm/node_modules/make-fetch-happen": { - "version": "14.0.3", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "@npmcli/agent": "^3.0.0", - "cacache": "^19.0.1", - "http-cache-semantics": "^4.1.1", - "minipass": "^7.0.2", - "minipass-fetch": "^4.0.0", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "negotiator": "^1.0.0", - "proc-log": "^5.0.0", - "promise-retry": "^2.0.1", - "ssri": "^12.0.0" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/make-fetch-happen/node_modules/negotiator": { - "version": "1.0.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/npm/node_modules/minimatch": { - "version": "9.0.5", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/npm/node_modules/minipass": { - "version": "7.1.2", - "dev": true, - "inBundle": true, - "license": "ISC", - "engines": { - "node": ">=16 || 14 >=14.17" - } - }, - "node_modules/npm/node_modules/minipass-collect": { - "version": "2.0.1", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "minipass": "^7.0.3" - }, - "engines": { - "node": ">=16 || 14 >=14.17" - } - }, - "node_modules/npm/node_modules/minipass-fetch": { - "version": "4.0.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "minipass": "^7.0.3", - "minipass-sized": "^1.0.3", - "minizlib": "^3.0.1" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - }, - "optionalDependencies": { - "encoding": "^0.1.13" - } - }, - "node_modules/npm/node_modules/minipass-fetch/node_modules/minizlib": { - "version": "3.0.1", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "minipass": "^7.0.4", - "rimraf": "^5.0.5" - }, - "engines": { - "node": ">= 18" - } - }, - "node_modules/npm/node_modules/minipass-flush": { - "version": "1.0.5", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/npm/node_modules/minipass-flush/node_modules/minipass": { - "version": "3.3.6", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/minipass-pipeline": { - "version": "1.2.4", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/minipass-pipeline/node_modules/minipass": { - "version": "3.3.6", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/minipass-sized": { - "version": "1.0.3", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/minipass-sized/node_modules/minipass": { - "version": "3.3.6", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/minizlib": { - "version": "2.1.2", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/npm/node_modules/minizlib/node_modules/minipass": { - "version": "3.3.6", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/mkdirp": { - "version": "1.0.4", - "dev": true, - "inBundle": true, - "license": "MIT", - "bin": { - "mkdirp": "bin/cmd.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/npm/node_modules/ms": { - "version": "2.1.3", - "dev": true, - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/mute-stream": { - "version": "2.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/node-gyp": { - "version": "11.0.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "env-paths": "^2.2.0", - "exponential-backoff": "^3.1.1", - "glob": "^10.3.10", - "graceful-fs": "^4.2.6", - "make-fetch-happen": "^14.0.3", - "nopt": "^8.0.0", - "proc-log": "^5.0.0", - "semver": "^7.3.5", - "tar": "^7.4.3", - "which": "^5.0.0" - }, - "bin": { - "node-gyp": "bin/node-gyp.js" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/node-gyp/node_modules/chownr": { - "version": "3.0.0", - "dev": true, - "inBundle": true, - "license": "BlueOak-1.0.0", - "engines": { - "node": ">=18" - } - }, - "node_modules/npm/node_modules/node-gyp/node_modules/minizlib": { - "version": "3.0.1", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "minipass": "^7.0.4", - "rimraf": "^5.0.5" - }, - "engines": { - "node": ">= 18" - } - }, - "node_modules/npm/node_modules/node-gyp/node_modules/mkdirp": { - "version": "3.0.1", - "dev": true, - "inBundle": true, - "license": "MIT", - "bin": { - "mkdirp": "dist/cjs/src/bin.js" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/npm/node_modules/node-gyp/node_modules/tar": { - "version": "7.4.3", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "@isaacs/fs-minipass": "^4.0.0", - "chownr": "^3.0.0", - "minipass": "^7.1.2", - "minizlib": "^3.0.1", - "mkdirp": "^3.0.1", - "yallist": "^5.0.0" - }, - "engines": { - "node": ">=18" - } - }, - "node_modules/npm/node_modules/node-gyp/node_modules/yallist": { - "version": "5.0.0", - "dev": true, - "inBundle": true, - "license": "BlueOak-1.0.0", - "engines": { - "node": ">=18" - } - }, - "node_modules/npm/node_modules/nopt": { - "version": "8.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "abbrev": "^2.0.0" - }, - "bin": { - "nopt": "bin/nopt.js" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/nopt/node_modules/abbrev": { - "version": "2.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/npm/node_modules/normalize-package-data": { - "version": "7.0.0", - "dev": true, - "inBundle": true, - "license": "BSD-2-Clause", - "dependencies": { - "hosted-git-info": "^8.0.0", - "semver": "^7.3.5", - "validate-npm-package-license": "^3.0.4" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/npm-audit-report": { - "version": "6.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/npm-bundled": { - "version": "4.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "npm-normalize-package-bin": "^4.0.0" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/npm-install-checks": { - "version": "7.1.1", - "dev": true, - "inBundle": true, - "license": "BSD-2-Clause", - "dependencies": { - "semver": "^7.1.1" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/npm-normalize-package-bin": { - "version": "4.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/npm-package-arg": { - "version": "12.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "hosted-git-info": "^8.0.0", - "proc-log": "^5.0.0", - "semver": "^7.3.5", - "validate-npm-package-name": "^6.0.0" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/npm-packlist": { - "version": "9.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "ignore-walk": "^7.0.0" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/npm-pick-manifest": { - "version": "10.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "npm-install-checks": "^7.1.0", - "npm-normalize-package-bin": "^4.0.0", - "npm-package-arg": "^12.0.0", - "semver": "^7.3.5" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/npm-profile": { - "version": "11.0.1", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "npm-registry-fetch": "^18.0.0", - "proc-log": "^5.0.0" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/npm-registry-fetch": { - "version": "18.0.2", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "@npmcli/redact": "^3.0.0", - "jsonparse": "^1.3.1", - "make-fetch-happen": "^14.0.0", - "minipass": "^7.0.2", - "minipass-fetch": "^4.0.0", - "minizlib": "^3.0.1", - "npm-package-arg": "^12.0.0", - "proc-log": "^5.0.0" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/npm-registry-fetch/node_modules/minizlib": { - "version": "3.0.1", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "minipass": "^7.0.4", - "rimraf": "^5.0.5" - }, - "engines": { - "node": ">= 18" - } - }, - "node_modules/npm/node_modules/npm-user-validate": { - "version": "3.0.0", - "dev": true, - "inBundle": true, - "license": "BSD-2-Clause", - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/p-map": { - "version": "4.0.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "aggregate-error": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/npm/node_modules/package-json-from-dist": { - "version": "1.0.1", - "dev": true, - "inBundle": true, - "license": "BlueOak-1.0.0" - }, - "node_modules/npm/node_modules/pacote": { - "version": "19.0.1", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "@npmcli/git": "^6.0.0", - "@npmcli/installed-package-contents": "^3.0.0", - "@npmcli/package-json": "^6.0.0", - "@npmcli/promise-spawn": "^8.0.0", - "@npmcli/run-script": "^9.0.0", - "cacache": "^19.0.0", - "fs-minipass": "^3.0.0", - "minipass": "^7.0.2", - "npm-package-arg": "^12.0.0", - "npm-packlist": "^9.0.0", - "npm-pick-manifest": "^10.0.0", - "npm-registry-fetch": "^18.0.0", - "proc-log": "^5.0.0", - "promise-retry": "^2.0.1", - "sigstore": "^3.0.0", - "ssri": "^12.0.0", - "tar": "^6.1.11" - }, - "bin": { - "pacote": "bin/index.js" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/parse-conflict-json": { - "version": "4.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "json-parse-even-better-errors": "^4.0.0", - "just-diff": "^6.0.0", - "just-diff-apply": "^5.2.0" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/path-key": { - "version": "3.1.1", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/path-scurry": { - "version": "1.11.1", - "dev": true, - "inBundle": true, - "license": "BlueOak-1.0.0", - "dependencies": { - "lru-cache": "^10.2.0", - "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" - }, - "engines": { - "node": ">=16 || 14 >=14.18" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/npm/node_modules/postcss-selector-parser": { - "version": "6.1.2", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/npm/node_modules/proc-log": { - "version": "5.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/proggy": { - "version": "3.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/promise-all-reject-late": { - "version": "1.0.1", - "dev": true, - "inBundle": true, - "license": "ISC", - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/npm/node_modules/promise-call-limit": { - "version": "3.0.2", - "dev": true, - "inBundle": true, - "license": "ISC", - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/npm/node_modules/promise-inflight": { - "version": "1.0.1", - "dev": true, - "inBundle": true, - "license": "ISC" - }, - "node_modules/npm/node_modules/promise-retry": { - "version": "2.0.1", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "err-code": "^2.0.2", - "retry": "^0.12.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/npm/node_modules/promzard": { - "version": "2.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "read": "^4.0.0" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/qrcode-terminal": { - "version": "0.12.0", - "dev": true, - "inBundle": true, - "bin": { - "qrcode-terminal": "bin/qrcode-terminal.js" - } - }, - "node_modules/npm/node_modules/read": { - "version": "4.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "mute-stream": "^2.0.0" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/read-cmd-shim": { - "version": "5.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/read-package-json-fast": { - "version": "4.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "json-parse-even-better-errors": "^4.0.0", - "npm-normalize-package-bin": "^4.0.0" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/retry": { - "version": "0.12.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">= 4" - } - }, - "node_modules/npm/node_modules/rimraf": { - "version": "5.0.10", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "glob": "^10.3.7" - }, - "bin": { - "rimraf": "dist/esm/bin.mjs" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/npm/node_modules/safer-buffer": { - "version": "2.1.2", - "dev": true, - "inBundle": true, - "license": "MIT", - "optional": true - }, - "node_modules/npm/node_modules/semver": { - "version": "7.6.3", - "dev": true, - "inBundle": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/npm/node_modules/shebang-command": { - "version": "2.0.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/shebang-regex": { - "version": "3.0.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/signal-exit": { - "version": "4.1.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/npm/node_modules/sigstore": { - "version": "3.0.0", - "dev": true, - "inBundle": true, - "license": "Apache-2.0", - "dependencies": { - "@sigstore/bundle": "^3.0.0", - "@sigstore/core": "^2.0.0", - "@sigstore/protobuf-specs": "^0.3.2", - "@sigstore/sign": "^3.0.0", - "@sigstore/tuf": "^3.0.0", - "@sigstore/verify": "^2.0.0" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/sigstore/node_modules/@sigstore/bundle": { - "version": "3.0.0", - "dev": true, - "inBundle": true, - "license": "Apache-2.0", - "dependencies": { - "@sigstore/protobuf-specs": "^0.3.2" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/sigstore/node_modules/@sigstore/core": { - "version": "2.0.0", - "dev": true, - "inBundle": true, - "license": "Apache-2.0", - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/sigstore/node_modules/@sigstore/sign": { - "version": "3.0.0", - "dev": true, - "inBundle": true, - "license": "Apache-2.0", - "dependencies": { - "@sigstore/bundle": "^3.0.0", - "@sigstore/core": "^2.0.0", - "@sigstore/protobuf-specs": "^0.3.2", - "make-fetch-happen": "^14.0.1", - "proc-log": "^5.0.0", - "promise-retry": "^2.0.1" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/sigstore/node_modules/@sigstore/verify": { - "version": "2.0.0", - "dev": true, - "inBundle": true, - "license": "Apache-2.0", - "dependencies": { - "@sigstore/bundle": "^3.0.0", - "@sigstore/core": "^2.0.0", - "@sigstore/protobuf-specs": "^0.3.2" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/smart-buffer": { - "version": "4.2.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">= 6.0.0", - "npm": ">= 3.0.0" - } - }, - "node_modules/npm/node_modules/socks": { - "version": "2.8.3", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "ip-address": "^9.0.5", - "smart-buffer": "^4.2.0" - }, - "engines": { - "node": ">= 10.0.0", - "npm": ">= 3.0.0" - } - }, - "node_modules/npm/node_modules/socks-proxy-agent": { - "version": "8.0.4", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "agent-base": "^7.1.1", - "debug": "^4.3.4", - "socks": "^2.8.3" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/npm/node_modules/spdx-correct": { - "version": "3.2.0", - "dev": true, - "inBundle": true, - "license": "Apache-2.0", - "dependencies": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" - } - }, - "node_modules/npm/node_modules/spdx-correct/node_modules/spdx-expression-parse": { - "version": "3.0.1", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" - } - }, - "node_modules/npm/node_modules/spdx-exceptions": { - "version": "2.5.0", - "dev": true, - "inBundle": true, - "license": "CC-BY-3.0" - }, - "node_modules/npm/node_modules/spdx-expression-parse": { - "version": "4.0.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" - } - }, - "node_modules/npm/node_modules/spdx-license-ids": { - "version": "3.0.20", - "dev": true, - "inBundle": true, - "license": "CC0-1.0" - }, - "node_modules/npm/node_modules/sprintf-js": { - "version": "1.1.3", - "dev": true, - "inBundle": true, - "license": "BSD-3-Clause" - }, - "node_modules/npm/node_modules/ssri": { - "version": "12.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "minipass": "^7.0.3" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/string-width": { - "version": "4.2.3", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/string-width-cjs": { - "name": "string-width", - "version": "4.2.3", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/strip-ansi": { - "version": "6.0.1", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/strip-ansi-cjs": { - "name": "strip-ansi", - "version": "6.0.1", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/supports-color": { - "version": "9.4.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, - "node_modules/npm/node_modules/tar": { - "version": "6.2.1", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "minipass": "^5.0.0", - "minizlib": "^2.1.1", - "mkdirp": "^1.0.3", - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/npm/node_modules/tar/node_modules/fs-minipass": { - "version": "2.1.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/npm/node_modules/tar/node_modules/fs-minipass/node_modules/minipass": { - "version": "3.3.6", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/tar/node_modules/minipass": { - "version": "5.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "engines": { - "node": ">=8" - } - }, - "node_modules/npm/node_modules/text-table": { - "version": "0.2.0", - "dev": true, - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/tiny-relative-date": { - "version": "1.3.0", - "dev": true, - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/treeverse": { - "version": "3.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/npm/node_modules/tuf-js": { - "version": "3.0.1", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "@tufjs/models": "3.0.1", - "debug": "^4.3.6", - "make-fetch-happen": "^14.0.1" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/tuf-js/node_modules/@tufjs/models": { - "version": "3.0.1", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "@tufjs/canonical-json": "2.0.0", - "minimatch": "^9.0.5" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/unique-filename": { - "version": "4.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "unique-slug": "^5.0.0" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/unique-slug": { - "version": "5.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "imurmurhash": "^0.1.4" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/util-deprecate": { - "version": "1.0.2", - "dev": true, - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/validate-npm-package-license": { - "version": "3.0.4", - "dev": true, - "inBundle": true, - "license": "Apache-2.0", - "dependencies": { - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0" - } - }, - "node_modules/npm/node_modules/validate-npm-package-license/node_modules/spdx-expression-parse": { - "version": "3.0.1", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" - } - }, - "node_modules/npm/node_modules/validate-npm-package-name": { - "version": "6.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/walk-up-path": { - "version": "3.0.1", - "dev": true, - "inBundle": true, - "license": "ISC" - }, - "node_modules/npm/node_modules/which": { - "version": "5.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "isexe": "^3.1.1" - }, - "bin": { - "node-which": "bin/which.js" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/which/node_modules/isexe": { - "version": "3.1.1", - "dev": true, - "inBundle": true, - "license": "ISC", - "engines": { - "node": ">=16" - } - }, - "node_modules/npm/node_modules/wrap-ansi": { - "version": "8.1.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^6.1.0", - "string-width": "^5.0.1", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/npm/node_modules/wrap-ansi-cjs": { - "name": "wrap-ansi", - "version": "7.0.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { - "version": "4.3.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/npm/node_modules/wrap-ansi/node_modules/ansi-regex": { - "version": "6.1.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" - } - }, - "node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex": { - "version": "9.2.2", - "dev": true, - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/wrap-ansi/node_modules/string-width": { - "version": "5.1.2", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/npm/node_modules/wrap-ansi/node_modules/strip-ansi": { - "version": "7.1.0", - "dev": true, - "inBundle": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, - "node_modules/npm/node_modules/write-file-atomic": { - "version": "6.0.0", - "dev": true, - "inBundle": true, - "license": "ISC", - "dependencies": { - "imurmurhash": "^0.1.4", - "signal-exit": "^4.0.1" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/npm/node_modules/yallist": { - "version": "4.0.0", - "dev": true, - "inBundle": true, - "license": "ISC" - }, - "node_modules/nth-check": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", - "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "boolbase": "^1.0.0" - }, - "funding": { - "url": "https://github.com/fb55/nth-check?sponsor=1" - } - }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dev": true, - "license": "ISC", - "dependencies": { - "wrappy": "1" - } - }, - "node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dev": true, - "license": "MIT", - "dependencies": { - "mimic-fn": "^2.1.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/optionator": { - "version": "0.9.4", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", - "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", - "dev": true, - "license": "MIT", - "dependencies": { - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0", - "word-wrap": "^1.2.5" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/ora": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", - "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "bl": "^4.1.0", - "chalk": "^4.1.0", - "cli-cursor": "^3.1.0", - "cli-spinners": "^2.5.0", - "is-interactive": "^1.0.0", - "is-unicode-supported": "^0.1.0", - "log-symbols": "^4.1.0", - "strip-ansi": "^6.0.0", - "wcwidth": "^1.0.1" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ora/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/ora/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/ora/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/ora/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true, - "license": "MIT" - }, - "node_modules/ora/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/ora/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/p-each-series": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-3.0.0.tgz", - "integrity": "sha512-lastgtAdoH9YaLyDa5i5z64q+kzOcQHsQ5SsZJD3q0VEyI8mq872S3geuNbRUQLVAE9siMfgKrpj7MloKFHruw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-filter": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-filter/-/p-filter-4.1.0.tgz", - "integrity": "sha512-37/tPdZ3oJwHaS3gNJdenCDB3Tz26i9sjhnguBtvN0vYlRIiDNnvTWkuh+0hETV9rLPdJ3rlL3yVOYPIAnM8rw==", - "dev": true, - "license": "MIT", - "dependencies": { - "p-map": "^7.0.1" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-is-promise": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-3.0.0.tgz", - "integrity": "sha512-Wo8VsW4IRQSKVXsJCn7TomUaVtyfjVDn3nUP7kE967BQk0CwFpdbZs0X0uk5sW9mkBa9eNM7hCMaG93WUAwxYQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dev": true, - "license": "MIT", - "dependencies": { - "p-limit": "^3.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-map": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-7.0.3.tgz", - "integrity": "sha512-VkndIv2fIB99swvQoA65bm+fsmt6UNdGeIB0oxBs+WhAhdh08QA04JXpI7rbB9r08/nkbysKoya9rtDERYOYMA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-reduce": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-2.1.0.tgz", - "integrity": "sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/p-try": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", - "integrity": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", - "dev": true, - "license": "MIT", - "dependencies": { - "callsites": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/parse-ms": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-4.0.0.tgz", - "integrity": "sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/parse-passwd": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", - "integrity": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/parse5": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-5.1.1.tgz", - "integrity": "sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==", - "dev": true, - "license": "MIT" - }, - "node_modules/parse5-htmlparser2-tree-adapter": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz", - "integrity": "sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==", - "dev": true, - "license": "MIT", - "dependencies": { - "parse5": "^6.0.1" - } - }, - "node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", - "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", - "dev": true, - "license": "MIT" - }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - "dev": true, - "license": "MIT" - }, - "node_modules/path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/picocolors": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", - "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", - "dev": true, - "license": "ISC" - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" - } - }, - "node_modules/pidtree": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.6.0.tgz", - "integrity": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==", - "dev": true, - "license": "MIT", - "bin": { - "pidtree": "bin/pidtree.js" - }, - "engines": { - "node": ">=0.10" - } - }, - "node_modules/pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/pkg-conf": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-2.1.0.tgz", - "integrity": "sha512-C+VUP+8jis7EsQZIhDYmS5qlNtjv2yP4SNtjXK9AP1ZcTRlnSfuumaTnRfYZnYgUUYVIKqL0fRvmUGDV2fmp6g==", - "dev": true, - "license": "MIT", - "dependencies": { - "find-up": "^2.0.0", - "load-json-file": "^4.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/pkg-conf/node_modules/find-up": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", - "integrity": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "locate-path": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/pkg-conf/node_modules/locate-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", - "integrity": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==", - "dev": true, - "license": "MIT", - "dependencies": { - "p-locate": "^2.0.0", - "path-exists": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/pkg-conf/node_modules/p-limit": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", - "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "p-try": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/pkg-conf/node_modules/p-locate": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", - "integrity": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==", - "dev": true, - "license": "MIT", - "dependencies": { - "p-limit": "^1.1.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/pkg-conf/node_modules/path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/prettier": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.5.3.tgz", - "integrity": "sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==", - "dev": true, - "license": "MIT", - "bin": { - "prettier": "bin/prettier.cjs" - }, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/prettier/prettier?sponsor=1" - } - }, - "node_modules/prettier-linter-helpers": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", - "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", - "dev": true, - "license": "MIT", - "dependencies": { - "fast-diff": "^1.1.2" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/pretty-ms": { - "version": "9.2.0", - "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-9.2.0.tgz", - "integrity": "sha512-4yf0QO/sllf/1zbZWYnvWw3NxCQwLXKzIj0G849LSufP15BXKM0rbD2Z3wVnkMfjdn/CB0Dpp444gYAACdsplg==", - "dev": true, - "license": "MIT", - "dependencies": { - "parse-ms": "^4.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", - "dev": true, - "license": "MIT" - }, - "node_modules/proto-list": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", - "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==", - "dev": true, - "license": "ISC" - }, - "node_modules/punycode": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", - "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT" - }, - "node_modules/rc": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", - "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", - "dev": true, - "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", - "dependencies": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" - }, - "bin": { - "rc": "cli.js" - } - }, - "node_modules/rc/node_modules/ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", - "dev": true, - "license": "ISC" - }, - "node_modules/rc/node_modules/strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/react": { - "version": "18.3.1", - "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", - "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", - "license": "MIT", - "peer": true, - "dependencies": { - "loose-envify": "^1.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/read-package-up": { - "version": "11.0.0", - "resolved": "https://registry.npmjs.org/read-package-up/-/read-package-up-11.0.0.tgz", - "integrity": "sha512-MbgfoNPANMdb4oRBNg5eqLbB2t2r+o5Ua1pNt8BqGp4I0FJZhuVSOj3PaBPni4azWuSzEdNn2evevzVmEk1ohQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "find-up-simple": "^1.0.0", - "read-pkg": "^9.0.0", - "type-fest": "^4.6.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/read-package-up/node_modules/type-fest": { - "version": "4.40.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.40.0.tgz", - "integrity": "sha512-ABHZ2/tS2JkvH1PEjxFDTUWC8dB5OsIGZP4IFLhR293GqT5Y5qB1WwL2kMPYhQW9DVgVD8Hd7I8gjwPIf5GFkw==", - "dev": true, - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/read-pkg": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-9.0.1.tgz", - "integrity": "sha512-9viLL4/n1BJUCT1NXVTdS1jtm80yDEgR5T4yCelII49Mbj0v1rZdKqj7zCiYdbB0CuCgdrvHcNogAKTFPBocFA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@types/normalize-package-data": "^2.4.3", - "normalize-package-data": "^6.0.0", - "parse-json": "^8.0.0", - "type-fest": "^4.6.0", - "unicorn-magic": "^0.1.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/read-pkg/node_modules/parse-json": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-8.3.0.tgz", - "integrity": "sha512-ybiGyvspI+fAoRQbIPRddCcSTV9/LsJbf0e/S85VLowVGzRmokfneg2kwVW/KU5rOXrPSbF1qAKPMgNTqqROQQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/code-frame": "^7.26.2", - "index-to-position": "^1.1.0", - "type-fest": "^4.39.1" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/read-pkg/node_modules/type-fest": { - "version": "4.40.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.40.0.tgz", - "integrity": "sha512-ABHZ2/tS2JkvH1PEjxFDTUWC8dB5OsIGZP4IFLhR293GqT5Y5qB1WwL2kMPYhQW9DVgVD8Hd7I8gjwPIf5GFkw==", - "dev": true, - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dev": true, - "license": "MIT", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", - "dev": true, - "license": "MIT", - "optional": true, - "dependencies": { - "picomatch": "^2.2.1" - }, - "engines": { - "node": ">=8.10.0" - } - }, - "node_modules/regenerate": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", - "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", - "dev": true, - "license": "MIT" - }, - "node_modules/regenerate-unicode-properties": { - "version": "10.2.0", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.0.tgz", - "integrity": "sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==", - "dev": true, - "license": "MIT", - "dependencies": { - "regenerate": "^1.4.2" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/regenerator-runtime": { - "version": "0.14.1", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", - "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", - "dev": true, - "license": "MIT" - }, - "node_modules/regenerator-transform": { - "version": "0.15.2", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", - "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@babel/runtime": "^7.8.4" - } - }, - "node_modules/regexpu-core": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.2.0.tgz", - "integrity": "sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==", - "dev": true, - "license": "MIT", - "dependencies": { - "regenerate": "^1.4.2", - "regenerate-unicode-properties": "^10.2.0", - "regjsgen": "^0.8.0", - "regjsparser": "^0.12.0", - "unicode-match-property-ecmascript": "^2.0.0", - "unicode-match-property-value-ecmascript": "^2.1.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/registry-auth-token": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-5.1.0.tgz", - "integrity": "sha512-GdekYuwLXLxMuFTwAPg5UKGLW/UXzQrZvH/Zj791BQif5T05T0RsaLfHc9q3ZOKi7n+BoprPD9mJ0O0k4xzUlw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@pnpm/npm-conf": "^2.1.0" - }, - "engines": { - "node": ">=14" - } - }, - "node_modules/regjsgen": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.8.0.tgz", - "integrity": "sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==", - "dev": true, - "license": "MIT" - }, - "node_modules/regjsparser": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.12.0.tgz", - "integrity": "sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "jsesc": "~3.0.2" - }, - "bin": { - "regjsparser": "bin/parser" - } - }, - "node_modules/regjsparser/node_modules/jsesc": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", - "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", - "dev": true, - "license": "MIT", - "bin": { - "jsesc": "bin/jsesc" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/require-from-string": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", - "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", - "dev": true, - "license": "MIT", - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/resolve": { - "version": "1.22.10", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz", - "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-core-module": "^2.16.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/resolve-dir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", - "integrity": "sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==", - "dev": true, - "license": "MIT", - "dependencies": { - "expand-tilde": "^2.0.0", - "global-modules": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/resolve-pkg-maps": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", - "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", - "dev": true, - "license": "MIT", - "funding": { - "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" - } - }, - "node_modules/restore-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", - "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", - "dev": true, - "license": "MIT", - "dependencies": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/reusify": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", - "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", - "dev": true, - "license": "MIT", - "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" - } - }, - "node_modules/rfdc": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz", - "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==", - "dev": true, - "license": "MIT" - }, - "node_modules/run-async": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", - "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT", - "dependencies": { - "queue-microtask": "^1.2.2" - } - }, - "node_modules/rxjs": { - "version": "7.8.2", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.2.tgz", - "integrity": "sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "tslib": "^2.1.0" - } - }, - "node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "license": "MIT" - }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", - "dev": true, - "license": "MIT" - }, - "node_modules/semantic-release": { - "version": "24.2.3", - "resolved": "https://registry.npmjs.org/semantic-release/-/semantic-release-24.2.3.tgz", - "integrity": "sha512-KRhQG9cUazPavJiJEFIJ3XAMjgfd0fcK3B+T26qOl8L0UG5aZUjeRfREO0KM5InGtYwxqiiytkJrbcYoLDEv0A==", - "dev": true, - "license": "MIT", - "dependencies": { - "@semantic-release/commit-analyzer": "^13.0.0-beta.1", - "@semantic-release/error": "^4.0.0", - "@semantic-release/github": "^11.0.0", - "@semantic-release/npm": "^12.0.0", - "@semantic-release/release-notes-generator": "^14.0.0-beta.1", - "aggregate-error": "^5.0.0", - "cosmiconfig": "^9.0.0", - "debug": "^4.0.0", - "env-ci": "^11.0.0", - "execa": "^9.0.0", - "figures": "^6.0.0", - "find-versions": "^6.0.0", - "get-stream": "^6.0.0", - "git-log-parser": "^1.2.0", - "hook-std": "^3.0.0", - "hosted-git-info": "^8.0.0", - "import-from-esm": "^2.0.0", - "lodash-es": "^4.17.21", - "marked": "^12.0.0", - "marked-terminal": "^7.0.0", - "micromatch": "^4.0.2", - "p-each-series": "^3.0.0", - "p-reduce": "^3.0.0", - "read-package-up": "^11.0.0", - "resolve-from": "^5.0.0", - "semver": "^7.3.2", - "semver-diff": "^4.0.0", - "signale": "^1.2.1", - "yargs": "^17.5.1" - }, - "bin": { - "semantic-release": "bin/semantic-release.js" - }, - "engines": { - "node": ">=20.8.1" - } - }, - "node_modules/semantic-release/node_modules/@octokit/auth-token": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-5.1.2.tgz", - "integrity": "sha512-JcQDsBdg49Yky2w2ld20IHAlwr8d/d8N6NiOXbtuoPCqzbsiJgF633mVUw3x4mo0H5ypataQIX7SFu3yy44Mpw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 18" - } - }, - "node_modules/semantic-release/node_modules/@octokit/core": { - "version": "6.1.5", - "resolved": "https://registry.npmjs.org/@octokit/core/-/core-6.1.5.tgz", - "integrity": "sha512-vvmsN0r7rguA+FySiCsbaTTobSftpIDIpPW81trAmsv9TGxg3YCujAxRYp/Uy8xmDgYCzzgulG62H7KYUFmeIg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@octokit/auth-token": "^5.0.0", - "@octokit/graphql": "^8.2.2", - "@octokit/request": "^9.2.3", - "@octokit/request-error": "^6.1.8", - "@octokit/types": "^14.0.0", - "before-after-hook": "^3.0.2", - "universal-user-agent": "^7.0.0" - }, - "engines": { - "node": ">= 18" - } - }, - "node_modules/semantic-release/node_modules/@octokit/core/node_modules/@octokit/types": { - "version": "14.0.0", - "resolved": "https://registry.npmjs.org/@octokit/types/-/types-14.0.0.tgz", - "integrity": "sha512-VVmZP0lEhbo2O1pdq63gZFiGCKkm8PPp8AUOijlwPO6hojEVjspA0MWKP7E4hbvGxzFKNqKr6p0IYtOH/Wf/zA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@octokit/openapi-types": "^25.0.0" - } - }, - "node_modules/semantic-release/node_modules/@octokit/endpoint": { - "version": "10.1.4", - "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-10.1.4.tgz", - "integrity": "sha512-OlYOlZIsfEVZm5HCSR8aSg02T2lbUWOsCQoPKfTXJwDzcHQBrVBGdGXb89dv2Kw2ToZaRtudp8O3ZIYoaOjKlA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@octokit/types": "^14.0.0", - "universal-user-agent": "^7.0.2" - }, - "engines": { - "node": ">= 18" - } - }, - "node_modules/semantic-release/node_modules/@octokit/endpoint/node_modules/@octokit/types": { - "version": "14.0.0", - "resolved": "https://registry.npmjs.org/@octokit/types/-/types-14.0.0.tgz", - "integrity": "sha512-VVmZP0lEhbo2O1pdq63gZFiGCKkm8PPp8AUOijlwPO6hojEVjspA0MWKP7E4hbvGxzFKNqKr6p0IYtOH/Wf/zA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@octokit/openapi-types": "^25.0.0" - } - }, - "node_modules/semantic-release/node_modules/@octokit/graphql": { - "version": "8.2.2", - "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-8.2.2.tgz", - "integrity": "sha512-Yi8hcoqsrXGdt0yObxbebHXFOiUA+2v3n53epuOg1QUgOB6c4XzvisBNVXJSl8RYA5KrDuSL2yq9Qmqe5N0ryA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@octokit/request": "^9.2.3", - "@octokit/types": "^14.0.0", - "universal-user-agent": "^7.0.0" - }, - "engines": { - "node": ">= 18" - } - }, - "node_modules/semantic-release/node_modules/@octokit/graphql/node_modules/@octokit/types": { - "version": "14.0.0", - "resolved": "https://registry.npmjs.org/@octokit/types/-/types-14.0.0.tgz", - "integrity": "sha512-VVmZP0lEhbo2O1pdq63gZFiGCKkm8PPp8AUOijlwPO6hojEVjspA0MWKP7E4hbvGxzFKNqKr6p0IYtOH/Wf/zA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@octokit/openapi-types": "^25.0.0" - } - }, - "node_modules/semantic-release/node_modules/@octokit/openapi-types": { - "version": "25.0.0", - "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-25.0.0.tgz", - "integrity": "sha512-FZvktFu7HfOIJf2BScLKIEYjDsw6RKc7rBJCdvCTfKsVnx2GEB/Nbzjr29DUdb7vQhlzS/j8qDzdditP0OC6aw==", - "dev": true, - "license": "MIT" - }, - "node_modules/semantic-release/node_modules/@octokit/plugin-paginate-rest": { - "version": "11.6.0", - "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-11.6.0.tgz", - "integrity": "sha512-n5KPteiF7pWKgBIBJSk8qzoZWcUkza2O6A0za97pMGVrGfPdltxrfmfF5GucHYvHGZD8BdaZmmHGz5cX/3gdpw==", - "dev": true, - "license": "MIT", - "dependencies": { - "@octokit/types": "^13.10.0" - }, - "engines": { - "node": ">= 18" - }, - "peerDependencies": { - "@octokit/core": ">=6" - } - }, - "node_modules/semantic-release/node_modules/@octokit/plugin-retry": { - "version": "7.2.1", - "resolved": "https://registry.npmjs.org/@octokit/plugin-retry/-/plugin-retry-7.2.1.tgz", - "integrity": "sha512-wUc3gv0D6vNHpGxSaR3FlqJpTXGWgqmk607N9L3LvPL4QjaxDgX/1nY2mGpT37Khn+nlIXdljczkRnNdTTV3/A==", - "dev": true, - "license": "MIT", - "dependencies": { - "@octokit/request-error": "^6.1.8", - "@octokit/types": "^14.0.0", - "bottleneck": "^2.15.3" - }, - "engines": { - "node": ">= 18" - }, - "peerDependencies": { - "@octokit/core": ">=6" - } - }, - "node_modules/semantic-release/node_modules/@octokit/plugin-retry/node_modules/@octokit/types": { - "version": "14.0.0", - "resolved": "https://registry.npmjs.org/@octokit/types/-/types-14.0.0.tgz", - "integrity": "sha512-VVmZP0lEhbo2O1pdq63gZFiGCKkm8PPp8AUOijlwPO6hojEVjspA0MWKP7E4hbvGxzFKNqKr6p0IYtOH/Wf/zA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@octokit/openapi-types": "^25.0.0" - } - }, - "node_modules/semantic-release/node_modules/@octokit/plugin-throttling": { - "version": "9.6.1", - "resolved": "https://registry.npmjs.org/@octokit/plugin-throttling/-/plugin-throttling-9.6.1.tgz", - "integrity": "sha512-bt3EBUkeKUzDQXRCcFrR9SWVqlLFRRqcCrr6uAorWt6NXTyjMKqcGrFmXqJy9NCbnKgiIZ2OXWq04theFc76Jg==", - "dev": true, - "license": "MIT", - "dependencies": { - "@octokit/types": "^13.7.0", - "bottleneck": "^2.15.3" - }, - "engines": { - "node": ">= 18" - }, - "peerDependencies": { - "@octokit/core": "^6.1.3" - } - }, - "node_modules/semantic-release/node_modules/@octokit/request": { - "version": "9.2.3", - "resolved": "https://registry.npmjs.org/@octokit/request/-/request-9.2.3.tgz", - "integrity": "sha512-Ma+pZU8PXLOEYzsWf0cn/gY+ME57Wq8f49WTXA8FMHp2Ps9djKw//xYJ1je8Hm0pR2lU9FUGeJRWOtxq6olt4w==", - "dev": true, - "license": "MIT", - "dependencies": { - "@octokit/endpoint": "^10.1.4", - "@octokit/request-error": "^6.1.8", - "@octokit/types": "^14.0.0", - "fast-content-type-parse": "^2.0.0", - "universal-user-agent": "^7.0.2" - }, - "engines": { - "node": ">= 18" - } - }, - "node_modules/semantic-release/node_modules/@octokit/request-error": { - "version": "6.1.8", - "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-6.1.8.tgz", - "integrity": "sha512-WEi/R0Jmq+IJKydWlKDmryPcmdYSVjL3ekaiEL1L9eo1sUnqMJ+grqmC9cjk7CA7+b2/T397tO5d8YLOH3qYpQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@octokit/types": "^14.0.0" - }, - "engines": { - "node": ">= 18" - } - }, - "node_modules/semantic-release/node_modules/@octokit/request-error/node_modules/@octokit/types": { - "version": "14.0.0", - "resolved": "https://registry.npmjs.org/@octokit/types/-/types-14.0.0.tgz", - "integrity": "sha512-VVmZP0lEhbo2O1pdq63gZFiGCKkm8PPp8AUOijlwPO6hojEVjspA0MWKP7E4hbvGxzFKNqKr6p0IYtOH/Wf/zA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@octokit/openapi-types": "^25.0.0" - } - }, - "node_modules/semantic-release/node_modules/@octokit/request/node_modules/@octokit/types": { - "version": "14.0.0", - "resolved": "https://registry.npmjs.org/@octokit/types/-/types-14.0.0.tgz", - "integrity": "sha512-VVmZP0lEhbo2O1pdq63gZFiGCKkm8PPp8AUOijlwPO6hojEVjspA0MWKP7E4hbvGxzFKNqKr6p0IYtOH/Wf/zA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@octokit/openapi-types": "^25.0.0" - } - }, - "node_modules/semantic-release/node_modules/@semantic-release/error": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-4.0.0.tgz", - "integrity": "sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=18" - } - }, - "node_modules/semantic-release/node_modules/@semantic-release/github": { - "version": "11.0.1", - "resolved": "https://registry.npmjs.org/@semantic-release/github/-/github-11.0.1.tgz", - "integrity": "sha512-Z9cr0LgU/zgucbT9cksH0/pX9zmVda9hkDPcgIE0uvjMQ8w/mElDivGjx1w1pEQ+MuQJ5CBq3VCF16S6G4VH3A==", - "dev": true, - "license": "MIT", - "dependencies": { - "@octokit/core": "^6.0.0", - "@octokit/plugin-paginate-rest": "^11.0.0", - "@octokit/plugin-retry": "^7.0.0", - "@octokit/plugin-throttling": "^9.0.0", - "@semantic-release/error": "^4.0.0", - "aggregate-error": "^5.0.0", - "debug": "^4.3.4", - "dir-glob": "^3.0.1", - "globby": "^14.0.0", - "http-proxy-agent": "^7.0.0", - "https-proxy-agent": "^7.0.0", - "issue-parser": "^7.0.0", - "lodash-es": "^4.17.21", - "mime": "^4.0.0", - "p-filter": "^4.0.0", - "url-join": "^5.0.0" - }, - "engines": { - "node": ">=20.8.1" - }, - "peerDependencies": { - "semantic-release": ">=24.1.0" - } - }, - "node_modules/semantic-release/node_modules/@sindresorhus/merge-streams": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-4.0.0.tgz", - "integrity": "sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/semantic-release/node_modules/aggregate-error": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-5.0.0.tgz", - "integrity": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==", - "dev": true, - "license": "MIT", - "dependencies": { - "clean-stack": "^5.2.0", - "indent-string": "^5.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/semantic-release/node_modules/before-after-hook": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-3.0.2.tgz", - "integrity": "sha512-Nik3Sc0ncrMK4UUdXQmAnRtzmNQTAAXmXIopizwZ1W1t8QmfJj+zL4OA2I7XPTPW5z5TDqv4hRo/JzouDJnX3A==", - "dev": true, - "license": "Apache-2.0" - }, - "node_modules/semantic-release/node_modules/clean-stack": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-5.2.0.tgz", - "integrity": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "escape-string-regexp": "5.0.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/semantic-release/node_modules/escape-string-regexp": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", - "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/semantic-release/node_modules/execa": { - "version": "9.5.2", - "resolved": "https://registry.npmjs.org/execa/-/execa-9.5.2.tgz", - "integrity": "sha512-EHlpxMCpHWSAh1dgS6bVeoLAXGnJNdR93aabr4QCGbzOM73o5XmRfM/e5FUqsw3aagP8S8XEWUWFAxnRBnAF0Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "@sindresorhus/merge-streams": "^4.0.0", - "cross-spawn": "^7.0.3", - "figures": "^6.1.0", - "get-stream": "^9.0.0", - "human-signals": "^8.0.0", - "is-plain-obj": "^4.1.0", - "is-stream": "^4.0.1", - "npm-run-path": "^6.0.0", - "pretty-ms": "^9.0.0", - "signal-exit": "^4.1.0", - "strip-final-newline": "^4.0.0", - "yoctocolors": "^2.0.0" - }, - "engines": { - "node": "^18.19.0 || >=20.5.0" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/semantic-release/node_modules/execa/node_modules/get-stream": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-9.0.1.tgz", - "integrity": "sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==", - "dev": true, - "license": "MIT", - "dependencies": { - "@sec-ant/readable-stream": "^0.4.1", - "is-stream": "^4.0.1" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/semantic-release/node_modules/figures": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-6.1.0.tgz", - "integrity": "sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-unicode-supported": "^2.0.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/semantic-release/node_modules/hosted-git-info": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-8.1.0.tgz", - "integrity": "sha512-Rw/B2DNQaPBICNXEm8balFz9a6WpZrkCGpcWFpy7nCj+NyhSdqXipmfvtmWt9xGfp0wZnBxB+iVpLmQMYt47Tw==", - "dev": true, - "license": "ISC", - "dependencies": { - "lru-cache": "^10.0.1" - }, - "engines": { - "node": "^18.17.0 || >=20.5.0" - } - }, - "node_modules/semantic-release/node_modules/human-signals": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-8.0.1.tgz", - "integrity": "sha512-eKCa6bwnJhvxj14kZk5NCPc6Hb6BdsU9DZcOnmQKSnO1VKrfV0zCvtttPZUsBvjmNDn8rpcJfpwSYnHBjc95MQ==", - "dev": true, - "license": "Apache-2.0", - "engines": { - "node": ">=18.18.0" - } - }, - "node_modules/semantic-release/node_modules/indent-string": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", - "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/semantic-release/node_modules/is-stream": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-4.0.1.tgz", - "integrity": "sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/semantic-release/node_modules/is-unicode-supported": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.1.0.tgz", - "integrity": "sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/semantic-release/node_modules/issue-parser": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/issue-parser/-/issue-parser-7.0.1.tgz", - "integrity": "sha512-3YZcUUR2Wt1WsapF+S/WiA2WmlW0cWAoPccMqne7AxEBhCdFeTPjfv/Axb8V2gyCgY3nRw+ksZ3xSUX+R47iAg==", - "dev": true, - "license": "MIT", - "dependencies": { - "lodash.capitalize": "^4.2.1", - "lodash.escaperegexp": "^4.1.2", - "lodash.isplainobject": "^4.0.6", - "lodash.isstring": "^4.0.1", - "lodash.uniqby": "^4.7.0" - }, - "engines": { - "node": "^18.17 || >=20.6.1" - } - }, - "node_modules/semantic-release/node_modules/npm-run-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-6.0.0.tgz", - "integrity": "sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==", - "dev": true, - "license": "MIT", - "dependencies": { - "path-key": "^4.0.0", - "unicorn-magic": "^0.3.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/semantic-release/node_modules/p-reduce": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-3.0.0.tgz", - "integrity": "sha512-xsrIUgI0Kn6iyDYm9StOpOeK29XM1aboGji26+QEortiFST1hGZaUQOLhtEbqHErPpGW/aSz6allwK2qcptp0Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/semantic-release/node_modules/path-key": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", - "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/semantic-release/node_modules/signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "dev": true, - "license": "ISC", - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/semantic-release/node_modules/strip-final-newline": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-4.0.0.tgz", - "integrity": "sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/semantic-release/node_modules/unicorn-magic": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.3.0.tgz", - "integrity": "sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/semantic-release/node_modules/universal-user-agent": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-7.0.2.tgz", - "integrity": "sha512-0JCqzSKnStlRRQfCdowvqy3cy0Dvtlb8xecj/H8JFZuCze4rwjPZQOgvFvn0Ws/usCHQFGpyr+pB9adaGwXn4Q==", - "dev": true, - "license": "ISC" - }, - "node_modules/semver": { - "version": "7.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", - "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", - "dev": true, - "license": "ISC", - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/semver-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-4.0.0.tgz", - "integrity": "sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA==", - "dev": true, - "license": "MIT", - "dependencies": { - "semver": "^7.3.5" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/semver-regex": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/semver-regex/-/semver-regex-4.0.5.tgz", - "integrity": "sha512-hunMQrEy1T6Jr2uEVjrAIqjwWcQTgOAcIM52C8MY1EZSD3DDNft04XzvYKPqjED65bNVVko0YI38nYeEHCX3yw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", - "dev": true, - "license": "MIT", - "dependencies": { - "shebang-regex": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true, - "license": "ISC" - }, - "node_modules/signale": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/signale/-/signale-1.4.0.tgz", - "integrity": "sha512-iuh+gPf28RkltuJC7W5MRi6XAjTDCAPC/prJUpQoG4vIP3MJZ+GTydVnodXA7pwvTKb2cA0m9OFZW/cdWy/I/w==", - "dev": true, - "license": "MIT", - "dependencies": { - "chalk": "^2.3.2", - "figures": "^2.0.0", - "pkg-conf": "^2.1.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/signale/node_modules/figures": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", - "integrity": "sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==", - "dev": true, - "license": "MIT", - "dependencies": { - "escape-string-regexp": "^1.0.5" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/skin-tone": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/skin-tone/-/skin-tone-2.0.0.tgz", - "integrity": "sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA==", - "dev": true, - "license": "MIT", - "dependencies": { - "unicode-emoji-modifier-base": "^1.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/slash": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", - "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/slice-ansi": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz", - "integrity": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^6.0.0", - "is-fullwidth-code-point": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/slice-ansi?sponsor=1" - } - }, - "node_modules/slice-ansi/node_modules/ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/snake-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz", - "integrity": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==", - "dev": true, - "license": "MIT", - "dependencies": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-js": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", - "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", - "dev": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/spawn-error-forwarder": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/spawn-error-forwarder/-/spawn-error-forwarder-1.0.0.tgz", - "integrity": "sha512-gRjMgK5uFjbCvdibeGJuy3I5OYz6VLoVdsOJdA6wV0WlfQVLFueoqMxwwYD9RODdgb6oUIvlRlsyFSiQkMKu0g==", - "dev": true, - "license": "MIT" - }, - "node_modules/spdx-correct": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", - "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" - } - }, - "node_modules/spdx-exceptions": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz", - "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==", - "dev": true, - "license": "CC-BY-3.0" - }, - "node_modules/spdx-expression-parse": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", - "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" - } - }, - "node_modules/spdx-license-ids": { - "version": "3.0.21", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.21.tgz", - "integrity": "sha512-Bvg/8F5XephndSK3JffaRqdT+gyhfqIPwDHpX80tJrF8QQRYMo8sNMeaZ2Dp5+jhwKnUmIOyFFQfHRkjJm5nXg==", - "dev": true, - "license": "CC0-1.0" - }, - "node_modules/split2": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/split2/-/split2-1.0.0.tgz", - "integrity": "sha512-NKywug4u4pX/AZBB1FCPzZ6/7O+Xhz1qMVbzTvvKvikjO99oPN87SkK08mEY9P63/5lWjK+wgOOgApnTg5r6qg==", - "dev": true, - "license": "ISC", - "dependencies": { - "through2": "~2.0.0" - } - }, - "node_modules/stream-combiner2": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/stream-combiner2/-/stream-combiner2-1.1.1.tgz", - "integrity": "sha512-3PnJbYgS56AeWgtKF5jtJRT6uFJe56Z0Hc5Ngg/6sI6rIt8iiMBTa9cvdyFfpMQjaVHr8dusbNeFGIIonxOvKw==", - "dev": true, - "license": "MIT", - "dependencies": { - "duplexer2": "~0.1.0", - "readable-stream": "^2.0.2" - } - }, - "node_modules/stream-combiner2/node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dev": true, - "license": "MIT", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/stream-combiner2/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true, - "license": "MIT" - }, - "node_modules/stream-combiner2/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/string_decoder": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", - "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", - "dev": true, - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.2.0" - } - }, - "node_modules/string-argv": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz", - "integrity": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.6.19" - } - }, - "node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", - "dev": true, - "license": "MIT", - "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/string-width/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-ansi/node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-bom": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", - "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/strip-final-newline": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", - "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=6" - } - }, - "node_modules/strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/super-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/super-regex/-/super-regex-1.0.0.tgz", - "integrity": "sha512-CY8u7DtbvucKuquCmOFEKhr9Besln7n9uN8eFbwcoGYWXOMW07u2o8njWaiXt11ylS3qoGF55pILjRmPlbodyg==", - "dev": true, - "license": "MIT", - "dependencies": { - "function-timeout": "^1.0.1", - "time-span": "^5.1.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/supports-hyperlinks": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-3.2.0.tgz", - "integrity": "sha512-zFObLMyZeEwzAoKCyu1B91U79K2t7ApXuQfo8OuxwXLDgcKxuwM+YvcbIhm6QWqz7mHUH1TVytR1PwVVjEuMig==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0", - "supports-color": "^7.0.0" - }, - "engines": { - "node": ">=14.18" - }, - "funding": { - "url": "https://github.com/chalk/supports-hyperlinks?sponsor=1" - } - }, - "node_modules/supports-hyperlinks/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=8" - } - }, - "node_modules/supports-hyperlinks/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "license": "MIT", - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/svg-parser": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz", - "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/svgo": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/svgo/-/svgo-3.3.2.tgz", - "integrity": "sha512-OoohrmuUlBs8B8o6MB2Aevn+pRIH9zDALSR+6hhqVfa6fRwG/Qw9VUMSMW9VNg2CFc/MTIfabtdOVl9ODIJjpw==", - "dev": true, - "license": "MIT", - "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" - }, - "bin": { - "svgo": "bin/svgo" - }, - "engines": { - "node": ">=14.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/svgo" - } - }, - "node_modules/svgo/node_modules/commander": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", - "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 10" - } - }, - "node_modules/synckit": { - "version": "0.11.4", - "resolved": "https://registry.npmjs.org/synckit/-/synckit-0.11.4.tgz", - "integrity": "sha512-Q/XQKRaJiLiFIBNN+mndW7S/RHxvwzuZS6ZwmRzUBqJBv/5QIKCEwkBC8GBf8EQJKYnaFs0wOZbKTXBPj8L9oQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "@pkgr/core": "^0.2.3", - "tslib": "^2.8.1" - }, - "engines": { - "node": "^14.18.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/synckit" - } - }, - "node_modules/temp-dir": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-3.0.0.tgz", - "integrity": "sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=14.16" - } - }, - "node_modules/tempy": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/tempy/-/tempy-3.1.0.tgz", - "integrity": "sha512-7jDLIdD2Zp0bDe5r3D2qtkd1QOCacylBuL7oa4udvN6v2pqr4+LcCr67C8DR1zkpaZ8XosF5m1yQSabKAW6f2g==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-stream": "^3.0.0", - "temp-dir": "^3.0.0", - "type-fest": "^2.12.2", - "unique-string": "^3.0.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/tempy/node_modules/is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", - "dev": true, - "license": "MIT", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/tempy/node_modules/type-fest": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", - "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", - "dev": true, - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/thenify": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", - "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", - "dev": true, - "license": "MIT", - "dependencies": { - "any-promise": "^1.0.0" - } - }, - "node_modules/thenify-all": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", - "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", - "dev": true, - "license": "MIT", - "dependencies": { - "thenify": ">= 3.1.0 < 4" - }, - "engines": { - "node": ">=0.8" - } - }, - "node_modules/through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", - "dev": true, - "license": "MIT" - }, - "node_modules/through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" - } - }, - "node_modules/through2/node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dev": true, - "license": "MIT", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "node_modules/through2/node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true, - "license": "MIT" - }, - "node_modules/through2/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "license": "MIT", - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/time-span": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/time-span/-/time-span-5.1.0.tgz", - "integrity": "sha512-75voc/9G4rDIJleOo4jPvN4/YC4GRZrY8yy1uU4lwrB3XEQbWve8zXoO5No4eFrGcTAMYyoY67p8jRQdtA1HbA==", - "dev": true, - "license": "MIT", - "dependencies": { - "convert-hrtime": "^5.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", - "dev": true, - "license": "MIT", - "dependencies": { - "os-tmpdir": "~1.0.2" - }, - "engines": { - "node": ">=0.6.0" - } - }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" - } - }, - "node_modules/traverse": { - "version": "0.6.8", - "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.6.8.tgz", - "integrity": "sha512-aXJDbk6SnumuaZSANd21XAo15ucCDE38H4fkqiGsc3MhCK+wOlZvLP9cB/TvpHT0mOyWgC4Z8EwRlzqYSUzdsA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/ts-api-utils": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.1.0.tgz", - "integrity": "sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=18.12" - }, - "peerDependencies": { - "typescript": ">=4.8.4" - } - }, - "node_modules/tslib": { - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", - "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", - "dev": true, - "license": "0BSD" - }, - "node_modules/tsx": { - "version": "4.19.3", - "resolved": "https://registry.npmjs.org/tsx/-/tsx-4.19.3.tgz", - "integrity": "sha512-4H8vUNGNjQ4V2EOoGw005+c+dGuPSnhpPBPHBtsZdGZBk/iJb4kguGlPWaZTZ3q5nMtFOEsY0nRDlh9PJyd6SQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "esbuild": "~0.25.0", - "get-tsconfig": "^4.7.5" - }, - "bin": { - "tsx": "dist/cli.mjs" - }, - "engines": { - "node": ">=18.0.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.3" - } - }, - "node_modules/type-check": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", - "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", - "dev": true, - "license": "MIT", - "dependencies": { - "prelude-ls": "^1.2.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/type-fest": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", - "dev": true, - "license": "(MIT OR CC0-1.0)", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/typescript": { - "version": "5.8.3", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz", - "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==", - "dev": true, - "license": "Apache-2.0", - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" - }, - "engines": { - "node": ">=14.17" - } - }, - "node_modules/uglify-js": { - "version": "3.19.3", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.19.3.tgz", - "integrity": "sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==", - "dev": true, - "license": "BSD-2-Clause", - "optional": true, - "bin": { - "uglifyjs": "bin/uglifyjs" - }, - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/undici-types": { - "version": "6.21.0", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", - "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==", - "dev": true, - "license": "MIT" - }, - "node_modules/unicode-canonical-property-names-ecmascript": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz", - "integrity": "sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/unicode-emoji-modifier-base": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unicode-emoji-modifier-base/-/unicode-emoji-modifier-base-1.0.0.tgz", - "integrity": "sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/unicode-match-property-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", - "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "unicode-canonical-property-names-ecmascript": "^2.0.0", - "unicode-property-aliases-ecmascript": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/unicode-match-property-value-ecmascript": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.0.tgz", - "integrity": "sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/unicode-property-aliases-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", - "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=4" - } - }, - "node_modules/unicorn-magic": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz", - "integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/unique-string": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-3.0.0.tgz", - "integrity": "sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "crypto-random-string": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/universal-user-agent": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.1.tgz", - "integrity": "sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==", - "dev": true, - "license": "ISC" - }, - "node_modules/universalify": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", - "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">= 10.0.0" - } - }, - "node_modules/update-browserslist-db": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.3.tgz", - "integrity": "sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "license": "MIT", - "dependencies": { - "escalade": "^3.2.0", - "picocolors": "^1.1.1" - }, - "bin": { - "update-browserslist-db": "cli.js" - }, - "peerDependencies": { - "browserslist": ">= 4.21.0" - } - }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", - "dev": true, - "license": "BSD-2-Clause", - "dependencies": { - "punycode": "^2.1.0" - } - }, - "node_modules/url-join": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/url-join/-/url-join-5.0.0.tgz", - "integrity": "sha512-n2huDr9h9yzd6exQVnH/jU5mr+Pfx08LRXXZhkLLetAMESRj+anQsTAh940iMrIetKAmry9coFuZQ2jY8/p3WA==", - "dev": true, - "license": "MIT", - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - } - }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", - "dev": true, - "license": "MIT" - }, - "node_modules/validate-npm-package-license": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", - "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", - "dev": true, - "license": "Apache-2.0", - "dependencies": { - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0" - } - }, - "node_modules/wcwidth": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", - "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", - "dev": true, - "license": "MIT", - "dependencies": { - "defaults": "^1.0.3" - } - }, - "node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", - "dev": true, - "license": "ISC", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/word-wrap": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", - "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/wordwrap": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", - "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", - "dev": true, - "license": "MIT" - }, - "node_modules/wrap-ansi": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", - "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", - "dev": true, - "license": "MIT", - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/wrap-ansi?sponsor=1" - } - }, - "node_modules/wrap-ansi/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "license": "MIT", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/wrap-ansi/node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dev": true, - "license": "MIT", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/wrap-ansi/node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", - "dev": true, - "license": "MIT" - }, - "node_modules/wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", - "dev": true, - "license": "ISC" - }, - "node_modules/xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=0.4" - } - }, - "node_modules/y18n": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", - "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", - "dev": true, - "license": "ISC", - "engines": { - "node": ">=10" - } - }, - "node_modules/yallist": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", - "dev": true, - "license": "ISC" - }, - "node_modules/yaml": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.7.1.tgz", - "integrity": "sha512-10ULxpnOCQXxJvBgxsn9ptjq6uviG/htZKk9veJGhlqn3w/DxQ631zFF+nlQXLwmImeS5amR2dl2U8sg6U9jsQ==", - "dev": true, - "license": "ISC", - "bin": { - "yaml": "bin.mjs" - }, - "engines": { - "node": ">= 14" - } - }, - "node_modules/yargs": { - "version": "17.7.2", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", - "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", - "dev": true, - "license": "MIT", - "dependencies": { - "cliui": "^8.0.1", - "escalade": "^3.1.1", - "get-caller-file": "^2.0.5", - "require-directory": "^2.1.1", - "string-width": "^4.2.3", - "y18n": "^5.0.5", - "yargs-parser": "^21.1.1" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/yargs-parser": { - "version": "21.1.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", - "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", - "dev": true, - "license": "ISC", - "engines": { - "node": ">=12" - } - }, - "node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/yoctocolors": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/yoctocolors/-/yoctocolors-2.1.1.tgz", - "integrity": "sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==", - "dev": true, - "license": "MIT", - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - } - } -} From 8951225a639d6da5beff6882f2ee2f37959cf0d2 Mon Sep 17 00:00:00 2001 From: Aryan Aghf Date: Wed, 23 Apr 2025 11:39:26 +0330 Subject: [PATCH 08/15] feat(icon-builder): now support color as an object or array --- build-icons.ts | 78 +++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 65 insertions(+), 13 deletions(-) diff --git a/build-icons.ts b/build-icons.ts index 3509201..7d5bd91 100644 --- a/build-icons.ts +++ b/build-icons.ts @@ -6,14 +6,14 @@ const ICONS_DIR = path.join(process.cwd(), 'src/icons'); const OUT_DIR = path.join(process.cwd(), 'dist/icons'); const OUT_DIR_INDEX = path.join(process.cwd(), 'dist'); -interface IconExport { +type IIconExport = { componentName: string; importPath: string; } -async function processDirectory(dir: string, relativePath = ''): Promise { +async function processDirectory(dir: string, relativePath = ''): Promise { const files = await fs.readdir(dir); - let allExports: IconExport[] = []; + let allExports: IIconExport[] = []; for (const file of files) { const fullPath = path.join(dir, file); @@ -36,17 +36,58 @@ async function processDirectory(dir: string, relativePath = ''): Promise tpl` - import React from 'react'; - - const ${componentName} = (props) => ${jsx}; - - export default ${componentName}; - ` + import React from 'react'; + + const ${componentName} = ({ + width = 40, + height = 40, + colors = [], + colorsByHex = {}, + ...props + }) => { + const originalChildren = ${jsx}.props.children; + + const processChildren = (children) => { + return React.Children.map(children, (child, index) => { + if (!React.isValidElement(child)) return child; + + let newChild = child; + + if (child.props.fill) { + const overrideFill = colorsByHex[child.props.fill] || colors[index] || child.props.fill; + newChild = React.cloneElement(child, { fill: overrideFill }); + } + + if (child.props.children) { + const processedChildren = processChildren(child.props.children); + newChild = React.cloneElement(child, {}, processedChildren); + } + + return newChild; + }); + }; + + const processedChildren = processChildren(originalChildren); + + return ( + + {processedChildren} + + ); + }; + + export default ${componentName}; + ` }, { componentName: pascalCaseName } ); - - + + const outSubDir = path.join(OUT_DIR, relativePath); await fs.mkdir(outSubDir, { recursive: true }); @@ -55,8 +96,19 @@ async function processDirectory(dir: string, relativePath = ''): Promise>;\nexport default ${pascalCaseName};`; + const dtsContent = + `import * as React from 'react'; + import type { SVGProps } from 'react'; + + type ICustomIconProps = SVGProps & { + colors?: string[]; + colorsByHex?: Record; + width?: number | string; + height?: number | string; + } + + declare const ${pascalCaseName}: React.FC; + export default ${pascalCaseName};`; await fs.writeFile(path.join(outSubDir, `${pascalCaseName}.d.ts`), dtsContent); const exportPath = path.join('icons', relativePath, pascalCaseName); From a8fe93ac41c638374846ea247ffd8e69232c3c6a Mon Sep 17 00:00:00 2001 From: Aryan Aghf Date: Sat, 26 Apr 2025 14:24:44 +0330 Subject: [PATCH 09/15] feat(readme): add readme and updated folder structure --- README.md | 72 ++++++++++++++++++- package.json | 4 +- .../AmazonEC2.svg => aws/compute/EC2.svg} | 0 .../AWSLambda.svg => aws/compute/Lambda.svg} | 0 .../database/DynamoDB.svg} | 0 .../AmazonRDS.svg => aws/database/RDS.svg} | 0 .../networking/VPC.svg} | 0 .../storage/S3.svg} | 0 8 files changed, 72 insertions(+), 4 deletions(-) rename src/icons/{amazon/compute-services/AmazonEC2.svg => aws/compute/EC2.svg} (100%) rename src/icons/{amazon/compute-services/AWSLambda.svg => aws/compute/Lambda.svg} (100%) rename src/icons/{amazon/database-services/AmazonDynamoDB.svg => aws/database/DynamoDB.svg} (100%) rename src/icons/{amazon/database-services/AmazonRDS.svg => aws/database/RDS.svg} (100%) rename src/icons/{amazon/networking-security/AmazonVirtualPrivateCloud.svg => aws/networking/VPC.svg} (100%) rename src/icons/{amazon/storage-services/AmazonSimpleStorageService.svg => aws/storage/S3.svg} (100%) diff --git a/README.md b/README.md index 703f598..997529a 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,70 @@ -# icons -The set of icons from CtrlCloud for DevOps projects +## 🌐 Services Icons +Each service is a self-contained React component and can be resized using standard `width` and `height` props. +We use optimized SVGs with optional `colors[]` and `colorsByHex{}` support, so they adapt their colors recursively and behave consistently across your app. + + +### 🛠️ Setup + + +install +```bash +npm i @tradevpsnet/icons +``` + +To use this library in a Next.js app, add the following to your `next.config.js`: + +```js + + transpilePackages: ['@tradevpsnet/icons'], // Explicitly transpile this package + webpack(config) { + config.module.rules.push({ + test: /\.svg$/, + use: ['@svgr/webpack'], + }); + return config; + }, +``` + +Also install the following package: + +```bash +npm install --save-dev @svgr/webpack +``` + +### Attributes + +| Name | Type | Description | +|:---------|:-----|:------------| +| width | number | Sets the width of the icon. Defaults to `40`. | +| height | number | Sets the height of the icon. Defaults to `40`. | +| colors | string[] | Array of colors that replace the default fills, mapped by order. | +| colorsByHex | object | Object to override specific hex values in the SVG (e.g., { "#FFFFFF": "#000000" }). | +| ...props | any | All other SVG-compatible props like `className`, `style`, `aria-label`, etc. | + +--- + +### Usage + + +Example usage: + +```jsx +import { EC2, S3 } from '@tradevpsnet/icons'; + +export default function Example() { + return ( +
+ + +
+ ); +} + +``` +You can also override specific colors easily: +```jsx + +``` +--- +Enjoy using `icons` in your project! 🌐🌟 + diff --git a/package.json b/package.json index 69e5c64..277e16e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { - "name": "icons", - "version": "1.0.0", + "name": "@crtcloud/icons", + "version": "1.0.0-beta.0", "sideEffects": false, "description": "The set of icons from CtrlCloud for DevOps projects", "type": "module", diff --git a/src/icons/amazon/compute-services/AmazonEC2.svg b/src/icons/aws/compute/EC2.svg similarity index 100% rename from src/icons/amazon/compute-services/AmazonEC2.svg rename to src/icons/aws/compute/EC2.svg diff --git a/src/icons/amazon/compute-services/AWSLambda.svg b/src/icons/aws/compute/Lambda.svg similarity index 100% rename from src/icons/amazon/compute-services/AWSLambda.svg rename to src/icons/aws/compute/Lambda.svg diff --git a/src/icons/amazon/database-services/AmazonDynamoDB.svg b/src/icons/aws/database/DynamoDB.svg similarity index 100% rename from src/icons/amazon/database-services/AmazonDynamoDB.svg rename to src/icons/aws/database/DynamoDB.svg diff --git a/src/icons/amazon/database-services/AmazonRDS.svg b/src/icons/aws/database/RDS.svg similarity index 100% rename from src/icons/amazon/database-services/AmazonRDS.svg rename to src/icons/aws/database/RDS.svg diff --git a/src/icons/amazon/networking-security/AmazonVirtualPrivateCloud.svg b/src/icons/aws/networking/VPC.svg similarity index 100% rename from src/icons/amazon/networking-security/AmazonVirtualPrivateCloud.svg rename to src/icons/aws/networking/VPC.svg diff --git a/src/icons/amazon/storage-services/AmazonSimpleStorageService.svg b/src/icons/aws/storage/S3.svg similarity index 100% rename from src/icons/amazon/storage-services/AmazonSimpleStorageService.svg rename to src/icons/aws/storage/S3.svg From 5873a491454558e79bccdde8c5684dd9427ed5c4 Mon Sep 17 00:00:00 2001 From: Aryan Aghf Date: Sat, 26 Apr 2025 14:26:10 +0330 Subject: [PATCH 10/15] feat(readme): add readme and updated folder structure --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 997529a..0a3f957 100644 --- a/README.md +++ b/README.md @@ -8,14 +8,14 @@ We use optimized SVGs with optional `colors[]` and `colorsByHex{}` support, so t install ```bash -npm i @tradevpsnet/icons +npm i @crtcloud/icons ``` To use this library in a Next.js app, add the following to your `next.config.js`: ```js - transpilePackages: ['@tradevpsnet/icons'], // Explicitly transpile this package + transpilePackages: ['@crtcloud/icons'], // Explicitly transpile this package webpack(config) { config.module.rules.push({ test: /\.svg$/, @@ -49,7 +49,7 @@ npm install --save-dev @svgr/webpack Example usage: ```jsx -import { EC2, S3 } from '@tradevpsnet/icons'; +import { EC2, S3 } from '@crtcloud/icons'; export default function Example() { return ( From 2b5dd0ce87c5baacb567bb949963ba99488d62dd Mon Sep 17 00:00:00 2001 From: Aryan Aghf Date: Sat, 26 Apr 2025 14:28:57 +0330 Subject: [PATCH 11/15] feat(readme): add readme and updated folder structure --- README.md | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 0a3f957..35ada8d 100644 --- a/README.md +++ b/README.md @@ -8,14 +8,14 @@ We use optimized SVGs with optional `colors[]` and `colorsByHex{}` support, so t install ```bash -npm i @crtcloud/icons +npm i @crtcloudnet/icons ``` To use this library in a Next.js app, add the following to your `next.config.js`: ```js - transpilePackages: ['@crtcloud/icons'], // Explicitly transpile this package + transpilePackages: ['@crtcloudnet/icons'], // Explicitly transpile this package webpack(config) { config.module.rules.push({ test: /\.svg$/, @@ -49,7 +49,7 @@ npm install --save-dev @svgr/webpack Example usage: ```jsx -import { EC2, S3 } from '@crtcloud/icons'; +import { EC2, S3 } from '@crtcloudnet/icons'; export default function Example() { return ( diff --git a/package.json b/package.json index 277e16e..23d68c9 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "@crtcloud/icons", + "name": "@crtcloudnet/icons", "version": "1.0.0-beta.0", "sideEffects": false, "description": "The set of icons from CtrlCloud for DevOps projects", From 1004b8625c1d66a907661b5b4f6ccd56eb516cf1 Mon Sep 17 00:00:00 2001 From: Aryan Aghf Date: Sat, 26 Apr 2025 16:15:25 +0330 Subject: [PATCH 12/15] feat(README): updated readme --- README.md | 37 ++++++++++++++++++++++++++----------- 1 file changed, 26 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 35ada8d..2d28d44 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -## 🌐 Services Icons +## 🌐 Icons Each service is a self-contained React component and can be resized using standard `width` and `height` props. We use optimized SVGs with optional `colors[]` and `colorsByHex{}` support, so they adapt their colors recursively and behave consistently across your app. @@ -6,11 +6,23 @@ We use optimized SVGs with optional `colors[]` and `colorsByHex{}` support, so t ### 🛠️ Setup -install +#### install ```bash npm i @crtcloudnet/icons ``` +#### basic usage +```js +import {EC2} from '@crtcloudnet/icons'; +export default function Home() { + return ( +
+ +
+ ); +} +```` +#### Next.js Config To use this library in a Next.js app, add the following to your `next.config.js`: ```js @@ -35,13 +47,13 @@ npm install --save-dev @svgr/webpack | Name | Type | Description | |:---------|:-----|:------------| -| width | number | Sets the width of the icon. Defaults to `40`. | -| height | number | Sets the height of the icon. Defaults to `40`. | -| colors | string[] | Array of colors that replace the default fills, mapped by order. | -| colorsByHex | object | Object to override specific hex values in the SVG (e.g., { "#FFFFFF": "#000000" }). | +| width | number | Sets the width of the icon. Defaults to `40px`. | +| height | number | Sets the height of the icon. Defaults to `40px`. | +| colors | string[] | Replaces colors in order of appearance (first color replaces first fill, etc.)| +| colorsByHex | object | Precise color overrides: { "ORIGINAL_HEX": "NEW_HEX" }. | | ...props | any | All other SVG-compatible props like `className`, `style`, `aria-label`, etc. | - --- +💡 Tip: Use your browser's inspector to check the original SVG colors before replacing ### Usage @@ -49,21 +61,24 @@ npm install --save-dev @svgr/webpack Example usage: ```jsx -import { EC2, S3 } from '@crtcloudnet/icons'; +import { EC2, S3, Lambda } from '@crtcloudnet/icons'; export default function Example() { return (
- + + // Replace first color in svg: + + + // You can also override specific colors easily: +
); } ``` -You can also override specific colors easily: ```jsx - ``` --- Enjoy using `icons` in your project! 🌐🌟 From 1d11f8b85c595f23634292fb6b78ff8a8dee9a2e Mon Sep 17 00:00:00 2001 From: Aryan Aghf Date: Sat, 26 Apr 2025 16:18:44 +0330 Subject: [PATCH 13/15] feat(README): updated readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2d28d44..178e512 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,8 @@ npm install --save-dev @svgr/webpack ``` ### Attributes +All props are optional: + | Name | Type | Description | |:---------|:-----|:------------| @@ -77,8 +79,6 @@ export default function Example() { ); } -``` -```jsx ``` --- Enjoy using `icons` in your project! 🌐🌟 From e0ac0a587e623f263c66f125428ecd2350ea198f Mon Sep 17 00:00:00 2001 From: Aryan Aghf Date: Mon, 28 Apr 2025 14:23:52 +0330 Subject: [PATCH 14/15] feat(services): added aws and gcp services icons --- .../architecture-group/auto-scaling-group.svg | 8 ++++ .../aws/architecture-group/aws-account.svg | 8 ++++ .../aws/architecture-group/aws-cloud-dark.svg | 8 ++++ .../aws-cloud-logo-dark.svg | 8 ++++ .../aws/architecture-group/aws-cloud-logo.svg | 8 ++++ .../aws/architecture-group/aws-cloud.svg | 8 ++++ .../aws-iot-greengrass-deployment.svg | 8 ++++ .../corporate-data-center.svg | 8 ++++ .../ec2-instance-contents.svg | 8 ++++ .../aws/architecture-group/private-subnet.svg | 8 ++++ .../aws/architecture-group/public-subnet.svg | 8 ++++ src/icons/aws/architecture-group/region.svg | 8 ++++ .../architecture-group/server-contents.svg | 8 ++++ .../aws/architecture-group/spot-fleet.svg | 8 ++++ .../virtual-private-cloud-vpc.svg | 8 ++++ .../analytics-kinesis-video-streams.svg | 12 ++++++ .../architecture-service/analytics/athena.svg | 10 +++++ .../analytics/clean-rooms.svg | 10 +++++ .../analytics/cloudsearch.svg | 10 +++++ .../analytics/data-exchange.svg | 10 +++++ .../analytics/data-firehose.svg | 12 ++++++ .../analytics/datazone.svg | 10 +++++ .../architecture-service/analytics/emr.svg | 10 +++++ .../analytics/entity-resolution.svg | 12 ++++++ .../analytics/finspace.svg | 12 ++++++ .../analytics/glue-databrew.svg | 12 ++++++ .../architecture-service/analytics/glue.svg | 10 +++++ .../analytics/kinesis-data-streams.svg | 12 ++++++ .../analytics/kinesis.svg | 10 +++++ .../analytics/lake-formation.svg | 10 +++++ .../managed-service-for-apache-flink.svg | 12 ++++++ .../managed-streaming-for-apache-kafka.svg | 10 +++++ .../analytics/opensearch-service.svg | 10 +++++ .../analytics/quicksight.svg | 10 +++++ .../analytics/redshift.svg | 10 +++++ .../analytics/sagemaker.svg | 4 ++ .../app-integration/appflow.svg | 12 ++++++ .../app-integration/appsync.svg | 12 ++++++ .../app-integration/b2b-data-interchange.svg | 12 ++++++ .../app-integration/eventbridge.svg | 10 +++++ .../app-integration/express-workflows.svg | 10 +++++ .../managed-workflows-for-apache-airflow.svg | 12 ++++++ .../app-integration/mq.svg | 10 +++++ .../simple-notification-service.svg | 10 +++++ .../app-integration/simple-queue-service.svg | 10 +++++ .../app-integration/step-functions.svg | 10 +++++ .../apache-mxnet-on-aws.svg | 10 +++++ .../artificial-intelligence/app-studio.svg | 12 ++++++ .../augmented-ai-a2i.svg | 10 +++++ .../artificial-intelligence/bedrock.svg | 12 ++++++ .../artificial-intelligence/codeguru.svg | 10 +++++ .../artificial-intelligence/codewhisperer.svg | 12 ++++++ .../comprehend-medical.svg | 12 ++++++ .../artificial-intelligence/comprehend.svg | 10 +++++ .../deep-learning-amis.svg | 12 ++++++ .../deep-learning-containers.svg | 10 +++++ .../artificial-intelligence/deepcomposer.svg | 10 +++++ .../artificial-intelligence/deeplens.svg | 10 +++++ .../artificial-intelligence/deepracer.svg | 10 +++++ .../artificial-intelligence/devops-guru.svg | 12 ++++++ .../elastic-inference.svg | 10 +++++ .../artificial-intelligence/forecast.svg | 10 +++++ .../fraud-detector.svg | 10 +++++ .../artificial-intelligence/healthimaging.svg | 12 ++++++ .../artificial-intelligence/healthlake.svg | 12 ++++++ .../artificial-intelligence/healthomics.svg | 10 +++++ .../artificial-intelligence/healthscribe.svg | 12 ++++++ .../artificial-intelligence/kendra.svg | 10 +++++ .../artificial-intelligence/lex.svg | 10 +++++ .../lookout-for-equipment.svg | 12 ++++++ .../lookout-for-metrics.svg | 12 ++++++ .../lookout-for-vision.svg | 12 ++++++ .../artificial-intelligence/monitron.svg | 12 ++++++ .../artificial-intelligence/neuron.svg | 10 +++++ .../artificial-intelligence/nova.svg | 4 ++ .../artificial-intelligence/panorama.svg | 12 ++++++ .../artificial-intelligence/personalize.svg | 10 +++++ .../artificial-intelligence/polly.svg | 10 +++++ .../pytorch-on-aws.svg | 12 ++++++ .../artificial-intelligence/q.svg | 12 ++++++ .../artificial-intelligence/rekognition.svg | 10 +++++ .../artificial-intelligence/sagemaker-ai.svg | 10 +++++ .../sagemaker-ground-truth.svg | 10 +++++ .../sagemaker-studio-lab.svg | 12 ++++++ .../tensorflow-on-aws.svg | 10 +++++ .../artificial-intelligence/textract.svg | 10 +++++ .../artificial-intelligence/transcribe.svg | 10 +++++ .../artificial-intelligence/translate.svg | 10 +++++ .../blockchain/managed-blockchain.svg | 10 +++++ .../blockchain/quantum-ledger-database.svg | 10 +++++ .../alexa-for-business.svg | 10 +++++ .../business-applications/appfabric.svg | 12 ++++++ .../business-applications/chime-sdk.svg | 12 ++++++ .../business-applications/chime.svg | 10 +++++ .../business-applications/connect.svg | 10 +++++ .../end-user-messaging.svg | 11 ++++++ .../business-applications/pinpoint-apis.svg | 12 ++++++ .../business-applications/pinpoint.svg | 12 ++++++ .../simple-email-service.svg | 10 +++++ .../business-applications/supply-chain.svg | 10 +++++ .../business-applications/wickr.svg | 10 +++++ .../business-applications/workdocs-sdk.svg | 12 ++++++ .../business-applications/workdocs.svg | 12 ++++++ .../business-applications/workmail.svg | 10 +++++ .../billing-conductor.svg | 12 ++++++ .../cloud-financial-management/budgets.svg | 10 +++++ .../cost-and-usage-report.svg | 10 +++++ .../cost-explorer.svg | 10 +++++ .../reserved-instance-reporting.svg | 10 +++++ .../savings-plans.svg | 12 ++++++ .../compute/app-runner.svg | 12 ++++++ .../compute/bottlerocket.svg | 12 ++++++ .../compute/compute-batch.svg | 10 +++++ .../compute/compute-optimizer.svg | 12 ++++++ .../aws/architecture-service/compute/dcv.svg | 12 ++++++ .../compute/ec2-auto-scaling.svg | 10 +++++ .../compute/ec2-image-builder.svg | 10 +++++ .../compute/ec2.svg} | 0 .../compute/elastic-beanstalk.svg | 10 +++++ .../compute/elastic-fabric-adapter.svg | 12 ++++++ .../compute/lambda.svg} | 0 .../compute/lightsail-for-research.svg | 10 +++++ .../compute/lightsail.svg | 10 +++++ .../compute/local-zones.svg | 10 +++++ .../compute/nice-enginframe.svg | 12 ++++++ .../compute/nitro-enclaves.svg | 10 +++++ .../compute/outposts-family.svg | 10 +++++ .../compute/outposts-rack.svg | 10 +++++ .../compute/outposts-servers.svg | 12 ++++++ .../compute/parallel-cluster.svg | 12 ++++++ .../compute/parallel-computing-service.svg | 12 ++++++ .../serverless-application-repository.svg | 10 +++++ .../compute/simspace-weaver.svg | 10 +++++ .../compute/wavelength.svg | 10 +++++ .../containers/ecs-anywhere.svg | 12 ++++++ .../containers/eks-anywhere.svg | 12 ++++++ .../containers/eks-cloud.svg | 12 ++++++ .../containers/eks-distro.svg | 12 ++++++ .../containers/elastic-container-registry.svg | 10 +++++ .../containers/elastic-container-service.svg | 10 +++++ .../containers/elastic-kubernetes-service.svg | 10 +++++ .../containers/fargate.svg | 10 +++++ .../red-hat-openshift-service-on-aws.svg | 12 ++++++ .../customer-enablement/activate.svg | 12 ++++++ .../customer-enablement/iq.svg | 12 ++++++ .../customer-enablement/managed-services.svg | 12 ++++++ .../professional-services.svg | 12 ++++++ .../customer-enablement/repost-private.svg | 12 ++++++ .../customer-enablement/repost.svg | 12 ++++++ .../customer-enablement/support.svg | 10 +++++ .../training-certification.svg | 10 +++++ .../architecture-service/database/aurora.svg | 10 +++++ .../database/database-migration-service.svg | 10 +++++ .../database/documentdb.svg | 10 +++++ .../database/dynamodb.svg} | 0 .../database/elasticache.svg | 10 +++++ .../database/keyspaces.svg | 10 +++++ .../database/memorydb.svg | 12 ++++++ .../architecture-service/database/neptune.svg | 10 +++++ .../database/oracle-database-at-aws.svg | 4 ++ .../database/rds.svg} | 0 .../database/timestream.svg | 10 +++++ .../developer-tools/cloud-control-api.svg | 12 ++++++ .../developer-tools/cloud-development-kit.svg | 10 +++++ .../developer-tools/cloud9.svg | 10 +++++ .../developer-tools/cloudshell.svg | 12 ++++++ .../developer-tools/codeartifact.svg | 12 ++++++ .../developer-tools/codebuild.svg | 10 +++++ .../developer-tools/codecatalyst.svg | 10 +++++ .../developer-tools/codecommit.svg | 10 +++++ .../developer-tools/codedeploy.svg | 10 +++++ .../developer-tools/codepipeline.svg | 10 +++++ .../command-line-interface.svg | 10 +++++ .../developer-tools/corretto.svg | 12 ++++++ .../fault-injection-service.svg | 10 +++++ .../infrastructure-composer.svg | 10 +++++ .../developer-tools/tools-and-sdks.svg | 10 +++++ .../developer-tools/x-ray.svg | 10 +++++ .../end-user-computing/appstream-2.svg | 10 +++++ .../end-user-computing/workspaces-family.svg | 10 +++++ .../front-end-web-mobile/amplify.svg | 10 +++++ .../front-end-web-mobile/device-farm.svg | 10 +++++ .../front-end-web-mobile/location-service.svg | 12 ++++++ .../architecture-service/games/gamelift.svg | 12 ++++++ .../games/open-3d-engine.svg | 12 ++++++ .../general-icons/marketplace-dark.svg | 10 +++++ .../general-icons/marketplace-light.svg | 10 +++++ .../internet-of-things/freertos.svg | 10 +++++ .../internet-of-things/iot-analytics.svg | 10 +++++ .../internet-of-things/iot-button.svg | 10 +++++ .../internet-of-things/iot-core.svg | 10 +++++ .../iot-device-defender.svg | 10 +++++ .../iot-device-management.svg | 10 +++++ .../internet-of-things/iot-events.svg | 10 +++++ .../internet-of-things/iot-expresslink.svg | 12 ++++++ .../internet-of-things/iot-fleetwise.svg | 12 ++++++ .../internet-of-things/iot-greengrass.svg | 10 +++++ .../internet-of-things/iot-sitewise.svg | 10 +++++ .../internet-of-things/iot-twinmaker.svg | 12 ++++++ .../management-governance/appconfig.svg | 10 +++++ .../application-auto-scaling.svg | 12 ++++++ .../management-governance/auto-scaling.svg | 10 +++++ .../management-governance/backint-agent.svg | 12 ++++++ .../management-governance/chatbot.svg | 10 +++++ .../management-governance/cloudformation.svg | 10 +++++ .../management-governance/cloudtrail.svg | 10 +++++ .../management-governance/cloudwatch.svg | 10 +++++ .../management-governance/config.svg | 10 +++++ .../console-mobile-application.svg | 12 ++++++ .../management-governance/control-tower.svg | 10 +++++ .../distro-for-opentelemetry.svg | 12 ++++++ .../health-dashboard.svg | 10 +++++ .../management-governance/launch-wizard.svg | 10 +++++ .../management-governance/license-manager.svg | 10 +++++ .../management-governance/managed-grafana.svg | 12 ++++++ .../managed-service-for-prometheus.svg | 12 ++++++ .../management-compute-optimizer.svg | 10 +++++ .../management-console.svg | 10 +++++ .../management-governance/organizations.svg | 10 +++++ .../management-governance/proton.svg | 12 ++++++ .../management-governance/resilience-hub.svg | 10 +++++ .../resource-explorer.svg | 10 +++++ .../management-governance/service-catalog.svg | 10 +++++ .../service-management-connector.svg | 10 +++++ .../management-governance/systems-manager.svg | 10 +++++ .../telco-network-builder.svg | 10 +++++ .../management-governance/trusted-advisor.svg | 10 +++++ .../user-notifications.svg | 4 ++ .../well-architected-tool.svg | 10 +++++ .../media-services/deadline-cloud.svg | 12 ++++++ .../media-services/elastic-transcoder.svg | 10 +++++ .../elemental-appliances-and-software.svg | 10 +++++ .../media-services/elemental-conductor.svg | 10 +++++ .../media-services/elemental-delta.svg | 10 +++++ .../media-services/elemental-link.svg | 12 ++++++ .../media-services/elemental-live.svg | 10 +++++ .../media-services/elemental-mediaconnect.svg | 10 +++++ .../media-services/elemental-mediaconvert.svg | 10 +++++ .../media-services/elemental-medialive.svg | 10 +++++ .../media-services/elemental-mediapackage.svg | 10 +++++ .../media-services/elemental-mediastore.svg | 10 +++++ .../media-services/elemental-mediatailor.svg | 10 +++++ .../media-services/elemental-server.svg | 10 +++++ .../interactive-video-service.svg | 12 ++++++ .../media-kinesis-video-streams.svg | 10 +++++ .../media-services/thinkbox-deadline.svg | 12 ++++++ .../media-services/thinkbox-frost.svg | 12 ++++++ .../media-services/thinkbox-krakatoa.svg | 12 ++++++ .../media-services/thinkbox-sequoia.svg | 10 +++++ .../media-services/thinkbox-stoke.svg | 12 ++++++ .../media-services/thinkbox-xmesh.svg | 12 ++++++ .../application-discovery-service.svg | 10 +++++ .../application-migration-service.svg | 10 +++++ .../data-transfer-terminal.svg | 11 ++++++ .../migration-modernization/datasync.svg | 10 +++++ .../elastic-vmware-service.svg | 4 ++ .../mainframe-modernization.svg | 12 ++++++ .../migration-evaluator.svg | 12 ++++++ .../migration-modernization/migration-hub.svg | 10 +++++ .../transfer-family.svg | 10 +++++ .../api-gateway.svg | 10 +++++ .../networking-content-delivery/app-mesh.svg | 10 +++++ .../application-recovery-controller.svg | 11 ++++++ .../client-vpn.svg | 10 +++++ .../networking-content-delivery/cloud-map.svg | 10 +++++ .../networking-content-delivery/cloud-wan.svg | 10 +++++ .../cloudfront.svg | 10 +++++ .../direct-connect.svg | 10 +++++ .../elastic-load-balancing.svg | 10 +++++ .../global-accelerator.svg | 10 +++++ .../private-5g.svg | 10 +++++ .../privatelink.svg | 10 +++++ .../networking-content-delivery/route-53.svg | 10 +++++ .../site-to-site-vpn.svg | 12 ++++++ .../transit-gateway.svg | 10 +++++ .../verified-access.svg | 10 +++++ .../virtual-private-cloud.svg} | 0 .../vpc-lattice.svg | 10 +++++ .../quantum-technologies/braket.svg | 10 +++++ .../robotics/robomaker.svg | 10 +++++ .../satellite/ground-station.svg | 10 +++++ .../security-identity-compliance/artifact.svg | 10 +++++ .../audit-manager.svg | 12 ++++++ .../certificate-manager.svg | 10 +++++ .../cloud-directory.svg | 12 ++++++ .../security-identity-compliance/cloudhsm.svg | 10 +++++ .../security-identity-compliance/cognito.svg | 10 +++++ .../detective.svg | 10 +++++ .../directory-service.svg | 10 +++++ .../firewall-manager.svg | 10 +++++ .../guardduty.svg | 10 +++++ .../iam-identity-center.svg | 10 +++++ .../identity-and-access-management.svg | 10 +++++ .../inspector.svg | 10 +++++ .../key-management-service.svg | 10 +++++ .../security-identity-compliance/macie.svg | 10 +++++ .../network-firewall.svg | 12 ++++++ .../payment-cryptography.svg | 12 ++++++ .../private-certificate-authority.svg | 10 +++++ .../resource-access-manager.svg | 10 +++++ .../secrets-manager.svg | 10 +++++ .../security-hub.svg | 10 +++++ .../security-incident-response.svg | 10 +++++ .../security-lake.svg | 10 +++++ .../security-identity-compliance/shield.svg | 10 +++++ .../security-identity-compliance/signer.svg | 12 ++++++ .../verified-permissions.svg | 10 +++++ .../security-identity-compliance/waf.svg | 12 ++++++ .../architecture-service/storage/backup.svg | 10 +++++ .../aws/architecture-service/storage/efs.svg | 12 ++++++ .../storage/elastic-block-store.svg | 10 +++++ .../storage/elastic-disaster-recovery.svg | 10 +++++ .../storage/file-cache.svg | 10 +++++ .../storage/fsx-for-lustre.svg | 10 +++++ .../storage/fsx-for-netapp-ontap.svg | 12 ++++++ .../storage/fsx-for-openzfs.svg | 10 +++++ .../storage/fsx-for-wfs.svg | 12 ++++++ .../aws/architecture-service/storage/fsx.svg | 12 ++++++ .../storage/s3-on-outposts.svg | 12 ++++++ .../simple-storage-service-glacier.svg | 10 +++++ .../storage/simple-storage-service.svg} | 0 .../storage/snowball-edge.svg | 14 +++++++ .../architecture-service/storage/snowball.svg | 12 ++++++ .../storage/storage-gateway.svg | 10 +++++ src/icons/aws/category/category-analytics.svg | 11 ++++++ .../category-application-integration.svg | 11 ++++++ .../category-artificial-intelligence.svg | 11 ++++++ .../aws/category/category-blockchain.svg | 11 ++++++ .../category-business-applications.svg | 11 ++++++ .../category-cloud-financial-management.svg | 11 ++++++ src/icons/aws/category/category-compute.svg | 11 ++++++ .../aws/category/category-contact-center.svg | 11 ++++++ .../aws/category/category-containers.svg | 11 ++++++ .../category/category-customer-enablement.svg | 11 ++++++ src/icons/aws/category/category-database.svg | 11 ++++++ .../aws/category/category-developer-tools.svg | 11 ++++++ .../category/category-end-user-computing.svg | 11 ++++++ .../category-front-end-web-mobile.svg | 11 ++++++ src/icons/aws/category/category-games.svg | 11 ++++++ .../category/category-internet-of-things.svg | 11 ++++++ .../category-management-governance.svg | 11 ++++++ .../aws/category/category-media-services.svg | 11 ++++++ .../category-migration-modernization.svg | 11 ++++++ .../category-networking-content-delivery.svg | 11 ++++++ .../category-quantum-technologies.svg | 11 ++++++ src/icons/aws/category/category-robotics.svg | 11 ++++++ src/icons/aws/category/category-satellite.svg | 11 ++++++ .../category-security-identity-compliance.svg | 11 ++++++ .../aws/category/category-serverless.svg | 11 ++++++ src/icons/aws/category/category-storage.svg | 11 ++++++ .../res-athena-data-source-connectors.svg | 7 ++++ .../res-cloudse-se-documents.svg | 7 ++++ .../res-data-exchange-for-apis.svg | 7 ++++ .../res-datazone-business-data-catalog.svg | 7 ++++ .../res-datazone-data-portal.svg | 7 ++++ .../res-datazone-data-projects.svg | 7 ++++ .../res-analytics/res-emr-cluster.svg | 7 ++++ .../res-analytics/res-emr-emr-engine.svg | 7 ++++ .../res-analytics/res-emr-hdfs-cluster.svg | 7 ++++ .../res-analytics/res-glue-crawler.svg | 7 ++++ .../res-analytics/res-glue-data-catalog.svg | 7 ++++ .../res-analytics/res-glue-data-quality.svg | 7 ++++ .../res-analytics/res-glue-glue-for-ray.svg | 7 ++++ .../res-lake-formation-data-lake.svg | 7 ++++ .../res-analytics/res-msk-msk-connect.svg | 7 ++++ ...nse-service-cluster-administrator-node.svg | 7 ++++ .../res-opense-service-data-node.svg | 7 ++++ .../res-opense-service-index.svg | 7 ++++ .../res-opense-service-observability.svg | 7 ++++ .../res-opense-service-opense-dashboards.svg | 7 ++++ .../res-opense-service-opense-ingestion.svg | 7 ++++ .../res-opense-service-traces.svg | 7 ++++ .../res-opense-service-ultrawarm-node.svg | 7 ++++ .../res-quicksight-paginated-reports.svg | 7 ++++ .../res-analytics/res-redshift-auto-copy.svg | 7 ++++ .../res-redshift-data-sharing-governance.svg | 7 ++++ .../res-redshift-dense-compute-node.svg | 7 ++++ .../res-redshift-dense-storage-node.svg | 7 ++++ .../res-analytics/res-redshift-ml.svg | 7 ++++ .../res-redshift-query-editor-v2.svg | 7 ++++ .../res-analytics/res-redshift-ra3.svg | 7 ++++ .../res-redshift-streaming-ingestion.svg | 7 ++++ .../res-eventbridge-custom-event-bus.svg | 7 ++++ .../res-eventbridge-default-event-bus.svg | 7 ++++ .../res-eventbridge-event.svg | 7 ++++ .../res-eventbridge-pipes.svg | 7 ++++ .../res-eventbridge-rule.svg | 7 ++++ .../res-eventbridge-saas-partner-event.svg | 7 ++++ .../res-eventbridge-scheduler.svg | 7 ++++ .../res-eventbridge-schema-registry.svg | 7 ++++ .../res-eventbridge-schema.svg | 7 ++++ .../res-mq-broker.svg | 7 ++++ ...otification-service-email-notification.svg | 7 ++++ ...notification-service-http-notification.svg | 7 ++++ .../res-simple-notification-service-topic.svg | 7 ++++ .../res-simple-queue-service-message.svg | 7 ++++ .../res-simple-queue-service-queue.svg | 7 ++++ .../res-devops-guru-insights.svg | 7 ++++ .../res-rekognition-image.svg | 7 ++++ .../res-rekognition-video.svg | 7 ++++ .../res-sagemaker-canvas.svg | 7 ++++ .../res-sagemaker-geospatial-ml.svg | 7 ++++ .../res-sagemaker-model.svg | 7 ++++ .../res-sagemaker-notebook.svg | 7 ++++ .../res-sagemaker-shadow-testing.svg | 7 ++++ .../res-sagemaker-train.svg | 7 ++++ .../res-textract-analyze-lending.svg | 7 ++++ .../res-managed-blockchain-blockchain.svg | 7 ++++ .../res-pinpoint-journey.svg | 7 ++++ .../res-simple-email-service-email.svg | 7 ++++ .../aws/resource/res-compute/res-ec2-ami.svg | 7 ++++ .../res-compute/res-ec2-auto-scaling.svg | 7 ++++ .../res-compute/res-ec2-db-instance.svg | 7 ++++ .../res-ec2-elastic-ip-address.svg | 7 ++++ .../res-ec2-instance-with-cloudwatch.svg | 7 ++++ .../resource/res-compute/res-ec2-instance.svg | 7 ++++ .../res-compute/res-ec2-instances.svg | 7 ++++ ...res-ec2-microservice-extractor-for-net.svg | 7 ++++ .../resource/res-compute/res-ec2-rescue.svg | 7 ++++ .../res-compute/res-ec2-spot-instance.svg | 7 ++++ .../res-elastic-beanstalk-application.svg | 7 ++++ .../res-elastic-beanstalk-deployment.svg | 7 ++++ .../res-lambda-lambda-function.svg | 7 ++++ .../res-elastic-container-registry-image.svg | 7 ++++ ...es-elastic-container-registry-registry.svg | 7 ++++ ...-elastic-container-service-container-1.svg | 7 ++++ ...-elastic-container-service-container-2.svg | 7 ++++ ...-elastic-container-service-container-3.svg | 7 ++++ ...-elastic-container-service-copiiot-cli.svg | 7 ++++ ...-container-service-ecs-service-connect.svg | 7 ++++ .../res-elastic-container-service-service.svg | 7 ++++ .../res-elastic-container-service-task.svg | 7 ++++ ...tic-kubernetes-service-eks-on-outposts.svg | 7 ++++ .../res-aurora-aurora-instance-alternate.svg | 7 ++++ .../res-database/res-aurora-instance.svg | 7 ++++ .../res-aurora-mariadb-instance-alternate.svg | 7 ++++ .../res-aurora-mariadb-instance.svg | 7 ++++ .../res-aurora-mysql-instance-alternate.svg | 7 ++++ .../res-aurora-mysql-instance.svg | 7 ++++ .../res-aurora-oracle-instance-alternate.svg | 7 ++++ .../res-aurora-oracle-instance.svg | 7 ++++ .../res-aurora-piops-instance.svg | 7 ++++ ...s-aurora-postgresql-instance-alternate.svg | 7 ++++ .../res-aurora-postgresql-instance.svg | 7 ++++ .../res-aurora-rds-instance-aternate.svg | 7 ++++ .../res-database/res-aurora-rds-instance.svg | 7 ++++ ...s-aurora-sql-server-instance-alternate.svg | 7 ++++ .../res-aurora-sql-server-instance.svg | 7 ++++ ...ted-language-extensions-for-postgresql.svg | 7 ++++ ...ice-database-migration-workflow-or-job.svg | 7 ++++ .../res-documentdb-elastic-clusters.svg | 7 ++++ .../res-database/res-dynamodb-attribute.svg | 7 ++++ .../res-database/res-dynamodb-attributes.svg | 7 ++++ .../res-dynamodb-dynamodb-accelerator.svg | 7 ++++ .../res-dynamodb-global-secondary-index.svg | 7 ++++ .../res-database/res-dynamodb-item.svg | 7 ++++ .../res-database/res-dynamodb-items.svg | 7 ++++ ...s-dynamodb-standard-access-table-class.svg | 7 ++++ ...standard-infrequent-access-table-class.svg | 7 ++++ .../res-database/res-dynamodb-stream.svg | 7 ++++ .../res-database/res-dynamodb-table.svg | 7 ++++ .../res-elasticache-cache-node.svg | 7 ++++ ...-elasticache-elasticache-for-memcached.svg | 7 ++++ .../res-elasticache-elasticache-for-redis.svg | 7 ++++ ...res-elasticache-elasticache-for-valkey.svg | 3 ++ .../res-rds-blue-green-deployments.svg | 7 ++++ .../res-rds-multi-az-db-cluster.svg | 7 ++++ .../res-database/res-rds-multi-az.svg | 7 ++++ .../res-database/res-rds-optimized-writes.svg | 7 ++++ .../res-rds-proxy-instance-alternate.svg | 7 ++++ .../res-database/res-rds-proxy-instance.svg | 7 ++++ ...ted-language-extensions-for-postgresql.svg | 7 ++++ .../res-developer-tools/res-cloud9-cloud9.svg | 7 ++++ .../res-workspaces-family-workspaces-core.svg | 7 ++++ ...paces-family-workspaces-secure-browser.svg | 7 ++++ .../res-workspaces-family-workspaces.svg | 7 ++++ .../res-amplify-amplify-studio.svg | 7 ++++ .../res-location-service-geofence.svg | 7 ++++ .../res-location-service-map .svg | 7 ++++ .../res-location-service-place.svg | 7 ++++ .../res-location-service-routes.svg | 7 ++++ .../res-location-service-track .svg | 7 ++++ .../res-dark/res-alert-dark.svg | 7 ++++ .../res-dark/res-authenticated-user-dark.svg | 7 ++++ .../res-dark/res-camera-dark.svg | 7 ++++ .../res-dark/res-chat-dark.svg | 7 ++++ .../res-dark/res-client-dark.svg | 7 ++++ .../res-dark/res-cold-storage-dark.svg | 7 ++++ .../res-dark/res-credentials-dark.svg | 7 ++++ .../res-dark/res-data-stream-dark.svg | 7 ++++ .../res-dark/res-data-table-dark.svg | 7 ++++ .../res-dark/res-database-dark.svg | 7 ++++ .../res-dark/res-disk-dark.svg | 7 ++++ .../res-dark/res-document-dark.svg | 7 ++++ .../res-dark/res-documents-dark.svg | 7 ++++ .../res-dark/res-email-dark.svg | 7 ++++ .../res-dark/res-firewall-dark.svg | 7 ++++ .../res-dark/res-folder-dark.svg | 7 ++++ .../res-dark/res-folders-dark.svg | 7 ++++ .../res-dark/res-forums-dark.svg | 7 ++++ .../res-dark/res-gear-dark.svg | 7 ++++ .../res-dark/res-generic-application-dark.svg | 7 ++++ .../res-dark/res-git-repository-dark.svg | 7 ++++ .../res-dark/res-globe-dark.svg | 7 ++++ .../res-dark/res-internet-alt1-dark.svg | 7 ++++ .../res-dark/res-internet-alt2-dark.svg | 7 ++++ .../res-dark/res-internet-dark.svg | 7 ++++ .../res-dark/res-json-script-dark.svg | 7 ++++ .../res-dark/res-logs-dark.svg | 7 ++++ .../res-dark/res-magnifying-glass-dark.svg | 7 ++++ .../res-dark/res-management-console-dark.svg | 7 ++++ .../res-dark/res-metrics-dark.svg | 7 ++++ .../res-dark/res-mobile-client-dark.svg | 7 ++++ .../res-dark/res-multimedia-dark.svg | 7 ++++ .../res-dark/res-office-building-dark.svg | 7 ++++ .../res-programming-language-dark.svg | 7 ++++ .../res-dark/res-question-dark.svg | 7 ++++ .../res-dark/res-recover-dark.svg | 7 ++++ .../res-dark/res-saml-token-dark.svg | 7 ++++ .../res-dark/res-sdk-dark.svg | 7 ++++ .../res-dark/res-server-dark.svg | 7 ++++ .../res-dark/res-servers-dark.svg | 7 ++++ .../res-dark/res-shield-dark.svg | 7 ++++ .../res-dark/res-source-code-dark.svg | 7 ++++ .../res-dark/res-ssl-padlock-dark.svg | 7 ++++ .../res-dark/res-tape-storage-dark.svg | 7 ++++ .../res-dark/res-toolkit-dark.svg | 7 ++++ .../res-dark/res-user-dark.svg | 7 ++++ .../res-dark/res-users-dark.svg | 7 ++++ .../res-light/res-alert-light.svg | 7 ++++ .../res-authenticated-user-light.svg | 7 ++++ .../res-light/res-camera-light.svg | 7 ++++ .../res-light/res-chat-light.svg | 7 ++++ .../res-light/res-client-light.svg | 7 ++++ .../res-light/res-cold-storage-light.svg | 7 ++++ .../res-light/res-credentials-light.svg | 7 ++++ .../res-light/res-data-stream-light.svg | 7 ++++ .../res-light/res-data-table-light.svg | 7 ++++ .../res-light/res-database-light.svg | 7 ++++ .../res-light/res-disk-light.svg | 7 ++++ .../res-light/res-document-light.svg | 7 ++++ .../res-light/res-documents-light.svg | 7 ++++ .../res-light/res-email-light.svg | 7 ++++ .../res-light/res-firewall-light.svg | 7 ++++ .../res-light/res-folder-light.svg | 7 ++++ .../res-light/res-folders-light.svg | 7 ++++ .../res-light/res-forums-light.svg | 7 ++++ .../res-light/res-gear-light.svg | 7 ++++ .../res-generic-application-light.svg | 7 ++++ .../res-light/res-git-repository-light.svg | 7 ++++ .../res-light/res-globe-light.svg | 7 ++++ .../res-light/res-internet-alt1-light.svg | 7 ++++ .../res-light/res-internet-alt2-light.svg | 7 ++++ .../res-light/res-internet-light.svg | 7 ++++ .../res-light/res-json-script-light.svg | 7 ++++ .../res-light/res-logs-light.svg | 7 ++++ .../res-light/res-magnifying-glass-light.svg | 7 ++++ .../res-management-console-light.svg | 7 ++++ .../res-light/res-metrics-light.svg | 7 ++++ .../res-light/res-mobile-client-light.svg | 7 ++++ .../res-light/res-multimedia-light.svg | 7 ++++ .../res-light/res-office-building-light.svg | 7 ++++ .../res-programming-language-light.svg | 7 ++++ .../res-light/res-question-light.svg | 7 ++++ .../res-light/res-recover-light.svg | 7 ++++ .../res-light/res-saml-token-light.svg | 7 ++++ .../res-light/res-sdk-light.svg | 7 ++++ .../res-light/res-server-light.svg | 7 ++++ .../res-light/res-servers-light.svg | 7 ++++ .../res-light/res-shield-light.svg | 7 ++++ .../res-light/res-source-code-light.svg | 7 ++++ .../res-light/res-ssl-padlock-light.svg | 7 ++++ .../res-light/res-tape-storage-light.svg | 7 ++++ .../res-light/res-toolkit-light.svg | 7 ++++ .../res-light/res-user-light.svg | 7 ++++ .../res-light/res-users-light.svg | 7 ++++ .../aws/resource/res-iot/res-iot-action.svg | 7 ++++ .../aws/resource/res-iot/res-iot-actuator.svg | 7 ++++ .../res-iot/res-iot-alexa-enabled-device.svg | 7 ++++ .../resource/res-iot/res-iot-alexa-skill.svg | 7 ++++ .../res-iot/res-iot-alexa-voice-service.svg | 7 ++++ .../res-iot/res-iot-analytics-channel.svg | 7 ++++ .../res-iot/res-iot-analytics-data-store.svg | 7 ++++ .../res-iot/res-iot-analytics-dataset.svg | 7 ++++ .../res-iot/res-iot-analytics-notebook.svg | 7 ++++ .../res-iot/res-iot-analytics-pipeline.svg | 7 ++++ .../resource/res-iot/res-iot-certificate.svg | 7 ++++ .../res-iot/res-iot-core-device-advisor.svg | 7 ++++ .../res-iot/res-iot-core-device-location.svg | 7 ++++ .../res-iot/res-iot-desired-state.svg | 7 ++++ ...es-iot-device-defender-iot-device-jobs.svg | 7 ++++ .../res-iot/res-iot-device-gateway.svg | 7 ++++ .../res-iot-device-management-fleet-hub.svg | 7 ++++ .../res-iot/res-iot-device-tester.svg | 7 ++++ .../aws/resource/res-iot/res-iot-echo.svg | 7 ++++ .../res-iot/res-iot-fire-tv-stick.svg | 7 ++++ .../aws/resource/res-iot/res-iot-fire-tv.svg | 7 ++++ .../res-iot/res-iot-greengrass-artifact.svg | 7 ++++ ...-greengrass-component-machine-learning.svg | 7 ++++ .../res-iot-greengrass-component-nucleus.svg | 7 ++++ .../res-iot-greengrass-component-private.svg | 7 ++++ .../res-iot-greengrass-component-public.svg | 7 ++++ .../res-iot/res-iot-greengrass-component.svg | 7 ++++ .../res-iot/res-iot-greengrass-connector.svg | 7 ++++ ...-greengrass-interprocess-communication.svg | 7 ++++ .../res-iot/res-iot-greengrass-protocol.svg | 7 ++++ .../res-iot/res-iot-greengrass-recipe.svg | 7 ++++ .../res-iot-greengrass-stream-manager.svg | 7 ++++ .../res-iot/res-iot-hardware-board.svg | 7 ++++ .../res-iot/res-iot-http-protocol.svg | 7 ++++ .../res-iot/res-iot-http2-protocol.svg | 7 ++++ .../res-iot/res-iot-lambda-function.svg | 7 ++++ .../res-iot/res-iot-lorawan-protocol.svg | 7 ++++ .../res-iot/res-iot-mqtt-protocol.svg | 7 ++++ .../res-iot/res-iot-over-air-update.svg | 7 ++++ .../aws/resource/res-iot/res-iot-policy.svg | 7 ++++ .../res-iot/res-iot-reported-state.svg | 7 ++++ .../aws/resource/res-iot/res-iot-rule.svg | 7 ++++ .../aws/resource/res-iot/res-iot-sailboat.svg | 7 ++++ .../aws/resource/res-iot/res-iot-sensor.svg | 7 ++++ .../aws/resource/res-iot/res-iot-servo.svg | 7 ++++ .../aws/resource/res-iot/res-iot-shadow.svg | 7 ++++ .../resource/res-iot/res-iot-simulator.svg | 7 ++++ .../res-iot/res-iot-sitewise-asset-hiery.svg | 7 ++++ .../res-iot/res-iot-sitewise-asset-model.svg | 7 ++++ .../res-iot-sitewise-asset-properties.svg | 7 ++++ .../res-iot/res-iot-sitewise-asset.svg | 7 ++++ .../res-iot/res-iot-sitewise-data-streams.svg | 7 ++++ .../resource/res-iot/res-iot-thing-bank.svg | 7 ++++ .../res-iot/res-iot-thing-bicycle.svg | 7 ++++ .../resource/res-iot/res-iot-thing-camera.svg | 7 ++++ .../resource/res-iot/res-iot-thing-car.svg | 7 ++++ .../resource/res-iot/res-iot-thing-cart.svg | 7 ++++ .../res-iot/res-iot-thing-coffee-pot.svg | 7 ++++ .../res-iot/res-iot-thing-door-lock.svg | 7 ++++ .../res-iot/res-iot-thing-factory.svg | 7 ++++ .../res-iot/res-iot-thing-freertos-device.svg | 7 ++++ .../res-iot/res-iot-thing-generic.svg | 7 ++++ .../resource/res-iot/res-iot-thing-house.svg | 7 ++++ .../res-iot/res-iot-thing-humidity-sensor.svg | 7 ++++ .../res-iot/res-iot-thing-industrial-pc.svg | 7 ++++ .../res-iot/res-iot-thing-lightbulb.svg | 7 ++++ .../res-iot-thing-medical-emergency.svg | 7 ++++ .../resource/res-iot/res-iot-thing-plc.svg | 7 ++++ .../res-iot-thing-police-emergency.svg | 7 ++++ .../resource/res-iot/res-iot-thing-relay.svg | 7 ++++ .../res-iot/res-iot-thing-stacklight.svg | 7 ++++ ...-iot-thing-temperature-humidity-sensor.svg | 7 ++++ .../res-iot-thing-temperature-sensor.svg | 7 ++++ ...iot-thing-temperature-vibration-sensor.svg | 7 ++++ .../res-iot/res-iot-thing-thermostat.svg | 7 ++++ .../resource/res-iot/res-iot-thing-travel.svg | 7 ++++ .../res-iot/res-iot-thing-utility.svg | 7 ++++ .../res-iot-thing-vibration-sensor.svg | 7 ++++ .../res-iot/res-iot-thing-windfarm.svg | 7 ++++ .../aws/resource/res-iot/res-iot-topic.svg | 7 ++++ .../res-cloudformation-change-set.svg | 7 ++++ .../res-cloudformation-stack.svg | 7 ++++ .../res-cloudformation-template.svg | 7 ++++ .../res-cloudtrail-cloudtrail-lake.svg | 7 ++++ .../res-cloudwatch-alarm.svg | 7 ++++ ...cloudwatch-cross-account-observability.svg | 7 ++++ .../res-cloudwatch-data-protection.svg | 7 ++++ .../res-cloudwatch-event-event-based.svg | 7 ++++ .../res-cloudwatch-event-time-based.svg | 7 ++++ .../res-cloudwatch-evidently.svg | 7 ++++ .../res-cloudwatch-logs.svg | 7 ++++ .../res-cloudwatch-metrics-insights.svg | 7 ++++ .../res-cloudwatch-rule.svg | 7 ++++ .../res-cloudwatch-rum.svg | 7 ++++ .../res-cloudwatch-synthetics.svg | 7 ++++ ...-license-manager-application-discovery.svg | 7 ++++ .../res-license-manager-license-blending.svg | 7 ++++ .../res-organizations-account.svg | 7 ++++ .../res-organizations-management-account.svg | 7 ++++ .../res-organizations-organizational-unit.svg | 7 ++++ ...es-systems-manager-application-manager.svg | 7 ++++ .../res-systems-manager-automation.svg | 7 ++++ .../res-systems-manager-change-calendar.svg | 7 ++++ .../res-systems-manager-change-manager.svg | 7 ++++ .../res-systems-manager-compliance.svg | 7 ++++ .../res-systems-manager-distributor.svg | 7 ++++ .../res-systems-manager-documents.svg | 7 ++++ .../res-systems-manager-incident-manager.svg | 7 ++++ .../res-systems-manager-inventory.svg | 7 ++++ ...es-systems-manager-maintenance-windows.svg | 7 ++++ .../res-systems-manager-opscenter.svg | 7 ++++ .../res-systems-manager-parameter-store.svg | 7 ++++ .../res-systems-manager-patch-manager.svg | 7 ++++ .../res-systems-manager-run-command.svg | 7 ++++ .../res-systems-manager-session-manager.svg | 7 ++++ .../res-systems-manager-state-manager.svg | 7 ++++ .../res-trusted-advisor-checklist-cost.svg | 7 ++++ ...usted-advisor-checklist-fault-tolerant.svg | 7 ++++ ...-trusted-advisor-checklist-performance.svg | 7 ++++ ...res-trusted-advisor-checklist-security.svg | 7 ++++ .../res-trusted-advisor-checklist.svg | 7 ++++ .../res-cloud-digital-interface.svg | 7 ++++ ...ntal-mediaconnect-mediaconnect-gateway.svg | 7 ++++ ...-discovery-service-agentless-collector.svg | 7 ++++ ...tion-discovery-service-discovery-agent.svg | 7 ++++ ...-service-migration-evaluator-collector.svg | 7 ++++ .../res-datasync-agent.svg | 7 ++++ .../res-datasync-discovery.svg | 7 ++++ .../res-mainframe-modernization-analyzer.svg | 7 ++++ .../res-mainframe-modernization-compiler.svg | 7 ++++ .../res-mainframe-modernization-converter.svg | 7 ++++ .../res-mainframe-modernization-developer.svg | 7 ++++ .../res-mainframe-modernization-runtime.svg | 7 ++++ ...ation-hub-refactor-spaces-applications.svg | 7 ++++ ...ation-hub-refactor-spaces-environments.svg | 7 ++++ ...migration-hub-refactor-spaces-services.svg | 7 ++++ .../res-transfer-family-as2.svg | 7 ++++ .../res-transfer-family-ftp.svg | 7 ++++ .../res-transfer-family-ftps.svg | 7 ++++ .../res-transfer-family-sftp.svg | 7 ++++ .../res-api-gateway-endpoint.svg | 5 +++ .../res-app-mesh-mesh.svg | 7 ++++ .../res-app-mesh-virtual-gateway.svg | 7 ++++ .../res-app-mesh-virtual-node.svg | 7 ++++ .../res-app-mesh-virtual-router.svg | 7 ++++ .../res-app-mesh-virtual-service.svg | 7 ++++ .../res-cloud-map-namespace.svg | 7 ++++ .../res-cloud-map-resource.svg | 7 ++++ .../res-cloud-map-service.svg | 7 ++++ .../res-cloud-wan-core-network-edge.svg | 7 ++++ .../res-cloud-wan-segment-network.svg | 7 ++++ ...transit-gateway-route-table-attachment.svg | 7 ++++ .../res-cloudfront-download-distribution.svg | 7 ++++ .../res-cloudfront-edge-location.svg | 7 ++++ .../res-cloudfront-functions.svg | 7 ++++ .../res-cloudfront-streaming-distribution.svg | 7 ++++ .../res-direct-connect-gateway.svg | 7 ++++ ...ad-balancing-application-load-balancer.svg | 7 ++++ ...c-load-balancing-classic-load-balancer.svg | 7 ++++ ...c-load-balancing-gateway-load-balancer.svg | 7 ++++ ...c-load-balancing-network-load-balancer.svg | 7 ++++ .../res-route-53-hosted-zone.svg | 7 ++++ .../res-route-53-readiness-checks.svg | 7 ++++ .../res-route-53-resolver-dns-firewall.svg | 7 ++++ .../res-route-53-resolver-query-logging.svg | 7 ++++ .../res-route-53-resolver.svg | 7 ++++ .../res-route-53-route-table.svg | 7 ++++ .../res-route-53-routing-controls.svg | 7 ++++ .../res-transit-gateway-attachment.svg | 7 ++++ .../res-vpc-carrier-gateway.svg | 7 ++++ .../res-vpc-customer-gateway.svg | 7 ++++ .../res-vpc-elastic-network-adapter.svg | 7 ++++ .../res-vpc-elastic-network-interface.svg | 7 ++++ .../res-vpc-endpoints.svg | 7 ++++ .../res-vpc-flow-logs.svg | 7 ++++ .../res-vpc-internet-gateway.svg | 7 ++++ .../res-vpc-nat-gateway.svg | 7 ++++ .../res-vpc-network-access-analyzer.svg | 7 ++++ .../res-vpc-network-access-control-list.svg | 7 ++++ .../res-vpc-peering-connection.svg | 7 ++++ .../res-vpc-reachability-analyzer.svg | 7 ++++ .../res-vpc-router.svg | 7 ++++ .../res-vpc-traffic-mirroring.svg | 7 ++++ .../res-vpc-virtual-private-cloud-vpc.svg | 7 ++++ .../res-vpc-vpn-connection.svg | 7 ++++ .../res-vpc-vpn-gateway.svg | 7 ++++ .../res-braket-chandelier.svg | 7 ++++ .../res-braket-chip.svg | 7 ++++ .../res-braket-embedded-simulator.svg | 7 ++++ .../res-braket-managed-simulator.svg | 7 ++++ .../res-braket-noise-simulator.svg | 7 ++++ .../res-braket-qpu.svg | 7 ++++ .../res-braket-simulator-1.svg | 7 ++++ .../res-braket-simulator-2.svg | 7 ++++ .../res-braket-simulator-3.svg | 7 ++++ .../res-braket-simulator-4.svg | 7 ++++ .../res-braket-simulator.svg | 7 ++++ .../res-braket-state-vector.svg | 7 ++++ .../res-braket-tensor-network.svg | 7 ++++ .../res-robomaker-cloud-extensions-ros.svg | 7 ++++ .../res-robomaker-development-environment.svg | 7 ++++ .../res-robomaker-fleet-management.svg | 7 ++++ .../res-robotics/res-robomaker-simulation.svg | 7 ++++ ...tificate-manager-certificate-authority.svg | 7 ++++ .../res-directory-service-ad-connector.svg | 7 ++++ ...directory-service-managed-microsoft-ad.svg | 7 ++++ .../res-directory-service-simple-ad.svg | 7 ++++ .../res-identity-access-management-add-on.svg | 7 ++++ ...-access-management-data-encryption-key.svg | 7 ++++ ...ntity-access-management-encrypted-data.svg | 7 ++++ ...-access-management-iam-access-analyzer.svg | 7 ++++ ...y-access-management-iam-roles-anywhere.svg | 7 ++++ ...nagement-long-term-security-credential.svg | 7 ++++ ...s-identity-access-management-mfa-token.svg | 7 ++++ ...identity-access-management-permissions.svg | 7 ++++ .../res-identity-access-management-role.svg | 7 ++++ ...entity-access-management-sts-alternate.svg | 7 ++++ .../res-identity-access-management-sts.svg | 7 ++++ ...nagement-temporary-security-credential.svg | 7 ++++ .../res-inspector-agent.svg | 7 ++++ ...-management-service-external-key-store.svg | 7 ++++ .../res-network-firewall-endpoints.svg | 7 ++++ .../res-security-hub-finding.svg | 7 ++++ .../res-shield-shield-advanced.svg | 7 ++++ .../res-waf-bad-bot.svg | 7 ++++ .../res-waf-bot-control.svg | 7 ++++ .../res-waf-bot.svg | 7 ++++ .../res-waf-filtering-rule.svg | 7 ++++ .../res-waf-labels.svg | 7 ++++ .../res-waf-managed-rule.svg | 7 ++++ .../res-waf-rule.svg | 7 ++++ .../res-storage/res-backup-audit-manager.svg | 7 ++++ .../res-backup-backup-for-cloudformation.svg | 7 ++++ .../res-storage/res-backup-backup-plan.svg | 7 ++++ .../res-storage/res-backup-backup-restore.svg | 7 ++++ ...ackup-support-for-fsx-for-netapp-ontap.svg | 7 ++++ .../res-backup-backup-support-for-s3.svg | 7 ++++ ...up-backup-support-for-vmware-workloads.svg | 7 ++++ .../res-storage/res-backup-backup-vault.svg | 7 ++++ .../res-backup-compliance-reporting.svg | 7 ++++ .../res-storage/res-backup-compute.svg | 7 ++++ .../res-storage/res-backup-database.svg | 7 ++++ .../res-storage/res-backup-gateway.svg | 7 ++++ .../res-storage/res-backup-legal-hold.svg | 7 ++++ .../res-backup-recovery-point-objective.svg | 7 ++++ .../res-backup-recovery-time-objective.svg | 7 ++++ .../res-storage/res-backup-storage.svg | 7 ++++ .../res-storage/res-backup-vault-lock.svg | 7 ++++ .../res-backup-virtual-machine-monitor.svg | 7 ++++ .../res-backup-virtual-machine.svg | 7 ++++ ...tic-block-store-data-lifecycle-manager.svg | 7 ++++ ...s-elastic-block-store-multiple-volumes.svg | 7 ++++ .../res-elastic-block-store-snapshot.svg | 7 ++++ .../res-elastic-block-store-volume-gp3.svg | 7 ++++ .../res-elastic-block-store-volume.svg | 7 ++++ ...ic-file-system-efs-intelligent-tiering.svg | 7 ++++ ...-system-efs-one-zone-infrequent-access.svg | 7 ++++ .../res-elastic-file-system-efs-one-zone.svg | 7 ++++ ...-system-efs-standard-infrequent-access.svg | 7 ++++ .../res-elastic-file-system-efs-standard.svg | 7 ++++ ...elastic-file-system-elastic-throughput.svg | 7 ++++ .../res-elastic-file-system-file-system.svg | 7 ++++ ...-file-cache-hybrid-nfs-linked-datasets.svg | 7 ++++ ...-cache-on-premises-nfs-linked-datasets.svg | 7 ++++ .../res-file-cache-s3-linked-datasets.svg | 7 ++++ ...le-storage-service-bucket-with-objects.svg | 7 ++++ .../res-simple-storage-service-bucket.svg | 7 ++++ ...imple-storage-service-directory-bucket.svg | 3 ++ ...-storage-service-general-access-points.svg | 7 ++++ ...res-simple-storage-service-glacier-ive.svg | 7 ++++ ...s-simple-storage-service-glacier-vault.svg | 7 ++++ .../res-simple-storage-service-object.svg | 7 ++++ ...le-storage-service-s3-batch-operations.svg | 7 ++++ ...le-storage-service-s3-express-one-zone.svg | 10 +++++ ...le-storage-service-s3-glacier-deep-ive.svg | 7 ++++ ...-service-s3-glacier-flexible-retrieval.svg | 7 ++++ ...e-service-s3-glacier-instant-retrieval.svg | 7 ++++ ...storage-service-s3-intelligent-tiering.svg | 7 ++++ ...-service-s3-multi-region-access-points.svg | 7 ++++ ...service-s3-object-lambda-access-points.svg | 7 ++++ ...imple-storage-service-s3-object-lambda.svg | 7 ++++ ...-simple-storage-service-s3-object-lock.svg | 7 ++++ ...-simple-storage-service-s3-on-outposts.svg | 7 ++++ ...-simple-storage-service-s3-one-zone-ia.svg | 7 ++++ ...ge-service-s3-replication-time-control.svg | 7 ++++ ...-simple-storage-service-s3-replication.svg | 7 ++++ .../res-simple-storage-service-s3-select.svg | 7 ++++ ...-simple-storage-service-s3-standard-ia.svg | 7 ++++ ...res-simple-storage-service-s3-standard.svg | 7 ++++ ...simple-storage-service-s3-storage-lens.svg | 7 ++++ .../res-simple-storage-service-s3-tables.svg | 3 ++ ...mple-storage-service-vpc-access-points.svg | 7 ++++ .../res-snowball-snowball-import-export.svg | 7 ++++ .../res-storage-gateway-cached-volume.svg | 7 ++++ .../res-storage-gateway-file-gateway.svg | 7 ++++ .../res-storage-gateway-fsx-file-gateway.svg | 7 ++++ .../res-storage-gateway-noncached-volume.svg | 7 ++++ .../res-storage-gateway-s3-file-gateway.svg | 7 ++++ .../res-storage-gateway-tape-gateway.svg | 7 ++++ ...s-storage-gateway-virtual-tape-library.svg | 7 ++++ .../res-storage-gateway-volume-gateway.svg | 7 ++++ src/icons/gcp/access-context-manager.svg | 1 + src/icons/gcp/administration.svg | 21 ++++++++++ src/icons/gcp/advanced-agent-modeling.svg | 12 ++++++ src/icons/gcp/advanced-solutions-lab.svg | 1 + src/icons/gcp/agent-assist.svg | 1 + src/icons/gcp/ai-hub.svg | 1 + src/icons/gcp/ai-platform-unified.svg | 1 + src/icons/gcp/ai-platform.svg | 1 + src/icons/gcp/analytics-hub.svg | 1 + src/icons/gcp/anthos-config-management.svg | 1 + src/icons/gcp/anthos-service-mesh.svg | 5 +++ src/icons/gcp/anthos.svg | 17 ++++++++ src/icons/gcp/api-analytics.svg | 1 + src/icons/gcp/api-monetization.svg | 1 + src/icons/gcp/api.svg | 17 ++++++++ src/icons/gcp/apigee-api-platform.svg | 1 + src/icons/gcp/apigee-sense.svg | 1 + src/icons/gcp/app-engine.svg | 1 + src/icons/gcp/artifact-registry.svg | 30 ++++++++++++++ src/icons/gcp/asset-inventory.svg | 1 + src/icons/gcp/assured-workloads.svg | 1 + src/icons/gcp/automl-natural-language.svg | 11 ++++++ src/icons/gcp/automl-tables.svg | 1 + src/icons/gcp/automl-translation.svg | 1 + src/icons/gcp/automl-video-intelligence.svg | 1 + src/icons/gcp/automl-vision.svg | 1 + src/icons/gcp/automl.svg | 1 + src/icons/gcp/bare-metal-solutions.svg | 1 + src/icons/gcp/beyondcorp.svg | 1 + src/icons/gcp/bigquery.svg | 1 + src/icons/gcp/bigtable.svg | 1 + src/icons/gcp/billing.svg | 19 +++++++++ src/icons/gcp/binary-authorization.svg | 1 + src/icons/gcp/catalog.svg | 14 +++++++ .../gcp/certificate-authority-service.svg | 13 +++++++ src/icons/gcp/cloud-api-gateway.svg | 7 ++++ src/icons/gcp/cloud-apis.svg | 1 + src/icons/gcp/cloud-armor.svg | 1 + src/icons/gcp/cloud-asset-inventory.svg | 9 +++++ src/icons/gcp/cloud-audit-logs.svg | 1 + src/icons/gcp/cloud-build.svg | 1 + src/icons/gcp/cloud-cdn.svg | 1 + src/icons/gcp/cloud-code.svg | 1 + src/icons/gcp/cloud-composer.svg | 1 + src/icons/gcp/cloud-data-fusion.svg | 1 + src/icons/gcp/cloud-deploy.svg | 5 +++ src/icons/gcp/cloud-deployment-manager.svg | 1 + src/icons/gcp/cloud-dns.svg | 1 + src/icons/gcp/cloud-domains.svg | 1 + src/icons/gcp/cloud-ekm.svg | 5 +++ src/icons/gcp/cloud-endpoints.svg | 1 + src/icons/gcp/cloud-external-ip-addresses.svg | 1 + src/icons/gcp/cloud-firewall-rules.svg | 1 + src/icons/gcp/cloud-for-marketing.svg | 5 +++ src/icons/gcp/cloud-functions.svg | 1 + src/icons/gcp/cloud-generic.svg | 5 +++ src/icons/gcp/cloud-gpu.svg | 1 + src/icons/gcp/cloud-healthcare-api.svg | 1 + .../gcp/cloud-healthcare-marketplace.svg | 11 ++++++ src/icons/gcp/cloud-hsm.svg | 1 + src/icons/gcp/cloud-ids.svg | 1 + src/icons/gcp/cloud-inference-api.svg | 1 + src/icons/gcp/cloud-interconnect.svg | 1 + src/icons/gcp/cloud-jobs-api.svg | 1 + src/icons/gcp/cloud-load-balancing.svg | 1 + src/icons/gcp/cloud-logging.svg | 1 + src/icons/gcp/cloud-media-edge.svg | 1 + src/icons/gcp/cloud-monitoring.svg | 1 + src/icons/gcp/cloud-nat.svg | 1 + src/icons/gcp/cloud-natural-language-api.svg | 1 + src/icons/gcp/cloud-network.svg | 1 + src/icons/gcp/cloud-ops.svg | 17 ++++++++ ...loud-optimization-ai-fleet-routing-api.svg | 32 +++++++++++++++ src/icons/gcp/cloud-optimization-ai.svg | 24 ++++++++++++ src/icons/gcp/cloud-router.svg | 1 + src/icons/gcp/cloud-routes.svg | 1 + src/icons/gcp/cloud-run-for-anthos.svg | 1 + src/icons/gcp/cloud-run.svg | 1 + src/icons/gcp/cloud-scheduler.svg | 1 + src/icons/gcp/cloud-security-scanner.svg | 1 + src/icons/gcp/cloud-shell.svg | 1 + src/icons/gcp/cloud-spanner.svg | 1 + src/icons/gcp/cloud-sql.svg | 1 + src/icons/gcp/cloud-storage.svg | 1 + src/icons/gcp/cloud-tasks.svg | 1 + src/icons/gcp/cloud-test-lab.svg | 1 + src/icons/gcp/cloud-tpu.svg | 1 + src/icons/gcp/cloud-translation-api.svg | 1 + src/icons/gcp/cloud-vision-api.svg | 1 + src/icons/gcp/cloud-vpn.svg | 1 + src/icons/gcp/compute-engine.svg | 1 + src/icons/gcp/configuration-management.svg | 1 + src/icons/gcp/connectivity-test.svg | 6 +++ src/icons/gcp/connectors.svg | 1 + src/icons/gcp/contact-center-ai.svg | 1 + src/icons/gcp/container-optimized-os.svg | 1 + src/icons/gcp/container-registry.svg | 1 + src/icons/gcp/data-catalog.svg | 1 + src/icons/gcp/data-labeling.svg | 1 + src/icons/gcp/data-layers.svg | 1 + src/icons/gcp/data-loss-prevention-api.svg | 1 + src/icons/gcp/data-qna.svg | 1 + src/icons/gcp/data-studio.svg | 1 + src/icons/gcp/data-transfer.svg | 1 + src/icons/gcp/dataflow.svg | 1 + src/icons/gcp/datalab.svg | 5 +++ src/icons/gcp/dataplex.svg | 8 ++++ src/icons/gcp/datapol.svg | 1 + src/icons/gcp/dataprep.svg | 1 + src/icons/gcp/dataproc-metastore.svg | 1 + src/icons/gcp/dataproc.svg | 1 + src/icons/gcp/datashare.svg | 9 +++++ src/icons/gcp/datastore.svg | 1 + src/icons/gcp/datastream.svg | 16 ++++++++ src/icons/gcp/debugger.svg | 21 ++++++++++ src/icons/gcp/developer-portal.svg | 1 + src/icons/gcp/dialogflow-cx.svg | 1 + src/icons/gcp/dialogflow-insights.svg | 1 + src/icons/gcp/dialogflow.svg | 1 + src/icons/gcp/document-ai.svg | 1 + src/icons/gcp/early-access-center.svg | 1 + src/icons/gcp/error-reporting.svg | 1 + src/icons/gcp/eventarc.svg | 1 + src/icons/gcp/filestore.svg | 1 + .../gcp/financial-services-marketplace.svg | 11 ++++++ src/icons/gcp/firestore.svg | 1 + src/icons/gcp/fleet-engine.svg | 1 + src/icons/gcp/free-trial.svg | 18 +++++++++ src/icons/gcp/game-servers.svg | 27 +++++++++++++ src/icons/gcp/gce-systems-management.svg | 5 +++ src/icons/gcp/gcp-batch.svg | 3 ++ src/icons/gcp/gcp-certificate-manager.svg | 1 + .../gcp/gcp-database-migration-service.svg | 1 + .../gcp-identity-and-access-management.svg | 1 + src/icons/gcp/gcp-iot-core.svg | 1 + src/icons/gcp/gcp-key-management-service.svg | 1 + src/icons/gcp/gcp-support.svg | 12 ++++++ src/icons/gcp/gcp-virtual-private-cloud.svg | 1 + src/icons/gcp/genomics.svg | 1 + src/icons/gcp/gke-on-prem.svg | 1 + src/icons/gcp/google-cloud-marketplace.svg | 25 ++++++++++++ src/icons/gcp/google-kubernetes-engine.svg | 1 + src/icons/gcp/google-maps-platform.svg | 12 ++++++ src/icons/gcp/healthcare-nlp-api.svg | 1 + src/icons/gcp/home.svg | 13 +++++++ src/icons/gcp/identity-aware-proxy.svg | 1 + src/icons/gcp/identity-platform.svg | 1 + src/icons/gcp/iot-edge.svg | 1 + src/icons/gcp/key-access-justifications.svg | 1 + src/icons/gcp/kuberun.svg | 13 +++++++ src/icons/gcp/launcher.svg | 18 +++++++++ src/icons/gcp/local-ssd.svg | 5 +++ src/icons/gcp/looker.svg | 15 +++++++ ...service-for-microsoft-active-directory.svg | 1 + src/icons/gcp/media-translation-api.svg | 1 + src/icons/gcp/memorystore.svg | 1 + src/icons/gcp/migrate-for-anthos.svg | 5 +++ src/icons/gcp/migrate-for-compute-engine.svg | 5 +++ src/icons/gcp/my-cloud.svg | 26 +++++++++++++ src/icons/gcp/network-connectivity-center.svg | 1 + src/icons/gcp/network-intelligence-center.svg | 5 +++ src/icons/gcp/network-security.svg | 1 + src/icons/gcp/network-tiers.svg | 1 + src/icons/gcp/network-topology.svg | 5 +++ src/icons/gcp/onboarding.svg | 17 ++++++++ src/icons/gcp/os-configuration-management.svg | 5 +++ src/icons/gcp/os-inventory-management.svg | 11 ++++++ src/icons/gcp/os-patch-management.svg | 5 +++ src/icons/gcp/partner-interconnect.svg | 1 + src/icons/gcp/partner-portal.svg | 21 ++++++++++ src/icons/gcp/performance-dashboard.svg | 5 +++ src/icons/gcp/permissions.svg | 14 +++++++ src/icons/gcp/persistent-disk.svg | 1 + src/icons/gcp/phishing-protection.svg | 1 + src/icons/gcp/policy-analyzer.svg | 5 +++ src/icons/gcp/premium-network-tier.svg | 1 + src/icons/gcp/private-connectivity.svg | 1 + src/icons/gcp/private-service-connect.svg | 1 + src/icons/gcp/producer-portal.svg | 13 +++++++ src/icons/gcp/profiler.svg | 1 + src/icons/gcp/project.svg | 20 ++++++++++ src/icons/gcp/pubsub.svg | 1 + src/icons/gcp/quantum-engine.svg | 1 + src/icons/gcp/quotas.svg | 1 + src/icons/gcp/real-world-insights.svg | 11 ++++++ src/icons/gcp/recommendations-ai.svg | 1 + src/icons/gcp/release-notes.svg | 1 + src/icons/gcp/retail-api.svg | 1 + src/icons/gcp/risk-manager.svg | 1 + src/icons/gcp/runtime-config.svg | 1 + src/icons/gcp/secret-manager.svg | 7 ++++ src/icons/gcp/security-command-center.svg | 1 + src/icons/gcp/security-health-advisor.svg | 39 +++++++++++++++++++ src/icons/gcp/security-key-enforcement.svg | 1 + src/icons/gcp/security.svg | 12 ++++++ src/icons/gcp/service-discovery.svg | 1 + src/icons/gcp/speech-to-text.svg | 1 + src/icons/gcp/stackdriver.svg | 1 + src/icons/gcp/standard-network-tier.svg | 5 +++ src/icons/gcp/stream-suite.svg | 11 ++++++ src/icons/gcp/tensorflow-enterprise.svg | 5 +++ src/icons/gcp/text-to-speech.svg | 1 + src/icons/gcp/tools-for-powershell.svg | 1 + src/icons/gcp/trace.svg | 1 + src/icons/gcp/traffic-director.svg | 1 + src/icons/gcp/transfer-appliance.svg | 1 + src/icons/gcp/transfer.svg | 7 ++++ src/icons/gcp/user-preferences.svg | 19 +++++++++ src/icons/gcp/vertexai.svg | 1 + src/icons/gcp/video-intelligence-api.svg | 1 + src/icons/gcp/visual-inspection.svg | 1 + src/icons/gcp/vmware-engine.svg | 1 + src/icons/gcp/web-risk.svg | 1 + src/icons/gcp/web-security-scanner.svg | 1 + src/icons/gcp/workflows.svg | 1 + src/icons/gcp/workload-identity-pool.svg | 1 + 1093 files changed, 8237 insertions(+) create mode 100644 src/icons/aws/architecture-group/auto-scaling-group.svg create mode 100644 src/icons/aws/architecture-group/aws-account.svg create mode 100644 src/icons/aws/architecture-group/aws-cloud-dark.svg create mode 100644 src/icons/aws/architecture-group/aws-cloud-logo-dark.svg create mode 100644 src/icons/aws/architecture-group/aws-cloud-logo.svg create mode 100644 src/icons/aws/architecture-group/aws-cloud.svg create mode 100644 src/icons/aws/architecture-group/aws-iot-greengrass-deployment.svg create mode 100644 src/icons/aws/architecture-group/corporate-data-center.svg create mode 100644 src/icons/aws/architecture-group/ec2-instance-contents.svg create mode 100644 src/icons/aws/architecture-group/private-subnet.svg create mode 100644 src/icons/aws/architecture-group/public-subnet.svg create mode 100644 src/icons/aws/architecture-group/region.svg create mode 100644 src/icons/aws/architecture-group/server-contents.svg create mode 100644 src/icons/aws/architecture-group/spot-fleet.svg create mode 100644 src/icons/aws/architecture-group/virtual-private-cloud-vpc.svg create mode 100644 src/icons/aws/architecture-service/analytics/analytics-kinesis-video-streams.svg create mode 100644 src/icons/aws/architecture-service/analytics/athena.svg create mode 100644 src/icons/aws/architecture-service/analytics/clean-rooms.svg create mode 100644 src/icons/aws/architecture-service/analytics/cloudsearch.svg create mode 100644 src/icons/aws/architecture-service/analytics/data-exchange.svg create mode 100644 src/icons/aws/architecture-service/analytics/data-firehose.svg create mode 100644 src/icons/aws/architecture-service/analytics/datazone.svg create mode 100644 src/icons/aws/architecture-service/analytics/emr.svg create mode 100644 src/icons/aws/architecture-service/analytics/entity-resolution.svg create mode 100644 src/icons/aws/architecture-service/analytics/finspace.svg create mode 100644 src/icons/aws/architecture-service/analytics/glue-databrew.svg create mode 100644 src/icons/aws/architecture-service/analytics/glue.svg create mode 100644 src/icons/aws/architecture-service/analytics/kinesis-data-streams.svg create mode 100644 src/icons/aws/architecture-service/analytics/kinesis.svg create mode 100644 src/icons/aws/architecture-service/analytics/lake-formation.svg create mode 100644 src/icons/aws/architecture-service/analytics/managed-service-for-apache-flink.svg create mode 100644 src/icons/aws/architecture-service/analytics/managed-streaming-for-apache-kafka.svg create mode 100644 src/icons/aws/architecture-service/analytics/opensearch-service.svg create mode 100644 src/icons/aws/architecture-service/analytics/quicksight.svg create mode 100644 src/icons/aws/architecture-service/analytics/redshift.svg create mode 100644 src/icons/aws/architecture-service/analytics/sagemaker.svg create mode 100644 src/icons/aws/architecture-service/app-integration/appflow.svg create mode 100644 src/icons/aws/architecture-service/app-integration/appsync.svg create mode 100644 src/icons/aws/architecture-service/app-integration/b2b-data-interchange.svg create mode 100644 src/icons/aws/architecture-service/app-integration/eventbridge.svg create mode 100644 src/icons/aws/architecture-service/app-integration/express-workflows.svg create mode 100644 src/icons/aws/architecture-service/app-integration/managed-workflows-for-apache-airflow.svg create mode 100644 src/icons/aws/architecture-service/app-integration/mq.svg create mode 100644 src/icons/aws/architecture-service/app-integration/simple-notification-service.svg create mode 100644 src/icons/aws/architecture-service/app-integration/simple-queue-service.svg create mode 100644 src/icons/aws/architecture-service/app-integration/step-functions.svg create mode 100644 src/icons/aws/architecture-service/artificial-intelligence/apache-mxnet-on-aws.svg create mode 100644 src/icons/aws/architecture-service/artificial-intelligence/app-studio.svg create mode 100644 src/icons/aws/architecture-service/artificial-intelligence/augmented-ai-a2i.svg create mode 100644 src/icons/aws/architecture-service/artificial-intelligence/bedrock.svg create mode 100644 src/icons/aws/architecture-service/artificial-intelligence/codeguru.svg create mode 100644 src/icons/aws/architecture-service/artificial-intelligence/codewhisperer.svg create mode 100644 src/icons/aws/architecture-service/artificial-intelligence/comprehend-medical.svg create mode 100644 src/icons/aws/architecture-service/artificial-intelligence/comprehend.svg create mode 100644 src/icons/aws/architecture-service/artificial-intelligence/deep-learning-amis.svg create mode 100644 src/icons/aws/architecture-service/artificial-intelligence/deep-learning-containers.svg create mode 100644 src/icons/aws/architecture-service/artificial-intelligence/deepcomposer.svg create mode 100644 src/icons/aws/architecture-service/artificial-intelligence/deeplens.svg create mode 100644 src/icons/aws/architecture-service/artificial-intelligence/deepracer.svg create mode 100644 src/icons/aws/architecture-service/artificial-intelligence/devops-guru.svg create mode 100644 src/icons/aws/architecture-service/artificial-intelligence/elastic-inference.svg create mode 100644 src/icons/aws/architecture-service/artificial-intelligence/forecast.svg create mode 100644 src/icons/aws/architecture-service/artificial-intelligence/fraud-detector.svg create mode 100644 src/icons/aws/architecture-service/artificial-intelligence/healthimaging.svg create mode 100644 src/icons/aws/architecture-service/artificial-intelligence/healthlake.svg create mode 100644 src/icons/aws/architecture-service/artificial-intelligence/healthomics.svg create mode 100644 src/icons/aws/architecture-service/artificial-intelligence/healthscribe.svg create mode 100644 src/icons/aws/architecture-service/artificial-intelligence/kendra.svg create mode 100644 src/icons/aws/architecture-service/artificial-intelligence/lex.svg create mode 100644 src/icons/aws/architecture-service/artificial-intelligence/lookout-for-equipment.svg create mode 100644 src/icons/aws/architecture-service/artificial-intelligence/lookout-for-metrics.svg create mode 100644 src/icons/aws/architecture-service/artificial-intelligence/lookout-for-vision.svg create mode 100644 src/icons/aws/architecture-service/artificial-intelligence/monitron.svg create mode 100644 src/icons/aws/architecture-service/artificial-intelligence/neuron.svg create mode 100644 src/icons/aws/architecture-service/artificial-intelligence/nova.svg create mode 100644 src/icons/aws/architecture-service/artificial-intelligence/panorama.svg create mode 100644 src/icons/aws/architecture-service/artificial-intelligence/personalize.svg create mode 100644 src/icons/aws/architecture-service/artificial-intelligence/polly.svg create mode 100644 src/icons/aws/architecture-service/artificial-intelligence/pytorch-on-aws.svg create mode 100644 src/icons/aws/architecture-service/artificial-intelligence/q.svg create mode 100644 src/icons/aws/architecture-service/artificial-intelligence/rekognition.svg create mode 100644 src/icons/aws/architecture-service/artificial-intelligence/sagemaker-ai.svg create mode 100644 src/icons/aws/architecture-service/artificial-intelligence/sagemaker-ground-truth.svg create mode 100644 src/icons/aws/architecture-service/artificial-intelligence/sagemaker-studio-lab.svg create mode 100644 src/icons/aws/architecture-service/artificial-intelligence/tensorflow-on-aws.svg create mode 100644 src/icons/aws/architecture-service/artificial-intelligence/textract.svg create mode 100644 src/icons/aws/architecture-service/artificial-intelligence/transcribe.svg create mode 100644 src/icons/aws/architecture-service/artificial-intelligence/translate.svg create mode 100644 src/icons/aws/architecture-service/blockchain/managed-blockchain.svg create mode 100644 src/icons/aws/architecture-service/blockchain/quantum-ledger-database.svg create mode 100644 src/icons/aws/architecture-service/business-applications/alexa-for-business.svg create mode 100644 src/icons/aws/architecture-service/business-applications/appfabric.svg create mode 100644 src/icons/aws/architecture-service/business-applications/chime-sdk.svg create mode 100644 src/icons/aws/architecture-service/business-applications/chime.svg create mode 100644 src/icons/aws/architecture-service/business-applications/connect.svg create mode 100644 src/icons/aws/architecture-service/business-applications/end-user-messaging.svg create mode 100644 src/icons/aws/architecture-service/business-applications/pinpoint-apis.svg create mode 100644 src/icons/aws/architecture-service/business-applications/pinpoint.svg create mode 100644 src/icons/aws/architecture-service/business-applications/simple-email-service.svg create mode 100644 src/icons/aws/architecture-service/business-applications/supply-chain.svg create mode 100644 src/icons/aws/architecture-service/business-applications/wickr.svg create mode 100644 src/icons/aws/architecture-service/business-applications/workdocs-sdk.svg create mode 100644 src/icons/aws/architecture-service/business-applications/workdocs.svg create mode 100644 src/icons/aws/architecture-service/business-applications/workmail.svg create mode 100644 src/icons/aws/architecture-service/cloud-financial-management/billing-conductor.svg create mode 100644 src/icons/aws/architecture-service/cloud-financial-management/budgets.svg create mode 100644 src/icons/aws/architecture-service/cloud-financial-management/cost-and-usage-report.svg create mode 100644 src/icons/aws/architecture-service/cloud-financial-management/cost-explorer.svg create mode 100644 src/icons/aws/architecture-service/cloud-financial-management/reserved-instance-reporting.svg create mode 100644 src/icons/aws/architecture-service/cloud-financial-management/savings-plans.svg create mode 100644 src/icons/aws/architecture-service/compute/app-runner.svg create mode 100644 src/icons/aws/architecture-service/compute/bottlerocket.svg create mode 100644 src/icons/aws/architecture-service/compute/compute-batch.svg create mode 100644 src/icons/aws/architecture-service/compute/compute-optimizer.svg create mode 100644 src/icons/aws/architecture-service/compute/dcv.svg create mode 100644 src/icons/aws/architecture-service/compute/ec2-auto-scaling.svg create mode 100644 src/icons/aws/architecture-service/compute/ec2-image-builder.svg rename src/icons/aws/{compute/EC2.svg => architecture-service/compute/ec2.svg} (100%) create mode 100644 src/icons/aws/architecture-service/compute/elastic-beanstalk.svg create mode 100644 src/icons/aws/architecture-service/compute/elastic-fabric-adapter.svg rename src/icons/aws/{compute/Lambda.svg => architecture-service/compute/lambda.svg} (100%) create mode 100644 src/icons/aws/architecture-service/compute/lightsail-for-research.svg create mode 100644 src/icons/aws/architecture-service/compute/lightsail.svg create mode 100644 src/icons/aws/architecture-service/compute/local-zones.svg create mode 100644 src/icons/aws/architecture-service/compute/nice-enginframe.svg create mode 100644 src/icons/aws/architecture-service/compute/nitro-enclaves.svg create mode 100644 src/icons/aws/architecture-service/compute/outposts-family.svg create mode 100644 src/icons/aws/architecture-service/compute/outposts-rack.svg create mode 100644 src/icons/aws/architecture-service/compute/outposts-servers.svg create mode 100644 src/icons/aws/architecture-service/compute/parallel-cluster.svg create mode 100644 src/icons/aws/architecture-service/compute/parallel-computing-service.svg create mode 100644 src/icons/aws/architecture-service/compute/serverless-application-repository.svg create mode 100644 src/icons/aws/architecture-service/compute/simspace-weaver.svg create mode 100644 src/icons/aws/architecture-service/compute/wavelength.svg create mode 100644 src/icons/aws/architecture-service/containers/ecs-anywhere.svg create mode 100644 src/icons/aws/architecture-service/containers/eks-anywhere.svg create mode 100644 src/icons/aws/architecture-service/containers/eks-cloud.svg create mode 100644 src/icons/aws/architecture-service/containers/eks-distro.svg create mode 100644 src/icons/aws/architecture-service/containers/elastic-container-registry.svg create mode 100644 src/icons/aws/architecture-service/containers/elastic-container-service.svg create mode 100644 src/icons/aws/architecture-service/containers/elastic-kubernetes-service.svg create mode 100644 src/icons/aws/architecture-service/containers/fargate.svg create mode 100644 src/icons/aws/architecture-service/containers/red-hat-openshift-service-on-aws.svg create mode 100644 src/icons/aws/architecture-service/customer-enablement/activate.svg create mode 100644 src/icons/aws/architecture-service/customer-enablement/iq.svg create mode 100644 src/icons/aws/architecture-service/customer-enablement/managed-services.svg create mode 100644 src/icons/aws/architecture-service/customer-enablement/professional-services.svg create mode 100644 src/icons/aws/architecture-service/customer-enablement/repost-private.svg create mode 100644 src/icons/aws/architecture-service/customer-enablement/repost.svg create mode 100644 src/icons/aws/architecture-service/customer-enablement/support.svg create mode 100644 src/icons/aws/architecture-service/customer-enablement/training-certification.svg create mode 100644 src/icons/aws/architecture-service/database/aurora.svg create mode 100644 src/icons/aws/architecture-service/database/database-migration-service.svg create mode 100644 src/icons/aws/architecture-service/database/documentdb.svg rename src/icons/aws/{database/DynamoDB.svg => architecture-service/database/dynamodb.svg} (100%) create mode 100644 src/icons/aws/architecture-service/database/elasticache.svg create mode 100644 src/icons/aws/architecture-service/database/keyspaces.svg create mode 100644 src/icons/aws/architecture-service/database/memorydb.svg create mode 100644 src/icons/aws/architecture-service/database/neptune.svg create mode 100644 src/icons/aws/architecture-service/database/oracle-database-at-aws.svg rename src/icons/aws/{database/RDS.svg => architecture-service/database/rds.svg} (100%) create mode 100644 src/icons/aws/architecture-service/database/timestream.svg create mode 100644 src/icons/aws/architecture-service/developer-tools/cloud-control-api.svg create mode 100644 src/icons/aws/architecture-service/developer-tools/cloud-development-kit.svg create mode 100644 src/icons/aws/architecture-service/developer-tools/cloud9.svg create mode 100644 src/icons/aws/architecture-service/developer-tools/cloudshell.svg create mode 100644 src/icons/aws/architecture-service/developer-tools/codeartifact.svg create mode 100644 src/icons/aws/architecture-service/developer-tools/codebuild.svg create mode 100644 src/icons/aws/architecture-service/developer-tools/codecatalyst.svg create mode 100644 src/icons/aws/architecture-service/developer-tools/codecommit.svg create mode 100644 src/icons/aws/architecture-service/developer-tools/codedeploy.svg create mode 100644 src/icons/aws/architecture-service/developer-tools/codepipeline.svg create mode 100644 src/icons/aws/architecture-service/developer-tools/command-line-interface.svg create mode 100644 src/icons/aws/architecture-service/developer-tools/corretto.svg create mode 100644 src/icons/aws/architecture-service/developer-tools/fault-injection-service.svg create mode 100644 src/icons/aws/architecture-service/developer-tools/infrastructure-composer.svg create mode 100644 src/icons/aws/architecture-service/developer-tools/tools-and-sdks.svg create mode 100644 src/icons/aws/architecture-service/developer-tools/x-ray.svg create mode 100644 src/icons/aws/architecture-service/end-user-computing/appstream-2.svg create mode 100644 src/icons/aws/architecture-service/end-user-computing/workspaces-family.svg create mode 100644 src/icons/aws/architecture-service/front-end-web-mobile/amplify.svg create mode 100644 src/icons/aws/architecture-service/front-end-web-mobile/device-farm.svg create mode 100644 src/icons/aws/architecture-service/front-end-web-mobile/location-service.svg create mode 100644 src/icons/aws/architecture-service/games/gamelift.svg create mode 100644 src/icons/aws/architecture-service/games/open-3d-engine.svg create mode 100644 src/icons/aws/architecture-service/general-icons/marketplace-dark.svg create mode 100644 src/icons/aws/architecture-service/general-icons/marketplace-light.svg create mode 100644 src/icons/aws/architecture-service/internet-of-things/freertos.svg create mode 100644 src/icons/aws/architecture-service/internet-of-things/iot-analytics.svg create mode 100644 src/icons/aws/architecture-service/internet-of-things/iot-button.svg create mode 100644 src/icons/aws/architecture-service/internet-of-things/iot-core.svg create mode 100644 src/icons/aws/architecture-service/internet-of-things/iot-device-defender.svg create mode 100644 src/icons/aws/architecture-service/internet-of-things/iot-device-management.svg create mode 100644 src/icons/aws/architecture-service/internet-of-things/iot-events.svg create mode 100644 src/icons/aws/architecture-service/internet-of-things/iot-expresslink.svg create mode 100644 src/icons/aws/architecture-service/internet-of-things/iot-fleetwise.svg create mode 100644 src/icons/aws/architecture-service/internet-of-things/iot-greengrass.svg create mode 100644 src/icons/aws/architecture-service/internet-of-things/iot-sitewise.svg create mode 100644 src/icons/aws/architecture-service/internet-of-things/iot-twinmaker.svg create mode 100644 src/icons/aws/architecture-service/management-governance/appconfig.svg create mode 100644 src/icons/aws/architecture-service/management-governance/application-auto-scaling.svg create mode 100644 src/icons/aws/architecture-service/management-governance/auto-scaling.svg create mode 100644 src/icons/aws/architecture-service/management-governance/backint-agent.svg create mode 100644 src/icons/aws/architecture-service/management-governance/chatbot.svg create mode 100644 src/icons/aws/architecture-service/management-governance/cloudformation.svg create mode 100644 src/icons/aws/architecture-service/management-governance/cloudtrail.svg create mode 100644 src/icons/aws/architecture-service/management-governance/cloudwatch.svg create mode 100644 src/icons/aws/architecture-service/management-governance/config.svg create mode 100644 src/icons/aws/architecture-service/management-governance/console-mobile-application.svg create mode 100644 src/icons/aws/architecture-service/management-governance/control-tower.svg create mode 100644 src/icons/aws/architecture-service/management-governance/distro-for-opentelemetry.svg create mode 100644 src/icons/aws/architecture-service/management-governance/health-dashboard.svg create mode 100644 src/icons/aws/architecture-service/management-governance/launch-wizard.svg create mode 100644 src/icons/aws/architecture-service/management-governance/license-manager.svg create mode 100644 src/icons/aws/architecture-service/management-governance/managed-grafana.svg create mode 100644 src/icons/aws/architecture-service/management-governance/managed-service-for-prometheus.svg create mode 100644 src/icons/aws/architecture-service/management-governance/management-compute-optimizer.svg create mode 100644 src/icons/aws/architecture-service/management-governance/management-console.svg create mode 100644 src/icons/aws/architecture-service/management-governance/organizations.svg create mode 100644 src/icons/aws/architecture-service/management-governance/proton.svg create mode 100644 src/icons/aws/architecture-service/management-governance/resilience-hub.svg create mode 100644 src/icons/aws/architecture-service/management-governance/resource-explorer.svg create mode 100644 src/icons/aws/architecture-service/management-governance/service-catalog.svg create mode 100644 src/icons/aws/architecture-service/management-governance/service-management-connector.svg create mode 100644 src/icons/aws/architecture-service/management-governance/systems-manager.svg create mode 100644 src/icons/aws/architecture-service/management-governance/telco-network-builder.svg create mode 100644 src/icons/aws/architecture-service/management-governance/trusted-advisor.svg create mode 100644 src/icons/aws/architecture-service/management-governance/user-notifications.svg create mode 100644 src/icons/aws/architecture-service/management-governance/well-architected-tool.svg create mode 100644 src/icons/aws/architecture-service/media-services/deadline-cloud.svg create mode 100644 src/icons/aws/architecture-service/media-services/elastic-transcoder.svg create mode 100644 src/icons/aws/architecture-service/media-services/elemental-appliances-and-software.svg create mode 100644 src/icons/aws/architecture-service/media-services/elemental-conductor.svg create mode 100644 src/icons/aws/architecture-service/media-services/elemental-delta.svg create mode 100644 src/icons/aws/architecture-service/media-services/elemental-link.svg create mode 100644 src/icons/aws/architecture-service/media-services/elemental-live.svg create mode 100644 src/icons/aws/architecture-service/media-services/elemental-mediaconnect.svg create mode 100644 src/icons/aws/architecture-service/media-services/elemental-mediaconvert.svg create mode 100644 src/icons/aws/architecture-service/media-services/elemental-medialive.svg create mode 100644 src/icons/aws/architecture-service/media-services/elemental-mediapackage.svg create mode 100644 src/icons/aws/architecture-service/media-services/elemental-mediastore.svg create mode 100644 src/icons/aws/architecture-service/media-services/elemental-mediatailor.svg create mode 100644 src/icons/aws/architecture-service/media-services/elemental-server.svg create mode 100644 src/icons/aws/architecture-service/media-services/interactive-video-service.svg create mode 100644 src/icons/aws/architecture-service/media-services/media-kinesis-video-streams.svg create mode 100644 src/icons/aws/architecture-service/media-services/thinkbox-deadline.svg create mode 100644 src/icons/aws/architecture-service/media-services/thinkbox-frost.svg create mode 100644 src/icons/aws/architecture-service/media-services/thinkbox-krakatoa.svg create mode 100644 src/icons/aws/architecture-service/media-services/thinkbox-sequoia.svg create mode 100644 src/icons/aws/architecture-service/media-services/thinkbox-stoke.svg create mode 100644 src/icons/aws/architecture-service/media-services/thinkbox-xmesh.svg create mode 100644 src/icons/aws/architecture-service/migration-modernization/application-discovery-service.svg create mode 100644 src/icons/aws/architecture-service/migration-modernization/application-migration-service.svg create mode 100644 src/icons/aws/architecture-service/migration-modernization/data-transfer-terminal.svg create mode 100644 src/icons/aws/architecture-service/migration-modernization/datasync.svg create mode 100644 src/icons/aws/architecture-service/migration-modernization/elastic-vmware-service.svg create mode 100644 src/icons/aws/architecture-service/migration-modernization/mainframe-modernization.svg create mode 100644 src/icons/aws/architecture-service/migration-modernization/migration-evaluator.svg create mode 100644 src/icons/aws/architecture-service/migration-modernization/migration-hub.svg create mode 100644 src/icons/aws/architecture-service/migration-modernization/transfer-family.svg create mode 100644 src/icons/aws/architecture-service/networking-content-delivery/api-gateway.svg create mode 100644 src/icons/aws/architecture-service/networking-content-delivery/app-mesh.svg create mode 100644 src/icons/aws/architecture-service/networking-content-delivery/application-recovery-controller.svg create mode 100644 src/icons/aws/architecture-service/networking-content-delivery/client-vpn.svg create mode 100644 src/icons/aws/architecture-service/networking-content-delivery/cloud-map.svg create mode 100644 src/icons/aws/architecture-service/networking-content-delivery/cloud-wan.svg create mode 100644 src/icons/aws/architecture-service/networking-content-delivery/cloudfront.svg create mode 100644 src/icons/aws/architecture-service/networking-content-delivery/direct-connect.svg create mode 100644 src/icons/aws/architecture-service/networking-content-delivery/elastic-load-balancing.svg create mode 100644 src/icons/aws/architecture-service/networking-content-delivery/global-accelerator.svg create mode 100644 src/icons/aws/architecture-service/networking-content-delivery/private-5g.svg create mode 100644 src/icons/aws/architecture-service/networking-content-delivery/privatelink.svg create mode 100644 src/icons/aws/architecture-service/networking-content-delivery/route-53.svg create mode 100644 src/icons/aws/architecture-service/networking-content-delivery/site-to-site-vpn.svg create mode 100644 src/icons/aws/architecture-service/networking-content-delivery/transit-gateway.svg create mode 100644 src/icons/aws/architecture-service/networking-content-delivery/verified-access.svg rename src/icons/aws/{networking/VPC.svg => architecture-service/networking-content-delivery/virtual-private-cloud.svg} (100%) create mode 100644 src/icons/aws/architecture-service/networking-content-delivery/vpc-lattice.svg create mode 100644 src/icons/aws/architecture-service/quantum-technologies/braket.svg create mode 100644 src/icons/aws/architecture-service/robotics/robomaker.svg create mode 100644 src/icons/aws/architecture-service/satellite/ground-station.svg create mode 100644 src/icons/aws/architecture-service/security-identity-compliance/artifact.svg create mode 100644 src/icons/aws/architecture-service/security-identity-compliance/audit-manager.svg create mode 100644 src/icons/aws/architecture-service/security-identity-compliance/certificate-manager.svg create mode 100644 src/icons/aws/architecture-service/security-identity-compliance/cloud-directory.svg create mode 100644 src/icons/aws/architecture-service/security-identity-compliance/cloudhsm.svg create mode 100644 src/icons/aws/architecture-service/security-identity-compliance/cognito.svg create mode 100644 src/icons/aws/architecture-service/security-identity-compliance/detective.svg create mode 100644 src/icons/aws/architecture-service/security-identity-compliance/directory-service.svg create mode 100644 src/icons/aws/architecture-service/security-identity-compliance/firewall-manager.svg create mode 100644 src/icons/aws/architecture-service/security-identity-compliance/guardduty.svg create mode 100644 src/icons/aws/architecture-service/security-identity-compliance/iam-identity-center.svg create mode 100644 src/icons/aws/architecture-service/security-identity-compliance/identity-and-access-management.svg create mode 100644 src/icons/aws/architecture-service/security-identity-compliance/inspector.svg create mode 100644 src/icons/aws/architecture-service/security-identity-compliance/key-management-service.svg create mode 100644 src/icons/aws/architecture-service/security-identity-compliance/macie.svg create mode 100644 src/icons/aws/architecture-service/security-identity-compliance/network-firewall.svg create mode 100644 src/icons/aws/architecture-service/security-identity-compliance/payment-cryptography.svg create mode 100644 src/icons/aws/architecture-service/security-identity-compliance/private-certificate-authority.svg create mode 100644 src/icons/aws/architecture-service/security-identity-compliance/resource-access-manager.svg create mode 100644 src/icons/aws/architecture-service/security-identity-compliance/secrets-manager.svg create mode 100644 src/icons/aws/architecture-service/security-identity-compliance/security-hub.svg create mode 100644 src/icons/aws/architecture-service/security-identity-compliance/security-incident-response.svg create mode 100644 src/icons/aws/architecture-service/security-identity-compliance/security-lake.svg create mode 100644 src/icons/aws/architecture-service/security-identity-compliance/shield.svg create mode 100644 src/icons/aws/architecture-service/security-identity-compliance/signer.svg create mode 100644 src/icons/aws/architecture-service/security-identity-compliance/verified-permissions.svg create mode 100644 src/icons/aws/architecture-service/security-identity-compliance/waf.svg create mode 100644 src/icons/aws/architecture-service/storage/backup.svg create mode 100644 src/icons/aws/architecture-service/storage/efs.svg create mode 100644 src/icons/aws/architecture-service/storage/elastic-block-store.svg create mode 100644 src/icons/aws/architecture-service/storage/elastic-disaster-recovery.svg create mode 100644 src/icons/aws/architecture-service/storage/file-cache.svg create mode 100644 src/icons/aws/architecture-service/storage/fsx-for-lustre.svg create mode 100644 src/icons/aws/architecture-service/storage/fsx-for-netapp-ontap.svg create mode 100644 src/icons/aws/architecture-service/storage/fsx-for-openzfs.svg create mode 100644 src/icons/aws/architecture-service/storage/fsx-for-wfs.svg create mode 100644 src/icons/aws/architecture-service/storage/fsx.svg create mode 100644 src/icons/aws/architecture-service/storage/s3-on-outposts.svg create mode 100644 src/icons/aws/architecture-service/storage/simple-storage-service-glacier.svg rename src/icons/aws/{storage/S3.svg => architecture-service/storage/simple-storage-service.svg} (100%) create mode 100644 src/icons/aws/architecture-service/storage/snowball-edge.svg create mode 100644 src/icons/aws/architecture-service/storage/snowball.svg create mode 100644 src/icons/aws/architecture-service/storage/storage-gateway.svg create mode 100644 src/icons/aws/category/category-analytics.svg create mode 100644 src/icons/aws/category/category-application-integration.svg create mode 100644 src/icons/aws/category/category-artificial-intelligence.svg create mode 100644 src/icons/aws/category/category-blockchain.svg create mode 100644 src/icons/aws/category/category-business-applications.svg create mode 100644 src/icons/aws/category/category-cloud-financial-management.svg create mode 100644 src/icons/aws/category/category-compute.svg create mode 100644 src/icons/aws/category/category-contact-center.svg create mode 100644 src/icons/aws/category/category-containers.svg create mode 100644 src/icons/aws/category/category-customer-enablement.svg create mode 100644 src/icons/aws/category/category-database.svg create mode 100644 src/icons/aws/category/category-developer-tools.svg create mode 100644 src/icons/aws/category/category-end-user-computing.svg create mode 100644 src/icons/aws/category/category-front-end-web-mobile.svg create mode 100644 src/icons/aws/category/category-games.svg create mode 100644 src/icons/aws/category/category-internet-of-things.svg create mode 100644 src/icons/aws/category/category-management-governance.svg create mode 100644 src/icons/aws/category/category-media-services.svg create mode 100644 src/icons/aws/category/category-migration-modernization.svg create mode 100644 src/icons/aws/category/category-networking-content-delivery.svg create mode 100644 src/icons/aws/category/category-quantum-technologies.svg create mode 100644 src/icons/aws/category/category-robotics.svg create mode 100644 src/icons/aws/category/category-satellite.svg create mode 100644 src/icons/aws/category/category-security-identity-compliance.svg create mode 100644 src/icons/aws/category/category-serverless.svg create mode 100644 src/icons/aws/category/category-storage.svg create mode 100644 src/icons/aws/resource/res-analytics/res-athena-data-source-connectors.svg create mode 100644 src/icons/aws/resource/res-analytics/res-cloudse-se-documents.svg create mode 100644 src/icons/aws/resource/res-analytics/res-data-exchange-for-apis.svg create mode 100644 src/icons/aws/resource/res-analytics/res-datazone-business-data-catalog.svg create mode 100644 src/icons/aws/resource/res-analytics/res-datazone-data-portal.svg create mode 100644 src/icons/aws/resource/res-analytics/res-datazone-data-projects.svg create mode 100644 src/icons/aws/resource/res-analytics/res-emr-cluster.svg create mode 100644 src/icons/aws/resource/res-analytics/res-emr-emr-engine.svg create mode 100644 src/icons/aws/resource/res-analytics/res-emr-hdfs-cluster.svg create mode 100644 src/icons/aws/resource/res-analytics/res-glue-crawler.svg create mode 100644 src/icons/aws/resource/res-analytics/res-glue-data-catalog.svg create mode 100644 src/icons/aws/resource/res-analytics/res-glue-data-quality.svg create mode 100644 src/icons/aws/resource/res-analytics/res-glue-glue-for-ray.svg create mode 100644 src/icons/aws/resource/res-analytics/res-lake-formation-data-lake.svg create mode 100644 src/icons/aws/resource/res-analytics/res-msk-msk-connect.svg create mode 100644 src/icons/aws/resource/res-analytics/res-opense-service-cluster-administrator-node.svg create mode 100644 src/icons/aws/resource/res-analytics/res-opense-service-data-node.svg create mode 100644 src/icons/aws/resource/res-analytics/res-opense-service-index.svg create mode 100644 src/icons/aws/resource/res-analytics/res-opense-service-observability.svg create mode 100644 src/icons/aws/resource/res-analytics/res-opense-service-opense-dashboards.svg create mode 100644 src/icons/aws/resource/res-analytics/res-opense-service-opense-ingestion.svg create mode 100644 src/icons/aws/resource/res-analytics/res-opense-service-traces.svg create mode 100644 src/icons/aws/resource/res-analytics/res-opense-service-ultrawarm-node.svg create mode 100644 src/icons/aws/resource/res-analytics/res-quicksight-paginated-reports.svg create mode 100644 src/icons/aws/resource/res-analytics/res-redshift-auto-copy.svg create mode 100644 src/icons/aws/resource/res-analytics/res-redshift-data-sharing-governance.svg create mode 100644 src/icons/aws/resource/res-analytics/res-redshift-dense-compute-node.svg create mode 100644 src/icons/aws/resource/res-analytics/res-redshift-dense-storage-node.svg create mode 100644 src/icons/aws/resource/res-analytics/res-redshift-ml.svg create mode 100644 src/icons/aws/resource/res-analytics/res-redshift-query-editor-v2.svg create mode 100644 src/icons/aws/resource/res-analytics/res-redshift-ra3.svg create mode 100644 src/icons/aws/resource/res-analytics/res-redshift-streaming-ingestion.svg create mode 100644 src/icons/aws/resource/res-application-integration/res-eventbridge-custom-event-bus.svg create mode 100644 src/icons/aws/resource/res-application-integration/res-eventbridge-default-event-bus.svg create mode 100644 src/icons/aws/resource/res-application-integration/res-eventbridge-event.svg create mode 100644 src/icons/aws/resource/res-application-integration/res-eventbridge-pipes.svg create mode 100644 src/icons/aws/resource/res-application-integration/res-eventbridge-rule.svg create mode 100644 src/icons/aws/resource/res-application-integration/res-eventbridge-saas-partner-event.svg create mode 100644 src/icons/aws/resource/res-application-integration/res-eventbridge-scheduler.svg create mode 100644 src/icons/aws/resource/res-application-integration/res-eventbridge-schema-registry.svg create mode 100644 src/icons/aws/resource/res-application-integration/res-eventbridge-schema.svg create mode 100644 src/icons/aws/resource/res-application-integration/res-mq-broker.svg create mode 100644 src/icons/aws/resource/res-application-integration/res-simple-notification-service-email-notification.svg create mode 100644 src/icons/aws/resource/res-application-integration/res-simple-notification-service-http-notification.svg create mode 100644 src/icons/aws/resource/res-application-integration/res-simple-notification-service-topic.svg create mode 100644 src/icons/aws/resource/res-application-integration/res-simple-queue-service-message.svg create mode 100644 src/icons/aws/resource/res-application-integration/res-simple-queue-service-queue.svg create mode 100644 src/icons/aws/resource/res-artificial-intelligence/res-devops-guru-insights.svg create mode 100644 src/icons/aws/resource/res-artificial-intelligence/res-rekognition-image.svg create mode 100644 src/icons/aws/resource/res-artificial-intelligence/res-rekognition-video.svg create mode 100644 src/icons/aws/resource/res-artificial-intelligence/res-sagemaker-canvas.svg create mode 100644 src/icons/aws/resource/res-artificial-intelligence/res-sagemaker-geospatial-ml.svg create mode 100644 src/icons/aws/resource/res-artificial-intelligence/res-sagemaker-model.svg create mode 100644 src/icons/aws/resource/res-artificial-intelligence/res-sagemaker-notebook.svg create mode 100644 src/icons/aws/resource/res-artificial-intelligence/res-sagemaker-shadow-testing.svg create mode 100644 src/icons/aws/resource/res-artificial-intelligence/res-sagemaker-train.svg create mode 100644 src/icons/aws/resource/res-artificial-intelligence/res-textract-analyze-lending.svg create mode 100644 src/icons/aws/resource/res-blockchain/res-managed-blockchain-blockchain.svg create mode 100644 src/icons/aws/resource/res-business-applications/res-pinpoint-journey.svg create mode 100644 src/icons/aws/resource/res-business-applications/res-simple-email-service-email.svg create mode 100644 src/icons/aws/resource/res-compute/res-ec2-ami.svg create mode 100644 src/icons/aws/resource/res-compute/res-ec2-auto-scaling.svg create mode 100644 src/icons/aws/resource/res-compute/res-ec2-db-instance.svg create mode 100644 src/icons/aws/resource/res-compute/res-ec2-elastic-ip-address.svg create mode 100644 src/icons/aws/resource/res-compute/res-ec2-instance-with-cloudwatch.svg create mode 100644 src/icons/aws/resource/res-compute/res-ec2-instance.svg create mode 100644 src/icons/aws/resource/res-compute/res-ec2-instances.svg create mode 100644 src/icons/aws/resource/res-compute/res-ec2-microservice-extractor-for-net.svg create mode 100644 src/icons/aws/resource/res-compute/res-ec2-rescue.svg create mode 100644 src/icons/aws/resource/res-compute/res-ec2-spot-instance.svg create mode 100644 src/icons/aws/resource/res-compute/res-elastic-beanstalk-application.svg create mode 100644 src/icons/aws/resource/res-compute/res-elastic-beanstalk-deployment.svg create mode 100644 src/icons/aws/resource/res-compute/res-lambda-lambda-function.svg create mode 100644 src/icons/aws/resource/res-containers/res-elastic-container-registry-image.svg create mode 100644 src/icons/aws/resource/res-containers/res-elastic-container-registry-registry.svg create mode 100644 src/icons/aws/resource/res-containers/res-elastic-container-service-container-1.svg create mode 100644 src/icons/aws/resource/res-containers/res-elastic-container-service-container-2.svg create mode 100644 src/icons/aws/resource/res-containers/res-elastic-container-service-container-3.svg create mode 100644 src/icons/aws/resource/res-containers/res-elastic-container-service-copiiot-cli.svg create mode 100644 src/icons/aws/resource/res-containers/res-elastic-container-service-ecs-service-connect.svg create mode 100644 src/icons/aws/resource/res-containers/res-elastic-container-service-service.svg create mode 100644 src/icons/aws/resource/res-containers/res-elastic-container-service-task.svg create mode 100644 src/icons/aws/resource/res-containers/res-elastic-kubernetes-service-eks-on-outposts.svg create mode 100644 src/icons/aws/resource/res-database/res-aurora-aurora-instance-alternate.svg create mode 100644 src/icons/aws/resource/res-database/res-aurora-instance.svg create mode 100644 src/icons/aws/resource/res-database/res-aurora-mariadb-instance-alternate.svg create mode 100644 src/icons/aws/resource/res-database/res-aurora-mariadb-instance.svg create mode 100644 src/icons/aws/resource/res-database/res-aurora-mysql-instance-alternate.svg create mode 100644 src/icons/aws/resource/res-database/res-aurora-mysql-instance.svg create mode 100644 src/icons/aws/resource/res-database/res-aurora-oracle-instance-alternate.svg create mode 100644 src/icons/aws/resource/res-database/res-aurora-oracle-instance.svg create mode 100644 src/icons/aws/resource/res-database/res-aurora-piops-instance.svg create mode 100644 src/icons/aws/resource/res-database/res-aurora-postgresql-instance-alternate.svg create mode 100644 src/icons/aws/resource/res-database/res-aurora-postgresql-instance.svg create mode 100644 src/icons/aws/resource/res-database/res-aurora-rds-instance-aternate.svg create mode 100644 src/icons/aws/resource/res-database/res-aurora-rds-instance.svg create mode 100644 src/icons/aws/resource/res-database/res-aurora-sql-server-instance-alternate.svg create mode 100644 src/icons/aws/resource/res-database/res-aurora-sql-server-instance.svg create mode 100644 src/icons/aws/resource/res-database/res-aurora-trusted-language-extensions-for-postgresql.svg create mode 100644 src/icons/aws/resource/res-database/res-database-migration-service-database-migration-workflow-or-job.svg create mode 100644 src/icons/aws/resource/res-database/res-documentdb-elastic-clusters.svg create mode 100644 src/icons/aws/resource/res-database/res-dynamodb-attribute.svg create mode 100644 src/icons/aws/resource/res-database/res-dynamodb-attributes.svg create mode 100644 src/icons/aws/resource/res-database/res-dynamodb-dynamodb-accelerator.svg create mode 100644 src/icons/aws/resource/res-database/res-dynamodb-global-secondary-index.svg create mode 100644 src/icons/aws/resource/res-database/res-dynamodb-item.svg create mode 100644 src/icons/aws/resource/res-database/res-dynamodb-items.svg create mode 100644 src/icons/aws/resource/res-database/res-dynamodb-standard-access-table-class.svg create mode 100644 src/icons/aws/resource/res-database/res-dynamodb-standard-infrequent-access-table-class.svg create mode 100644 src/icons/aws/resource/res-database/res-dynamodb-stream.svg create mode 100644 src/icons/aws/resource/res-database/res-dynamodb-table.svg create mode 100644 src/icons/aws/resource/res-database/res-elasticache-cache-node.svg create mode 100644 src/icons/aws/resource/res-database/res-elasticache-elasticache-for-memcached.svg create mode 100644 src/icons/aws/resource/res-database/res-elasticache-elasticache-for-redis.svg create mode 100644 src/icons/aws/resource/res-database/res-elasticache-elasticache-for-valkey.svg create mode 100644 src/icons/aws/resource/res-database/res-rds-blue-green-deployments.svg create mode 100644 src/icons/aws/resource/res-database/res-rds-multi-az-db-cluster.svg create mode 100644 src/icons/aws/resource/res-database/res-rds-multi-az.svg create mode 100644 src/icons/aws/resource/res-database/res-rds-optimized-writes.svg create mode 100644 src/icons/aws/resource/res-database/res-rds-proxy-instance-alternate.svg create mode 100644 src/icons/aws/resource/res-database/res-rds-proxy-instance.svg create mode 100644 src/icons/aws/resource/res-database/res-rds-trusted-language-extensions-for-postgresql.svg create mode 100644 src/icons/aws/resource/res-developer-tools/res-cloud9-cloud9.svg create mode 100644 src/icons/aws/resource/res-end-user-computing/res-workspaces-family-workspaces-core.svg create mode 100644 src/icons/aws/resource/res-end-user-computing/res-workspaces-family-workspaces-secure-browser.svg create mode 100644 src/icons/aws/resource/res-end-user-computing/res-workspaces-family-workspaces.svg create mode 100644 src/icons/aws/resource/res-front-end-web-mobile/res-amplify-amplify-studio.svg create mode 100644 src/icons/aws/resource/res-front-end-web-mobile/res-location-service-geofence.svg create mode 100644 src/icons/aws/resource/res-front-end-web-mobile/res-location-service-map .svg create mode 100644 src/icons/aws/resource/res-front-end-web-mobile/res-location-service-place.svg create mode 100644 src/icons/aws/resource/res-front-end-web-mobile/res-location-service-routes.svg create mode 100644 src/icons/aws/resource/res-front-end-web-mobile/res-location-service-track .svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-alert-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-authenticated-user-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-camera-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-chat-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-client-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-cold-storage-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-credentials-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-data-stream-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-data-table-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-database-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-disk-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-document-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-documents-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-email-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-firewall-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-folder-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-folders-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-forums-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-gear-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-generic-application-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-git-repository-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-globe-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-internet-alt1-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-internet-alt2-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-internet-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-json-script-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-logs-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-magnifying-glass-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-management-console-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-metrics-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-mobile-client-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-multimedia-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-office-building-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-programming-language-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-question-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-recover-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-saml-token-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-sdk-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-server-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-servers-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-shield-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-source-code-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-ssl-padlock-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-tape-storage-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-toolkit-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-user-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-dark/res-users-dark.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-alert-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-authenticated-user-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-camera-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-chat-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-client-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-cold-storage-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-credentials-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-data-stream-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-data-table-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-database-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-disk-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-document-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-documents-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-email-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-firewall-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-folder-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-folders-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-forums-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-gear-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-generic-application-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-git-repository-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-globe-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-internet-alt1-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-internet-alt2-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-internet-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-json-script-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-logs-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-magnifying-glass-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-management-console-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-metrics-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-mobile-client-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-multimedia-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-office-building-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-programming-language-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-question-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-recover-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-saml-token-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-sdk-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-server-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-servers-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-shield-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-source-code-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-ssl-padlock-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-tape-storage-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-toolkit-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-user-light.svg create mode 100644 src/icons/aws/resource/res-general-icons/res-light/res-users-light.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-action.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-actuator.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-alexa-enabled-device.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-alexa-skill.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-alexa-voice-service.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-analytics-channel.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-analytics-data-store.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-analytics-dataset.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-analytics-notebook.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-analytics-pipeline.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-certificate.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-core-device-advisor.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-core-device-location.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-desired-state.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-device-defender-iot-device-jobs.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-device-gateway.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-device-management-fleet-hub.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-device-tester.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-echo.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-fire-tv-stick.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-fire-tv.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-greengrass-artifact.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-greengrass-component-machine-learning.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-greengrass-component-nucleus.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-greengrass-component-private.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-greengrass-component-public.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-greengrass-component.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-greengrass-connector.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-greengrass-interprocess-communication.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-greengrass-protocol.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-greengrass-recipe.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-greengrass-stream-manager.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-hardware-board.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-http-protocol.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-http2-protocol.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-lambda-function.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-lorawan-protocol.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-mqtt-protocol.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-over-air-update.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-policy.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-reported-state.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-rule.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-sailboat.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-sensor.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-servo.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-shadow.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-simulator.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-sitewise-asset-hiery.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-sitewise-asset-model.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-sitewise-asset-properties.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-sitewise-asset.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-sitewise-data-streams.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-thing-bank.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-thing-bicycle.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-thing-camera.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-thing-car.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-thing-cart.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-thing-coffee-pot.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-thing-door-lock.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-thing-factory.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-thing-freertos-device.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-thing-generic.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-thing-house.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-thing-humidity-sensor.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-thing-industrial-pc.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-thing-lightbulb.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-thing-medical-emergency.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-thing-plc.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-thing-police-emergency.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-thing-relay.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-thing-stacklight.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-thing-temperature-humidity-sensor.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-thing-temperature-sensor.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-thing-temperature-vibration-sensor.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-thing-thermostat.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-thing-travel.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-thing-utility.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-thing-vibration-sensor.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-thing-windfarm.svg create mode 100644 src/icons/aws/resource/res-iot/res-iot-topic.svg create mode 100644 src/icons/aws/resource/res-management-governance/res-cloudformation-change-set.svg create mode 100644 src/icons/aws/resource/res-management-governance/res-cloudformation-stack.svg create mode 100644 src/icons/aws/resource/res-management-governance/res-cloudformation-template.svg create mode 100644 src/icons/aws/resource/res-management-governance/res-cloudtrail-cloudtrail-lake.svg create mode 100644 src/icons/aws/resource/res-management-governance/res-cloudwatch-alarm.svg create mode 100644 src/icons/aws/resource/res-management-governance/res-cloudwatch-cross-account-observability.svg create mode 100644 src/icons/aws/resource/res-management-governance/res-cloudwatch-data-protection.svg create mode 100644 src/icons/aws/resource/res-management-governance/res-cloudwatch-event-event-based.svg create mode 100644 src/icons/aws/resource/res-management-governance/res-cloudwatch-event-time-based.svg create mode 100644 src/icons/aws/resource/res-management-governance/res-cloudwatch-evidently.svg create mode 100644 src/icons/aws/resource/res-management-governance/res-cloudwatch-logs.svg create mode 100644 src/icons/aws/resource/res-management-governance/res-cloudwatch-metrics-insights.svg create mode 100644 src/icons/aws/resource/res-management-governance/res-cloudwatch-rule.svg create mode 100644 src/icons/aws/resource/res-management-governance/res-cloudwatch-rum.svg create mode 100644 src/icons/aws/resource/res-management-governance/res-cloudwatch-synthetics.svg create mode 100644 src/icons/aws/resource/res-management-governance/res-license-manager-application-discovery.svg create mode 100644 src/icons/aws/resource/res-management-governance/res-license-manager-license-blending.svg create mode 100644 src/icons/aws/resource/res-management-governance/res-organizations-account.svg create mode 100644 src/icons/aws/resource/res-management-governance/res-organizations-management-account.svg create mode 100644 src/icons/aws/resource/res-management-governance/res-organizations-organizational-unit.svg create mode 100644 src/icons/aws/resource/res-management-governance/res-systems-manager-application-manager.svg create mode 100644 src/icons/aws/resource/res-management-governance/res-systems-manager-automation.svg create mode 100644 src/icons/aws/resource/res-management-governance/res-systems-manager-change-calendar.svg create mode 100644 src/icons/aws/resource/res-management-governance/res-systems-manager-change-manager.svg create mode 100644 src/icons/aws/resource/res-management-governance/res-systems-manager-compliance.svg create mode 100644 src/icons/aws/resource/res-management-governance/res-systems-manager-distributor.svg create mode 100644 src/icons/aws/resource/res-management-governance/res-systems-manager-documents.svg create mode 100644 src/icons/aws/resource/res-management-governance/res-systems-manager-incident-manager.svg create mode 100644 src/icons/aws/resource/res-management-governance/res-systems-manager-inventory.svg create mode 100644 src/icons/aws/resource/res-management-governance/res-systems-manager-maintenance-windows.svg create mode 100644 src/icons/aws/resource/res-management-governance/res-systems-manager-opscenter.svg create mode 100644 src/icons/aws/resource/res-management-governance/res-systems-manager-parameter-store.svg create mode 100644 src/icons/aws/resource/res-management-governance/res-systems-manager-patch-manager.svg create mode 100644 src/icons/aws/resource/res-management-governance/res-systems-manager-run-command.svg create mode 100644 src/icons/aws/resource/res-management-governance/res-systems-manager-session-manager.svg create mode 100644 src/icons/aws/resource/res-management-governance/res-systems-manager-state-manager.svg create mode 100644 src/icons/aws/resource/res-management-governance/res-trusted-advisor-checklist-cost.svg create mode 100644 src/icons/aws/resource/res-management-governance/res-trusted-advisor-checklist-fault-tolerant.svg create mode 100644 src/icons/aws/resource/res-management-governance/res-trusted-advisor-checklist-performance.svg create mode 100644 src/icons/aws/resource/res-management-governance/res-trusted-advisor-checklist-security.svg create mode 100644 src/icons/aws/resource/res-management-governance/res-trusted-advisor-checklist.svg create mode 100644 src/icons/aws/resource/res-media-services/res-cloud-digital-interface.svg create mode 100644 src/icons/aws/resource/res-media-services/res-elemental-mediaconnect-mediaconnect-gateway.svg create mode 100644 src/icons/aws/resource/res-migration-modernization/res-application-discovery-service-agentless-collector.svg create mode 100644 src/icons/aws/resource/res-migration-modernization/res-application-discovery-service-discovery-agent.svg create mode 100644 src/icons/aws/resource/res-migration-modernization/res-application-discovery-service-migration-evaluator-collector.svg create mode 100644 src/icons/aws/resource/res-migration-modernization/res-datasync-agent.svg create mode 100644 src/icons/aws/resource/res-migration-modernization/res-datasync-discovery.svg create mode 100644 src/icons/aws/resource/res-migration-modernization/res-mainframe-modernization-analyzer.svg create mode 100644 src/icons/aws/resource/res-migration-modernization/res-mainframe-modernization-compiler.svg create mode 100644 src/icons/aws/resource/res-migration-modernization/res-mainframe-modernization-converter.svg create mode 100644 src/icons/aws/resource/res-migration-modernization/res-mainframe-modernization-developer.svg create mode 100644 src/icons/aws/resource/res-migration-modernization/res-mainframe-modernization-runtime.svg create mode 100644 src/icons/aws/resource/res-migration-modernization/res-migration-hub-refactor-spaces-applications.svg create mode 100644 src/icons/aws/resource/res-migration-modernization/res-migration-hub-refactor-spaces-environments.svg create mode 100644 src/icons/aws/resource/res-migration-modernization/res-migration-hub-refactor-spaces-services.svg create mode 100644 src/icons/aws/resource/res-migration-modernization/res-transfer-family-as2.svg create mode 100644 src/icons/aws/resource/res-migration-modernization/res-transfer-family-ftp.svg create mode 100644 src/icons/aws/resource/res-migration-modernization/res-transfer-family-ftps.svg create mode 100644 src/icons/aws/resource/res-migration-modernization/res-transfer-family-sftp.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-api-gateway-endpoint.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-app-mesh-mesh.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-app-mesh-virtual-gateway.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-app-mesh-virtual-node.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-app-mesh-virtual-router.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-app-mesh-virtual-service.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-cloud-map-namespace.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-cloud-map-resource.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-cloud-map-service.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-cloud-wan-core-network-edge.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-cloud-wan-segment-network.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-cloud-wan-transit-gateway-route-table-attachment.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-cloudfront-download-distribution.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-cloudfront-edge-location.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-cloudfront-functions.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-cloudfront-streaming-distribution.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-direct-connect-gateway.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-elastic-load-balancing-application-load-balancer.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-elastic-load-balancing-classic-load-balancer.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-elastic-load-balancing-gateway-load-balancer.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-elastic-load-balancing-network-load-balancer.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-route-53-hosted-zone.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-route-53-readiness-checks.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-route-53-resolver-dns-firewall.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-route-53-resolver-query-logging.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-route-53-resolver.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-route-53-route-table.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-route-53-routing-controls.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-transit-gateway-attachment.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-vpc-carrier-gateway.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-vpc-customer-gateway.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-vpc-elastic-network-adapter.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-vpc-elastic-network-interface.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-vpc-endpoints.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-vpc-flow-logs.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-vpc-internet-gateway.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-vpc-nat-gateway.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-vpc-network-access-analyzer.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-vpc-network-access-control-list.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-vpc-peering-connection.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-vpc-reachability-analyzer.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-vpc-router.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-vpc-traffic-mirroring.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-vpc-virtual-private-cloud-vpc.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-vpc-vpn-connection.svg create mode 100644 src/icons/aws/resource/res-networking-content-delivery/res-vpc-vpn-gateway.svg create mode 100644 src/icons/aws/resource/res-quantum-technologies/res-braket-chandelier.svg create mode 100644 src/icons/aws/resource/res-quantum-technologies/res-braket-chip.svg create mode 100644 src/icons/aws/resource/res-quantum-technologies/res-braket-embedded-simulator.svg create mode 100644 src/icons/aws/resource/res-quantum-technologies/res-braket-managed-simulator.svg create mode 100644 src/icons/aws/resource/res-quantum-technologies/res-braket-noise-simulator.svg create mode 100644 src/icons/aws/resource/res-quantum-technologies/res-braket-qpu.svg create mode 100644 src/icons/aws/resource/res-quantum-technologies/res-braket-simulator-1.svg create mode 100644 src/icons/aws/resource/res-quantum-technologies/res-braket-simulator-2.svg create mode 100644 src/icons/aws/resource/res-quantum-technologies/res-braket-simulator-3.svg create mode 100644 src/icons/aws/resource/res-quantum-technologies/res-braket-simulator-4.svg create mode 100644 src/icons/aws/resource/res-quantum-technologies/res-braket-simulator.svg create mode 100644 src/icons/aws/resource/res-quantum-technologies/res-braket-state-vector.svg create mode 100644 src/icons/aws/resource/res-quantum-technologies/res-braket-tensor-network.svg create mode 100644 src/icons/aws/resource/res-robotics/res-robomaker-cloud-extensions-ros.svg create mode 100644 src/icons/aws/resource/res-robotics/res-robomaker-development-environment.svg create mode 100644 src/icons/aws/resource/res-robotics/res-robomaker-fleet-management.svg create mode 100644 src/icons/aws/resource/res-robotics/res-robomaker-simulation.svg create mode 100644 src/icons/aws/resource/res-security-identity-compliance/res-certificate-manager-certificate-authority.svg create mode 100644 src/icons/aws/resource/res-security-identity-compliance/res-directory-service-ad-connector.svg create mode 100644 src/icons/aws/resource/res-security-identity-compliance/res-directory-service-managed-microsoft-ad.svg create mode 100644 src/icons/aws/resource/res-security-identity-compliance/res-directory-service-simple-ad.svg create mode 100644 src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-add-on.svg create mode 100644 src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-data-encryption-key.svg create mode 100644 src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-encrypted-data.svg create mode 100644 src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-iam-access-analyzer.svg create mode 100644 src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-iam-roles-anywhere.svg create mode 100644 src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-long-term-security-credential.svg create mode 100644 src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-mfa-token.svg create mode 100644 src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-permissions.svg create mode 100644 src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-role.svg create mode 100644 src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-sts-alternate.svg create mode 100644 src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-sts.svg create mode 100644 src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-temporary-security-credential.svg create mode 100644 src/icons/aws/resource/res-security-identity-compliance/res-inspector-agent.svg create mode 100644 src/icons/aws/resource/res-security-identity-compliance/res-key-management-service-external-key-store.svg create mode 100644 src/icons/aws/resource/res-security-identity-compliance/res-network-firewall-endpoints.svg create mode 100644 src/icons/aws/resource/res-security-identity-compliance/res-security-hub-finding.svg create mode 100644 src/icons/aws/resource/res-security-identity-compliance/res-shield-shield-advanced.svg create mode 100644 src/icons/aws/resource/res-security-identity-compliance/res-waf-bad-bot.svg create mode 100644 src/icons/aws/resource/res-security-identity-compliance/res-waf-bot-control.svg create mode 100644 src/icons/aws/resource/res-security-identity-compliance/res-waf-bot.svg create mode 100644 src/icons/aws/resource/res-security-identity-compliance/res-waf-filtering-rule.svg create mode 100644 src/icons/aws/resource/res-security-identity-compliance/res-waf-labels.svg create mode 100644 src/icons/aws/resource/res-security-identity-compliance/res-waf-managed-rule.svg create mode 100644 src/icons/aws/resource/res-security-identity-compliance/res-waf-rule.svg create mode 100644 src/icons/aws/resource/res-storage/res-backup-audit-manager.svg create mode 100644 src/icons/aws/resource/res-storage/res-backup-backup-for-cloudformation.svg create mode 100644 src/icons/aws/resource/res-storage/res-backup-backup-plan.svg create mode 100644 src/icons/aws/resource/res-storage/res-backup-backup-restore.svg create mode 100644 src/icons/aws/resource/res-storage/res-backup-backup-support-for-fsx-for-netapp-ontap.svg create mode 100644 src/icons/aws/resource/res-storage/res-backup-backup-support-for-s3.svg create mode 100644 src/icons/aws/resource/res-storage/res-backup-backup-support-for-vmware-workloads.svg create mode 100644 src/icons/aws/resource/res-storage/res-backup-backup-vault.svg create mode 100644 src/icons/aws/resource/res-storage/res-backup-compliance-reporting.svg create mode 100644 src/icons/aws/resource/res-storage/res-backup-compute.svg create mode 100644 src/icons/aws/resource/res-storage/res-backup-database.svg create mode 100644 src/icons/aws/resource/res-storage/res-backup-gateway.svg create mode 100644 src/icons/aws/resource/res-storage/res-backup-legal-hold.svg create mode 100644 src/icons/aws/resource/res-storage/res-backup-recovery-point-objective.svg create mode 100644 src/icons/aws/resource/res-storage/res-backup-recovery-time-objective.svg create mode 100644 src/icons/aws/resource/res-storage/res-backup-storage.svg create mode 100644 src/icons/aws/resource/res-storage/res-backup-vault-lock.svg create mode 100644 src/icons/aws/resource/res-storage/res-backup-virtual-machine-monitor.svg create mode 100644 src/icons/aws/resource/res-storage/res-backup-virtual-machine.svg create mode 100644 src/icons/aws/resource/res-storage/res-elastic-block-store-data-lifecycle-manager.svg create mode 100644 src/icons/aws/resource/res-storage/res-elastic-block-store-multiple-volumes.svg create mode 100644 src/icons/aws/resource/res-storage/res-elastic-block-store-snapshot.svg create mode 100644 src/icons/aws/resource/res-storage/res-elastic-block-store-volume-gp3.svg create mode 100644 src/icons/aws/resource/res-storage/res-elastic-block-store-volume.svg create mode 100644 src/icons/aws/resource/res-storage/res-elastic-file-system-efs-intelligent-tiering.svg create mode 100644 src/icons/aws/resource/res-storage/res-elastic-file-system-efs-one-zone-infrequent-access.svg create mode 100644 src/icons/aws/resource/res-storage/res-elastic-file-system-efs-one-zone.svg create mode 100644 src/icons/aws/resource/res-storage/res-elastic-file-system-efs-standard-infrequent-access.svg create mode 100644 src/icons/aws/resource/res-storage/res-elastic-file-system-efs-standard.svg create mode 100644 src/icons/aws/resource/res-storage/res-elastic-file-system-elastic-throughput.svg create mode 100644 src/icons/aws/resource/res-storage/res-elastic-file-system-file-system.svg create mode 100644 src/icons/aws/resource/res-storage/res-file-cache-hybrid-nfs-linked-datasets.svg create mode 100644 src/icons/aws/resource/res-storage/res-file-cache-on-premises-nfs-linked-datasets.svg create mode 100644 src/icons/aws/resource/res-storage/res-file-cache-s3-linked-datasets.svg create mode 100644 src/icons/aws/resource/res-storage/res-simple-storage-service-bucket-with-objects.svg create mode 100644 src/icons/aws/resource/res-storage/res-simple-storage-service-bucket.svg create mode 100644 src/icons/aws/resource/res-storage/res-simple-storage-service-directory-bucket.svg create mode 100644 src/icons/aws/resource/res-storage/res-simple-storage-service-general-access-points.svg create mode 100644 src/icons/aws/resource/res-storage/res-simple-storage-service-glacier-ive.svg create mode 100644 src/icons/aws/resource/res-storage/res-simple-storage-service-glacier-vault.svg create mode 100644 src/icons/aws/resource/res-storage/res-simple-storage-service-object.svg create mode 100644 src/icons/aws/resource/res-storage/res-simple-storage-service-s3-batch-operations.svg create mode 100644 src/icons/aws/resource/res-storage/res-simple-storage-service-s3-express-one-zone.svg create mode 100644 src/icons/aws/resource/res-storage/res-simple-storage-service-s3-glacier-deep-ive.svg create mode 100644 src/icons/aws/resource/res-storage/res-simple-storage-service-s3-glacier-flexible-retrieval.svg create mode 100644 src/icons/aws/resource/res-storage/res-simple-storage-service-s3-glacier-instant-retrieval.svg create mode 100644 src/icons/aws/resource/res-storage/res-simple-storage-service-s3-intelligent-tiering.svg create mode 100644 src/icons/aws/resource/res-storage/res-simple-storage-service-s3-multi-region-access-points.svg create mode 100644 src/icons/aws/resource/res-storage/res-simple-storage-service-s3-object-lambda-access-points.svg create mode 100644 src/icons/aws/resource/res-storage/res-simple-storage-service-s3-object-lambda.svg create mode 100644 src/icons/aws/resource/res-storage/res-simple-storage-service-s3-object-lock.svg create mode 100644 src/icons/aws/resource/res-storage/res-simple-storage-service-s3-on-outposts.svg create mode 100644 src/icons/aws/resource/res-storage/res-simple-storage-service-s3-one-zone-ia.svg create mode 100644 src/icons/aws/resource/res-storage/res-simple-storage-service-s3-replication-time-control.svg create mode 100644 src/icons/aws/resource/res-storage/res-simple-storage-service-s3-replication.svg create mode 100644 src/icons/aws/resource/res-storage/res-simple-storage-service-s3-select.svg create mode 100644 src/icons/aws/resource/res-storage/res-simple-storage-service-s3-standard-ia.svg create mode 100644 src/icons/aws/resource/res-storage/res-simple-storage-service-s3-standard.svg create mode 100644 src/icons/aws/resource/res-storage/res-simple-storage-service-s3-storage-lens.svg create mode 100644 src/icons/aws/resource/res-storage/res-simple-storage-service-s3-tables.svg create mode 100644 src/icons/aws/resource/res-storage/res-simple-storage-service-vpc-access-points.svg create mode 100644 src/icons/aws/resource/res-storage/res-snowball-snowball-import-export.svg create mode 100644 src/icons/aws/resource/res-storage/res-storage-gateway-cached-volume.svg create mode 100644 src/icons/aws/resource/res-storage/res-storage-gateway-file-gateway.svg create mode 100644 src/icons/aws/resource/res-storage/res-storage-gateway-fsx-file-gateway.svg create mode 100644 src/icons/aws/resource/res-storage/res-storage-gateway-noncached-volume.svg create mode 100644 src/icons/aws/resource/res-storage/res-storage-gateway-s3-file-gateway.svg create mode 100644 src/icons/aws/resource/res-storage/res-storage-gateway-tape-gateway.svg create mode 100644 src/icons/aws/resource/res-storage/res-storage-gateway-virtual-tape-library.svg create mode 100644 src/icons/aws/resource/res-storage/res-storage-gateway-volume-gateway.svg create mode 100644 src/icons/gcp/access-context-manager.svg create mode 100644 src/icons/gcp/administration.svg create mode 100644 src/icons/gcp/advanced-agent-modeling.svg create mode 100644 src/icons/gcp/advanced-solutions-lab.svg create mode 100644 src/icons/gcp/agent-assist.svg create mode 100644 src/icons/gcp/ai-hub.svg create mode 100644 src/icons/gcp/ai-platform-unified.svg create mode 100644 src/icons/gcp/ai-platform.svg create mode 100644 src/icons/gcp/analytics-hub.svg create mode 100644 src/icons/gcp/anthos-config-management.svg create mode 100644 src/icons/gcp/anthos-service-mesh.svg create mode 100644 src/icons/gcp/anthos.svg create mode 100644 src/icons/gcp/api-analytics.svg create mode 100644 src/icons/gcp/api-monetization.svg create mode 100644 src/icons/gcp/api.svg create mode 100644 src/icons/gcp/apigee-api-platform.svg create mode 100644 src/icons/gcp/apigee-sense.svg create mode 100644 src/icons/gcp/app-engine.svg create mode 100644 src/icons/gcp/artifact-registry.svg create mode 100644 src/icons/gcp/asset-inventory.svg create mode 100644 src/icons/gcp/assured-workloads.svg create mode 100644 src/icons/gcp/automl-natural-language.svg create mode 100644 src/icons/gcp/automl-tables.svg create mode 100644 src/icons/gcp/automl-translation.svg create mode 100644 src/icons/gcp/automl-video-intelligence.svg create mode 100644 src/icons/gcp/automl-vision.svg create mode 100644 src/icons/gcp/automl.svg create mode 100644 src/icons/gcp/bare-metal-solutions.svg create mode 100644 src/icons/gcp/beyondcorp.svg create mode 100644 src/icons/gcp/bigquery.svg create mode 100644 src/icons/gcp/bigtable.svg create mode 100644 src/icons/gcp/billing.svg create mode 100644 src/icons/gcp/binary-authorization.svg create mode 100644 src/icons/gcp/catalog.svg create mode 100644 src/icons/gcp/certificate-authority-service.svg create mode 100644 src/icons/gcp/cloud-api-gateway.svg create mode 100644 src/icons/gcp/cloud-apis.svg create mode 100644 src/icons/gcp/cloud-armor.svg create mode 100644 src/icons/gcp/cloud-asset-inventory.svg create mode 100644 src/icons/gcp/cloud-audit-logs.svg create mode 100644 src/icons/gcp/cloud-build.svg create mode 100644 src/icons/gcp/cloud-cdn.svg create mode 100644 src/icons/gcp/cloud-code.svg create mode 100644 src/icons/gcp/cloud-composer.svg create mode 100644 src/icons/gcp/cloud-data-fusion.svg create mode 100644 src/icons/gcp/cloud-deploy.svg create mode 100644 src/icons/gcp/cloud-deployment-manager.svg create mode 100644 src/icons/gcp/cloud-dns.svg create mode 100644 src/icons/gcp/cloud-domains.svg create mode 100644 src/icons/gcp/cloud-ekm.svg create mode 100644 src/icons/gcp/cloud-endpoints.svg create mode 100644 src/icons/gcp/cloud-external-ip-addresses.svg create mode 100644 src/icons/gcp/cloud-firewall-rules.svg create mode 100644 src/icons/gcp/cloud-for-marketing.svg create mode 100644 src/icons/gcp/cloud-functions.svg create mode 100644 src/icons/gcp/cloud-generic.svg create mode 100644 src/icons/gcp/cloud-gpu.svg create mode 100644 src/icons/gcp/cloud-healthcare-api.svg create mode 100644 src/icons/gcp/cloud-healthcare-marketplace.svg create mode 100644 src/icons/gcp/cloud-hsm.svg create mode 100644 src/icons/gcp/cloud-ids.svg create mode 100644 src/icons/gcp/cloud-inference-api.svg create mode 100644 src/icons/gcp/cloud-interconnect.svg create mode 100644 src/icons/gcp/cloud-jobs-api.svg create mode 100644 src/icons/gcp/cloud-load-balancing.svg create mode 100644 src/icons/gcp/cloud-logging.svg create mode 100644 src/icons/gcp/cloud-media-edge.svg create mode 100644 src/icons/gcp/cloud-monitoring.svg create mode 100644 src/icons/gcp/cloud-nat.svg create mode 100644 src/icons/gcp/cloud-natural-language-api.svg create mode 100644 src/icons/gcp/cloud-network.svg create mode 100644 src/icons/gcp/cloud-ops.svg create mode 100644 src/icons/gcp/cloud-optimization-ai-fleet-routing-api.svg create mode 100644 src/icons/gcp/cloud-optimization-ai.svg create mode 100644 src/icons/gcp/cloud-router.svg create mode 100644 src/icons/gcp/cloud-routes.svg create mode 100644 src/icons/gcp/cloud-run-for-anthos.svg create mode 100644 src/icons/gcp/cloud-run.svg create mode 100644 src/icons/gcp/cloud-scheduler.svg create mode 100644 src/icons/gcp/cloud-security-scanner.svg create mode 100644 src/icons/gcp/cloud-shell.svg create mode 100644 src/icons/gcp/cloud-spanner.svg create mode 100644 src/icons/gcp/cloud-sql.svg create mode 100644 src/icons/gcp/cloud-storage.svg create mode 100644 src/icons/gcp/cloud-tasks.svg create mode 100644 src/icons/gcp/cloud-test-lab.svg create mode 100644 src/icons/gcp/cloud-tpu.svg create mode 100644 src/icons/gcp/cloud-translation-api.svg create mode 100644 src/icons/gcp/cloud-vision-api.svg create mode 100644 src/icons/gcp/cloud-vpn.svg create mode 100644 src/icons/gcp/compute-engine.svg create mode 100644 src/icons/gcp/configuration-management.svg create mode 100644 src/icons/gcp/connectivity-test.svg create mode 100644 src/icons/gcp/connectors.svg create mode 100644 src/icons/gcp/contact-center-ai.svg create mode 100644 src/icons/gcp/container-optimized-os.svg create mode 100644 src/icons/gcp/container-registry.svg create mode 100644 src/icons/gcp/data-catalog.svg create mode 100644 src/icons/gcp/data-labeling.svg create mode 100644 src/icons/gcp/data-layers.svg create mode 100644 src/icons/gcp/data-loss-prevention-api.svg create mode 100644 src/icons/gcp/data-qna.svg create mode 100644 src/icons/gcp/data-studio.svg create mode 100644 src/icons/gcp/data-transfer.svg create mode 100644 src/icons/gcp/dataflow.svg create mode 100644 src/icons/gcp/datalab.svg create mode 100644 src/icons/gcp/dataplex.svg create mode 100644 src/icons/gcp/datapol.svg create mode 100644 src/icons/gcp/dataprep.svg create mode 100644 src/icons/gcp/dataproc-metastore.svg create mode 100644 src/icons/gcp/dataproc.svg create mode 100644 src/icons/gcp/datashare.svg create mode 100644 src/icons/gcp/datastore.svg create mode 100644 src/icons/gcp/datastream.svg create mode 100644 src/icons/gcp/debugger.svg create mode 100644 src/icons/gcp/developer-portal.svg create mode 100644 src/icons/gcp/dialogflow-cx.svg create mode 100644 src/icons/gcp/dialogflow-insights.svg create mode 100644 src/icons/gcp/dialogflow.svg create mode 100644 src/icons/gcp/document-ai.svg create mode 100644 src/icons/gcp/early-access-center.svg create mode 100644 src/icons/gcp/error-reporting.svg create mode 100644 src/icons/gcp/eventarc.svg create mode 100644 src/icons/gcp/filestore.svg create mode 100644 src/icons/gcp/financial-services-marketplace.svg create mode 100644 src/icons/gcp/firestore.svg create mode 100644 src/icons/gcp/fleet-engine.svg create mode 100644 src/icons/gcp/free-trial.svg create mode 100644 src/icons/gcp/game-servers.svg create mode 100644 src/icons/gcp/gce-systems-management.svg create mode 100644 src/icons/gcp/gcp-batch.svg create mode 100644 src/icons/gcp/gcp-certificate-manager.svg create mode 100644 src/icons/gcp/gcp-database-migration-service.svg create mode 100644 src/icons/gcp/gcp-identity-and-access-management.svg create mode 100644 src/icons/gcp/gcp-iot-core.svg create mode 100644 src/icons/gcp/gcp-key-management-service.svg create mode 100644 src/icons/gcp/gcp-support.svg create mode 100644 src/icons/gcp/gcp-virtual-private-cloud.svg create mode 100644 src/icons/gcp/genomics.svg create mode 100644 src/icons/gcp/gke-on-prem.svg create mode 100644 src/icons/gcp/google-cloud-marketplace.svg create mode 100644 src/icons/gcp/google-kubernetes-engine.svg create mode 100644 src/icons/gcp/google-maps-platform.svg create mode 100644 src/icons/gcp/healthcare-nlp-api.svg create mode 100644 src/icons/gcp/home.svg create mode 100644 src/icons/gcp/identity-aware-proxy.svg create mode 100644 src/icons/gcp/identity-platform.svg create mode 100644 src/icons/gcp/iot-edge.svg create mode 100644 src/icons/gcp/key-access-justifications.svg create mode 100644 src/icons/gcp/kuberun.svg create mode 100644 src/icons/gcp/launcher.svg create mode 100644 src/icons/gcp/local-ssd.svg create mode 100644 src/icons/gcp/looker.svg create mode 100644 src/icons/gcp/managed-service-for-microsoft-active-directory.svg create mode 100644 src/icons/gcp/media-translation-api.svg create mode 100644 src/icons/gcp/memorystore.svg create mode 100644 src/icons/gcp/migrate-for-anthos.svg create mode 100644 src/icons/gcp/migrate-for-compute-engine.svg create mode 100644 src/icons/gcp/my-cloud.svg create mode 100644 src/icons/gcp/network-connectivity-center.svg create mode 100644 src/icons/gcp/network-intelligence-center.svg create mode 100644 src/icons/gcp/network-security.svg create mode 100644 src/icons/gcp/network-tiers.svg create mode 100644 src/icons/gcp/network-topology.svg create mode 100644 src/icons/gcp/onboarding.svg create mode 100644 src/icons/gcp/os-configuration-management.svg create mode 100644 src/icons/gcp/os-inventory-management.svg create mode 100644 src/icons/gcp/os-patch-management.svg create mode 100644 src/icons/gcp/partner-interconnect.svg create mode 100644 src/icons/gcp/partner-portal.svg create mode 100644 src/icons/gcp/performance-dashboard.svg create mode 100644 src/icons/gcp/permissions.svg create mode 100644 src/icons/gcp/persistent-disk.svg create mode 100644 src/icons/gcp/phishing-protection.svg create mode 100644 src/icons/gcp/policy-analyzer.svg create mode 100644 src/icons/gcp/premium-network-tier.svg create mode 100644 src/icons/gcp/private-connectivity.svg create mode 100644 src/icons/gcp/private-service-connect.svg create mode 100644 src/icons/gcp/producer-portal.svg create mode 100644 src/icons/gcp/profiler.svg create mode 100644 src/icons/gcp/project.svg create mode 100644 src/icons/gcp/pubsub.svg create mode 100644 src/icons/gcp/quantum-engine.svg create mode 100644 src/icons/gcp/quotas.svg create mode 100644 src/icons/gcp/real-world-insights.svg create mode 100644 src/icons/gcp/recommendations-ai.svg create mode 100644 src/icons/gcp/release-notes.svg create mode 100644 src/icons/gcp/retail-api.svg create mode 100644 src/icons/gcp/risk-manager.svg create mode 100644 src/icons/gcp/runtime-config.svg create mode 100644 src/icons/gcp/secret-manager.svg create mode 100644 src/icons/gcp/security-command-center.svg create mode 100644 src/icons/gcp/security-health-advisor.svg create mode 100644 src/icons/gcp/security-key-enforcement.svg create mode 100644 src/icons/gcp/security.svg create mode 100644 src/icons/gcp/service-discovery.svg create mode 100644 src/icons/gcp/speech-to-text.svg create mode 100644 src/icons/gcp/stackdriver.svg create mode 100644 src/icons/gcp/standard-network-tier.svg create mode 100644 src/icons/gcp/stream-suite.svg create mode 100644 src/icons/gcp/tensorflow-enterprise.svg create mode 100644 src/icons/gcp/text-to-speech.svg create mode 100644 src/icons/gcp/tools-for-powershell.svg create mode 100644 src/icons/gcp/trace.svg create mode 100644 src/icons/gcp/traffic-director.svg create mode 100644 src/icons/gcp/transfer-appliance.svg create mode 100644 src/icons/gcp/transfer.svg create mode 100644 src/icons/gcp/user-preferences.svg create mode 100644 src/icons/gcp/vertexai.svg create mode 100644 src/icons/gcp/video-intelligence-api.svg create mode 100644 src/icons/gcp/visual-inspection.svg create mode 100644 src/icons/gcp/vmware-engine.svg create mode 100644 src/icons/gcp/web-risk.svg create mode 100644 src/icons/gcp/web-security-scanner.svg create mode 100644 src/icons/gcp/workflows.svg create mode 100644 src/icons/gcp/workload-identity-pool.svg diff --git a/src/icons/aws/architecture-group/auto-scaling-group.svg b/src/icons/aws/architecture-group/auto-scaling-group.svg new file mode 100644 index 0000000..d859d26 --- /dev/null +++ b/src/icons/aws/architecture-group/auto-scaling-group.svg @@ -0,0 +1,8 @@ + + + Icon-Architecture-Group/32/Auto-Scaling-group_32 + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-group/aws-account.svg b/src/icons/aws/architecture-group/aws-account.svg new file mode 100644 index 0000000..e1e39b7 --- /dev/null +++ b/src/icons/aws/architecture-group/aws-account.svg @@ -0,0 +1,8 @@ + + + Icon-Architecture-Group/32/AWS-Account_32 + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-group/aws-cloud-dark.svg b/src/icons/aws/architecture-group/aws-cloud-dark.svg new file mode 100644 index 0000000..83c8981 --- /dev/null +++ b/src/icons/aws/architecture-group/aws-cloud-dark.svg @@ -0,0 +1,8 @@ + + + Icon-Architecture-Group/32/AWS-Cloud_32_Dark + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-group/aws-cloud-logo-dark.svg b/src/icons/aws/architecture-group/aws-cloud-logo-dark.svg new file mode 100644 index 0000000..8f10a5d --- /dev/null +++ b/src/icons/aws/architecture-group/aws-cloud-logo-dark.svg @@ -0,0 +1,8 @@ + + + Icon-Architecture-Group/32/AWS-Cloud-logo_32_Dark + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-group/aws-cloud-logo.svg b/src/icons/aws/architecture-group/aws-cloud-logo.svg new file mode 100644 index 0000000..c4a24d0 --- /dev/null +++ b/src/icons/aws/architecture-group/aws-cloud-logo.svg @@ -0,0 +1,8 @@ + + + Icon-Architecture-Group/32/AWS-Cloud-logo_32 + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-group/aws-cloud.svg b/src/icons/aws/architecture-group/aws-cloud.svg new file mode 100644 index 0000000..dd1ff09 --- /dev/null +++ b/src/icons/aws/architecture-group/aws-cloud.svg @@ -0,0 +1,8 @@ + + + Icon-Architecture-Group/32/AWS-Cloud_32 + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-group/aws-iot-greengrass-deployment.svg b/src/icons/aws/architecture-group/aws-iot-greengrass-deployment.svg new file mode 100644 index 0000000..4619f6c --- /dev/null +++ b/src/icons/aws/architecture-group/aws-iot-greengrass-deployment.svg @@ -0,0 +1,8 @@ + + + Icon-Architecture-Group/32/AWS-IoT-Greengrass-Deployment_32 + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-group/corporate-data-center.svg b/src/icons/aws/architecture-group/corporate-data-center.svg new file mode 100644 index 0000000..ee75dc8 --- /dev/null +++ b/src/icons/aws/architecture-group/corporate-data-center.svg @@ -0,0 +1,8 @@ + + + Icon-Architecture-Group/32/Corporate-data-center_32 + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-group/ec2-instance-contents.svg b/src/icons/aws/architecture-group/ec2-instance-contents.svg new file mode 100644 index 0000000..abe02b1 --- /dev/null +++ b/src/icons/aws/architecture-group/ec2-instance-contents.svg @@ -0,0 +1,8 @@ + + + Icon-Architecture-Group/32/EC2-instance-contents_32 + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-group/private-subnet.svg b/src/icons/aws/architecture-group/private-subnet.svg new file mode 100644 index 0000000..2a28fff --- /dev/null +++ b/src/icons/aws/architecture-group/private-subnet.svg @@ -0,0 +1,8 @@ + + + Icon-Architecture-Group/32/Private-subnet_32 + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-group/public-subnet.svg b/src/icons/aws/architecture-group/public-subnet.svg new file mode 100644 index 0000000..5e1b5aa --- /dev/null +++ b/src/icons/aws/architecture-group/public-subnet.svg @@ -0,0 +1,8 @@ + + + Icon-Architecture-Group/32/Public-subnet_32 + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-group/region.svg b/src/icons/aws/architecture-group/region.svg new file mode 100644 index 0000000..d99274c --- /dev/null +++ b/src/icons/aws/architecture-group/region.svg @@ -0,0 +1,8 @@ + + + Icon-Architecture-Group/32/Region_32 + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-group/server-contents.svg b/src/icons/aws/architecture-group/server-contents.svg new file mode 100644 index 0000000..1854583 --- /dev/null +++ b/src/icons/aws/architecture-group/server-contents.svg @@ -0,0 +1,8 @@ + + + Icon-Architecture-Group/32/Server-contents_32 + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-group/spot-fleet.svg b/src/icons/aws/architecture-group/spot-fleet.svg new file mode 100644 index 0000000..3e5ec96 --- /dev/null +++ b/src/icons/aws/architecture-group/spot-fleet.svg @@ -0,0 +1,8 @@ + + + Icon-Architecture-Group/32/Spot-Fleet_32 + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-group/virtual-private-cloud-vpc.svg b/src/icons/aws/architecture-group/virtual-private-cloud-vpc.svg new file mode 100644 index 0000000..71f4885 --- /dev/null +++ b/src/icons/aws/architecture-group/virtual-private-cloud-vpc.svg @@ -0,0 +1,8 @@ + + + Icon-Architecture-Group/32/Virtual-private-cloud-VPC_32 + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/analytics/analytics-kinesis-video-streams.svg b/src/icons/aws/architecture-service/analytics/analytics-kinesis-video-streams.svg new file mode 100644 index 0000000..eda5204 --- /dev/null +++ b/src/icons/aws/architecture-service/analytics/analytics-kinesis-video-streams.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Amazon-Kinesis-Video-Streams_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/analytics/athena.svg b/src/icons/aws/architecture-service/analytics/athena.svg new file mode 100644 index 0000000..11e0683 --- /dev/null +++ b/src/icons/aws/architecture-service/analytics/athena.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Athena_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/analytics/clean-rooms.svg b/src/icons/aws/architecture-service/analytics/clean-rooms.svg new file mode 100644 index 0000000..e800b1b --- /dev/null +++ b/src/icons/aws/architecture-service/analytics/clean-rooms.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Clean-Rooms_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/analytics/cloudsearch.svg b/src/icons/aws/architecture-service/analytics/cloudsearch.svg new file mode 100644 index 0000000..6b55570 --- /dev/null +++ b/src/icons/aws/architecture-service/analytics/cloudsearch.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-CloudSearch_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/analytics/data-exchange.svg b/src/icons/aws/architecture-service/analytics/data-exchange.svg new file mode 100644 index 0000000..0da4c5e --- /dev/null +++ b/src/icons/aws/architecture-service/analytics/data-exchange.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Data-Exchange_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/analytics/data-firehose.svg b/src/icons/aws/architecture-service/analytics/data-firehose.svg new file mode 100644 index 0000000..965e18c --- /dev/null +++ b/src/icons/aws/architecture-service/analytics/data-firehose.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Amazon-Kinesis-Data-Firehose_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/analytics/datazone.svg b/src/icons/aws/architecture-service/analytics/datazone.svg new file mode 100644 index 0000000..bf5fc17 --- /dev/null +++ b/src/icons/aws/architecture-service/analytics/datazone.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-DataZone_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/analytics/emr.svg b/src/icons/aws/architecture-service/analytics/emr.svg new file mode 100644 index 0000000..0a1916a --- /dev/null +++ b/src/icons/aws/architecture-service/analytics/emr.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-EMR_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/analytics/entity-resolution.svg b/src/icons/aws/architecture-service/analytics/entity-resolution.svg new file mode 100644 index 0000000..aed89da --- /dev/null +++ b/src/icons/aws/architecture-service/analytics/entity-resolution.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-Entity-Resolution_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/analytics/finspace.svg b/src/icons/aws/architecture-service/analytics/finspace.svg new file mode 100644 index 0000000..2437c70 --- /dev/null +++ b/src/icons/aws/architecture-service/analytics/finspace.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Amazon-FinSpace_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/analytics/glue-databrew.svg b/src/icons/aws/architecture-service/analytics/glue-databrew.svg new file mode 100644 index 0000000..fc26007 --- /dev/null +++ b/src/icons/aws/architecture-service/analytics/glue-databrew.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-Glue-DataBrew_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/analytics/glue.svg b/src/icons/aws/architecture-service/analytics/glue.svg new file mode 100644 index 0000000..5b05d46 --- /dev/null +++ b/src/icons/aws/architecture-service/analytics/glue.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Glue_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/analytics/kinesis-data-streams.svg b/src/icons/aws/architecture-service/analytics/kinesis-data-streams.svg new file mode 100644 index 0000000..9ee8700 --- /dev/null +++ b/src/icons/aws/architecture-service/analytics/kinesis-data-streams.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Amazon-Kinesis-Data-Streams_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/analytics/kinesis.svg b/src/icons/aws/architecture-service/analytics/kinesis.svg new file mode 100644 index 0000000..b2314b8 --- /dev/null +++ b/src/icons/aws/architecture-service/analytics/kinesis.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Kinesis_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/analytics/lake-formation.svg b/src/icons/aws/architecture-service/analytics/lake-formation.svg new file mode 100644 index 0000000..f7a577d --- /dev/null +++ b/src/icons/aws/architecture-service/analytics/lake-formation.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Lake-Formation_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/analytics/managed-service-for-apache-flink.svg b/src/icons/aws/architecture-service/analytics/managed-service-for-apache-flink.svg new file mode 100644 index 0000000..f2a51b0 --- /dev/null +++ b/src/icons/aws/architecture-service/analytics/managed-service-for-apache-flink.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Amazon-Managed-Service-for-Apache-Flink_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/analytics/managed-streaming-for-apache-kafka.svg b/src/icons/aws/architecture-service/analytics/managed-streaming-for-apache-kafka.svg new file mode 100644 index 0000000..f276a05 --- /dev/null +++ b/src/icons/aws/architecture-service/analytics/managed-streaming-for-apache-kafka.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Managed-Streaming-for-Apache-Kafka_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/analytics/opensearch-service.svg b/src/icons/aws/architecture-service/analytics/opensearch-service.svg new file mode 100644 index 0000000..d62a522 --- /dev/null +++ b/src/icons/aws/architecture-service/analytics/opensearch-service.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-OpenSearch-Service_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/analytics/quicksight.svg b/src/icons/aws/architecture-service/analytics/quicksight.svg new file mode 100644 index 0000000..80603ad --- /dev/null +++ b/src/icons/aws/architecture-service/analytics/quicksight.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-QuickSight_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/analytics/redshift.svg b/src/icons/aws/architecture-service/analytics/redshift.svg new file mode 100644 index 0000000..af15ffc --- /dev/null +++ b/src/icons/aws/architecture-service/analytics/redshift.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Redshift_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/analytics/sagemaker.svg b/src/icons/aws/architecture-service/analytics/sagemaker.svg new file mode 100644 index 0000000..1421044 --- /dev/null +++ b/src/icons/aws/architecture-service/analytics/sagemaker.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/icons/aws/architecture-service/app-integration/appflow.svg b/src/icons/aws/architecture-service/app-integration/appflow.svg new file mode 100644 index 0000000..2f161e6 --- /dev/null +++ b/src/icons/aws/architecture-service/app-integration/appflow.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Amazon-AppFlow_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/app-integration/appsync.svg b/src/icons/aws/architecture-service/app-integration/appsync.svg new file mode 100644 index 0000000..b00d11a --- /dev/null +++ b/src/icons/aws/architecture-service/app-integration/appsync.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-AppSync_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/app-integration/b2b-data-interchange.svg b/src/icons/aws/architecture-service/app-integration/b2b-data-interchange.svg new file mode 100644 index 0000000..3997daa --- /dev/null +++ b/src/icons/aws/architecture-service/app-integration/b2b-data-interchange.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-B2B-Data-Interchange_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/app-integration/eventbridge.svg b/src/icons/aws/architecture-service/app-integration/eventbridge.svg new file mode 100644 index 0000000..1d6fe98 --- /dev/null +++ b/src/icons/aws/architecture-service/app-integration/eventbridge.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-EventBridge_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/app-integration/express-workflows.svg b/src/icons/aws/architecture-service/app-integration/express-workflows.svg new file mode 100644 index 0000000..085eb49 --- /dev/null +++ b/src/icons/aws/architecture-service/app-integration/express-workflows.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Express-Workflow_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/app-integration/managed-workflows-for-apache-airflow.svg b/src/icons/aws/architecture-service/app-integration/managed-workflows-for-apache-airflow.svg new file mode 100644 index 0000000..22b9726 --- /dev/null +++ b/src/icons/aws/architecture-service/app-integration/managed-workflows-for-apache-airflow.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Amazon-Managed-Workflows-for-Apache-Airflow_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/app-integration/mq.svg b/src/icons/aws/architecture-service/app-integration/mq.svg new file mode 100644 index 0000000..eb5145f --- /dev/null +++ b/src/icons/aws/architecture-service/app-integration/mq.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-MQ_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/app-integration/simple-notification-service.svg b/src/icons/aws/architecture-service/app-integration/simple-notification-service.svg new file mode 100644 index 0000000..c492368 --- /dev/null +++ b/src/icons/aws/architecture-service/app-integration/simple-notification-service.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Simple-Notification-Service_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/app-integration/simple-queue-service.svg b/src/icons/aws/architecture-service/app-integration/simple-queue-service.svg new file mode 100644 index 0000000..6f6ebc9 --- /dev/null +++ b/src/icons/aws/architecture-service/app-integration/simple-queue-service.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Simple-Queue-Service_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/app-integration/step-functions.svg b/src/icons/aws/architecture-service/app-integration/step-functions.svg new file mode 100644 index 0000000..d1d544d --- /dev/null +++ b/src/icons/aws/architecture-service/app-integration/step-functions.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Step-Functions_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/artificial-intelligence/apache-mxnet-on-aws.svg b/src/icons/aws/architecture-service/artificial-intelligence/apache-mxnet-on-aws.svg new file mode 100644 index 0000000..c85bf80 --- /dev/null +++ b/src/icons/aws/architecture-service/artificial-intelligence/apache-mxnet-on-aws.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Apache-MXNet-on-AWS_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/artificial-intelligence/app-studio.svg b/src/icons/aws/architecture-service/artificial-intelligence/app-studio.svg new file mode 100644 index 0000000..23b48aa --- /dev/null +++ b/src/icons/aws/architecture-service/artificial-intelligence/app-studio.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/icons/aws/architecture-service/artificial-intelligence/augmented-ai-a2i.svg b/src/icons/aws/architecture-service/artificial-intelligence/augmented-ai-a2i.svg new file mode 100644 index 0000000..71e0fd3 --- /dev/null +++ b/src/icons/aws/architecture-service/artificial-intelligence/augmented-ai-a2i.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Augmented-AI-A2I_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/artificial-intelligence/bedrock.svg b/src/icons/aws/architecture-service/artificial-intelligence/bedrock.svg new file mode 100644 index 0000000..1d8de87 --- /dev/null +++ b/src/icons/aws/architecture-service/artificial-intelligence/bedrock.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Amazon-Bedrock_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/artificial-intelligence/codeguru.svg b/src/icons/aws/architecture-service/artificial-intelligence/codeguru.svg new file mode 100644 index 0000000..613334f --- /dev/null +++ b/src/icons/aws/architecture-service/artificial-intelligence/codeguru.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-CodeGuru_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/artificial-intelligence/codewhisperer.svg b/src/icons/aws/architecture-service/artificial-intelligence/codewhisperer.svg new file mode 100644 index 0000000..c82db99 --- /dev/null +++ b/src/icons/aws/architecture-service/artificial-intelligence/codewhisperer.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Amazon-CodeWhisperer_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/artificial-intelligence/comprehend-medical.svg b/src/icons/aws/architecture-service/artificial-intelligence/comprehend-medical.svg new file mode 100644 index 0000000..294d407 --- /dev/null +++ b/src/icons/aws/architecture-service/artificial-intelligence/comprehend-medical.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Amazon-Comprehend-Medical_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/artificial-intelligence/comprehend.svg b/src/icons/aws/architecture-service/artificial-intelligence/comprehend.svg new file mode 100644 index 0000000..c69bc0a --- /dev/null +++ b/src/icons/aws/architecture-service/artificial-intelligence/comprehend.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Comprehend_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/artificial-intelligence/deep-learning-amis.svg b/src/icons/aws/architecture-service/artificial-intelligence/deep-learning-amis.svg new file mode 100644 index 0000000..f1bbec4 --- /dev/null +++ b/src/icons/aws/architecture-service/artificial-intelligence/deep-learning-amis.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-Deep-Learning-AMIs_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/artificial-intelligence/deep-learning-containers.svg b/src/icons/aws/architecture-service/artificial-intelligence/deep-learning-containers.svg new file mode 100644 index 0000000..fe94491 --- /dev/null +++ b/src/icons/aws/architecture-service/artificial-intelligence/deep-learning-containers.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Deep-Learning-Containers_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/artificial-intelligence/deepcomposer.svg b/src/icons/aws/architecture-service/artificial-intelligence/deepcomposer.svg new file mode 100644 index 0000000..d307c87 --- /dev/null +++ b/src/icons/aws/architecture-service/artificial-intelligence/deepcomposer.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-DeepComposer_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/artificial-intelligence/deeplens.svg b/src/icons/aws/architecture-service/artificial-intelligence/deeplens.svg new file mode 100644 index 0000000..ef82dd3 --- /dev/null +++ b/src/icons/aws/architecture-service/artificial-intelligence/deeplens.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-DeepLens_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/artificial-intelligence/deepracer.svg b/src/icons/aws/architecture-service/artificial-intelligence/deepracer.svg new file mode 100644 index 0000000..b846683 --- /dev/null +++ b/src/icons/aws/architecture-service/artificial-intelligence/deepracer.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-DeepRacer_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/artificial-intelligence/devops-guru.svg b/src/icons/aws/architecture-service/artificial-intelligence/devops-guru.svg new file mode 100644 index 0000000..d70285b --- /dev/null +++ b/src/icons/aws/architecture-service/artificial-intelligence/devops-guru.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Amazon-DevOps-Guru_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/artificial-intelligence/elastic-inference.svg b/src/icons/aws/architecture-service/artificial-intelligence/elastic-inference.svg new file mode 100644 index 0000000..c96f642 --- /dev/null +++ b/src/icons/aws/architecture-service/artificial-intelligence/elastic-inference.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Elastic-Inference_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/artificial-intelligence/forecast.svg b/src/icons/aws/architecture-service/artificial-intelligence/forecast.svg new file mode 100644 index 0000000..e506bd8 --- /dev/null +++ b/src/icons/aws/architecture-service/artificial-intelligence/forecast.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Forecast_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/artificial-intelligence/fraud-detector.svg b/src/icons/aws/architecture-service/artificial-intelligence/fraud-detector.svg new file mode 100644 index 0000000..ed7bec1 --- /dev/null +++ b/src/icons/aws/architecture-service/artificial-intelligence/fraud-detector.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Fraud-Detector_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/artificial-intelligence/healthimaging.svg b/src/icons/aws/architecture-service/artificial-intelligence/healthimaging.svg new file mode 100644 index 0000000..18323c8 --- /dev/null +++ b/src/icons/aws/architecture-service/artificial-intelligence/healthimaging.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-HealthImaging_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/artificial-intelligence/healthlake.svg b/src/icons/aws/architecture-service/artificial-intelligence/healthlake.svg new file mode 100644 index 0000000..154947c --- /dev/null +++ b/src/icons/aws/architecture-service/artificial-intelligence/healthlake.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-HealthLake_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/artificial-intelligence/healthomics.svg b/src/icons/aws/architecture-service/artificial-intelligence/healthomics.svg new file mode 100644 index 0000000..aca23c4 --- /dev/null +++ b/src/icons/aws/architecture-service/artificial-intelligence/healthomics.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-HealthOmics_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/artificial-intelligence/healthscribe.svg b/src/icons/aws/architecture-service/artificial-intelligence/healthscribe.svg new file mode 100644 index 0000000..1f02a87 --- /dev/null +++ b/src/icons/aws/architecture-service/artificial-intelligence/healthscribe.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-HealthScribe_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/artificial-intelligence/kendra.svg b/src/icons/aws/architecture-service/artificial-intelligence/kendra.svg new file mode 100644 index 0000000..e1cb8aa --- /dev/null +++ b/src/icons/aws/architecture-service/artificial-intelligence/kendra.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Kendra_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/artificial-intelligence/lex.svg b/src/icons/aws/architecture-service/artificial-intelligence/lex.svg new file mode 100644 index 0000000..e9fd44a --- /dev/null +++ b/src/icons/aws/architecture-service/artificial-intelligence/lex.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Lex_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/artificial-intelligence/lookout-for-equipment.svg b/src/icons/aws/architecture-service/artificial-intelligence/lookout-for-equipment.svg new file mode 100644 index 0000000..002498f --- /dev/null +++ b/src/icons/aws/architecture-service/artificial-intelligence/lookout-for-equipment.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Amazon-Lookout-for-Equipment_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/artificial-intelligence/lookout-for-metrics.svg b/src/icons/aws/architecture-service/artificial-intelligence/lookout-for-metrics.svg new file mode 100644 index 0000000..ff087bd --- /dev/null +++ b/src/icons/aws/architecture-service/artificial-intelligence/lookout-for-metrics.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Amazon-Lookout-for-Metrics_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/artificial-intelligence/lookout-for-vision.svg b/src/icons/aws/architecture-service/artificial-intelligence/lookout-for-vision.svg new file mode 100644 index 0000000..f52c2e0 --- /dev/null +++ b/src/icons/aws/architecture-service/artificial-intelligence/lookout-for-vision.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Amazon-Lookout-for-Vision_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/artificial-intelligence/monitron.svg b/src/icons/aws/architecture-service/artificial-intelligence/monitron.svg new file mode 100644 index 0000000..f52a09e --- /dev/null +++ b/src/icons/aws/architecture-service/artificial-intelligence/monitron.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Amazon-Monitron_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/artificial-intelligence/neuron.svg b/src/icons/aws/architecture-service/artificial-intelligence/neuron.svg new file mode 100644 index 0000000..d44ebc2 --- /dev/null +++ b/src/icons/aws/architecture-service/artificial-intelligence/neuron.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Neuron_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/artificial-intelligence/nova.svg b/src/icons/aws/architecture-service/artificial-intelligence/nova.svg new file mode 100644 index 0000000..8058bb3 --- /dev/null +++ b/src/icons/aws/architecture-service/artificial-intelligence/nova.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/icons/aws/architecture-service/artificial-intelligence/panorama.svg b/src/icons/aws/architecture-service/artificial-intelligence/panorama.svg new file mode 100644 index 0000000..72acd72 --- /dev/null +++ b/src/icons/aws/architecture-service/artificial-intelligence/panorama.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-Panorama_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/artificial-intelligence/personalize.svg b/src/icons/aws/architecture-service/artificial-intelligence/personalize.svg new file mode 100644 index 0000000..fa756a5 --- /dev/null +++ b/src/icons/aws/architecture-service/artificial-intelligence/personalize.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Personalize_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/artificial-intelligence/polly.svg b/src/icons/aws/architecture-service/artificial-intelligence/polly.svg new file mode 100644 index 0000000..5d5afc8 --- /dev/null +++ b/src/icons/aws/architecture-service/artificial-intelligence/polly.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Polly_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/artificial-intelligence/pytorch-on-aws.svg b/src/icons/aws/architecture-service/artificial-intelligence/pytorch-on-aws.svg new file mode 100644 index 0000000..528595a --- /dev/null +++ b/src/icons/aws/architecture-service/artificial-intelligence/pytorch-on-aws.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_TorchServe_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/artificial-intelligence/q.svg b/src/icons/aws/architecture-service/artificial-intelligence/q.svg new file mode 100644 index 0000000..27cfc06 --- /dev/null +++ b/src/icons/aws/architecture-service/artificial-intelligence/q.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Amazon-Q_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/artificial-intelligence/rekognition.svg b/src/icons/aws/architecture-service/artificial-intelligence/rekognition.svg new file mode 100644 index 0000000..f01c03f --- /dev/null +++ b/src/icons/aws/architecture-service/artificial-intelligence/rekognition.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Rekognition_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/artificial-intelligence/sagemaker-ai.svg b/src/icons/aws/architecture-service/artificial-intelligence/sagemaker-ai.svg new file mode 100644 index 0000000..6fc9241 --- /dev/null +++ b/src/icons/aws/architecture-service/artificial-intelligence/sagemaker-ai.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-SageMaker_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/artificial-intelligence/sagemaker-ground-truth.svg b/src/icons/aws/architecture-service/artificial-intelligence/sagemaker-ground-truth.svg new file mode 100644 index 0000000..0a3d205 --- /dev/null +++ b/src/icons/aws/architecture-service/artificial-intelligence/sagemaker-ground-truth.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-SageMaker-Ground-Truth_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/artificial-intelligence/sagemaker-studio-lab.svg b/src/icons/aws/architecture-service/artificial-intelligence/sagemaker-studio-lab.svg new file mode 100644 index 0000000..846d697 --- /dev/null +++ b/src/icons/aws/architecture-service/artificial-intelligence/sagemaker-studio-lab.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Amazon-SageMaker-Studio-Lab_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/artificial-intelligence/tensorflow-on-aws.svg b/src/icons/aws/architecture-service/artificial-intelligence/tensorflow-on-aws.svg new file mode 100644 index 0000000..b723038 --- /dev/null +++ b/src/icons/aws/architecture-service/artificial-intelligence/tensorflow-on-aws.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_TensorFlow-on-AWS_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/artificial-intelligence/textract.svg b/src/icons/aws/architecture-service/artificial-intelligence/textract.svg new file mode 100644 index 0000000..3a01aa0 --- /dev/null +++ b/src/icons/aws/architecture-service/artificial-intelligence/textract.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Textract_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/artificial-intelligence/transcribe.svg b/src/icons/aws/architecture-service/artificial-intelligence/transcribe.svg new file mode 100644 index 0000000..6b44866 --- /dev/null +++ b/src/icons/aws/architecture-service/artificial-intelligence/transcribe.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Transcribe_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/artificial-intelligence/translate.svg b/src/icons/aws/architecture-service/artificial-intelligence/translate.svg new file mode 100644 index 0000000..729fe68 --- /dev/null +++ b/src/icons/aws/architecture-service/artificial-intelligence/translate.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Translate_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/blockchain/managed-blockchain.svg b/src/icons/aws/architecture-service/blockchain/managed-blockchain.svg new file mode 100644 index 0000000..983c86f --- /dev/null +++ b/src/icons/aws/architecture-service/blockchain/managed-blockchain.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Managed-Blockchain_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/blockchain/quantum-ledger-database.svg b/src/icons/aws/architecture-service/blockchain/quantum-ledger-database.svg new file mode 100644 index 0000000..389d89b --- /dev/null +++ b/src/icons/aws/architecture-service/blockchain/quantum-ledger-database.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Quantum-Ledger-Database_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/business-applications/alexa-for-business.svg b/src/icons/aws/architecture-service/business-applications/alexa-for-business.svg new file mode 100644 index 0000000..2b49046 --- /dev/null +++ b/src/icons/aws/architecture-service/business-applications/alexa-for-business.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Alexa-For-Business_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/business-applications/appfabric.svg b/src/icons/aws/architecture-service/business-applications/appfabric.svg new file mode 100644 index 0000000..943bd10 --- /dev/null +++ b/src/icons/aws/architecture-service/business-applications/appfabric.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-AppFabric_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/business-applications/chime-sdk.svg b/src/icons/aws/architecture-service/business-applications/chime-sdk.svg new file mode 100644 index 0000000..9b6d2f9 --- /dev/null +++ b/src/icons/aws/architecture-service/business-applications/chime-sdk.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Amazon-Chime-SDK_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/business-applications/chime.svg b/src/icons/aws/architecture-service/business-applications/chime.svg new file mode 100644 index 0000000..afa9454 --- /dev/null +++ b/src/icons/aws/architecture-service/business-applications/chime.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Chime_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/business-applications/connect.svg b/src/icons/aws/architecture-service/business-applications/connect.svg new file mode 100644 index 0000000..45d091e --- /dev/null +++ b/src/icons/aws/architecture-service/business-applications/connect.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Connect_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/business-applications/end-user-messaging.svg b/src/icons/aws/architecture-service/business-applications/end-user-messaging.svg new file mode 100644 index 0000000..f0438f4 --- /dev/null +++ b/src/icons/aws/architecture-service/business-applications/end-user-messaging.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/icons/aws/architecture-service/business-applications/pinpoint-apis.svg b/src/icons/aws/architecture-service/business-applications/pinpoint-apis.svg new file mode 100644 index 0000000..211afb2 --- /dev/null +++ b/src/icons/aws/architecture-service/business-applications/pinpoint-apis.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Amazon-Pinpoint-APIs_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/business-applications/pinpoint.svg b/src/icons/aws/architecture-service/business-applications/pinpoint.svg new file mode 100644 index 0000000..e29d084 --- /dev/null +++ b/src/icons/aws/architecture-service/business-applications/pinpoint.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Amazon-Pinpoint_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/business-applications/simple-email-service.svg b/src/icons/aws/architecture-service/business-applications/simple-email-service.svg new file mode 100644 index 0000000..6654e21 --- /dev/null +++ b/src/icons/aws/architecture-service/business-applications/simple-email-service.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Simple-Email-Service_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/business-applications/supply-chain.svg b/src/icons/aws/architecture-service/business-applications/supply-chain.svg new file mode 100644 index 0000000..bcbb407 --- /dev/null +++ b/src/icons/aws/architecture-service/business-applications/supply-chain.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Supply-Chain_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/business-applications/wickr.svg b/src/icons/aws/architecture-service/business-applications/wickr.svg new file mode 100644 index 0000000..a83ad33 --- /dev/null +++ b/src/icons/aws/architecture-service/business-applications/wickr.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Wickr_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/business-applications/workdocs-sdk.svg b/src/icons/aws/architecture-service/business-applications/workdocs-sdk.svg new file mode 100644 index 0000000..8d89baf --- /dev/null +++ b/src/icons/aws/architecture-service/business-applications/workdocs-sdk.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Amazon-WorkDocs-SDK_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/business-applications/workdocs.svg b/src/icons/aws/architecture-service/business-applications/workdocs.svg new file mode 100644 index 0000000..5320951 --- /dev/null +++ b/src/icons/aws/architecture-service/business-applications/workdocs.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Amazon-WorkDocs_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/business-applications/workmail.svg b/src/icons/aws/architecture-service/business-applications/workmail.svg new file mode 100644 index 0000000..349d782 --- /dev/null +++ b/src/icons/aws/architecture-service/business-applications/workmail.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-WorkMail_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/cloud-financial-management/billing-conductor.svg b/src/icons/aws/architecture-service/cloud-financial-management/billing-conductor.svg new file mode 100644 index 0000000..513b398 --- /dev/null +++ b/src/icons/aws/architecture-service/cloud-financial-management/billing-conductor.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-Billing-Conductor_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/cloud-financial-management/budgets.svg b/src/icons/aws/architecture-service/cloud-financial-management/budgets.svg new file mode 100644 index 0000000..f33f78f --- /dev/null +++ b/src/icons/aws/architecture-service/cloud-financial-management/budgets.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Budgets_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/cloud-financial-management/cost-and-usage-report.svg b/src/icons/aws/architecture-service/cloud-financial-management/cost-and-usage-report.svg new file mode 100644 index 0000000..c1058cd --- /dev/null +++ b/src/icons/aws/architecture-service/cloud-financial-management/cost-and-usage-report.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Cost-and-Usage-Report_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/cloud-financial-management/cost-explorer.svg b/src/icons/aws/architecture-service/cloud-financial-management/cost-explorer.svg new file mode 100644 index 0000000..34f721d --- /dev/null +++ b/src/icons/aws/architecture-service/cloud-financial-management/cost-explorer.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Cost-Explorer_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/cloud-financial-management/reserved-instance-reporting.svg b/src/icons/aws/architecture-service/cloud-financial-management/reserved-instance-reporting.svg new file mode 100644 index 0000000..58915cb --- /dev/null +++ b/src/icons/aws/architecture-service/cloud-financial-management/reserved-instance-reporting.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Reserved-Instance-Reporting_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/cloud-financial-management/savings-plans.svg b/src/icons/aws/architecture-service/cloud-financial-management/savings-plans.svg new file mode 100644 index 0000000..8036493 --- /dev/null +++ b/src/icons/aws/architecture-service/cloud-financial-management/savings-plans.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Savings-Plans_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/compute/app-runner.svg b/src/icons/aws/architecture-service/compute/app-runner.svg new file mode 100644 index 0000000..cad52c6 --- /dev/null +++ b/src/icons/aws/architecture-service/compute/app-runner.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-App-Runner_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/compute/bottlerocket.svg b/src/icons/aws/architecture-service/compute/bottlerocket.svg new file mode 100644 index 0000000..d88c759 --- /dev/null +++ b/src/icons/aws/architecture-service/compute/bottlerocket.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Bottlerocket_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/compute/compute-batch.svg b/src/icons/aws/architecture-service/compute/compute-batch.svg new file mode 100644 index 0000000..d0c2e84 --- /dev/null +++ b/src/icons/aws/architecture-service/compute/compute-batch.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Batch_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/compute/compute-optimizer.svg b/src/icons/aws/architecture-service/compute/compute-optimizer.svg new file mode 100644 index 0000000..b3edc85 --- /dev/null +++ b/src/icons/aws/architecture-service/compute/compute-optimizer.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-Compute-Optimizer_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/compute/dcv.svg b/src/icons/aws/architecture-service/compute/dcv.svg new file mode 100644 index 0000000..9166709 --- /dev/null +++ b/src/icons/aws/architecture-service/compute/dcv.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_NICE-DCV_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/compute/ec2-auto-scaling.svg b/src/icons/aws/architecture-service/compute/ec2-auto-scaling.svg new file mode 100644 index 0000000..7c034b9 --- /dev/null +++ b/src/icons/aws/architecture-service/compute/ec2-auto-scaling.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-EC2-Auto-Scaling_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/compute/ec2-image-builder.svg b/src/icons/aws/architecture-service/compute/ec2-image-builder.svg new file mode 100644 index 0000000..6c71423 --- /dev/null +++ b/src/icons/aws/architecture-service/compute/ec2-image-builder.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-EC2-Image-Builder_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/compute/EC2.svg b/src/icons/aws/architecture-service/compute/ec2.svg similarity index 100% rename from src/icons/aws/compute/EC2.svg rename to src/icons/aws/architecture-service/compute/ec2.svg diff --git a/src/icons/aws/architecture-service/compute/elastic-beanstalk.svg b/src/icons/aws/architecture-service/compute/elastic-beanstalk.svg new file mode 100644 index 0000000..3730b76 --- /dev/null +++ b/src/icons/aws/architecture-service/compute/elastic-beanstalk.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Elastic-Beanstalk_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/compute/elastic-fabric-adapter.svg b/src/icons/aws/architecture-service/compute/elastic-fabric-adapter.svg new file mode 100644 index 0000000..1936e2a --- /dev/null +++ b/src/icons/aws/architecture-service/compute/elastic-fabric-adapter.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Elastic-Fabric-Adapter_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/compute/Lambda.svg b/src/icons/aws/architecture-service/compute/lambda.svg similarity index 100% rename from src/icons/aws/compute/Lambda.svg rename to src/icons/aws/architecture-service/compute/lambda.svg diff --git a/src/icons/aws/architecture-service/compute/lightsail-for-research.svg b/src/icons/aws/architecture-service/compute/lightsail-for-research.svg new file mode 100644 index 0000000..e5f3607 --- /dev/null +++ b/src/icons/aws/architecture-service/compute/lightsail-for-research.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Lightsail-for-Research_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/compute/lightsail.svg b/src/icons/aws/architecture-service/compute/lightsail.svg new file mode 100644 index 0000000..99ef11d --- /dev/null +++ b/src/icons/aws/architecture-service/compute/lightsail.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Lightsail_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/compute/local-zones.svg b/src/icons/aws/architecture-service/compute/local-zones.svg new file mode 100644 index 0000000..d25d3fa --- /dev/null +++ b/src/icons/aws/architecture-service/compute/local-zones.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Local-Zones_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/compute/nice-enginframe.svg b/src/icons/aws/architecture-service/compute/nice-enginframe.svg new file mode 100644 index 0000000..9e1ad54 --- /dev/null +++ b/src/icons/aws/architecture-service/compute/nice-enginframe.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_NICE-EnginFrame_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/compute/nitro-enclaves.svg b/src/icons/aws/architecture-service/compute/nitro-enclaves.svg new file mode 100644 index 0000000..3a19e70 --- /dev/null +++ b/src/icons/aws/architecture-service/compute/nitro-enclaves.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Nitro-Enclaves_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/compute/outposts-family.svg b/src/icons/aws/architecture-service/compute/outposts-family.svg new file mode 100644 index 0000000..a31354f --- /dev/null +++ b/src/icons/aws/architecture-service/compute/outposts-family.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Outposts-family_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/compute/outposts-rack.svg b/src/icons/aws/architecture-service/compute/outposts-rack.svg new file mode 100644 index 0000000..e65807d --- /dev/null +++ b/src/icons/aws/architecture-service/compute/outposts-rack.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Outposts-rack_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/compute/outposts-servers.svg b/src/icons/aws/architecture-service/compute/outposts-servers.svg new file mode 100644 index 0000000..7ddae3b --- /dev/null +++ b/src/icons/aws/architecture-service/compute/outposts-servers.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-Outposts-servers_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/compute/parallel-cluster.svg b/src/icons/aws/architecture-service/compute/parallel-cluster.svg new file mode 100644 index 0000000..874cd28 --- /dev/null +++ b/src/icons/aws/architecture-service/compute/parallel-cluster.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-Parallel-Cluster_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/compute/parallel-computing-service.svg b/src/icons/aws/architecture-service/compute/parallel-computing-service.svg new file mode 100644 index 0000000..9de85a9 --- /dev/null +++ b/src/icons/aws/architecture-service/compute/parallel-computing-service.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/src/icons/aws/architecture-service/compute/serverless-application-repository.svg b/src/icons/aws/architecture-service/compute/serverless-application-repository.svg new file mode 100644 index 0000000..0c691f5 --- /dev/null +++ b/src/icons/aws/architecture-service/compute/serverless-application-repository.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Serverless-Application-Repository_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/compute/simspace-weaver.svg b/src/icons/aws/architecture-service/compute/simspace-weaver.svg new file mode 100644 index 0000000..24624fa --- /dev/null +++ b/src/icons/aws/architecture-service/compute/simspace-weaver.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-SimSpace-Weaver_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/compute/wavelength.svg b/src/icons/aws/architecture-service/compute/wavelength.svg new file mode 100644 index 0000000..474237f --- /dev/null +++ b/src/icons/aws/architecture-service/compute/wavelength.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Wavelength_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/containers/ecs-anywhere.svg b/src/icons/aws/architecture-service/containers/ecs-anywhere.svg new file mode 100644 index 0000000..52b5418 --- /dev/null +++ b/src/icons/aws/architecture-service/containers/ecs-anywhere.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Amazon-ECS-Anywhere_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/containers/eks-anywhere.svg b/src/icons/aws/architecture-service/containers/eks-anywhere.svg new file mode 100644 index 0000000..26a907a --- /dev/null +++ b/src/icons/aws/architecture-service/containers/eks-anywhere.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Amazon-EKS-Anywhere_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/containers/eks-cloud.svg b/src/icons/aws/architecture-service/containers/eks-cloud.svg new file mode 100644 index 0000000..dfe6b7f --- /dev/null +++ b/src/icons/aws/architecture-service/containers/eks-cloud.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Amazon-EKS-Cloud_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/containers/eks-distro.svg b/src/icons/aws/architecture-service/containers/eks-distro.svg new file mode 100644 index 0000000..4b2f2f8 --- /dev/null +++ b/src/icons/aws/architecture-service/containers/eks-distro.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Amazon-EKS-Distro_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/containers/elastic-container-registry.svg b/src/icons/aws/architecture-service/containers/elastic-container-registry.svg new file mode 100644 index 0000000..91729a0 --- /dev/null +++ b/src/icons/aws/architecture-service/containers/elastic-container-registry.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Elastic-Container-Registry_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/containers/elastic-container-service.svg b/src/icons/aws/architecture-service/containers/elastic-container-service.svg new file mode 100644 index 0000000..7738b90 --- /dev/null +++ b/src/icons/aws/architecture-service/containers/elastic-container-service.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Elastic-Container-Service_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/containers/elastic-kubernetes-service.svg b/src/icons/aws/architecture-service/containers/elastic-kubernetes-service.svg new file mode 100644 index 0000000..560d500 --- /dev/null +++ b/src/icons/aws/architecture-service/containers/elastic-kubernetes-service.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Elastic-Kubernetes-Service_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/containers/fargate.svg b/src/icons/aws/architecture-service/containers/fargate.svg new file mode 100644 index 0000000..52e90c0 --- /dev/null +++ b/src/icons/aws/architecture-service/containers/fargate.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Fargate_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/containers/red-hat-openshift-service-on-aws.svg b/src/icons/aws/architecture-service/containers/red-hat-openshift-service-on-aws.svg new file mode 100644 index 0000000..04be04f --- /dev/null +++ b/src/icons/aws/architecture-service/containers/red-hat-openshift-service-on-aws.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Red-Hat-OpenShift-Service-on-AWS_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/customer-enablement/activate.svg b/src/icons/aws/architecture-service/customer-enablement/activate.svg new file mode 100644 index 0000000..fca1e54 --- /dev/null +++ b/src/icons/aws/architecture-service/customer-enablement/activate.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-Activate_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/customer-enablement/iq.svg b/src/icons/aws/architecture-service/customer-enablement/iq.svg new file mode 100644 index 0000000..4ff0bb2 --- /dev/null +++ b/src/icons/aws/architecture-service/customer-enablement/iq.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-IQ_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/customer-enablement/managed-services.svg b/src/icons/aws/architecture-service/customer-enablement/managed-services.svg new file mode 100644 index 0000000..5ddc406 --- /dev/null +++ b/src/icons/aws/architecture-service/customer-enablement/managed-services.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-Managed-Services_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/customer-enablement/professional-services.svg b/src/icons/aws/architecture-service/customer-enablement/professional-services.svg new file mode 100644 index 0000000..9ca905f --- /dev/null +++ b/src/icons/aws/architecture-service/customer-enablement/professional-services.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-Professional-Services_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/customer-enablement/repost-private.svg b/src/icons/aws/architecture-service/customer-enablement/repost-private.svg new file mode 100644 index 0000000..a8a9093 --- /dev/null +++ b/src/icons/aws/architecture-service/customer-enablement/repost-private.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-rePost-Private_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/customer-enablement/repost.svg b/src/icons/aws/architecture-service/customer-enablement/repost.svg new file mode 100644 index 0000000..db82573 --- /dev/null +++ b/src/icons/aws/architecture-service/customer-enablement/repost.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-re:Post_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/customer-enablement/support.svg b/src/icons/aws/architecture-service/customer-enablement/support.svg new file mode 100644 index 0000000..18b1e8d --- /dev/null +++ b/src/icons/aws/architecture-service/customer-enablement/support.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Support_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/customer-enablement/training-certification.svg b/src/icons/aws/architecture-service/customer-enablement/training-certification.svg new file mode 100644 index 0000000..3334739 --- /dev/null +++ b/src/icons/aws/architecture-service/customer-enablement/training-certification.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Training-Certification_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/database/aurora.svg b/src/icons/aws/architecture-service/database/aurora.svg new file mode 100644 index 0000000..1231fe3 --- /dev/null +++ b/src/icons/aws/architecture-service/database/aurora.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Aurora_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/database/database-migration-service.svg b/src/icons/aws/architecture-service/database/database-migration-service.svg new file mode 100644 index 0000000..4362209 --- /dev/null +++ b/src/icons/aws/architecture-service/database/database-migration-service.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Database-Migration-Service_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/database/documentdb.svg b/src/icons/aws/architecture-service/database/documentdb.svg new file mode 100644 index 0000000..a463c71 --- /dev/null +++ b/src/icons/aws/architecture-service/database/documentdb.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-DocumentDB_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/database/DynamoDB.svg b/src/icons/aws/architecture-service/database/dynamodb.svg similarity index 100% rename from src/icons/aws/database/DynamoDB.svg rename to src/icons/aws/architecture-service/database/dynamodb.svg diff --git a/src/icons/aws/architecture-service/database/elasticache.svg b/src/icons/aws/architecture-service/database/elasticache.svg new file mode 100644 index 0000000..d1465ef --- /dev/null +++ b/src/icons/aws/architecture-service/database/elasticache.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-ElastiCache_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/database/keyspaces.svg b/src/icons/aws/architecture-service/database/keyspaces.svg new file mode 100644 index 0000000..6f6ebfa --- /dev/null +++ b/src/icons/aws/architecture-service/database/keyspaces.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Keyspaces_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/database/memorydb.svg b/src/icons/aws/architecture-service/database/memorydb.svg new file mode 100644 index 0000000..34726c7 --- /dev/null +++ b/src/icons/aws/architecture-service/database/memorydb.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Amazon-MemoryDB-for-Redis_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/database/neptune.svg b/src/icons/aws/architecture-service/database/neptune.svg new file mode 100644 index 0000000..0d3087f --- /dev/null +++ b/src/icons/aws/architecture-service/database/neptune.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Neptune_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/database/oracle-database-at-aws.svg b/src/icons/aws/architecture-service/database/oracle-database-at-aws.svg new file mode 100644 index 0000000..719f434 --- /dev/null +++ b/src/icons/aws/architecture-service/database/oracle-database-at-aws.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/icons/aws/database/RDS.svg b/src/icons/aws/architecture-service/database/rds.svg similarity index 100% rename from src/icons/aws/database/RDS.svg rename to src/icons/aws/architecture-service/database/rds.svg diff --git a/src/icons/aws/architecture-service/database/timestream.svg b/src/icons/aws/architecture-service/database/timestream.svg new file mode 100644 index 0000000..6c4cc1e --- /dev/null +++ b/src/icons/aws/architecture-service/database/timestream.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Timestream_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/developer-tools/cloud-control-api.svg b/src/icons/aws/architecture-service/developer-tools/cloud-control-api.svg new file mode 100644 index 0000000..a13eeaa --- /dev/null +++ b/src/icons/aws/architecture-service/developer-tools/cloud-control-api.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-Cloud-Control-API_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/developer-tools/cloud-development-kit.svg b/src/icons/aws/architecture-service/developer-tools/cloud-development-kit.svg new file mode 100644 index 0000000..a7782af --- /dev/null +++ b/src/icons/aws/architecture-service/developer-tools/cloud-development-kit.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Cloud-Development-Kit_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/developer-tools/cloud9.svg b/src/icons/aws/architecture-service/developer-tools/cloud9.svg new file mode 100644 index 0000000..acf27cf --- /dev/null +++ b/src/icons/aws/architecture-service/developer-tools/cloud9.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Cloud9_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/developer-tools/cloudshell.svg b/src/icons/aws/architecture-service/developer-tools/cloudshell.svg new file mode 100644 index 0000000..6837569 --- /dev/null +++ b/src/icons/aws/architecture-service/developer-tools/cloudshell.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-CloudShell_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/developer-tools/codeartifact.svg b/src/icons/aws/architecture-service/developer-tools/codeartifact.svg new file mode 100644 index 0000000..b8d54d3 --- /dev/null +++ b/src/icons/aws/architecture-service/developer-tools/codeartifact.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-CodeArtifact_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/developer-tools/codebuild.svg b/src/icons/aws/architecture-service/developer-tools/codebuild.svg new file mode 100644 index 0000000..5b60bfb --- /dev/null +++ b/src/icons/aws/architecture-service/developer-tools/codebuild.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-CodeBuild_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/developer-tools/codecatalyst.svg b/src/icons/aws/architecture-service/developer-tools/codecatalyst.svg new file mode 100644 index 0000000..0a4e0b0 --- /dev/null +++ b/src/icons/aws/architecture-service/developer-tools/codecatalyst.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-CodeCatalyst_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/developer-tools/codecommit.svg b/src/icons/aws/architecture-service/developer-tools/codecommit.svg new file mode 100644 index 0000000..8d2da8e --- /dev/null +++ b/src/icons/aws/architecture-service/developer-tools/codecommit.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-CodeCommit_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/developer-tools/codedeploy.svg b/src/icons/aws/architecture-service/developer-tools/codedeploy.svg new file mode 100644 index 0000000..b6d4e26 --- /dev/null +++ b/src/icons/aws/architecture-service/developer-tools/codedeploy.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-CodeDeploy_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/developer-tools/codepipeline.svg b/src/icons/aws/architecture-service/developer-tools/codepipeline.svg new file mode 100644 index 0000000..213245c --- /dev/null +++ b/src/icons/aws/architecture-service/developer-tools/codepipeline.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-CodePipeline_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/developer-tools/command-line-interface.svg b/src/icons/aws/architecture-service/developer-tools/command-line-interface.svg new file mode 100644 index 0000000..f4e6ce7 --- /dev/null +++ b/src/icons/aws/architecture-service/developer-tools/command-line-interface.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Command-Line-Interface_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/developer-tools/corretto.svg b/src/icons/aws/architecture-service/developer-tools/corretto.svg new file mode 100644 index 0000000..e4d2907 --- /dev/null +++ b/src/icons/aws/architecture-service/developer-tools/corretto.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Amazon-Corretto_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/developer-tools/fault-injection-service.svg b/src/icons/aws/architecture-service/developer-tools/fault-injection-service.svg new file mode 100644 index 0000000..aae11d3 --- /dev/null +++ b/src/icons/aws/architecture-service/developer-tools/fault-injection-service.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/icons/aws/architecture-service/developer-tools/infrastructure-composer.svg b/src/icons/aws/architecture-service/developer-tools/infrastructure-composer.svg new file mode 100644 index 0000000..32de882 --- /dev/null +++ b/src/icons/aws/architecture-service/developer-tools/infrastructure-composer.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Application-Composer_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/developer-tools/tools-and-sdks.svg b/src/icons/aws/architecture-service/developer-tools/tools-and-sdks.svg new file mode 100644 index 0000000..6ac175b --- /dev/null +++ b/src/icons/aws/architecture-service/developer-tools/tools-and-sdks.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Tools-and-SDKs_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/developer-tools/x-ray.svg b/src/icons/aws/architecture-service/developer-tools/x-ray.svg new file mode 100644 index 0000000..96b0d96 --- /dev/null +++ b/src/icons/aws/architecture-service/developer-tools/x-ray.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-X-Ray_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/end-user-computing/appstream-2.svg b/src/icons/aws/architecture-service/end-user-computing/appstream-2.svg new file mode 100644 index 0000000..30e4829 --- /dev/null +++ b/src/icons/aws/architecture-service/end-user-computing/appstream-2.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-AppStream_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/end-user-computing/workspaces-family.svg b/src/icons/aws/architecture-service/end-user-computing/workspaces-family.svg new file mode 100644 index 0000000..0fe30d5 --- /dev/null +++ b/src/icons/aws/architecture-service/end-user-computing/workspaces-family.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-WorkSpaces-Family_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/front-end-web-mobile/amplify.svg b/src/icons/aws/architecture-service/front-end-web-mobile/amplify.svg new file mode 100644 index 0000000..12fb462 --- /dev/null +++ b/src/icons/aws/architecture-service/front-end-web-mobile/amplify.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Amplify_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/front-end-web-mobile/device-farm.svg b/src/icons/aws/architecture-service/front-end-web-mobile/device-farm.svg new file mode 100644 index 0000000..1835d2e --- /dev/null +++ b/src/icons/aws/architecture-service/front-end-web-mobile/device-farm.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Device-Farm_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/front-end-web-mobile/location-service.svg b/src/icons/aws/architecture-service/front-end-web-mobile/location-service.svg new file mode 100644 index 0000000..f40c723 --- /dev/null +++ b/src/icons/aws/architecture-service/front-end-web-mobile/location-service.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Amazon-Location-Service_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/games/gamelift.svg b/src/icons/aws/architecture-service/games/gamelift.svg new file mode 100644 index 0000000..4a80863 --- /dev/null +++ b/src/icons/aws/architecture-service/games/gamelift.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Amazon-GameLift_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/games/open-3d-engine.svg b/src/icons/aws/architecture-service/games/open-3d-engine.svg new file mode 100644 index 0000000..0b8561e --- /dev/null +++ b/src/icons/aws/architecture-service/games/open-3d-engine.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Open-3D-Engine_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/general-icons/marketplace-dark.svg b/src/icons/aws/architecture-service/general-icons/marketplace-dark.svg new file mode 100644 index 0000000..064aaa9 --- /dev/null +++ b/src/icons/aws/architecture-service/general-icons/marketplace-dark.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Marketplace_Dark_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/general-icons/marketplace-light.svg b/src/icons/aws/architecture-service/general-icons/marketplace-light.svg new file mode 100644 index 0000000..d74d3d3 --- /dev/null +++ b/src/icons/aws/architecture-service/general-icons/marketplace-light.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Marketplace_Light_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/internet-of-things/freertos.svg b/src/icons/aws/architecture-service/internet-of-things/freertos.svg new file mode 100644 index 0000000..f633a2a --- /dev/null +++ b/src/icons/aws/architecture-service/internet-of-things/freertos.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_FreeRTOS_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/internet-of-things/iot-analytics.svg b/src/icons/aws/architecture-service/internet-of-things/iot-analytics.svg new file mode 100644 index 0000000..b18243c --- /dev/null +++ b/src/icons/aws/architecture-service/internet-of-things/iot-analytics.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-IoT-Analytics_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/internet-of-things/iot-button.svg b/src/icons/aws/architecture-service/internet-of-things/iot-button.svg new file mode 100644 index 0000000..80bdf3a --- /dev/null +++ b/src/icons/aws/architecture-service/internet-of-things/iot-button.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-IoT-Button_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/internet-of-things/iot-core.svg b/src/icons/aws/architecture-service/internet-of-things/iot-core.svg new file mode 100644 index 0000000..c3e8255 --- /dev/null +++ b/src/icons/aws/architecture-service/internet-of-things/iot-core.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-IoT-Core_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/internet-of-things/iot-device-defender.svg b/src/icons/aws/architecture-service/internet-of-things/iot-device-defender.svg new file mode 100644 index 0000000..e45681b --- /dev/null +++ b/src/icons/aws/architecture-service/internet-of-things/iot-device-defender.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-IoT-Device-Defender_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/internet-of-things/iot-device-management.svg b/src/icons/aws/architecture-service/internet-of-things/iot-device-management.svg new file mode 100644 index 0000000..6c044f4 --- /dev/null +++ b/src/icons/aws/architecture-service/internet-of-things/iot-device-management.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-IoT-Device-Management_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/internet-of-things/iot-events.svg b/src/icons/aws/architecture-service/internet-of-things/iot-events.svg new file mode 100644 index 0000000..0e35a47 --- /dev/null +++ b/src/icons/aws/architecture-service/internet-of-things/iot-events.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-IoT-Events_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/internet-of-things/iot-expresslink.svg b/src/icons/aws/architecture-service/internet-of-things/iot-expresslink.svg new file mode 100644 index 0000000..cfb7928 --- /dev/null +++ b/src/icons/aws/architecture-service/internet-of-things/iot-expresslink.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-IoT-ExpressLink_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/internet-of-things/iot-fleetwise.svg b/src/icons/aws/architecture-service/internet-of-things/iot-fleetwise.svg new file mode 100644 index 0000000..9b00c3d --- /dev/null +++ b/src/icons/aws/architecture-service/internet-of-things/iot-fleetwise.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-IoT-FleetWise_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/internet-of-things/iot-greengrass.svg b/src/icons/aws/architecture-service/internet-of-things/iot-greengrass.svg new file mode 100644 index 0000000..c10f753 --- /dev/null +++ b/src/icons/aws/architecture-service/internet-of-things/iot-greengrass.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-IoT-Greengrass_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/internet-of-things/iot-sitewise.svg b/src/icons/aws/architecture-service/internet-of-things/iot-sitewise.svg new file mode 100644 index 0000000..fe71a7d --- /dev/null +++ b/src/icons/aws/architecture-service/internet-of-things/iot-sitewise.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-IoT-SiteWise_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/internet-of-things/iot-twinmaker.svg b/src/icons/aws/architecture-service/internet-of-things/iot-twinmaker.svg new file mode 100644 index 0000000..f7c33e7 --- /dev/null +++ b/src/icons/aws/architecture-service/internet-of-things/iot-twinmaker.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-IoT-TwinMaker_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/management-governance/appconfig.svg b/src/icons/aws/architecture-service/management-governance/appconfig.svg new file mode 100644 index 0000000..4b61a56 --- /dev/null +++ b/src/icons/aws/architecture-service/management-governance/appconfig.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-AppConfig_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/management-governance/application-auto-scaling.svg b/src/icons/aws/architecture-service/management-governance/application-auto-scaling.svg new file mode 100644 index 0000000..5904fea --- /dev/null +++ b/src/icons/aws/architecture-service/management-governance/application-auto-scaling.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-Application-Auto-Scaling_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/management-governance/auto-scaling.svg b/src/icons/aws/architecture-service/management-governance/auto-scaling.svg new file mode 100644 index 0000000..8e295da --- /dev/null +++ b/src/icons/aws/architecture-service/management-governance/auto-scaling.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Auto-Scaling_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/management-governance/backint-agent.svg b/src/icons/aws/architecture-service/management-governance/backint-agent.svg new file mode 100644 index 0000000..6d3eb01 --- /dev/null +++ b/src/icons/aws/architecture-service/management-governance/backint-agent.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-Backint-Agent_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/management-governance/chatbot.svg b/src/icons/aws/architecture-service/management-governance/chatbot.svg new file mode 100644 index 0000000..e700296 --- /dev/null +++ b/src/icons/aws/architecture-service/management-governance/chatbot.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Chatbot_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/management-governance/cloudformation.svg b/src/icons/aws/architecture-service/management-governance/cloudformation.svg new file mode 100644 index 0000000..74657ae --- /dev/null +++ b/src/icons/aws/architecture-service/management-governance/cloudformation.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-CloudFormation_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/management-governance/cloudtrail.svg b/src/icons/aws/architecture-service/management-governance/cloudtrail.svg new file mode 100644 index 0000000..456d0e1 --- /dev/null +++ b/src/icons/aws/architecture-service/management-governance/cloudtrail.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-CloudTrail_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/management-governance/cloudwatch.svg b/src/icons/aws/architecture-service/management-governance/cloudwatch.svg new file mode 100644 index 0000000..de06cf1 --- /dev/null +++ b/src/icons/aws/architecture-service/management-governance/cloudwatch.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-CloudWatch_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/management-governance/config.svg b/src/icons/aws/architecture-service/management-governance/config.svg new file mode 100644 index 0000000..8fd9b8c --- /dev/null +++ b/src/icons/aws/architecture-service/management-governance/config.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Config_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/management-governance/console-mobile-application.svg b/src/icons/aws/architecture-service/management-governance/console-mobile-application.svg new file mode 100644 index 0000000..db990fc --- /dev/null +++ b/src/icons/aws/architecture-service/management-governance/console-mobile-application.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-Console-Mobile-Application _32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/management-governance/control-tower.svg b/src/icons/aws/architecture-service/management-governance/control-tower.svg new file mode 100644 index 0000000..941b4c9 --- /dev/null +++ b/src/icons/aws/architecture-service/management-governance/control-tower.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Control-Tower_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/management-governance/distro-for-opentelemetry.svg b/src/icons/aws/architecture-service/management-governance/distro-for-opentelemetry.svg new file mode 100644 index 0000000..f05a227 --- /dev/null +++ b/src/icons/aws/architecture-service/management-governance/distro-for-opentelemetry.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-Distro-for-OpenTelemetry_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/management-governance/health-dashboard.svg b/src/icons/aws/architecture-service/management-governance/health-dashboard.svg new file mode 100644 index 0000000..9957b78 --- /dev/null +++ b/src/icons/aws/architecture-service/management-governance/health-dashboard.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Health-Dashboard_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/management-governance/launch-wizard.svg b/src/icons/aws/architecture-service/management-governance/launch-wizard.svg new file mode 100644 index 0000000..9b4d3e5 --- /dev/null +++ b/src/icons/aws/architecture-service/management-governance/launch-wizard.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Launch-Wizard_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/management-governance/license-manager.svg b/src/icons/aws/architecture-service/management-governance/license-manager.svg new file mode 100644 index 0000000..a533e62 --- /dev/null +++ b/src/icons/aws/architecture-service/management-governance/license-manager.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-License-Manager_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/management-governance/managed-grafana.svg b/src/icons/aws/architecture-service/management-governance/managed-grafana.svg new file mode 100644 index 0000000..baf8430 --- /dev/null +++ b/src/icons/aws/architecture-service/management-governance/managed-grafana.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Amazon-Managed-Grafana_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/management-governance/managed-service-for-prometheus.svg b/src/icons/aws/architecture-service/management-governance/managed-service-for-prometheus.svg new file mode 100644 index 0000000..a5a28d1 --- /dev/null +++ b/src/icons/aws/architecture-service/management-governance/managed-service-for-prometheus.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Amazon-Managed-Service-for-Prometheus_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/management-governance/management-compute-optimizer.svg b/src/icons/aws/architecture-service/management-governance/management-compute-optimizer.svg new file mode 100644 index 0000000..3eaac60 --- /dev/null +++ b/src/icons/aws/architecture-service/management-governance/management-compute-optimizer.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/icons/aws/architecture-service/management-governance/management-console.svg b/src/icons/aws/architecture-service/management-governance/management-console.svg new file mode 100644 index 0000000..b406289 --- /dev/null +++ b/src/icons/aws/architecture-service/management-governance/management-console.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Management-Console_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/management-governance/organizations.svg b/src/icons/aws/architecture-service/management-governance/organizations.svg new file mode 100644 index 0000000..d9e8074 --- /dev/null +++ b/src/icons/aws/architecture-service/management-governance/organizations.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Organizations_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/management-governance/proton.svg b/src/icons/aws/architecture-service/management-governance/proton.svg new file mode 100644 index 0000000..de55ae9 --- /dev/null +++ b/src/icons/aws/architecture-service/management-governance/proton.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-Proton_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/management-governance/resilience-hub.svg b/src/icons/aws/architecture-service/management-governance/resilience-hub.svg new file mode 100644 index 0000000..c6182fe --- /dev/null +++ b/src/icons/aws/architecture-service/management-governance/resilience-hub.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Resilience-Hub_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/management-governance/resource-explorer.svg b/src/icons/aws/architecture-service/management-governance/resource-explorer.svg new file mode 100644 index 0000000..8e28b1a --- /dev/null +++ b/src/icons/aws/architecture-service/management-governance/resource-explorer.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Resource-Explorer_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/management-governance/service-catalog.svg b/src/icons/aws/architecture-service/management-governance/service-catalog.svg new file mode 100644 index 0000000..00921a8 --- /dev/null +++ b/src/icons/aws/architecture-service/management-governance/service-catalog.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Service-Catalog_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/management-governance/service-management-connector.svg b/src/icons/aws/architecture-service/management-governance/service-management-connector.svg new file mode 100644 index 0000000..6acd574 --- /dev/null +++ b/src/icons/aws/architecture-service/management-governance/service-management-connector.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Service-Management-Connector_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/management-governance/systems-manager.svg b/src/icons/aws/architecture-service/management-governance/systems-manager.svg new file mode 100644 index 0000000..f76c16c --- /dev/null +++ b/src/icons/aws/architecture-service/management-governance/systems-manager.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Systems-Manager_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/management-governance/telco-network-builder.svg b/src/icons/aws/architecture-service/management-governance/telco-network-builder.svg new file mode 100644 index 0000000..ab68ad7 --- /dev/null +++ b/src/icons/aws/architecture-service/management-governance/telco-network-builder.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Telco-Network-Builder_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/management-governance/trusted-advisor.svg b/src/icons/aws/architecture-service/management-governance/trusted-advisor.svg new file mode 100644 index 0000000..8d8e832 --- /dev/null +++ b/src/icons/aws/architecture-service/management-governance/trusted-advisor.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Trusted-Advisor_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/management-governance/user-notifications.svg b/src/icons/aws/architecture-service/management-governance/user-notifications.svg new file mode 100644 index 0000000..c6aa266 --- /dev/null +++ b/src/icons/aws/architecture-service/management-governance/user-notifications.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/icons/aws/architecture-service/management-governance/well-architected-tool.svg b/src/icons/aws/architecture-service/management-governance/well-architected-tool.svg new file mode 100644 index 0000000..958a5a6 --- /dev/null +++ b/src/icons/aws/architecture-service/management-governance/well-architected-tool.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Well-Architected-Tool_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/media-services/deadline-cloud.svg b/src/icons/aws/architecture-service/media-services/deadline-cloud.svg new file mode 100644 index 0000000..cea19cc --- /dev/null +++ b/src/icons/aws/architecture-service/media-services/deadline-cloud.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Amazon-Deadline-Cloud_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/media-services/elastic-transcoder.svg b/src/icons/aws/architecture-service/media-services/elastic-transcoder.svg new file mode 100644 index 0000000..6d655c5 --- /dev/null +++ b/src/icons/aws/architecture-service/media-services/elastic-transcoder.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Elastic-Transcoder_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/media-services/elemental-appliances-and-software.svg b/src/icons/aws/architecture-service/media-services/elemental-appliances-and-software.svg new file mode 100644 index 0000000..de8c63c --- /dev/null +++ b/src/icons/aws/architecture-service/media-services/elemental-appliances-and-software.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Elemental-Appliances-&-Software_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/media-services/elemental-conductor.svg b/src/icons/aws/architecture-service/media-services/elemental-conductor.svg new file mode 100644 index 0000000..613e065 --- /dev/null +++ b/src/icons/aws/architecture-service/media-services/elemental-conductor.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Elemental-Conductor_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/media-services/elemental-delta.svg b/src/icons/aws/architecture-service/media-services/elemental-delta.svg new file mode 100644 index 0000000..240ca37 --- /dev/null +++ b/src/icons/aws/architecture-service/media-services/elemental-delta.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Elemental-Delta_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/media-services/elemental-link.svg b/src/icons/aws/architecture-service/media-services/elemental-link.svg new file mode 100644 index 0000000..5d57682 --- /dev/null +++ b/src/icons/aws/architecture-service/media-services/elemental-link.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-Elemental-Link_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/media-services/elemental-live.svg b/src/icons/aws/architecture-service/media-services/elemental-live.svg new file mode 100644 index 0000000..e9f3f78 --- /dev/null +++ b/src/icons/aws/architecture-service/media-services/elemental-live.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Elemental-Live_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/media-services/elemental-mediaconnect.svg b/src/icons/aws/architecture-service/media-services/elemental-mediaconnect.svg new file mode 100644 index 0000000..6d1a572 --- /dev/null +++ b/src/icons/aws/architecture-service/media-services/elemental-mediaconnect.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Elemental-MediaConnect_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/media-services/elemental-mediaconvert.svg b/src/icons/aws/architecture-service/media-services/elemental-mediaconvert.svg new file mode 100644 index 0000000..e2621b0 --- /dev/null +++ b/src/icons/aws/architecture-service/media-services/elemental-mediaconvert.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Elemental-MediaConvert_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/media-services/elemental-medialive.svg b/src/icons/aws/architecture-service/media-services/elemental-medialive.svg new file mode 100644 index 0000000..f8c5a71 --- /dev/null +++ b/src/icons/aws/architecture-service/media-services/elemental-medialive.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Elemental-MediaLive_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/media-services/elemental-mediapackage.svg b/src/icons/aws/architecture-service/media-services/elemental-mediapackage.svg new file mode 100644 index 0000000..5b85876 --- /dev/null +++ b/src/icons/aws/architecture-service/media-services/elemental-mediapackage.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Elemental-MediaPackage_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/media-services/elemental-mediastore.svg b/src/icons/aws/architecture-service/media-services/elemental-mediastore.svg new file mode 100644 index 0000000..e418fef --- /dev/null +++ b/src/icons/aws/architecture-service/media-services/elemental-mediastore.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Elemental-MediaStore_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/media-services/elemental-mediatailor.svg b/src/icons/aws/architecture-service/media-services/elemental-mediatailor.svg new file mode 100644 index 0000000..10daa90 --- /dev/null +++ b/src/icons/aws/architecture-service/media-services/elemental-mediatailor.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Elemental-MediaTailor_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/media-services/elemental-server.svg b/src/icons/aws/architecture-service/media-services/elemental-server.svg new file mode 100644 index 0000000..8b5c493 --- /dev/null +++ b/src/icons/aws/architecture-service/media-services/elemental-server.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Elemental-Server_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/media-services/interactive-video-service.svg b/src/icons/aws/architecture-service/media-services/interactive-video-service.svg new file mode 100644 index 0000000..dd9a2f1 --- /dev/null +++ b/src/icons/aws/architecture-service/media-services/interactive-video-service.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Amazon-Interactive-Video-Service_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/media-services/media-kinesis-video-streams.svg b/src/icons/aws/architecture-service/media-services/media-kinesis-video-streams.svg new file mode 100644 index 0000000..2138079 --- /dev/null +++ b/src/icons/aws/architecture-service/media-services/media-kinesis-video-streams.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Kinesis-Video-Streams_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/media-services/thinkbox-deadline.svg b/src/icons/aws/architecture-service/media-services/thinkbox-deadline.svg new file mode 100644 index 0000000..f875523 --- /dev/null +++ b/src/icons/aws/architecture-service/media-services/thinkbox-deadline.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-Thinkbox-Deadline_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/media-services/thinkbox-frost.svg b/src/icons/aws/architecture-service/media-services/thinkbox-frost.svg new file mode 100644 index 0000000..c31a9d4 --- /dev/null +++ b/src/icons/aws/architecture-service/media-services/thinkbox-frost.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-Thinkbox-Frost_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/media-services/thinkbox-krakatoa.svg b/src/icons/aws/architecture-service/media-services/thinkbox-krakatoa.svg new file mode 100644 index 0000000..4477b2a --- /dev/null +++ b/src/icons/aws/architecture-service/media-services/thinkbox-krakatoa.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-Thinkbox-Krakatoa_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/media-services/thinkbox-sequoia.svg b/src/icons/aws/architecture-service/media-services/thinkbox-sequoia.svg new file mode 100644 index 0000000..55a8690 --- /dev/null +++ b/src/icons/aws/architecture-service/media-services/thinkbox-sequoia.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/icons/aws/architecture-service/media-services/thinkbox-stoke.svg b/src/icons/aws/architecture-service/media-services/thinkbox-stoke.svg new file mode 100644 index 0000000..9d1b551 --- /dev/null +++ b/src/icons/aws/architecture-service/media-services/thinkbox-stoke.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-Thinkbox-Stoke_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/media-services/thinkbox-xmesh.svg b/src/icons/aws/architecture-service/media-services/thinkbox-xmesh.svg new file mode 100644 index 0000000..70fc66f --- /dev/null +++ b/src/icons/aws/architecture-service/media-services/thinkbox-xmesh.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-Thinkbox-XMesh_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/migration-modernization/application-discovery-service.svg b/src/icons/aws/architecture-service/migration-modernization/application-discovery-service.svg new file mode 100644 index 0000000..94201aa --- /dev/null +++ b/src/icons/aws/architecture-service/migration-modernization/application-discovery-service.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Application-Discovery-Service_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/migration-modernization/application-migration-service.svg b/src/icons/aws/architecture-service/migration-modernization/application-migration-service.svg new file mode 100644 index 0000000..406e488 --- /dev/null +++ b/src/icons/aws/architecture-service/migration-modernization/application-migration-service.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Application-Migration-Service_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/migration-modernization/data-transfer-terminal.svg b/src/icons/aws/architecture-service/migration-modernization/data-transfer-terminal.svg new file mode 100644 index 0000000..c019e70 --- /dev/null +++ b/src/icons/aws/architecture-service/migration-modernization/data-transfer-terminal.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/icons/aws/architecture-service/migration-modernization/datasync.svg b/src/icons/aws/architecture-service/migration-modernization/datasync.svg new file mode 100644 index 0000000..13eb1aa --- /dev/null +++ b/src/icons/aws/architecture-service/migration-modernization/datasync.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-DataSync_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/migration-modernization/elastic-vmware-service.svg b/src/icons/aws/architecture-service/migration-modernization/elastic-vmware-service.svg new file mode 100644 index 0000000..6fbf0d2 --- /dev/null +++ b/src/icons/aws/architecture-service/migration-modernization/elastic-vmware-service.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/icons/aws/architecture-service/migration-modernization/mainframe-modernization.svg b/src/icons/aws/architecture-service/migration-modernization/mainframe-modernization.svg new file mode 100644 index 0000000..e33cefc --- /dev/null +++ b/src/icons/aws/architecture-service/migration-modernization/mainframe-modernization.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-Mainframe-Modernization_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/migration-modernization/migration-evaluator.svg b/src/icons/aws/architecture-service/migration-modernization/migration-evaluator.svg new file mode 100644 index 0000000..4ef7062 --- /dev/null +++ b/src/icons/aws/architecture-service/migration-modernization/migration-evaluator.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-Migration-Evaluator_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/migration-modernization/migration-hub.svg b/src/icons/aws/architecture-service/migration-modernization/migration-hub.svg new file mode 100644 index 0000000..ec8cd8a --- /dev/null +++ b/src/icons/aws/architecture-service/migration-modernization/migration-hub.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Migration-Hub_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/migration-modernization/transfer-family.svg b/src/icons/aws/architecture-service/migration-modernization/transfer-family.svg new file mode 100644 index 0000000..decc03f --- /dev/null +++ b/src/icons/aws/architecture-service/migration-modernization/transfer-family.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Transfer-Family_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/networking-content-delivery/api-gateway.svg b/src/icons/aws/architecture-service/networking-content-delivery/api-gateway.svg new file mode 100644 index 0000000..6f05362 --- /dev/null +++ b/src/icons/aws/architecture-service/networking-content-delivery/api-gateway.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/icons/aws/architecture-service/networking-content-delivery/app-mesh.svg b/src/icons/aws/architecture-service/networking-content-delivery/app-mesh.svg new file mode 100644 index 0000000..3d8e298 --- /dev/null +++ b/src/icons/aws/architecture-service/networking-content-delivery/app-mesh.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-App-Mesh_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/networking-content-delivery/application-recovery-controller.svg b/src/icons/aws/architecture-service/networking-content-delivery/application-recovery-controller.svg new file mode 100644 index 0000000..b7a2428 --- /dev/null +++ b/src/icons/aws/architecture-service/networking-content-delivery/application-recovery-controller.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/src/icons/aws/architecture-service/networking-content-delivery/client-vpn.svg b/src/icons/aws/architecture-service/networking-content-delivery/client-vpn.svg new file mode 100644 index 0000000..b081f3b --- /dev/null +++ b/src/icons/aws/architecture-service/networking-content-delivery/client-vpn.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Client-VPN_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/networking-content-delivery/cloud-map.svg b/src/icons/aws/architecture-service/networking-content-delivery/cloud-map.svg new file mode 100644 index 0000000..0237856 --- /dev/null +++ b/src/icons/aws/architecture-service/networking-content-delivery/cloud-map.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Cloud-Map_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/networking-content-delivery/cloud-wan.svg b/src/icons/aws/architecture-service/networking-content-delivery/cloud-wan.svg new file mode 100644 index 0000000..0ba77b0 --- /dev/null +++ b/src/icons/aws/architecture-service/networking-content-delivery/cloud-wan.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Cloud-WAN_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/networking-content-delivery/cloudfront.svg b/src/icons/aws/architecture-service/networking-content-delivery/cloudfront.svg new file mode 100644 index 0000000..2c16a09 --- /dev/null +++ b/src/icons/aws/architecture-service/networking-content-delivery/cloudfront.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-CloudFront_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/networking-content-delivery/direct-connect.svg b/src/icons/aws/architecture-service/networking-content-delivery/direct-connect.svg new file mode 100644 index 0000000..202528e --- /dev/null +++ b/src/icons/aws/architecture-service/networking-content-delivery/direct-connect.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Direct-Connect_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/networking-content-delivery/elastic-load-balancing.svg b/src/icons/aws/architecture-service/networking-content-delivery/elastic-load-balancing.svg new file mode 100644 index 0000000..f20d8ff --- /dev/null +++ b/src/icons/aws/architecture-service/networking-content-delivery/elastic-load-balancing.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Elastic-Load-Balancing_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/networking-content-delivery/global-accelerator.svg b/src/icons/aws/architecture-service/networking-content-delivery/global-accelerator.svg new file mode 100644 index 0000000..f78aea5 --- /dev/null +++ b/src/icons/aws/architecture-service/networking-content-delivery/global-accelerator.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Global-Accelerator_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/networking-content-delivery/private-5g.svg b/src/icons/aws/architecture-service/networking-content-delivery/private-5g.svg new file mode 100644 index 0000000..f3fa5a8 --- /dev/null +++ b/src/icons/aws/architecture-service/networking-content-delivery/private-5g.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Private-5G_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/networking-content-delivery/privatelink.svg b/src/icons/aws/architecture-service/networking-content-delivery/privatelink.svg new file mode 100644 index 0000000..da0ebfe --- /dev/null +++ b/src/icons/aws/architecture-service/networking-content-delivery/privatelink.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-PrivateLink_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/networking-content-delivery/route-53.svg b/src/icons/aws/architecture-service/networking-content-delivery/route-53.svg new file mode 100644 index 0000000..9134b77 --- /dev/null +++ b/src/icons/aws/architecture-service/networking-content-delivery/route-53.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Route-53_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/networking-content-delivery/site-to-site-vpn.svg b/src/icons/aws/architecture-service/networking-content-delivery/site-to-site-vpn.svg new file mode 100644 index 0000000..d3a792d --- /dev/null +++ b/src/icons/aws/architecture-service/networking-content-delivery/site-to-site-vpn.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-Site-to-Site-VPN_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/networking-content-delivery/transit-gateway.svg b/src/icons/aws/architecture-service/networking-content-delivery/transit-gateway.svg new file mode 100644 index 0000000..59e9d06 --- /dev/null +++ b/src/icons/aws/architecture-service/networking-content-delivery/transit-gateway.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Transit-Gateway_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/networking-content-delivery/verified-access.svg b/src/icons/aws/architecture-service/networking-content-delivery/verified-access.svg new file mode 100644 index 0000000..c46c0cb --- /dev/null +++ b/src/icons/aws/architecture-service/networking-content-delivery/verified-access.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Verified-Access_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/networking/VPC.svg b/src/icons/aws/architecture-service/networking-content-delivery/virtual-private-cloud.svg similarity index 100% rename from src/icons/aws/networking/VPC.svg rename to src/icons/aws/architecture-service/networking-content-delivery/virtual-private-cloud.svg diff --git a/src/icons/aws/architecture-service/networking-content-delivery/vpc-lattice.svg b/src/icons/aws/architecture-service/networking-content-delivery/vpc-lattice.svg new file mode 100644 index 0000000..f2abc98 --- /dev/null +++ b/src/icons/aws/architecture-service/networking-content-delivery/vpc-lattice.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-VPC-Lattice_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/quantum-technologies/braket.svg b/src/icons/aws/architecture-service/quantum-technologies/braket.svg new file mode 100644 index 0000000..94ab3ea --- /dev/null +++ b/src/icons/aws/architecture-service/quantum-technologies/braket.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Braket_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/robotics/robomaker.svg b/src/icons/aws/architecture-service/robotics/robomaker.svg new file mode 100644 index 0000000..7dc2fc9 --- /dev/null +++ b/src/icons/aws/architecture-service/robotics/robomaker.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-RoboMaker_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/satellite/ground-station.svg b/src/icons/aws/architecture-service/satellite/ground-station.svg new file mode 100644 index 0000000..6cb189c --- /dev/null +++ b/src/icons/aws/architecture-service/satellite/ground-station.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Ground-Station_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/security-identity-compliance/artifact.svg b/src/icons/aws/architecture-service/security-identity-compliance/artifact.svg new file mode 100644 index 0000000..45d6cb4 --- /dev/null +++ b/src/icons/aws/architecture-service/security-identity-compliance/artifact.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Artifact_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/security-identity-compliance/audit-manager.svg b/src/icons/aws/architecture-service/security-identity-compliance/audit-manager.svg new file mode 100644 index 0000000..cc6aba3 --- /dev/null +++ b/src/icons/aws/architecture-service/security-identity-compliance/audit-manager.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-Audit-Manager_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/security-identity-compliance/certificate-manager.svg b/src/icons/aws/architecture-service/security-identity-compliance/certificate-manager.svg new file mode 100644 index 0000000..5a49b4c --- /dev/null +++ b/src/icons/aws/architecture-service/security-identity-compliance/certificate-manager.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Certificate-Manager_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/security-identity-compliance/cloud-directory.svg b/src/icons/aws/architecture-service/security-identity-compliance/cloud-directory.svg new file mode 100644 index 0000000..a6dbcaa --- /dev/null +++ b/src/icons/aws/architecture-service/security-identity-compliance/cloud-directory.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Amazon-Cloud-Directory_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/security-identity-compliance/cloudhsm.svg b/src/icons/aws/architecture-service/security-identity-compliance/cloudhsm.svg new file mode 100644 index 0000000..2a94144 --- /dev/null +++ b/src/icons/aws/architecture-service/security-identity-compliance/cloudhsm.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-CloudHSM_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/security-identity-compliance/cognito.svg b/src/icons/aws/architecture-service/security-identity-compliance/cognito.svg new file mode 100644 index 0000000..be3d14b --- /dev/null +++ b/src/icons/aws/architecture-service/security-identity-compliance/cognito.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Cognito_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/security-identity-compliance/detective.svg b/src/icons/aws/architecture-service/security-identity-compliance/detective.svg new file mode 100644 index 0000000..6e1228e --- /dev/null +++ b/src/icons/aws/architecture-service/security-identity-compliance/detective.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Detective_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/security-identity-compliance/directory-service.svg b/src/icons/aws/architecture-service/security-identity-compliance/directory-service.svg new file mode 100644 index 0000000..a27b181 --- /dev/null +++ b/src/icons/aws/architecture-service/security-identity-compliance/directory-service.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Directory-Service_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/security-identity-compliance/firewall-manager.svg b/src/icons/aws/architecture-service/security-identity-compliance/firewall-manager.svg new file mode 100644 index 0000000..46b92c5 --- /dev/null +++ b/src/icons/aws/architecture-service/security-identity-compliance/firewall-manager.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Firewall-Manager_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/security-identity-compliance/guardduty.svg b/src/icons/aws/architecture-service/security-identity-compliance/guardduty.svg new file mode 100644 index 0000000..63440a4 --- /dev/null +++ b/src/icons/aws/architecture-service/security-identity-compliance/guardduty.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-GuardDuty_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/security-identity-compliance/iam-identity-center.svg b/src/icons/aws/architecture-service/security-identity-compliance/iam-identity-center.svg new file mode 100644 index 0000000..eeb4966 --- /dev/null +++ b/src/icons/aws/architecture-service/security-identity-compliance/iam-identity-center.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-IAM-Identity-Center_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/security-identity-compliance/identity-and-access-management.svg b/src/icons/aws/architecture-service/security-identity-compliance/identity-and-access-management.svg new file mode 100644 index 0000000..867ae32 --- /dev/null +++ b/src/icons/aws/architecture-service/security-identity-compliance/identity-and-access-management.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Identity-and-Access-Management_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/security-identity-compliance/inspector.svg b/src/icons/aws/architecture-service/security-identity-compliance/inspector.svg new file mode 100644 index 0000000..bf1a28e --- /dev/null +++ b/src/icons/aws/architecture-service/security-identity-compliance/inspector.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Inspector_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/security-identity-compliance/key-management-service.svg b/src/icons/aws/architecture-service/security-identity-compliance/key-management-service.svg new file mode 100644 index 0000000..67dc49f --- /dev/null +++ b/src/icons/aws/architecture-service/security-identity-compliance/key-management-service.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Key-Management-Service_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/security-identity-compliance/macie.svg b/src/icons/aws/architecture-service/security-identity-compliance/macie.svg new file mode 100644 index 0000000..2fb4428 --- /dev/null +++ b/src/icons/aws/architecture-service/security-identity-compliance/macie.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Macie_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/security-identity-compliance/network-firewall.svg b/src/icons/aws/architecture-service/security-identity-compliance/network-firewall.svg new file mode 100644 index 0000000..c00167d --- /dev/null +++ b/src/icons/aws/architecture-service/security-identity-compliance/network-firewall.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-Network-Firewall_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/security-identity-compliance/payment-cryptography.svg b/src/icons/aws/architecture-service/security-identity-compliance/payment-cryptography.svg new file mode 100644 index 0000000..481800c --- /dev/null +++ b/src/icons/aws/architecture-service/security-identity-compliance/payment-cryptography.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-Payment-Cryptography_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/security-identity-compliance/private-certificate-authority.svg b/src/icons/aws/architecture-service/security-identity-compliance/private-certificate-authority.svg new file mode 100644 index 0000000..85a6850 --- /dev/null +++ b/src/icons/aws/architecture-service/security-identity-compliance/private-certificate-authority.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Private-Certificate-Authority_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/security-identity-compliance/resource-access-manager.svg b/src/icons/aws/architecture-service/security-identity-compliance/resource-access-manager.svg new file mode 100644 index 0000000..8a42fb5 --- /dev/null +++ b/src/icons/aws/architecture-service/security-identity-compliance/resource-access-manager.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Resource-Access-Manager_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/security-identity-compliance/secrets-manager.svg b/src/icons/aws/architecture-service/security-identity-compliance/secrets-manager.svg new file mode 100644 index 0000000..e56f26f --- /dev/null +++ b/src/icons/aws/architecture-service/security-identity-compliance/secrets-manager.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Secrets-Manager_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/security-identity-compliance/security-hub.svg b/src/icons/aws/architecture-service/security-identity-compliance/security-hub.svg new file mode 100644 index 0000000..5ef2d96 --- /dev/null +++ b/src/icons/aws/architecture-service/security-identity-compliance/security-hub.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Security-Hub_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/security-identity-compliance/security-incident-response.svg b/src/icons/aws/architecture-service/security-identity-compliance/security-incident-response.svg new file mode 100644 index 0000000..023749d --- /dev/null +++ b/src/icons/aws/architecture-service/security-identity-compliance/security-incident-response.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/icons/aws/architecture-service/security-identity-compliance/security-lake.svg b/src/icons/aws/architecture-service/security-identity-compliance/security-lake.svg new file mode 100644 index 0000000..2cedb0f --- /dev/null +++ b/src/icons/aws/architecture-service/security-identity-compliance/security-lake.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Security-Lake_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/security-identity-compliance/shield.svg b/src/icons/aws/architecture-service/security-identity-compliance/shield.svg new file mode 100644 index 0000000..9c94d9a --- /dev/null +++ b/src/icons/aws/architecture-service/security-identity-compliance/shield.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Shield_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/security-identity-compliance/signer.svg b/src/icons/aws/architecture-service/security-identity-compliance/signer.svg new file mode 100644 index 0000000..3eba783 --- /dev/null +++ b/src/icons/aws/architecture-service/security-identity-compliance/signer.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-Signer_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/security-identity-compliance/verified-permissions.svg b/src/icons/aws/architecture-service/security-identity-compliance/verified-permissions.svg new file mode 100644 index 0000000..a597be5 --- /dev/null +++ b/src/icons/aws/architecture-service/security-identity-compliance/verified-permissions.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Verified-Permissions_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/security-identity-compliance/waf.svg b/src/icons/aws/architecture-service/security-identity-compliance/waf.svg new file mode 100644 index 0000000..a83383b --- /dev/null +++ b/src/icons/aws/architecture-service/security-identity-compliance/waf.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-WAF_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/storage/backup.svg b/src/icons/aws/architecture-service/storage/backup.svg new file mode 100644 index 0000000..dd56fc0 --- /dev/null +++ b/src/icons/aws/architecture-service/storage/backup.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Backup_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/storage/efs.svg b/src/icons/aws/architecture-service/storage/efs.svg new file mode 100644 index 0000000..e8611ff --- /dev/null +++ b/src/icons/aws/architecture-service/storage/efs.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Amazon-EFS_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/storage/elastic-block-store.svg b/src/icons/aws/architecture-service/storage/elastic-block-store.svg new file mode 100644 index 0000000..e8dbbac --- /dev/null +++ b/src/icons/aws/architecture-service/storage/elastic-block-store.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Elastic-Block-Store_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/storage/elastic-disaster-recovery.svg b/src/icons/aws/architecture-service/storage/elastic-disaster-recovery.svg new file mode 100644 index 0000000..b6d2ea2 --- /dev/null +++ b/src/icons/aws/architecture-service/storage/elastic-disaster-recovery.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Elastic-Disaster-Recovery_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/storage/file-cache.svg b/src/icons/aws/architecture-service/storage/file-cache.svg new file mode 100644 index 0000000..b5ba902 --- /dev/null +++ b/src/icons/aws/architecture-service/storage/file-cache.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-File-Cache_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/storage/fsx-for-lustre.svg b/src/icons/aws/architecture-service/storage/fsx-for-lustre.svg new file mode 100644 index 0000000..ed69c85 --- /dev/null +++ b/src/icons/aws/architecture-service/storage/fsx-for-lustre.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-FSx-for-Lustre_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/storage/fsx-for-netapp-ontap.svg b/src/icons/aws/architecture-service/storage/fsx-for-netapp-ontap.svg new file mode 100644 index 0000000..dd5e90b --- /dev/null +++ b/src/icons/aws/architecture-service/storage/fsx-for-netapp-ontap.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Amazon-FSx-for-NetApp-ONTAP_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/storage/fsx-for-openzfs.svg b/src/icons/aws/architecture-service/storage/fsx-for-openzfs.svg new file mode 100644 index 0000000..5c6ea75 --- /dev/null +++ b/src/icons/aws/architecture-service/storage/fsx-for-openzfs.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-FSx-for-OpenZFS_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/storage/fsx-for-wfs.svg b/src/icons/aws/architecture-service/storage/fsx-for-wfs.svg new file mode 100644 index 0000000..2b3ed46 --- /dev/null +++ b/src/icons/aws/architecture-service/storage/fsx-for-wfs.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Amazon-FSx-for-WFS_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/storage/fsx.svg b/src/icons/aws/architecture-service/storage/fsx.svg new file mode 100644 index 0000000..a451a09 --- /dev/null +++ b/src/icons/aws/architecture-service/storage/fsx.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Amazon-FSx_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/storage/s3-on-outposts.svg b/src/icons/aws/architecture-service/storage/s3-on-outposts.svg new file mode 100644 index 0000000..9845d13 --- /dev/null +++ b/src/icons/aws/architecture-service/storage/s3-on-outposts.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_Amazon-S3-on-Outposts_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/storage/simple-storage-service-glacier.svg b/src/icons/aws/architecture-service/storage/simple-storage-service-glacier.svg new file mode 100644 index 0000000..f2ea54c --- /dev/null +++ b/src/icons/aws/architecture-service/storage/simple-storage-service-glacier.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_Amazon-Simple-Storage-Service-Glacier_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/storage/S3.svg b/src/icons/aws/architecture-service/storage/simple-storage-service.svg similarity index 100% rename from src/icons/aws/storage/S3.svg rename to src/icons/aws/architecture-service/storage/simple-storage-service.svg diff --git a/src/icons/aws/architecture-service/storage/snowball-edge.svg b/src/icons/aws/architecture-service/storage/snowball-edge.svg new file mode 100644 index 0000000..4294159 --- /dev/null +++ b/src/icons/aws/architecture-service/storage/snowball-edge.svg @@ -0,0 +1,14 @@ + + + Icon-Architecture/32/Arch_AWS-Snowball-Edge_32 + + + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/storage/snowball.svg b/src/icons/aws/architecture-service/storage/snowball.svg new file mode 100644 index 0000000..ac681a2 --- /dev/null +++ b/src/icons/aws/architecture-service/storage/snowball.svg @@ -0,0 +1,12 @@ + + + Icon-Architecture/32/Arch_AWS-Snowball_32 + + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/architecture-service/storage/storage-gateway.svg b/src/icons/aws/architecture-service/storage/storage-gateway.svg new file mode 100644 index 0000000..78f75c1 --- /dev/null +++ b/src/icons/aws/architecture-service/storage/storage-gateway.svg @@ -0,0 +1,10 @@ + + + Icon-Architecture/32/Arch_AWS-Storage-Gateway_32 + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/category/category-analytics.svg b/src/icons/aws/category/category-analytics.svg new file mode 100644 index 0000000..5f83589 --- /dev/null +++ b/src/icons/aws/category/category-analytics.svg @@ -0,0 +1,11 @@ + + + Icon-Architecture-Category/32/Analytics_32 + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/category/category-application-integration.svg b/src/icons/aws/category/category-application-integration.svg new file mode 100644 index 0000000..a657ace --- /dev/null +++ b/src/icons/aws/category/category-application-integration.svg @@ -0,0 +1,11 @@ + + + Icon-Architecture-Category/32/Application-Integration_32 + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/category/category-artificial-intelligence.svg b/src/icons/aws/category/category-artificial-intelligence.svg new file mode 100644 index 0000000..85b63c5 --- /dev/null +++ b/src/icons/aws/category/category-artificial-intelligence.svg @@ -0,0 +1,11 @@ + + + Icon-Architecture-Category/32/Machine-Learning_32 + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/category/category-blockchain.svg b/src/icons/aws/category/category-blockchain.svg new file mode 100644 index 0000000..1d671d4 --- /dev/null +++ b/src/icons/aws/category/category-blockchain.svg @@ -0,0 +1,11 @@ + + + Icon-Architecture-Category/32/Blockchain_32 + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/category/category-business-applications.svg b/src/icons/aws/category/category-business-applications.svg new file mode 100644 index 0000000..cb5683b --- /dev/null +++ b/src/icons/aws/category/category-business-applications.svg @@ -0,0 +1,11 @@ + + + Icon-Architecture-Category/32/Business-Applications_32 + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/category/category-cloud-financial-management.svg b/src/icons/aws/category/category-cloud-financial-management.svg new file mode 100644 index 0000000..e1bd710 --- /dev/null +++ b/src/icons/aws/category/category-cloud-financial-management.svg @@ -0,0 +1,11 @@ + + + Icon-Architecture-Category/32/Cloud-Financial-Management_32 + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/category/category-compute.svg b/src/icons/aws/category/category-compute.svg new file mode 100644 index 0000000..3a34b91 --- /dev/null +++ b/src/icons/aws/category/category-compute.svg @@ -0,0 +1,11 @@ + + + Icon-Architecture-Category/32/Compute_32 + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/category/category-contact-center.svg b/src/icons/aws/category/category-contact-center.svg new file mode 100644 index 0000000..aeb3e63 --- /dev/null +++ b/src/icons/aws/category/category-contact-center.svg @@ -0,0 +1,11 @@ + + + Icon-Architecture-Category/32/Contact-Center_32 + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/category/category-containers.svg b/src/icons/aws/category/category-containers.svg new file mode 100644 index 0000000..faff1dc --- /dev/null +++ b/src/icons/aws/category/category-containers.svg @@ -0,0 +1,11 @@ + + + Icon-Architecture-Category/32/Containers_32 + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/category/category-customer-enablement.svg b/src/icons/aws/category/category-customer-enablement.svg new file mode 100644 index 0000000..ffad6a8 --- /dev/null +++ b/src/icons/aws/category/category-customer-enablement.svg @@ -0,0 +1,11 @@ + + + Icon-Architecture-Category/32/Customer-Enablement_32 + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/category/category-database.svg b/src/icons/aws/category/category-database.svg new file mode 100644 index 0000000..8c7b3ea --- /dev/null +++ b/src/icons/aws/category/category-database.svg @@ -0,0 +1,11 @@ + + + Icon-Architecture-Category/32/Database_32 + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/category/category-developer-tools.svg b/src/icons/aws/category/category-developer-tools.svg new file mode 100644 index 0000000..29b9aa3 --- /dev/null +++ b/src/icons/aws/category/category-developer-tools.svg @@ -0,0 +1,11 @@ + + + Icon-Architecture-Category/32/Developer-Tools_32 + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/category/category-end-user-computing.svg b/src/icons/aws/category/category-end-user-computing.svg new file mode 100644 index 0000000..7576b4e --- /dev/null +++ b/src/icons/aws/category/category-end-user-computing.svg @@ -0,0 +1,11 @@ + + + Icon-Architecture-Category/32/End-User-Computing_32 + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/category/category-front-end-web-mobile.svg b/src/icons/aws/category/category-front-end-web-mobile.svg new file mode 100644 index 0000000..ea6d60a --- /dev/null +++ b/src/icons/aws/category/category-front-end-web-mobile.svg @@ -0,0 +1,11 @@ + + + Icon-Architecture-Category/32/Front-End-Web-Mobile_32 + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/category/category-games.svg b/src/icons/aws/category/category-games.svg new file mode 100644 index 0000000..e621d6a --- /dev/null +++ b/src/icons/aws/category/category-games.svg @@ -0,0 +1,11 @@ + + + Icon-Architecture-Category/32/Games_32 + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/category/category-internet-of-things.svg b/src/icons/aws/category/category-internet-of-things.svg new file mode 100644 index 0000000..236e39f --- /dev/null +++ b/src/icons/aws/category/category-internet-of-things.svg @@ -0,0 +1,11 @@ + + + Icon-Architecture-Category/32/Internet-of-Things_32 + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/category/category-management-governance.svg b/src/icons/aws/category/category-management-governance.svg new file mode 100644 index 0000000..a70cebc --- /dev/null +++ b/src/icons/aws/category/category-management-governance.svg @@ -0,0 +1,11 @@ + + + Icon-Architecture-Category/32/Management-Governance_32 + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/category/category-media-services.svg b/src/icons/aws/category/category-media-services.svg new file mode 100644 index 0000000..5e54a66 --- /dev/null +++ b/src/icons/aws/category/category-media-services.svg @@ -0,0 +1,11 @@ + + + Icon-Architecture-Category/32/Media-Services_32 + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/category/category-migration-modernization.svg b/src/icons/aws/category/category-migration-modernization.svg new file mode 100644 index 0000000..16e3863 --- /dev/null +++ b/src/icons/aws/category/category-migration-modernization.svg @@ -0,0 +1,11 @@ + + + Icon-Architecture-Category/32/Migration-Transfer_32 + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/category/category-networking-content-delivery.svg b/src/icons/aws/category/category-networking-content-delivery.svg new file mode 100644 index 0000000..10b74c9 --- /dev/null +++ b/src/icons/aws/category/category-networking-content-delivery.svg @@ -0,0 +1,11 @@ + + + Icon-Architecture-Category/32/Networking-Content-Delivery_32 + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/category/category-quantum-technologies.svg b/src/icons/aws/category/category-quantum-technologies.svg new file mode 100644 index 0000000..7c237b9 --- /dev/null +++ b/src/icons/aws/category/category-quantum-technologies.svg @@ -0,0 +1,11 @@ + + + Icon-Architecture-Category/32/Quantum-Technologies_32 + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/category/category-robotics.svg b/src/icons/aws/category/category-robotics.svg new file mode 100644 index 0000000..3cb0f80 --- /dev/null +++ b/src/icons/aws/category/category-robotics.svg @@ -0,0 +1,11 @@ + + + Icon-Architecture-Category/32/Robotics_32 + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/category/category-satellite.svg b/src/icons/aws/category/category-satellite.svg new file mode 100644 index 0000000..5dd08b2 --- /dev/null +++ b/src/icons/aws/category/category-satellite.svg @@ -0,0 +1,11 @@ + + + Icon-Architecture-Category/32/Satellite_32 + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/category/category-security-identity-compliance.svg b/src/icons/aws/category/category-security-identity-compliance.svg new file mode 100644 index 0000000..d142418 --- /dev/null +++ b/src/icons/aws/category/category-security-identity-compliance.svg @@ -0,0 +1,11 @@ + + + Icon-Architecture-Category/32/Security-Identity-Compliance_32 + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/category/category-serverless.svg b/src/icons/aws/category/category-serverless.svg new file mode 100644 index 0000000..16dcd9d --- /dev/null +++ b/src/icons/aws/category/category-serverless.svg @@ -0,0 +1,11 @@ + + + Icon-Architecture-Category/32/Serverless_32 + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/category/category-storage.svg b/src/icons/aws/category/category-storage.svg new file mode 100644 index 0000000..d43b9c3 --- /dev/null +++ b/src/icons/aws/category/category-storage.svg @@ -0,0 +1,11 @@ + + + Icon-Architecture-Category/32/Storage_32 + + + + + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-analytics/res-athena-data-source-connectors.svg b/src/icons/aws/resource/res-analytics/res-athena-data-source-connectors.svg new file mode 100644 index 0000000..e4b7533 --- /dev/null +++ b/src/icons/aws/resource/res-analytics/res-athena-data-source-connectors.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Analytics/Res_Amazon-Athena_Data-Source-Connectors_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-analytics/res-cloudse-se-documents.svg b/src/icons/aws/resource/res-analytics/res-cloudse-se-documents.svg new file mode 100644 index 0000000..dcabce3 --- /dev/null +++ b/src/icons/aws/resource/res-analytics/res-cloudse-se-documents.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Analytics/Res_Amazon-CloudSearch_Search-Documents_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-analytics/res-data-exchange-for-apis.svg b/src/icons/aws/resource/res-analytics/res-data-exchange-for-apis.svg new file mode 100644 index 0000000..5b0c3f6 --- /dev/null +++ b/src/icons/aws/resource/res-analytics/res-data-exchange-for-apis.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Analytics/Res_AWS-Data-Exchange-for-APIs_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-analytics/res-datazone-business-data-catalog.svg b/src/icons/aws/resource/res-analytics/res-datazone-business-data-catalog.svg new file mode 100644 index 0000000..8874bd9 --- /dev/null +++ b/src/icons/aws/resource/res-analytics/res-datazone-business-data-catalog.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Analytics/Res_Amazon-DataZone_Business-Data-Catalog_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-analytics/res-datazone-data-portal.svg b/src/icons/aws/resource/res-analytics/res-datazone-data-portal.svg new file mode 100644 index 0000000..8fddb36 --- /dev/null +++ b/src/icons/aws/resource/res-analytics/res-datazone-data-portal.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Analytics/Res_Amazon-DataZone_Data-Portal_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-analytics/res-datazone-data-projects.svg b/src/icons/aws/resource/res-analytics/res-datazone-data-projects.svg new file mode 100644 index 0000000..9ee9284 --- /dev/null +++ b/src/icons/aws/resource/res-analytics/res-datazone-data-projects.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Analytics/Res_Amazon-DataZone_Data-Projects_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-analytics/res-emr-cluster.svg b/src/icons/aws/resource/res-analytics/res-emr-cluster.svg new file mode 100644 index 0000000..85ea8fe --- /dev/null +++ b/src/icons/aws/resource/res-analytics/res-emr-cluster.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Analytics/Res_Amazon-EMR_Cluster_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-analytics/res-emr-emr-engine.svg b/src/icons/aws/resource/res-analytics/res-emr-emr-engine.svg new file mode 100644 index 0000000..11b6f56 --- /dev/null +++ b/src/icons/aws/resource/res-analytics/res-emr-emr-engine.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Analytics/Res_Amazon-EMR_EMR-Engine_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-analytics/res-emr-hdfs-cluster.svg b/src/icons/aws/resource/res-analytics/res-emr-hdfs-cluster.svg new file mode 100644 index 0000000..d46f7f5 --- /dev/null +++ b/src/icons/aws/resource/res-analytics/res-emr-hdfs-cluster.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Analytics/Res_Amazon-EMR_HDFS-Cluster_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-analytics/res-glue-crawler.svg b/src/icons/aws/resource/res-analytics/res-glue-crawler.svg new file mode 100644 index 0000000..69e2d0d --- /dev/null +++ b/src/icons/aws/resource/res-analytics/res-glue-crawler.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Analytics/Res_AWS-Glue_Crawler_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-analytics/res-glue-data-catalog.svg b/src/icons/aws/resource/res-analytics/res-glue-data-catalog.svg new file mode 100644 index 0000000..ef84746 --- /dev/null +++ b/src/icons/aws/resource/res-analytics/res-glue-data-catalog.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Analytics/Res_AWS-Glue_Data-Catalog_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-analytics/res-glue-data-quality.svg b/src/icons/aws/resource/res-analytics/res-glue-data-quality.svg new file mode 100644 index 0000000..5b1100a --- /dev/null +++ b/src/icons/aws/resource/res-analytics/res-glue-data-quality.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Analytics/Res_AWS-Glue_Data-Quality_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-analytics/res-glue-glue-for-ray.svg b/src/icons/aws/resource/res-analytics/res-glue-glue-for-ray.svg new file mode 100644 index 0000000..93b7728 --- /dev/null +++ b/src/icons/aws/resource/res-analytics/res-glue-glue-for-ray.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Analytics/Res_AWS-Glue_AWS-Glue-for-Ray_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-analytics/res-lake-formation-data-lake.svg b/src/icons/aws/resource/res-analytics/res-lake-formation-data-lake.svg new file mode 100644 index 0000000..ff78056 --- /dev/null +++ b/src/icons/aws/resource/res-analytics/res-lake-formation-data-lake.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Analytics/Res_AWS-Lake-Formation_Data-Lake_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-analytics/res-msk-msk-connect.svg b/src/icons/aws/resource/res-analytics/res-msk-msk-connect.svg new file mode 100644 index 0000000..da7feb6 --- /dev/null +++ b/src/icons/aws/resource/res-analytics/res-msk-msk-connect.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Analytics/Res_Amazon-MSK_Amazon-MSK-Connect_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-analytics/res-opense-service-cluster-administrator-node.svg b/src/icons/aws/resource/res-analytics/res-opense-service-cluster-administrator-node.svg new file mode 100644 index 0000000..3dd0e91 --- /dev/null +++ b/src/icons/aws/resource/res-analytics/res-opense-service-cluster-administrator-node.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Analytics/Res_Amazon-OpenSearch-Service_Cluster-Administrator-Node_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-analytics/res-opense-service-data-node.svg b/src/icons/aws/resource/res-analytics/res-opense-service-data-node.svg new file mode 100644 index 0000000..b912a78 --- /dev/null +++ b/src/icons/aws/resource/res-analytics/res-opense-service-data-node.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Analytics/Res_Amazon-OpenSearch-Service_Data-Node_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-analytics/res-opense-service-index.svg b/src/icons/aws/resource/res-analytics/res-opense-service-index.svg new file mode 100644 index 0000000..ee71e5e --- /dev/null +++ b/src/icons/aws/resource/res-analytics/res-opense-service-index.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Analytics/Res_Amazon-OpenSearch-Service_Index_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-analytics/res-opense-service-observability.svg b/src/icons/aws/resource/res-analytics/res-opense-service-observability.svg new file mode 100644 index 0000000..76e3038 --- /dev/null +++ b/src/icons/aws/resource/res-analytics/res-opense-service-observability.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Analytics/Res_Amazon-OpenSearch-Service_Observability_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-analytics/res-opense-service-opense-dashboards.svg b/src/icons/aws/resource/res-analytics/res-opense-service-opense-dashboards.svg new file mode 100644 index 0000000..c45d424 --- /dev/null +++ b/src/icons/aws/resource/res-analytics/res-opense-service-opense-dashboards.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Analytics/Res_Amazon-OpenSearch-Service_OpenSearch-Dashboards_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-analytics/res-opense-service-opense-ingestion.svg b/src/icons/aws/resource/res-analytics/res-opense-service-opense-ingestion.svg new file mode 100644 index 0000000..3d1f67a --- /dev/null +++ b/src/icons/aws/resource/res-analytics/res-opense-service-opense-ingestion.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Analytics/Res_Amazon-OpenSearch-Service_OpenSearch-Ingestion_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-analytics/res-opense-service-traces.svg b/src/icons/aws/resource/res-analytics/res-opense-service-traces.svg new file mode 100644 index 0000000..94ccf95 --- /dev/null +++ b/src/icons/aws/resource/res-analytics/res-opense-service-traces.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Analytics/Res_Amazon-OpenSearch-Service_Traces_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-analytics/res-opense-service-ultrawarm-node.svg b/src/icons/aws/resource/res-analytics/res-opense-service-ultrawarm-node.svg new file mode 100644 index 0000000..c6bb456 --- /dev/null +++ b/src/icons/aws/resource/res-analytics/res-opense-service-ultrawarm-node.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Analytics/Res_Amazon-OpenSearch-Service_UltraWarm-Node_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-analytics/res-quicksight-paginated-reports.svg b/src/icons/aws/resource/res-analytics/res-quicksight-paginated-reports.svg new file mode 100644 index 0000000..7d5c9d1 --- /dev/null +++ b/src/icons/aws/resource/res-analytics/res-quicksight-paginated-reports.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Analytics/Res_Amazon-Quicksight_Paginated-Reports_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-analytics/res-redshift-auto-copy.svg b/src/icons/aws/resource/res-analytics/res-redshift-auto-copy.svg new file mode 100644 index 0000000..26fbc5b --- /dev/null +++ b/src/icons/aws/resource/res-analytics/res-redshift-auto-copy.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Analytics/Res_Amazon-Redshift_Auto-copy_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-analytics/res-redshift-data-sharing-governance.svg b/src/icons/aws/resource/res-analytics/res-redshift-data-sharing-governance.svg new file mode 100644 index 0000000..fb7a831 --- /dev/null +++ b/src/icons/aws/resource/res-analytics/res-redshift-data-sharing-governance.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Analytics/Res_Amazon-Redshift_Data-Sharing-Governance_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-analytics/res-redshift-dense-compute-node.svg b/src/icons/aws/resource/res-analytics/res-redshift-dense-compute-node.svg new file mode 100644 index 0000000..7b8391c --- /dev/null +++ b/src/icons/aws/resource/res-analytics/res-redshift-dense-compute-node.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Analytics/Res_Amazon-Redshift_Dense-Compute-Node_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-analytics/res-redshift-dense-storage-node.svg b/src/icons/aws/resource/res-analytics/res-redshift-dense-storage-node.svg new file mode 100644 index 0000000..0b892aa --- /dev/null +++ b/src/icons/aws/resource/res-analytics/res-redshift-dense-storage-node.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Analytics/Res_Amazon-Redshift_Dense-Storage-Node_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-analytics/res-redshift-ml.svg b/src/icons/aws/resource/res-analytics/res-redshift-ml.svg new file mode 100644 index 0000000..d5145f8 --- /dev/null +++ b/src/icons/aws/resource/res-analytics/res-redshift-ml.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Analytics/Res_Amazon-Redshift_ML_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-analytics/res-redshift-query-editor-v2.svg b/src/icons/aws/resource/res-analytics/res-redshift-query-editor-v2.svg new file mode 100644 index 0000000..80727cd --- /dev/null +++ b/src/icons/aws/resource/res-analytics/res-redshift-query-editor-v2.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Analytics/Res_Amazon-Redshift_Query-Editor-v2.0_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-analytics/res-redshift-ra3.svg b/src/icons/aws/resource/res-analytics/res-redshift-ra3.svg new file mode 100644 index 0000000..ab25578 --- /dev/null +++ b/src/icons/aws/resource/res-analytics/res-redshift-ra3.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Analytics/Res_Amazon-Redshift_RA3_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-analytics/res-redshift-streaming-ingestion.svg b/src/icons/aws/resource/res-analytics/res-redshift-streaming-ingestion.svg new file mode 100644 index 0000000..1a56e21 --- /dev/null +++ b/src/icons/aws/resource/res-analytics/res-redshift-streaming-ingestion.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Analytics/Res_Amazon-Redshift_Streaming-Ingestion_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-application-integration/res-eventbridge-custom-event-bus.svg b/src/icons/aws/resource/res-application-integration/res-eventbridge-custom-event-bus.svg new file mode 100644 index 0000000..d9cb56b --- /dev/null +++ b/src/icons/aws/resource/res-application-integration/res-eventbridge-custom-event-bus.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Application-Integration/Res_Amazon-EventBridge_Custom-Event-Bus_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-application-integration/res-eventbridge-default-event-bus.svg b/src/icons/aws/resource/res-application-integration/res-eventbridge-default-event-bus.svg new file mode 100644 index 0000000..fc9e857 --- /dev/null +++ b/src/icons/aws/resource/res-application-integration/res-eventbridge-default-event-bus.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Application-Integration/Res_Amazon-EventBridge_Default-Event-Bus_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-application-integration/res-eventbridge-event.svg b/src/icons/aws/resource/res-application-integration/res-eventbridge-event.svg new file mode 100644 index 0000000..6c92335 --- /dev/null +++ b/src/icons/aws/resource/res-application-integration/res-eventbridge-event.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Application-Integration/Res_Amazon-EventBridge-Event_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-application-integration/res-eventbridge-pipes.svg b/src/icons/aws/resource/res-application-integration/res-eventbridge-pipes.svg new file mode 100644 index 0000000..f9345e7 --- /dev/null +++ b/src/icons/aws/resource/res-application-integration/res-eventbridge-pipes.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Application-Integration/Res_Amazon-EventBridge_Pipes_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-application-integration/res-eventbridge-rule.svg b/src/icons/aws/resource/res-application-integration/res-eventbridge-rule.svg new file mode 100644 index 0000000..0555e7f --- /dev/null +++ b/src/icons/aws/resource/res-application-integration/res-eventbridge-rule.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Application-Integration/Res_Amazon-EventBridge_Rule_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-application-integration/res-eventbridge-saas-partner-event.svg b/src/icons/aws/resource/res-application-integration/res-eventbridge-saas-partner-event.svg new file mode 100644 index 0000000..da51ecf --- /dev/null +++ b/src/icons/aws/resource/res-application-integration/res-eventbridge-saas-partner-event.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Application-Integration/Res_Amazon-EventBridge_Saas-Partner-Event_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-application-integration/res-eventbridge-scheduler.svg b/src/icons/aws/resource/res-application-integration/res-eventbridge-scheduler.svg new file mode 100644 index 0000000..e6593db --- /dev/null +++ b/src/icons/aws/resource/res-application-integration/res-eventbridge-scheduler.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Application-Integration/Res_Amazon-EventBridge_Scheduler_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-application-integration/res-eventbridge-schema-registry.svg b/src/icons/aws/resource/res-application-integration/res-eventbridge-schema-registry.svg new file mode 100644 index 0000000..8810b73 --- /dev/null +++ b/src/icons/aws/resource/res-application-integration/res-eventbridge-schema-registry.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Application-Integration/Res_Amazon-EventBridge_Schema-Registry_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-application-integration/res-eventbridge-schema.svg b/src/icons/aws/resource/res-application-integration/res-eventbridge-schema.svg new file mode 100644 index 0000000..23e8395 --- /dev/null +++ b/src/icons/aws/resource/res-application-integration/res-eventbridge-schema.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Application-Integration/Res_Amazon-EventBridge_Schema_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-application-integration/res-mq-broker.svg b/src/icons/aws/resource/res-application-integration/res-mq-broker.svg new file mode 100644 index 0000000..4644372 --- /dev/null +++ b/src/icons/aws/resource/res-application-integration/res-mq-broker.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Application-Integration/Res_Amazon-MQ_Broker_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-application-integration/res-simple-notification-service-email-notification.svg b/src/icons/aws/resource/res-application-integration/res-simple-notification-service-email-notification.svg new file mode 100644 index 0000000..f390c5d --- /dev/null +++ b/src/icons/aws/resource/res-application-integration/res-simple-notification-service-email-notification.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Application-Integration/Res_Amazon-Simple-Notification-Service_Email-Notification_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-application-integration/res-simple-notification-service-http-notification.svg b/src/icons/aws/resource/res-application-integration/res-simple-notification-service-http-notification.svg new file mode 100644 index 0000000..d0e7d6c --- /dev/null +++ b/src/icons/aws/resource/res-application-integration/res-simple-notification-service-http-notification.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Application-Integration/Res_Amazon-Simple-Notification-Service_HTTP-Notification_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-application-integration/res-simple-notification-service-topic.svg b/src/icons/aws/resource/res-application-integration/res-simple-notification-service-topic.svg new file mode 100644 index 0000000..3b33943 --- /dev/null +++ b/src/icons/aws/resource/res-application-integration/res-simple-notification-service-topic.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Application-Integration/Res_Amazon-Simple-Notification-Service_Topic_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-application-integration/res-simple-queue-service-message.svg b/src/icons/aws/resource/res-application-integration/res-simple-queue-service-message.svg new file mode 100644 index 0000000..ede55a8 --- /dev/null +++ b/src/icons/aws/resource/res-application-integration/res-simple-queue-service-message.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Application-Integration/Res_Amazon-Simple-Queue-Service_Message_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-application-integration/res-simple-queue-service-queue.svg b/src/icons/aws/resource/res-application-integration/res-simple-queue-service-queue.svg new file mode 100644 index 0000000..d127010 --- /dev/null +++ b/src/icons/aws/resource/res-application-integration/res-simple-queue-service-queue.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Application-Integration/Res_Amazon-Simple-Queue-Service_Queue_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-artificial-intelligence/res-devops-guru-insights.svg b/src/icons/aws/resource/res-artificial-intelligence/res-devops-guru-insights.svg new file mode 100644 index 0000000..2397cdf --- /dev/null +++ b/src/icons/aws/resource/res-artificial-intelligence/res-devops-guru-insights.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Machine-Learning/Res_Amazon-DevOps-Guru_Insights_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-artificial-intelligence/res-rekognition-image.svg b/src/icons/aws/resource/res-artificial-intelligence/res-rekognition-image.svg new file mode 100644 index 0000000..a97e129 --- /dev/null +++ b/src/icons/aws/resource/res-artificial-intelligence/res-rekognition-image.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Machine-Learning/Res_Amazon-Rekognition_Image_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-artificial-intelligence/res-rekognition-video.svg b/src/icons/aws/resource/res-artificial-intelligence/res-rekognition-video.svg new file mode 100644 index 0000000..530e582 --- /dev/null +++ b/src/icons/aws/resource/res-artificial-intelligence/res-rekognition-video.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Machine-Learning/Res_Amazon-Rekognition_Video_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-artificial-intelligence/res-sagemaker-canvas.svg b/src/icons/aws/resource/res-artificial-intelligence/res-sagemaker-canvas.svg new file mode 100644 index 0000000..b31e174 --- /dev/null +++ b/src/icons/aws/resource/res-artificial-intelligence/res-sagemaker-canvas.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Machine-Learning/Res_Amazon-SageMaker_Canvas_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-artificial-intelligence/res-sagemaker-geospatial-ml.svg b/src/icons/aws/resource/res-artificial-intelligence/res-sagemaker-geospatial-ml.svg new file mode 100644 index 0000000..bb083c4 --- /dev/null +++ b/src/icons/aws/resource/res-artificial-intelligence/res-sagemaker-geospatial-ml.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Machine-Learning/Res_Amazon-SageMaker_Geospatial-ML_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-artificial-intelligence/res-sagemaker-model.svg b/src/icons/aws/resource/res-artificial-intelligence/res-sagemaker-model.svg new file mode 100644 index 0000000..4872667 --- /dev/null +++ b/src/icons/aws/resource/res-artificial-intelligence/res-sagemaker-model.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Machine-Learning/Res_Amazon-SageMaker_Model_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-artificial-intelligence/res-sagemaker-notebook.svg b/src/icons/aws/resource/res-artificial-intelligence/res-sagemaker-notebook.svg new file mode 100644 index 0000000..07c525e --- /dev/null +++ b/src/icons/aws/resource/res-artificial-intelligence/res-sagemaker-notebook.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Machine-Learning/Res_Amazon-SageMaker_Notebook_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-artificial-intelligence/res-sagemaker-shadow-testing.svg b/src/icons/aws/resource/res-artificial-intelligence/res-sagemaker-shadow-testing.svg new file mode 100644 index 0000000..fbfa2ce --- /dev/null +++ b/src/icons/aws/resource/res-artificial-intelligence/res-sagemaker-shadow-testing.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Machine-Learning/Res_Amazon-SageMaker_Shadow-Testing_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-artificial-intelligence/res-sagemaker-train.svg b/src/icons/aws/resource/res-artificial-intelligence/res-sagemaker-train.svg new file mode 100644 index 0000000..48cde5e --- /dev/null +++ b/src/icons/aws/resource/res-artificial-intelligence/res-sagemaker-train.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Machine-Learning/Res_Amazon-SageMaker_Train_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-artificial-intelligence/res-textract-analyze-lending.svg b/src/icons/aws/resource/res-artificial-intelligence/res-textract-analyze-lending.svg new file mode 100644 index 0000000..5c8a070 --- /dev/null +++ b/src/icons/aws/resource/res-artificial-intelligence/res-textract-analyze-lending.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Machine-Learning/Res_Amazon-Textract_Analyze-Lending_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-blockchain/res-managed-blockchain-blockchain.svg b/src/icons/aws/resource/res-blockchain/res-managed-blockchain-blockchain.svg new file mode 100644 index 0000000..6a515bd --- /dev/null +++ b/src/icons/aws/resource/res-blockchain/res-managed-blockchain-blockchain.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Blockchain/Res_Amazon-Managed-Blockchain_Blockchain_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-business-applications/res-pinpoint-journey.svg b/src/icons/aws/resource/res-business-applications/res-pinpoint-journey.svg new file mode 100644 index 0000000..14f0d5d --- /dev/null +++ b/src/icons/aws/resource/res-business-applications/res-pinpoint-journey.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Business-Applications/Res_Amazon-Pinpoint_Journey_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-business-applications/res-simple-email-service-email.svg b/src/icons/aws/resource/res-business-applications/res-simple-email-service-email.svg new file mode 100644 index 0000000..1b2e5a1 --- /dev/null +++ b/src/icons/aws/resource/res-business-applications/res-simple-email-service-email.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Business-Applications/Res_Amazon-Simple-Email-Service_Email_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-compute/res-ec2-ami.svg b/src/icons/aws/resource/res-compute/res-ec2-ami.svg new file mode 100644 index 0000000..e9c5266 --- /dev/null +++ b/src/icons/aws/resource/res-compute/res-ec2-ami.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Compute/Res_Amazon-EC2_AMI_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-compute/res-ec2-auto-scaling.svg b/src/icons/aws/resource/res-compute/res-ec2-auto-scaling.svg new file mode 100644 index 0000000..916f714 --- /dev/null +++ b/src/icons/aws/resource/res-compute/res-ec2-auto-scaling.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Compute/Res_Amazon-EC2_Auto-Scaling_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-compute/res-ec2-db-instance.svg b/src/icons/aws/resource/res-compute/res-ec2-db-instance.svg new file mode 100644 index 0000000..10848fe --- /dev/null +++ b/src/icons/aws/resource/res-compute/res-ec2-db-instance.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Compute/Res_Amazon-EC2_DB-Instance_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-compute/res-ec2-elastic-ip-address.svg b/src/icons/aws/resource/res-compute/res-ec2-elastic-ip-address.svg new file mode 100644 index 0000000..d2041d2 --- /dev/null +++ b/src/icons/aws/resource/res-compute/res-ec2-elastic-ip-address.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Compute/Res_Amazon-EC2_Elastic-IP-Address_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-compute/res-ec2-instance-with-cloudwatch.svg b/src/icons/aws/resource/res-compute/res-ec2-instance-with-cloudwatch.svg new file mode 100644 index 0000000..8e2ec17 --- /dev/null +++ b/src/icons/aws/resource/res-compute/res-ec2-instance-with-cloudwatch.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Compute/Res_Amazon-EC2_Instance-with-CloudWatch_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-compute/res-ec2-instance.svg b/src/icons/aws/resource/res-compute/res-ec2-instance.svg new file mode 100644 index 0000000..542dc80 --- /dev/null +++ b/src/icons/aws/resource/res-compute/res-ec2-instance.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Compute/Res_Amazon-EC2_Instance_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-compute/res-ec2-instances.svg b/src/icons/aws/resource/res-compute/res-ec2-instances.svg new file mode 100644 index 0000000..07148fb --- /dev/null +++ b/src/icons/aws/resource/res-compute/res-ec2-instances.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Compute/Res_Amazon-EC2_Instances_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-compute/res-ec2-microservice-extractor-for-net.svg b/src/icons/aws/resource/res-compute/res-ec2-microservice-extractor-for-net.svg new file mode 100644 index 0000000..35addda --- /dev/null +++ b/src/icons/aws/resource/res-compute/res-ec2-microservice-extractor-for-net.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Compute/Res_Amazon-EC2_AWS-Microservice-Extractor-for-.NET_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-compute/res-ec2-rescue.svg b/src/icons/aws/resource/res-compute/res-ec2-rescue.svg new file mode 100644 index 0000000..03d1113 --- /dev/null +++ b/src/icons/aws/resource/res-compute/res-ec2-rescue.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Compute/Res_Amazon-EC2_Rescue_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-compute/res-ec2-spot-instance.svg b/src/icons/aws/resource/res-compute/res-ec2-spot-instance.svg new file mode 100644 index 0000000..844e903 --- /dev/null +++ b/src/icons/aws/resource/res-compute/res-ec2-spot-instance.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Compute/Res_Amazon-EC2_Spot-Instance_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-compute/res-elastic-beanstalk-application.svg b/src/icons/aws/resource/res-compute/res-elastic-beanstalk-application.svg new file mode 100644 index 0000000..e6d062a --- /dev/null +++ b/src/icons/aws/resource/res-compute/res-elastic-beanstalk-application.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Compute/Res_AWS-Elastic-Beanstalk_Application_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-compute/res-elastic-beanstalk-deployment.svg b/src/icons/aws/resource/res-compute/res-elastic-beanstalk-deployment.svg new file mode 100644 index 0000000..6b6e0f7 --- /dev/null +++ b/src/icons/aws/resource/res-compute/res-elastic-beanstalk-deployment.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Compute/Res_AWS-Elastic-Beanstalk_Deployment_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-compute/res-lambda-lambda-function.svg b/src/icons/aws/resource/res-compute/res-lambda-lambda-function.svg new file mode 100644 index 0000000..b30cd9d --- /dev/null +++ b/src/icons/aws/resource/res-compute/res-lambda-lambda-function.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Compute/Res_AWS-Lambda_Lambda-Function_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-containers/res-elastic-container-registry-image.svg b/src/icons/aws/resource/res-containers/res-elastic-container-registry-image.svg new file mode 100644 index 0000000..8a2d5cb --- /dev/null +++ b/src/icons/aws/resource/res-containers/res-elastic-container-registry-image.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Containers/Res_Amazon-Elastic-Container-Registry_Image_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-containers/res-elastic-container-registry-registry.svg b/src/icons/aws/resource/res-containers/res-elastic-container-registry-registry.svg new file mode 100644 index 0000000..d29a1aa --- /dev/null +++ b/src/icons/aws/resource/res-containers/res-elastic-container-registry-registry.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Containers/Res_Amazon-Elastic-Container-Registry_Registry_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-containers/res-elastic-container-service-container-1.svg b/src/icons/aws/resource/res-containers/res-elastic-container-service-container-1.svg new file mode 100644 index 0000000..0b04f6e --- /dev/null +++ b/src/icons/aws/resource/res-containers/res-elastic-container-service-container-1.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Containers/Res_Amazon-Elastic-Container-Service_Container-1_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-containers/res-elastic-container-service-container-2.svg b/src/icons/aws/resource/res-containers/res-elastic-container-service-container-2.svg new file mode 100644 index 0000000..fe70551 --- /dev/null +++ b/src/icons/aws/resource/res-containers/res-elastic-container-service-container-2.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Containers/Res_Amazon-Elastic-Container-Service_Container-2_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-containers/res-elastic-container-service-container-3.svg b/src/icons/aws/resource/res-containers/res-elastic-container-service-container-3.svg new file mode 100644 index 0000000..658d205 --- /dev/null +++ b/src/icons/aws/resource/res-containers/res-elastic-container-service-container-3.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Containers/Res_Amazon-Elastic-Container-Service_Container-3_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-containers/res-elastic-container-service-copiiot-cli.svg b/src/icons/aws/resource/res-containers/res-elastic-container-service-copiiot-cli.svg new file mode 100644 index 0000000..1e7f7ec --- /dev/null +++ b/src/icons/aws/resource/res-containers/res-elastic-container-service-copiiot-cli.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Containers/Res_Amazon-Elastic-Container-Service_CopiIoT-CLI_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-containers/res-elastic-container-service-ecs-service-connect.svg b/src/icons/aws/resource/res-containers/res-elastic-container-service-ecs-service-connect.svg new file mode 100644 index 0000000..1d4bf32 --- /dev/null +++ b/src/icons/aws/resource/res-containers/res-elastic-container-service-ecs-service-connect.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Containers/Res_Amazon-Elastic-Container-Service_ECS-Service-Connect_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-containers/res-elastic-container-service-service.svg b/src/icons/aws/resource/res-containers/res-elastic-container-service-service.svg new file mode 100644 index 0000000..e58e531 --- /dev/null +++ b/src/icons/aws/resource/res-containers/res-elastic-container-service-service.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Containers/Res_Amazon-Elastic-Container-Service_Service_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-containers/res-elastic-container-service-task.svg b/src/icons/aws/resource/res-containers/res-elastic-container-service-task.svg new file mode 100644 index 0000000..c7c3727 --- /dev/null +++ b/src/icons/aws/resource/res-containers/res-elastic-container-service-task.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Containers/Res_Amazon-Elastic-Container-Service_Task_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-containers/res-elastic-kubernetes-service-eks-on-outposts.svg b/src/icons/aws/resource/res-containers/res-elastic-kubernetes-service-eks-on-outposts.svg new file mode 100644 index 0000000..6bb9db4 --- /dev/null +++ b/src/icons/aws/resource/res-containers/res-elastic-kubernetes-service-eks-on-outposts.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Containers/Res_Amazon-Elastic-Kubernetes-Service_EKS-on-Outposts_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-database/res-aurora-aurora-instance-alternate.svg b/src/icons/aws/resource/res-database/res-aurora-aurora-instance-alternate.svg new file mode 100644 index 0000000..6b5c013 --- /dev/null +++ b/src/icons/aws/resource/res-database/res-aurora-aurora-instance-alternate.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Database/Res_Amazon-Aurora_Amazon-Aurora-Instance-alternate_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-database/res-aurora-instance.svg b/src/icons/aws/resource/res-database/res-aurora-instance.svg new file mode 100644 index 0000000..fbafff3 --- /dev/null +++ b/src/icons/aws/resource/res-database/res-aurora-instance.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Database/Res_Amazon-Aurora-Instance_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-database/res-aurora-mariadb-instance-alternate.svg b/src/icons/aws/resource/res-database/res-aurora-mariadb-instance-alternate.svg new file mode 100644 index 0000000..9f68e09 --- /dev/null +++ b/src/icons/aws/resource/res-database/res-aurora-mariadb-instance-alternate.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Database/Res_Amazon-Aurora-MariaDB-Instance-Alternate_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-database/res-aurora-mariadb-instance.svg b/src/icons/aws/resource/res-database/res-aurora-mariadb-instance.svg new file mode 100644 index 0000000..2d6eff5 --- /dev/null +++ b/src/icons/aws/resource/res-database/res-aurora-mariadb-instance.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Database/Res_Amazon-Aurora-MariaDB-Instance_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-database/res-aurora-mysql-instance-alternate.svg b/src/icons/aws/resource/res-database/res-aurora-mysql-instance-alternate.svg new file mode 100644 index 0000000..7943ae8 --- /dev/null +++ b/src/icons/aws/resource/res-database/res-aurora-mysql-instance-alternate.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Database/Res_Amazon-Aurora-MySQL-Instance-Alternate_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-database/res-aurora-mysql-instance.svg b/src/icons/aws/resource/res-database/res-aurora-mysql-instance.svg new file mode 100644 index 0000000..33d1487 --- /dev/null +++ b/src/icons/aws/resource/res-database/res-aurora-mysql-instance.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Database/Res_Amazon-Aurora-MySQL-Instance_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-database/res-aurora-oracle-instance-alternate.svg b/src/icons/aws/resource/res-database/res-aurora-oracle-instance-alternate.svg new file mode 100644 index 0000000..a533826 --- /dev/null +++ b/src/icons/aws/resource/res-database/res-aurora-oracle-instance-alternate.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Database/Res_Amazon-Aurora-Oracle-Instance-Alternate_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-database/res-aurora-oracle-instance.svg b/src/icons/aws/resource/res-database/res-aurora-oracle-instance.svg new file mode 100644 index 0000000..175f7c9 --- /dev/null +++ b/src/icons/aws/resource/res-database/res-aurora-oracle-instance.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Database/Res_Amazon-Aurora-Oracle-Instance_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-database/res-aurora-piops-instance.svg b/src/icons/aws/resource/res-database/res-aurora-piops-instance.svg new file mode 100644 index 0000000..a8188b6 --- /dev/null +++ b/src/icons/aws/resource/res-database/res-aurora-piops-instance.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Database/Res_Amazon-Aurora-PIOPS-Instance_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-database/res-aurora-postgresql-instance-alternate.svg b/src/icons/aws/resource/res-database/res-aurora-postgresql-instance-alternate.svg new file mode 100644 index 0000000..52af24e --- /dev/null +++ b/src/icons/aws/resource/res-database/res-aurora-postgresql-instance-alternate.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Database/Res_Amazon-Aurora-PostgreSQL-Instance-Alternate_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-database/res-aurora-postgresql-instance.svg b/src/icons/aws/resource/res-database/res-aurora-postgresql-instance.svg new file mode 100644 index 0000000..53c04fa --- /dev/null +++ b/src/icons/aws/resource/res-database/res-aurora-postgresql-instance.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Database/Res_Amazon-Aurora-PostgreSQL-Instance_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-database/res-aurora-rds-instance-aternate.svg b/src/icons/aws/resource/res-database/res-aurora-rds-instance-aternate.svg new file mode 100644 index 0000000..31227e6 --- /dev/null +++ b/src/icons/aws/resource/res-database/res-aurora-rds-instance-aternate.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Database/Res_Amazon-Aurora_Amazon-RDS-Instance-Aternate_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-database/res-aurora-rds-instance.svg b/src/icons/aws/resource/res-database/res-aurora-rds-instance.svg new file mode 100644 index 0000000..f5fd449 --- /dev/null +++ b/src/icons/aws/resource/res-database/res-aurora-rds-instance.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Database/Res_Amazon-Aurora_Amazon-RDS-Instance_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-database/res-aurora-sql-server-instance-alternate.svg b/src/icons/aws/resource/res-database/res-aurora-sql-server-instance-alternate.svg new file mode 100644 index 0000000..9114e2b --- /dev/null +++ b/src/icons/aws/resource/res-database/res-aurora-sql-server-instance-alternate.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Database/Res_Amazon-Aurora-SQL-Server-Instance-Alternate_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-database/res-aurora-sql-server-instance.svg b/src/icons/aws/resource/res-database/res-aurora-sql-server-instance.svg new file mode 100644 index 0000000..08ebfa2 --- /dev/null +++ b/src/icons/aws/resource/res-database/res-aurora-sql-server-instance.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Database/Res_Amazon-Aurora-SQL-Server-Instance_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-database/res-aurora-trusted-language-extensions-for-postgresql.svg b/src/icons/aws/resource/res-database/res-aurora-trusted-language-extensions-for-postgresql.svg new file mode 100644 index 0000000..7e5df6d --- /dev/null +++ b/src/icons/aws/resource/res-database/res-aurora-trusted-language-extensions-for-postgresql.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Database/Res_Amazon-Aurora_Trusted-Language-Extensions-for-PostgreSQL_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-database/res-database-migration-service-database-migration-workflow-or-job.svg b/src/icons/aws/resource/res-database/res-database-migration-service-database-migration-workflow-or-job.svg new file mode 100644 index 0000000..e6661ce --- /dev/null +++ b/src/icons/aws/resource/res-database/res-database-migration-service-database-migration-workflow-or-job.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Database/Res_AWS-Database-Migration-Service_Database-migration-workflow-or-job_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-database/res-documentdb-elastic-clusters.svg b/src/icons/aws/resource/res-database/res-documentdb-elastic-clusters.svg new file mode 100644 index 0000000..c05f6e3 --- /dev/null +++ b/src/icons/aws/resource/res-database/res-documentdb-elastic-clusters.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Database/Res_Amazon-DocumentDB_Elastic-Clusters_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-database/res-dynamodb-attribute.svg b/src/icons/aws/resource/res-database/res-dynamodb-attribute.svg new file mode 100644 index 0000000..5333b49 --- /dev/null +++ b/src/icons/aws/resource/res-database/res-dynamodb-attribute.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Database/Res_Amazon-DynamoDB_Attribute_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-database/res-dynamodb-attributes.svg b/src/icons/aws/resource/res-database/res-dynamodb-attributes.svg new file mode 100644 index 0000000..7b524ac --- /dev/null +++ b/src/icons/aws/resource/res-database/res-dynamodb-attributes.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Database/Res_Amazon-DynamoDB_Attributes_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-database/res-dynamodb-dynamodb-accelerator.svg b/src/icons/aws/resource/res-database/res-dynamodb-dynamodb-accelerator.svg new file mode 100644 index 0000000..33965ce --- /dev/null +++ b/src/icons/aws/resource/res-database/res-dynamodb-dynamodb-accelerator.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Database/Res_Amazon-DynamoDB_Amazon-DynamoDB-Accelerator_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-database/res-dynamodb-global-secondary-index.svg b/src/icons/aws/resource/res-database/res-dynamodb-global-secondary-index.svg new file mode 100644 index 0000000..c465cab --- /dev/null +++ b/src/icons/aws/resource/res-database/res-dynamodb-global-secondary-index.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Database/Res_Amazon-DynamoDB_Global-secondary-index_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-database/res-dynamodb-item.svg b/src/icons/aws/resource/res-database/res-dynamodb-item.svg new file mode 100644 index 0000000..e8c926b --- /dev/null +++ b/src/icons/aws/resource/res-database/res-dynamodb-item.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Database/Res_Amazon-DynamoDB_Item_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-database/res-dynamodb-items.svg b/src/icons/aws/resource/res-database/res-dynamodb-items.svg new file mode 100644 index 0000000..8034c50 --- /dev/null +++ b/src/icons/aws/resource/res-database/res-dynamodb-items.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Database/Res_Amazon-DynamoDB_Items_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-database/res-dynamodb-standard-access-table-class.svg b/src/icons/aws/resource/res-database/res-dynamodb-standard-access-table-class.svg new file mode 100644 index 0000000..bded689 --- /dev/null +++ b/src/icons/aws/resource/res-database/res-dynamodb-standard-access-table-class.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Database/Res_Amazon-DynamoDB_Standard-Access-Table-Class_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-database/res-dynamodb-standard-infrequent-access-table-class.svg b/src/icons/aws/resource/res-database/res-dynamodb-standard-infrequent-access-table-class.svg new file mode 100644 index 0000000..e65d2a1 --- /dev/null +++ b/src/icons/aws/resource/res-database/res-dynamodb-standard-infrequent-access-table-class.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Database/Res_Amazon-DynamoDB_Standard-Infrequent-Access-Table-Class_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-database/res-dynamodb-stream.svg b/src/icons/aws/resource/res-database/res-dynamodb-stream.svg new file mode 100644 index 0000000..e3fdb67 --- /dev/null +++ b/src/icons/aws/resource/res-database/res-dynamodb-stream.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Database/Res_Amazon-DynamoDB_Stream_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-database/res-dynamodb-table.svg b/src/icons/aws/resource/res-database/res-dynamodb-table.svg new file mode 100644 index 0000000..f18247e --- /dev/null +++ b/src/icons/aws/resource/res-database/res-dynamodb-table.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Database/Res_Amazon-DynamoDB_Table_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-database/res-elasticache-cache-node.svg b/src/icons/aws/resource/res-database/res-elasticache-cache-node.svg new file mode 100644 index 0000000..e98bdc7 --- /dev/null +++ b/src/icons/aws/resource/res-database/res-elasticache-cache-node.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Database/Res_Amazon-ElastiCache_Cache-Node_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-database/res-elasticache-elasticache-for-memcached.svg b/src/icons/aws/resource/res-database/res-elasticache-elasticache-for-memcached.svg new file mode 100644 index 0000000..2485a28 --- /dev/null +++ b/src/icons/aws/resource/res-database/res-elasticache-elasticache-for-memcached.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Database/Res_Amazon-ElastiCache_ElastiCache-for-Memcached_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-database/res-elasticache-elasticache-for-redis.svg b/src/icons/aws/resource/res-database/res-elasticache-elasticache-for-redis.svg new file mode 100644 index 0000000..b3175cd --- /dev/null +++ b/src/icons/aws/resource/res-database/res-elasticache-elasticache-for-redis.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Database/Res_Amazon-ElastiCache_ElastiCache-for-Redis_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-database/res-elasticache-elasticache-for-valkey.svg b/src/icons/aws/resource/res-database/res-elasticache-elasticache-for-valkey.svg new file mode 100644 index 0000000..61a78d9 --- /dev/null +++ b/src/icons/aws/resource/res-database/res-elasticache-elasticache-for-valkey.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/icons/aws/resource/res-database/res-rds-blue-green-deployments.svg b/src/icons/aws/resource/res-database/res-rds-blue-green-deployments.svg new file mode 100644 index 0000000..a27ec94 --- /dev/null +++ b/src/icons/aws/resource/res-database/res-rds-blue-green-deployments.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Database/Res_Amazon-RDS_Blue-Green-Deployments_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-database/res-rds-multi-az-db-cluster.svg b/src/icons/aws/resource/res-database/res-rds-multi-az-db-cluster.svg new file mode 100644 index 0000000..c0b0444 --- /dev/null +++ b/src/icons/aws/resource/res-database/res-rds-multi-az-db-cluster.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Database/Res_Amazon-RDS_Multi-AZ-DB-Cluster_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-database/res-rds-multi-az.svg b/src/icons/aws/resource/res-database/res-rds-multi-az.svg new file mode 100644 index 0000000..a2135e2 --- /dev/null +++ b/src/icons/aws/resource/res-database/res-rds-multi-az.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Database/Res_Amazon-RDS_Multi-AZ_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-database/res-rds-optimized-writes.svg b/src/icons/aws/resource/res-database/res-rds-optimized-writes.svg new file mode 100644 index 0000000..5d896af --- /dev/null +++ b/src/icons/aws/resource/res-database/res-rds-optimized-writes.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Database/Res_Amazon-RDS_Optimized-Writes_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-database/res-rds-proxy-instance-alternate.svg b/src/icons/aws/resource/res-database/res-rds-proxy-instance-alternate.svg new file mode 100644 index 0000000..be5c110 --- /dev/null +++ b/src/icons/aws/resource/res-database/res-rds-proxy-instance-alternate.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Database/Res_Amazon-RDS-Proxy-Instance-Alternate_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-database/res-rds-proxy-instance.svg b/src/icons/aws/resource/res-database/res-rds-proxy-instance.svg new file mode 100644 index 0000000..7663445 --- /dev/null +++ b/src/icons/aws/resource/res-database/res-rds-proxy-instance.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Database/Res_Amazon-RDS-Proxy-Instance_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-database/res-rds-trusted-language-extensions-for-postgresql.svg b/src/icons/aws/resource/res-database/res-rds-trusted-language-extensions-for-postgresql.svg new file mode 100644 index 0000000..859a21a --- /dev/null +++ b/src/icons/aws/resource/res-database/res-rds-trusted-language-extensions-for-postgresql.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Database/Res_Amazon-RDS_Trusted-Language-Extensions-for-PostgreSQL_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-developer-tools/res-cloud9-cloud9.svg b/src/icons/aws/resource/res-developer-tools/res-cloud9-cloud9.svg new file mode 100644 index 0000000..8c18d42 --- /dev/null +++ b/src/icons/aws/resource/res-developer-tools/res-cloud9-cloud9.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Developer-Tools/Res_AWS-Cloud9_Cloud9_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-end-user-computing/res-workspaces-family-workspaces-core.svg b/src/icons/aws/resource/res-end-user-computing/res-workspaces-family-workspaces-core.svg new file mode 100644 index 0000000..5125419 --- /dev/null +++ b/src/icons/aws/resource/res-end-user-computing/res-workspaces-family-workspaces-core.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/End-User-Computing/Res_Amazon-WorkSpaces-Family_Amazon-WorkSpaces-Core_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-end-user-computing/res-workspaces-family-workspaces-secure-browser.svg b/src/icons/aws/resource/res-end-user-computing/res-workspaces-family-workspaces-secure-browser.svg new file mode 100644 index 0000000..14d3fe1 --- /dev/null +++ b/src/icons/aws/resource/res-end-user-computing/res-workspaces-family-workspaces-secure-browser.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/End-User-Computing/Res_Amazon-WorkSpaces-Family_Amazon-WorkSpaces-Web_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-end-user-computing/res-workspaces-family-workspaces.svg b/src/icons/aws/resource/res-end-user-computing/res-workspaces-family-workspaces.svg new file mode 100644 index 0000000..15835db --- /dev/null +++ b/src/icons/aws/resource/res-end-user-computing/res-workspaces-family-workspaces.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/End-User-Computing/Res_Amazon-WorkSpaces-Family_Amazon-WorkSpaces_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-front-end-web-mobile/res-amplify-amplify-studio.svg b/src/icons/aws/resource/res-front-end-web-mobile/res-amplify-amplify-studio.svg new file mode 100644 index 0000000..6ce2a50 --- /dev/null +++ b/src/icons/aws/resource/res-front-end-web-mobile/res-amplify-amplify-studio.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Front-End-Web-Mobile/Res_AWS-Amplify_AWS-Amplify-Studio_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-front-end-web-mobile/res-location-service-geofence.svg b/src/icons/aws/resource/res-front-end-web-mobile/res-location-service-geofence.svg new file mode 100644 index 0000000..eae76ef --- /dev/null +++ b/src/icons/aws/resource/res-front-end-web-mobile/res-location-service-geofence.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Front-End-Web-Mobile/Res_Amazon-Location-Service_Geofence_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-front-end-web-mobile/res-location-service-map .svg b/src/icons/aws/resource/res-front-end-web-mobile/res-location-service-map .svg new file mode 100644 index 0000000..79b64e9 --- /dev/null +++ b/src/icons/aws/resource/res-front-end-web-mobile/res-location-service-map .svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Front-End-Web-Mobile/Res_Amazon-Location-Service_Map _48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-front-end-web-mobile/res-location-service-place.svg b/src/icons/aws/resource/res-front-end-web-mobile/res-location-service-place.svg new file mode 100644 index 0000000..181f914 --- /dev/null +++ b/src/icons/aws/resource/res-front-end-web-mobile/res-location-service-place.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Front-End-Web-Mobile/Res_Amazon-Location-Service_Place_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-front-end-web-mobile/res-location-service-routes.svg b/src/icons/aws/resource/res-front-end-web-mobile/res-location-service-routes.svg new file mode 100644 index 0000000..df2d814 --- /dev/null +++ b/src/icons/aws/resource/res-front-end-web-mobile/res-location-service-routes.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Front-End-Web-Mobile/Res_Amazon-Location-Service_Routes_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-front-end-web-mobile/res-location-service-track .svg b/src/icons/aws/resource/res-front-end-web-mobile/res-location-service-track .svg new file mode 100644 index 0000000..ec5e67c --- /dev/null +++ b/src/icons/aws/resource/res-front-end-web-mobile/res-location-service-track .svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Front-End-Web-Mobile/Res_Amazon-Location-Service_Track _48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-alert-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-alert-dark.svg new file mode 100644 index 0000000..27ca88a --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-alert-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Alert_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-authenticated-user-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-authenticated-user-dark.svg new file mode 100644 index 0000000..2856739 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-authenticated-user-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Authenticated-User_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-camera-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-camera-dark.svg new file mode 100644 index 0000000..9db22e2 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-camera-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Camera_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-chat-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-chat-dark.svg new file mode 100644 index 0000000..f89d764 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-chat-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Chat_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-client-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-client-dark.svg new file mode 100644 index 0000000..0c6fc90 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-client-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Client_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-cold-storage-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-cold-storage-dark.svg new file mode 100644 index 0000000..6b4fb0a --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-cold-storage-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Cold-Storage_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-credentials-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-credentials-dark.svg new file mode 100644 index 0000000..bbca47c --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-credentials-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Credentials_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-data-stream-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-data-stream-dark.svg new file mode 100644 index 0000000..bed0fce --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-data-stream-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Data-Stream_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-data-table-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-data-table-dark.svg new file mode 100644 index 0000000..07a433d --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-data-table-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Data-Table_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-database-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-database-dark.svg new file mode 100644 index 0000000..ade7c1d --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-database-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Generic-database_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-disk-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-disk-dark.svg new file mode 100644 index 0000000..078fdf2 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-disk-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Disk_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-document-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-document-dark.svg new file mode 100644 index 0000000..6f5eaf6 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-document-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Document_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-documents-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-documents-dark.svg new file mode 100644 index 0000000..458d037 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-documents-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Documents_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-email-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-email-dark.svg new file mode 100644 index 0000000..84a581d --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-email-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Email_48_White + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-firewall-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-firewall-dark.svg new file mode 100644 index 0000000..0752917 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-firewall-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Firewall_48_White + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-folder-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-folder-dark.svg new file mode 100644 index 0000000..b0786cd --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-folder-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Folder_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-folders-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-folders-dark.svg new file mode 100644 index 0000000..2f24aed --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-folders-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Folders_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-forums-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-forums-dark.svg new file mode 100644 index 0000000..dbd139a --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-forums-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Forums_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-gear-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-gear-dark.svg new file mode 100644 index 0000000..e0e0e8b --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-gear-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Gear_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-generic-application-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-generic-application-dark.svg new file mode 100644 index 0000000..aab6e98 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-generic-application-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Generic-Application_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-git-repository-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-git-repository-dark.svg new file mode 100644 index 0000000..a40f467 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-git-repository-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Git-Repository_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-globe-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-globe-dark.svg new file mode 100644 index 0000000..6f5ae02 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-globe-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Globe_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-internet-alt1-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-internet-alt1-dark.svg new file mode 100644 index 0000000..ed6bc48 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-internet-alt1-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Internet-alt1_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-internet-alt2-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-internet-alt2-dark.svg new file mode 100644 index 0000000..f390850 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-internet-alt2-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Internet-alt2_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-internet-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-internet-dark.svg new file mode 100644 index 0000000..c22ef74 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-internet-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Internet_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-json-script-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-json-script-dark.svg new file mode 100644 index 0000000..5d2e768 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-json-script-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_JSON-Script_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-logs-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-logs-dark.svg new file mode 100644 index 0000000..ca74ef5 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-logs-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Logs_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-magnifying-glass-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-magnifying-glass-dark.svg new file mode 100644 index 0000000..f78a6c0 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-magnifying-glass-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Magnifying-Glass_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-management-console-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-management-console-dark.svg new file mode 100644 index 0000000..d406699 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-management-console-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_AWS-Management-Console_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-metrics-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-metrics-dark.svg new file mode 100644 index 0000000..61fbe67 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-metrics-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Metrics_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-mobile-client-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-mobile-client-dark.svg new file mode 100644 index 0000000..aac04f5 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-mobile-client-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Mobile-client_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-multimedia-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-multimedia-dark.svg new file mode 100644 index 0000000..e71b888 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-multimedia-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Multimedia_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-office-building-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-office-building-dark.svg new file mode 100644 index 0000000..5ca3ad3 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-office-building-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Office-building_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-programming-language-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-programming-language-dark.svg new file mode 100644 index 0000000..e31e32d --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-programming-language-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Generic-Programming-Language_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-question-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-question-dark.svg new file mode 100644 index 0000000..f199772 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-question-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Question_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-recover-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-recover-dark.svg new file mode 100644 index 0000000..8356d6b --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-recover-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Recover_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-saml-token-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-saml-token-dark.svg new file mode 100644 index 0000000..4c0f843 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-saml-token-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_SAML-token_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-sdk-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-sdk-dark.svg new file mode 100644 index 0000000..851cbf0 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-sdk-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_SDK_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-server-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-server-dark.svg new file mode 100644 index 0000000..c58107a --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-server-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Traditional-server_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-servers-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-servers-dark.svg new file mode 100644 index 0000000..b826420 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-servers-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Servers_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-shield-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-shield-dark.svg new file mode 100644 index 0000000..f38fe2c --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-shield-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Shield_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-source-code-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-source-code-dark.svg new file mode 100644 index 0000000..e86ff0a --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-source-code-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Source-Code_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-ssl-padlock-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-ssl-padlock-dark.svg new file mode 100644 index 0000000..5d512d3 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-ssl-padlock-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_SSL-padlock_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-tape-storage-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-tape-storage-dark.svg new file mode 100644 index 0000000..eb2d45c --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-tape-storage-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Tape-storage_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-toolkit-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-toolkit-dark.svg new file mode 100644 index 0000000..89b1924 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-toolkit-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Toolkit_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-user-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-user-dark.svg new file mode 100644 index 0000000..a389faa --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-user-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_User_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-dark/res-users-dark.svg b/src/icons/aws/resource/res-general-icons/res-dark/res-users-dark.svg new file mode 100644 index 0000000..b08a4eb --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-dark/res-users-dark.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Users_48_Dark + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-alert-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-alert-light.svg new file mode 100644 index 0000000..3e171ca --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-alert-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Alert_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-authenticated-user-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-authenticated-user-light.svg new file mode 100644 index 0000000..caf80be --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-authenticated-user-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Authenticated-User_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-camera-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-camera-light.svg new file mode 100644 index 0000000..d1b9827 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-camera-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Camera_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-chat-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-chat-light.svg new file mode 100644 index 0000000..fa59beb --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-chat-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Chat_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-client-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-client-light.svg new file mode 100644 index 0000000..1d2ee9b --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-client-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Client_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-cold-storage-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-cold-storage-light.svg new file mode 100644 index 0000000..970e3c6 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-cold-storage-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Cold-Storage_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-credentials-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-credentials-light.svg new file mode 100644 index 0000000..1597cd8 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-credentials-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Credentials_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-data-stream-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-data-stream-light.svg new file mode 100644 index 0000000..7edce12 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-data-stream-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Data-Stream_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-data-table-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-data-table-light.svg new file mode 100644 index 0000000..e2cbc9a --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-data-table-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Data-Table_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-database-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-database-light.svg new file mode 100644 index 0000000..1326447 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-database-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Database_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-disk-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-disk-light.svg new file mode 100644 index 0000000..8752fa9 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-disk-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Disk_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-document-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-document-light.svg new file mode 100644 index 0000000..9077888 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-document-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Document_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-documents-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-documents-light.svg new file mode 100644 index 0000000..90a8c48 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-documents-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Documents_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-email-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-email-light.svg new file mode 100644 index 0000000..81e9cd5 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-email-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Email_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-firewall-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-firewall-light.svg new file mode 100644 index 0000000..f68ac33 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-firewall-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Firewall_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-folder-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-folder-light.svg new file mode 100644 index 0000000..db0cb77 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-folder-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Folder_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-folders-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-folders-light.svg new file mode 100644 index 0000000..f7bc28d --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-folders-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Folders_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-forums-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-forums-light.svg new file mode 100644 index 0000000..af39d8a --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-forums-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Forums_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-gear-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-gear-light.svg new file mode 100644 index 0000000..3d77224 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-gear-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Gear_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-generic-application-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-generic-application-light.svg new file mode 100644 index 0000000..1aa7ac1 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-generic-application-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Generic-Application_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-git-repository-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-git-repository-light.svg new file mode 100644 index 0000000..8c56fb2 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-git-repository-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Git-Repository_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-globe-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-globe-light.svg new file mode 100644 index 0000000..8c3c1b9 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-globe-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Globe_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-internet-alt1-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-internet-alt1-light.svg new file mode 100644 index 0000000..f98a3e9 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-internet-alt1-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Internet-alt1_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-internet-alt2-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-internet-alt2-light.svg new file mode 100644 index 0000000..ddec6e4 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-internet-alt2-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Internet-alt2_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-internet-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-internet-light.svg new file mode 100644 index 0000000..58ac1ec --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-internet-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Internet_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-json-script-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-json-script-light.svg new file mode 100644 index 0000000..13d5948 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-json-script-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_JSON-Script_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-logs-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-logs-light.svg new file mode 100644 index 0000000..c06481a --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-logs-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Logs_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-magnifying-glass-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-magnifying-glass-light.svg new file mode 100644 index 0000000..f8e6504 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-magnifying-glass-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Magnifying-Glass_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-management-console-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-management-console-light.svg new file mode 100644 index 0000000..015a297 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-management-console-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_AWS-Management-Console_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-metrics-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-metrics-light.svg new file mode 100644 index 0000000..2dee39d --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-metrics-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Metrics_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-mobile-client-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-mobile-client-light.svg new file mode 100644 index 0000000..9bdcbe9 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-mobile-client-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Mobile-client_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-multimedia-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-multimedia-light.svg new file mode 100644 index 0000000..3cfc3a7 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-multimedia-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Multimedia_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-office-building-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-office-building-light.svg new file mode 100644 index 0000000..5d6d653 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-office-building-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Office-building_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-programming-language-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-programming-language-light.svg new file mode 100644 index 0000000..1163064 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-programming-language-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Generic-Programming-Language_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-question-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-question-light.svg new file mode 100644 index 0000000..1ed24a7 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-question-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Question_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-recover-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-recover-light.svg new file mode 100644 index 0000000..1d029c3 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-recover-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Recover_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-saml-token-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-saml-token-light.svg new file mode 100644 index 0000000..47ae0e9 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-saml-token-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_SAML-token_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-sdk-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-sdk-light.svg new file mode 100644 index 0000000..bfddee3 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-sdk-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_SDK_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-server-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-server-light.svg new file mode 100644 index 0000000..e394fcf --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-server-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Traditional-server_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-servers-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-servers-light.svg new file mode 100644 index 0000000..0747125 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-servers-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Servers_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-shield-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-shield-light.svg new file mode 100644 index 0000000..d95e896 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-shield-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Shield_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-source-code-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-source-code-light.svg new file mode 100644 index 0000000..a06691a --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-source-code-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Source-Code_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-ssl-padlock-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-ssl-padlock-light.svg new file mode 100644 index 0000000..0b871ce --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-ssl-padlock-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_SSL-padlock_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-tape-storage-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-tape-storage-light.svg new file mode 100644 index 0000000..2810d50 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-tape-storage-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Tape-storage_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-toolkit-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-toolkit-light.svg new file mode 100644 index 0000000..9290bf3 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-toolkit-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Toolkit_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-user-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-user-light.svg new file mode 100644 index 0000000..3242153 --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-user-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_User_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-general-icons/res-light/res-users-light.svg b/src/icons/aws/resource/res-general-icons/res-light/res-users-light.svg new file mode 100644 index 0000000..e24afed --- /dev/null +++ b/src/icons/aws/resource/res-general-icons/res-light/res-users-light.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/General-Resource/Res_Users_48_Light + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-action.svg b/src/icons/aws/resource/res-iot/res-iot-action.svg new file mode 100644 index 0000000..1890e0a --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-action.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Action_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-actuator.svg b/src/icons/aws/resource/res-iot/res-iot-actuator.svg new file mode 100644 index 0000000..9549269 --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-actuator.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Actuator_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-alexa-enabled-device.svg b/src/icons/aws/resource/res-iot/res-iot-alexa-enabled-device.svg new file mode 100644 index 0000000..f1cdbce --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-alexa-enabled-device.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Alexa_Enabled-Device_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-alexa-skill.svg b/src/icons/aws/resource/res-iot/res-iot-alexa-skill.svg new file mode 100644 index 0000000..4187346 --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-alexa-skill.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Alexa_Skill_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-alexa-voice-service.svg b/src/icons/aws/resource/res-iot/res-iot-alexa-voice-service.svg new file mode 100644 index 0000000..35b55be --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-alexa-voice-service.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Alexa_Voice-Service_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-analytics-channel.svg b/src/icons/aws/resource/res-iot/res-iot-analytics-channel.svg new file mode 100644 index 0000000..a3dda0a --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-analytics-channel.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT-Analytics_Channel_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-analytics-data-store.svg b/src/icons/aws/resource/res-iot/res-iot-analytics-data-store.svg new file mode 100644 index 0000000..36ee29d --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-analytics-data-store.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT-Analytics_Data-Store_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-analytics-dataset.svg b/src/icons/aws/resource/res-iot/res-iot-analytics-dataset.svg new file mode 100644 index 0000000..4f63e31 --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-analytics-dataset.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT-Analytics_Dataset_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-analytics-notebook.svg b/src/icons/aws/resource/res-iot/res-iot-analytics-notebook.svg new file mode 100644 index 0000000..81e679d --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-analytics-notebook.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT-Analytics_Notebook_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-analytics-pipeline.svg b/src/icons/aws/resource/res-iot/res-iot-analytics-pipeline.svg new file mode 100644 index 0000000..0ae8f3a --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-analytics-pipeline.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT-Analytics_Pipeline_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-certificate.svg b/src/icons/aws/resource/res-iot/res-iot-certificate.svg new file mode 100644 index 0000000..ad5bb12 --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-certificate.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Certificate_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-core-device-advisor.svg b/src/icons/aws/resource/res-iot/res-iot-core-device-advisor.svg new file mode 100644 index 0000000..97a693b --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-core-device-advisor.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT-Core_Device-Advisor_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-core-device-location.svg b/src/icons/aws/resource/res-iot/res-iot-core-device-location.svg new file mode 100644 index 0000000..b5d1e2f --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-core-device-location.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT-Core_Device-Location_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-desired-state.svg b/src/icons/aws/resource/res-iot/res-iot-desired-state.svg new file mode 100644 index 0000000..eb1fb80 --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-desired-state.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Desired-State_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-device-defender-iot-device-jobs.svg b/src/icons/aws/resource/res-iot/res-iot-device-defender-iot-device-jobs.svg new file mode 100644 index 0000000..f9812f1 --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-device-defender-iot-device-jobs.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT-Device-Defender_IoT-Device-Jobs_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-device-gateway.svg b/src/icons/aws/resource/res-iot/res-iot-device-gateway.svg new file mode 100644 index 0000000..2e818d5 --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-device-gateway.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Device-Gateway_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-device-management-fleet-hub.svg b/src/icons/aws/resource/res-iot/res-iot-device-management-fleet-hub.svg new file mode 100644 index 0000000..a89568a --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-device-management-fleet-hub.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT-Device-Management_Fleet-Hub_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-device-tester.svg b/src/icons/aws/resource/res-iot/res-iot-device-tester.svg new file mode 100644 index 0000000..2a39f0a --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-device-tester.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT-Device-Tester_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-echo.svg b/src/icons/aws/resource/res-iot/res-iot-echo.svg new file mode 100644 index 0000000..fa4dc55 --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-echo.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Echo_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-fire-tv-stick.svg b/src/icons/aws/resource/res-iot/res-iot-fire-tv-stick.svg new file mode 100644 index 0000000..812baea --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-fire-tv-stick.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Fire-TV_Stick_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-fire-tv.svg b/src/icons/aws/resource/res-iot/res-iot-fire-tv.svg new file mode 100644 index 0000000..c19e7aa --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-fire-tv.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Fire_TV_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-greengrass-artifact.svg b/src/icons/aws/resource/res-iot/res-iot-greengrass-artifact.svg new file mode 100644 index 0000000..a625f31 --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-greengrass-artifact.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT-Greengrass_Artifact_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-greengrass-component-machine-learning.svg b/src/icons/aws/resource/res-iot/res-iot-greengrass-component-machine-learning.svg new file mode 100644 index 0000000..b83d67c --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-greengrass-component-machine-learning.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT-Greengrass_Component-Machine-Learning_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-greengrass-component-nucleus.svg b/src/icons/aws/resource/res-iot/res-iot-greengrass-component-nucleus.svg new file mode 100644 index 0000000..60c106c --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-greengrass-component-nucleus.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT-Greengrass_Component-Nucleus_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-greengrass-component-private.svg b/src/icons/aws/resource/res-iot/res-iot-greengrass-component-private.svg new file mode 100644 index 0000000..7fea146 --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-greengrass-component-private.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT-Greengrass_Component-Private_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-greengrass-component-public.svg b/src/icons/aws/resource/res-iot/res-iot-greengrass-component-public.svg new file mode 100644 index 0000000..3097986 --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-greengrass-component-public.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT-Greengrass_Component-Public_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-greengrass-component.svg b/src/icons/aws/resource/res-iot/res-iot-greengrass-component.svg new file mode 100644 index 0000000..78b4676 --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-greengrass-component.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT-Greengrass_Component_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-greengrass-connector.svg b/src/icons/aws/resource/res-iot/res-iot-greengrass-connector.svg new file mode 100644 index 0000000..eac1661 --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-greengrass-connector.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT-Greengrass_Connector_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-greengrass-interprocess-communication.svg b/src/icons/aws/resource/res-iot/res-iot-greengrass-interprocess-communication.svg new file mode 100644 index 0000000..f435024 --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-greengrass-interprocess-communication.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT-Greengrass_Interprocess-Communication_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-greengrass-protocol.svg b/src/icons/aws/resource/res-iot/res-iot-greengrass-protocol.svg new file mode 100644 index 0000000..e3002ca --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-greengrass-protocol.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT-Greengrass_Protocol_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-greengrass-recipe.svg b/src/icons/aws/resource/res-iot/res-iot-greengrass-recipe.svg new file mode 100644 index 0000000..79d377b --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-greengrass-recipe.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT-Greengrass_Recipe_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-greengrass-stream-manager.svg b/src/icons/aws/resource/res-iot/res-iot-greengrass-stream-manager.svg new file mode 100644 index 0000000..2b07522 --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-greengrass-stream-manager.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT-Greengrass_Stream-Manager_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-hardware-board.svg b/src/icons/aws/resource/res-iot/res-iot-hardware-board.svg new file mode 100644 index 0000000..28bb692 --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-hardware-board.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT-Hardware-Board_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-http-protocol.svg b/src/icons/aws/resource/res-iot/res-iot-http-protocol.svg new file mode 100644 index 0000000..2ad8fe7 --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-http-protocol.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_HTTP_Protocol_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-http2-protocol.svg b/src/icons/aws/resource/res-iot/res-iot-http2-protocol.svg new file mode 100644 index 0000000..4df6cea --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-http2-protocol.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_HTTP2-Protocol_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-lambda-function.svg b/src/icons/aws/resource/res-iot/res-iot-lambda-function.svg new file mode 100644 index 0000000..152b70d --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-lambda-function.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Lambda_Function_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-lorawan-protocol.svg b/src/icons/aws/resource/res-iot/res-iot-lorawan-protocol.svg new file mode 100644 index 0000000..54d9346 --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-lorawan-protocol.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_LoRaWAN-Protocol_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-mqtt-protocol.svg b/src/icons/aws/resource/res-iot/res-iot-mqtt-protocol.svg new file mode 100644 index 0000000..51bd7e8 --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-mqtt-protocol.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_MQTT_Protocol_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-over-air-update.svg b/src/icons/aws/resource/res-iot/res-iot-over-air-update.svg new file mode 100644 index 0000000..5fbf6d8 --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-over-air-update.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Over-Air-Update_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-policy.svg b/src/icons/aws/resource/res-iot/res-iot-policy.svg new file mode 100644 index 0000000..379e17c --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-policy.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Policy_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-reported-state.svg b/src/icons/aws/resource/res-iot/res-iot-reported-state.svg new file mode 100644 index 0000000..bb1a4dc --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-reported-state.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Reported-State_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-rule.svg b/src/icons/aws/resource/res-iot/res-iot-rule.svg new file mode 100644 index 0000000..5c20a1a --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-rule.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT-Rule_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-sailboat.svg b/src/icons/aws/resource/res-iot/res-iot-sailboat.svg new file mode 100644 index 0000000..025d1d0 --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-sailboat.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Sailboat_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-sensor.svg b/src/icons/aws/resource/res-iot/res-iot-sensor.svg new file mode 100644 index 0000000..63d7ef6 --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-sensor.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Sensor_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-servo.svg b/src/icons/aws/resource/res-iot/res-iot-servo.svg new file mode 100644 index 0000000..4214b76 --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-servo.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Servo_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-shadow.svg b/src/icons/aws/resource/res-iot/res-iot-shadow.svg new file mode 100644 index 0000000..78a08e6 --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-shadow.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Shadow_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-simulator.svg b/src/icons/aws/resource/res-iot/res-iot-simulator.svg new file mode 100644 index 0000000..f0e7fc4 --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-simulator.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Simulator_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-sitewise-asset-hiery.svg b/src/icons/aws/resource/res-iot/res-iot-sitewise-asset-hiery.svg new file mode 100644 index 0000000..c3092ec --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-sitewise-asset-hiery.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT-SiteWise_Asset-Hierarchy_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-sitewise-asset-model.svg b/src/icons/aws/resource/res-iot/res-iot-sitewise-asset-model.svg new file mode 100644 index 0000000..ccfabae --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-sitewise-asset-model.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT-SiteWise_Asset-Model_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-sitewise-asset-properties.svg b/src/icons/aws/resource/res-iot/res-iot-sitewise-asset-properties.svg new file mode 100644 index 0000000..30dc32a --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-sitewise-asset-properties.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT-SiteWise_Asset-Properties_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-sitewise-asset.svg b/src/icons/aws/resource/res-iot/res-iot-sitewise-asset.svg new file mode 100644 index 0000000..a9159cb --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-sitewise-asset.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT-SiteWise_Asset_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-sitewise-data-streams.svg b/src/icons/aws/resource/res-iot/res-iot-sitewise-data-streams.svg new file mode 100644 index 0000000..ef4a7bf --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-sitewise-data-streams.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT-SiteWise_Data-Streams_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-thing-bank.svg b/src/icons/aws/resource/res-iot/res-iot-thing-bank.svg new file mode 100644 index 0000000..0f482a2 --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-thing-bank.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Thing_Bank_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-thing-bicycle.svg b/src/icons/aws/resource/res-iot/res-iot-thing-bicycle.svg new file mode 100644 index 0000000..f21ca7a --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-thing-bicycle.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Thing_Bicycle_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-thing-camera.svg b/src/icons/aws/resource/res-iot/res-iot-thing-camera.svg new file mode 100644 index 0000000..ca8afdc --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-thing-camera.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Thing_Camera_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-thing-car.svg b/src/icons/aws/resource/res-iot/res-iot-thing-car.svg new file mode 100644 index 0000000..1269dfb --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-thing-car.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Thing_Car_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-thing-cart.svg b/src/icons/aws/resource/res-iot/res-iot-thing-cart.svg new file mode 100644 index 0000000..cb92898 --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-thing-cart.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Thing_Cart_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-thing-coffee-pot.svg b/src/icons/aws/resource/res-iot/res-iot-thing-coffee-pot.svg new file mode 100644 index 0000000..d18643a --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-thing-coffee-pot.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Thing_Coffee-Pot_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-thing-door-lock.svg b/src/icons/aws/resource/res-iot/res-iot-thing-door-lock.svg new file mode 100644 index 0000000..e0dc3bb --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-thing-door-lock.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Thing_Door-Lock_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-thing-factory.svg b/src/icons/aws/resource/res-iot/res-iot-thing-factory.svg new file mode 100644 index 0000000..7ed04e9 --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-thing-factory.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Thing_Factory_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-thing-freertos-device.svg b/src/icons/aws/resource/res-iot/res-iot-thing-freertos-device.svg new file mode 100644 index 0000000..c4ca685 --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-thing-freertos-device.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Thing_FreeRTOS-Device_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-thing-generic.svg b/src/icons/aws/resource/res-iot/res-iot-thing-generic.svg new file mode 100644 index 0000000..2a44138 --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-thing-generic.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Thing_Generic_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-thing-house.svg b/src/icons/aws/resource/res-iot/res-iot-thing-house.svg new file mode 100644 index 0000000..468a49a --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-thing-house.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Thing_House_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-thing-humidity-sensor.svg b/src/icons/aws/resource/res-iot/res-iot-thing-humidity-sensor.svg new file mode 100644 index 0000000..7d0a3bf --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-thing-humidity-sensor.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Thing_Humidity-Sensor_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-thing-industrial-pc.svg b/src/icons/aws/resource/res-iot/res-iot-thing-industrial-pc.svg new file mode 100644 index 0000000..e921e8d --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-thing-industrial-pc.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Thing_Industrial-PC_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-thing-lightbulb.svg b/src/icons/aws/resource/res-iot/res-iot-thing-lightbulb.svg new file mode 100644 index 0000000..99aabb7 --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-thing-lightbulb.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Thing_Lightbulb_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-thing-medical-emergency.svg b/src/icons/aws/resource/res-iot/res-iot-thing-medical-emergency.svg new file mode 100644 index 0000000..18f9ef6 --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-thing-medical-emergency.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Thing_Medical-Emergency_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-thing-plc.svg b/src/icons/aws/resource/res-iot/res-iot-thing-plc.svg new file mode 100644 index 0000000..9c926b9 --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-thing-plc.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Thing_PLC_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-thing-police-emergency.svg b/src/icons/aws/resource/res-iot/res-iot-thing-police-emergency.svg new file mode 100644 index 0000000..62ab29c --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-thing-police-emergency.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Thing_Police-Emergency_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-thing-relay.svg b/src/icons/aws/resource/res-iot/res-iot-thing-relay.svg new file mode 100644 index 0000000..9e9fdc2 --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-thing-relay.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Thing_Relay_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-thing-stacklight.svg b/src/icons/aws/resource/res-iot/res-iot-thing-stacklight.svg new file mode 100644 index 0000000..c9d4176 --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-thing-stacklight.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Thing_Stacklight_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-thing-temperature-humidity-sensor.svg b/src/icons/aws/resource/res-iot/res-iot-thing-temperature-humidity-sensor.svg new file mode 100644 index 0000000..d39ef15 --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-thing-temperature-humidity-sensor.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Thing_Temperature-Humidity-Sensor_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-thing-temperature-sensor.svg b/src/icons/aws/resource/res-iot/res-iot-thing-temperature-sensor.svg new file mode 100644 index 0000000..24a9b29 --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-thing-temperature-sensor.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Thing_Temperature-Sensor_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-thing-temperature-vibration-sensor.svg b/src/icons/aws/resource/res-iot/res-iot-thing-temperature-vibration-sensor.svg new file mode 100644 index 0000000..fc352f1 --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-thing-temperature-vibration-sensor.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Thing_Temperature-Vibration-Sensor_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-thing-thermostat.svg b/src/icons/aws/resource/res-iot/res-iot-thing-thermostat.svg new file mode 100644 index 0000000..416cec0 --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-thing-thermostat.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Thing_Thermostat_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-thing-travel.svg b/src/icons/aws/resource/res-iot/res-iot-thing-travel.svg new file mode 100644 index 0000000..88d82de --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-thing-travel.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Thing_Travel_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-thing-utility.svg b/src/icons/aws/resource/res-iot/res-iot-thing-utility.svg new file mode 100644 index 0000000..df7c553 --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-thing-utility.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Thing_Utility_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-thing-vibration-sensor.svg b/src/icons/aws/resource/res-iot/res-iot-thing-vibration-sensor.svg new file mode 100644 index 0000000..84c08ba --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-thing-vibration-sensor.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Thing_Vibration-Sensor_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-thing-windfarm.svg b/src/icons/aws/resource/res-iot/res-iot-thing-windfarm.svg new file mode 100644 index 0000000..f65c667 --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-thing-windfarm.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Thing_Windfarm_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-iot/res-iot-topic.svg b/src/icons/aws/resource/res-iot/res-iot-topic.svg new file mode 100644 index 0000000..6b83604 --- /dev/null +++ b/src/icons/aws/resource/res-iot/res-iot-topic.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/IoT/Res_AWS-IoT_Topic_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-management-governance/res-cloudformation-change-set.svg b/src/icons/aws/resource/res-management-governance/res-cloudformation-change-set.svg new file mode 100644 index 0000000..f7e71e2 --- /dev/null +++ b/src/icons/aws/resource/res-management-governance/res-cloudformation-change-set.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Management-Governance/Res_AWS-CloudFormation_Change-Set_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-management-governance/res-cloudformation-stack.svg b/src/icons/aws/resource/res-management-governance/res-cloudformation-stack.svg new file mode 100644 index 0000000..fe1f6a1 --- /dev/null +++ b/src/icons/aws/resource/res-management-governance/res-cloudformation-stack.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Management-Governance/Res_AWS-CloudFormation_Stack_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-management-governance/res-cloudformation-template.svg b/src/icons/aws/resource/res-management-governance/res-cloudformation-template.svg new file mode 100644 index 0000000..52f1196 --- /dev/null +++ b/src/icons/aws/resource/res-management-governance/res-cloudformation-template.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Management-Governance/Res_AWS-CloudFormation_Template_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-management-governance/res-cloudtrail-cloudtrail-lake.svg b/src/icons/aws/resource/res-management-governance/res-cloudtrail-cloudtrail-lake.svg new file mode 100644 index 0000000..c3f212e --- /dev/null +++ b/src/icons/aws/resource/res-management-governance/res-cloudtrail-cloudtrail-lake.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Management-Governance/Res_AWS-CloudTrail_CloudTrail-Lake_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-management-governance/res-cloudwatch-alarm.svg b/src/icons/aws/resource/res-management-governance/res-cloudwatch-alarm.svg new file mode 100644 index 0000000..3e0db66 --- /dev/null +++ b/src/icons/aws/resource/res-management-governance/res-cloudwatch-alarm.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Management-Governance/Res_Amazon-CloudWatch_Alarm_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-management-governance/res-cloudwatch-cross-account-observability.svg b/src/icons/aws/resource/res-management-governance/res-cloudwatch-cross-account-observability.svg new file mode 100644 index 0000000..e7a80c3 --- /dev/null +++ b/src/icons/aws/resource/res-management-governance/res-cloudwatch-cross-account-observability.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Management-Governance/Res_Amazon-CloudWatch_Cross-account-Observability_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-management-governance/res-cloudwatch-data-protection.svg b/src/icons/aws/resource/res-management-governance/res-cloudwatch-data-protection.svg new file mode 100644 index 0000000..d616a65 --- /dev/null +++ b/src/icons/aws/resource/res-management-governance/res-cloudwatch-data-protection.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Management-Governance/Res_Amazon-CloudWatch_Data-Protection_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-management-governance/res-cloudwatch-event-event-based.svg b/src/icons/aws/resource/res-management-governance/res-cloudwatch-event-event-based.svg new file mode 100644 index 0000000..597326c --- /dev/null +++ b/src/icons/aws/resource/res-management-governance/res-cloudwatch-event-event-based.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Management-Governance/Res_Amazon-CloudWatch_Event-Event-Based_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-management-governance/res-cloudwatch-event-time-based.svg b/src/icons/aws/resource/res-management-governance/res-cloudwatch-event-time-based.svg new file mode 100644 index 0000000..4d28f48 --- /dev/null +++ b/src/icons/aws/resource/res-management-governance/res-cloudwatch-event-time-based.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Management-Governance/Res_Amazon-CloudWatch_Event-Time-Based_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-management-governance/res-cloudwatch-evidently.svg b/src/icons/aws/resource/res-management-governance/res-cloudwatch-evidently.svg new file mode 100644 index 0000000..c92dcff --- /dev/null +++ b/src/icons/aws/resource/res-management-governance/res-cloudwatch-evidently.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Management-Governance/Res_Amazon-CloudWatch_Evidently_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-management-governance/res-cloudwatch-logs.svg b/src/icons/aws/resource/res-management-governance/res-cloudwatch-logs.svg new file mode 100644 index 0000000..bcfb802 --- /dev/null +++ b/src/icons/aws/resource/res-management-governance/res-cloudwatch-logs.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Management-Governance/Res_Amazon-CloudWatch_Logs_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-management-governance/res-cloudwatch-metrics-insights.svg b/src/icons/aws/resource/res-management-governance/res-cloudwatch-metrics-insights.svg new file mode 100644 index 0000000..3a33195 --- /dev/null +++ b/src/icons/aws/resource/res-management-governance/res-cloudwatch-metrics-insights.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Management-Governance/Res_Amazon-CloudWatch_Metrics-Insights_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-management-governance/res-cloudwatch-rule.svg b/src/icons/aws/resource/res-management-governance/res-cloudwatch-rule.svg new file mode 100644 index 0000000..5c379d7 --- /dev/null +++ b/src/icons/aws/resource/res-management-governance/res-cloudwatch-rule.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Management-Governance/Res_Amazon-CloudWatch_Rule_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-management-governance/res-cloudwatch-rum.svg b/src/icons/aws/resource/res-management-governance/res-cloudwatch-rum.svg new file mode 100644 index 0000000..55f8115 --- /dev/null +++ b/src/icons/aws/resource/res-management-governance/res-cloudwatch-rum.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Management-Governance/Res_Amazon-CloudWatch_RUM_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-management-governance/res-cloudwatch-synthetics.svg b/src/icons/aws/resource/res-management-governance/res-cloudwatch-synthetics.svg new file mode 100644 index 0000000..f9486b8 --- /dev/null +++ b/src/icons/aws/resource/res-management-governance/res-cloudwatch-synthetics.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Management-Governance/Res_Amazon-CloudWatch_Synthetics_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-management-governance/res-license-manager-application-discovery.svg b/src/icons/aws/resource/res-management-governance/res-license-manager-application-discovery.svg new file mode 100644 index 0000000..473ca3b --- /dev/null +++ b/src/icons/aws/resource/res-management-governance/res-license-manager-application-discovery.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Management-Governance/Res_AWS-License-Manager_Application-Discovery_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-management-governance/res-license-manager-license-blending.svg b/src/icons/aws/resource/res-management-governance/res-license-manager-license-blending.svg new file mode 100644 index 0000000..33b1c70 --- /dev/null +++ b/src/icons/aws/resource/res-management-governance/res-license-manager-license-blending.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Management-Governance/Res_AWS-License-Manager_License-Blending_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-management-governance/res-organizations-account.svg b/src/icons/aws/resource/res-management-governance/res-organizations-account.svg new file mode 100644 index 0000000..db32f73 --- /dev/null +++ b/src/icons/aws/resource/res-management-governance/res-organizations-account.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Management-Governance/Res_AWS-Organizations_Account_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-management-governance/res-organizations-management-account.svg b/src/icons/aws/resource/res-management-governance/res-organizations-management-account.svg new file mode 100644 index 0000000..69e7031 --- /dev/null +++ b/src/icons/aws/resource/res-management-governance/res-organizations-management-account.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Management-Governance/Res_AWS-Organizations_Management-Account_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-management-governance/res-organizations-organizational-unit.svg b/src/icons/aws/resource/res-management-governance/res-organizations-organizational-unit.svg new file mode 100644 index 0000000..4369707 --- /dev/null +++ b/src/icons/aws/resource/res-management-governance/res-organizations-organizational-unit.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Management-Governance/Res_AWS-Organizations_Organizational-Unit_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-management-governance/res-systems-manager-application-manager.svg b/src/icons/aws/resource/res-management-governance/res-systems-manager-application-manager.svg new file mode 100644 index 0000000..2042682 --- /dev/null +++ b/src/icons/aws/resource/res-management-governance/res-systems-manager-application-manager.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Management-Governance/Res_AWS-Systems-Manager_Application-Manager_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-management-governance/res-systems-manager-automation.svg b/src/icons/aws/resource/res-management-governance/res-systems-manager-automation.svg new file mode 100644 index 0000000..b938ce9 --- /dev/null +++ b/src/icons/aws/resource/res-management-governance/res-systems-manager-automation.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Management-Governance/Res_AWS-Systems-Manager_Automation_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-management-governance/res-systems-manager-change-calendar.svg b/src/icons/aws/resource/res-management-governance/res-systems-manager-change-calendar.svg new file mode 100644 index 0000000..f8c8e5b --- /dev/null +++ b/src/icons/aws/resource/res-management-governance/res-systems-manager-change-calendar.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Management-Governance/Res_AWS-Systems-Manager_Change-Calendar_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-management-governance/res-systems-manager-change-manager.svg b/src/icons/aws/resource/res-management-governance/res-systems-manager-change-manager.svg new file mode 100644 index 0000000..fed5315 --- /dev/null +++ b/src/icons/aws/resource/res-management-governance/res-systems-manager-change-manager.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Management-Governance/Res_AWS-Systems-Manager_Change-Manager_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-management-governance/res-systems-manager-compliance.svg b/src/icons/aws/resource/res-management-governance/res-systems-manager-compliance.svg new file mode 100644 index 0000000..4c13551 --- /dev/null +++ b/src/icons/aws/resource/res-management-governance/res-systems-manager-compliance.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Management-Governance/Res_AWS-Systems-Manager_Compliance_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-management-governance/res-systems-manager-distributor.svg b/src/icons/aws/resource/res-management-governance/res-systems-manager-distributor.svg new file mode 100644 index 0000000..b40fcdb --- /dev/null +++ b/src/icons/aws/resource/res-management-governance/res-systems-manager-distributor.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Management-Governance/Res_AWS-Systems-Manager_Distributor_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-management-governance/res-systems-manager-documents.svg b/src/icons/aws/resource/res-management-governance/res-systems-manager-documents.svg new file mode 100644 index 0000000..a3132c9 --- /dev/null +++ b/src/icons/aws/resource/res-management-governance/res-systems-manager-documents.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Management-Governance/Res_AWS-Systems-Manager_Documents_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-management-governance/res-systems-manager-incident-manager.svg b/src/icons/aws/resource/res-management-governance/res-systems-manager-incident-manager.svg new file mode 100644 index 0000000..659a9fe --- /dev/null +++ b/src/icons/aws/resource/res-management-governance/res-systems-manager-incident-manager.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Management-Governance/Res_AWS-Systems-Manager_Incident-Manager_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-management-governance/res-systems-manager-inventory.svg b/src/icons/aws/resource/res-management-governance/res-systems-manager-inventory.svg new file mode 100644 index 0000000..cc14c00 --- /dev/null +++ b/src/icons/aws/resource/res-management-governance/res-systems-manager-inventory.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Management-Governance/Res_AWS-Systems-Manager_Inventory_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-management-governance/res-systems-manager-maintenance-windows.svg b/src/icons/aws/resource/res-management-governance/res-systems-manager-maintenance-windows.svg new file mode 100644 index 0000000..23287fa --- /dev/null +++ b/src/icons/aws/resource/res-management-governance/res-systems-manager-maintenance-windows.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Management-Governance/Res_AWS-Systems-Manager_Maintenance-Windows_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-management-governance/res-systems-manager-opscenter.svg b/src/icons/aws/resource/res-management-governance/res-systems-manager-opscenter.svg new file mode 100644 index 0000000..c879a8d --- /dev/null +++ b/src/icons/aws/resource/res-management-governance/res-systems-manager-opscenter.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Management-Governance/Res_AWS-Systems-Manager_OpsCenter_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-management-governance/res-systems-manager-parameter-store.svg b/src/icons/aws/resource/res-management-governance/res-systems-manager-parameter-store.svg new file mode 100644 index 0000000..de677ce --- /dev/null +++ b/src/icons/aws/resource/res-management-governance/res-systems-manager-parameter-store.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Management-Governance/Res_AWS-Systems-Manager_Parameter-Store_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-management-governance/res-systems-manager-patch-manager.svg b/src/icons/aws/resource/res-management-governance/res-systems-manager-patch-manager.svg new file mode 100644 index 0000000..50f09d5 --- /dev/null +++ b/src/icons/aws/resource/res-management-governance/res-systems-manager-patch-manager.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Management-Governance/Res_AWS-Systems-Manager_Patch-Manager_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-management-governance/res-systems-manager-run-command.svg b/src/icons/aws/resource/res-management-governance/res-systems-manager-run-command.svg new file mode 100644 index 0000000..52ae0e7 --- /dev/null +++ b/src/icons/aws/resource/res-management-governance/res-systems-manager-run-command.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Management-Governance/Res_AWS-Systems-Manager_Run-Command_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-management-governance/res-systems-manager-session-manager.svg b/src/icons/aws/resource/res-management-governance/res-systems-manager-session-manager.svg new file mode 100644 index 0000000..620cb38 --- /dev/null +++ b/src/icons/aws/resource/res-management-governance/res-systems-manager-session-manager.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Management-Governance/Res_AWS-Systems-Manager_Session-Manager_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-management-governance/res-systems-manager-state-manager.svg b/src/icons/aws/resource/res-management-governance/res-systems-manager-state-manager.svg new file mode 100644 index 0000000..dfbd24d --- /dev/null +++ b/src/icons/aws/resource/res-management-governance/res-systems-manager-state-manager.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Management-Governance/Res_AWS-Systems-Manager_State-Manager_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-management-governance/res-trusted-advisor-checklist-cost.svg b/src/icons/aws/resource/res-management-governance/res-trusted-advisor-checklist-cost.svg new file mode 100644 index 0000000..7e455ef --- /dev/null +++ b/src/icons/aws/resource/res-management-governance/res-trusted-advisor-checklist-cost.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Management-Governance/Res_AWS-Trusted-Advisor_Checklist-Cost_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-management-governance/res-trusted-advisor-checklist-fault-tolerant.svg b/src/icons/aws/resource/res-management-governance/res-trusted-advisor-checklist-fault-tolerant.svg new file mode 100644 index 0000000..b4d4469 --- /dev/null +++ b/src/icons/aws/resource/res-management-governance/res-trusted-advisor-checklist-fault-tolerant.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Management-Governance/Res_AWS-Trusted-Advisor_Checklist-Fault-Tolerant_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-management-governance/res-trusted-advisor-checklist-performance.svg b/src/icons/aws/resource/res-management-governance/res-trusted-advisor-checklist-performance.svg new file mode 100644 index 0000000..267bf8b --- /dev/null +++ b/src/icons/aws/resource/res-management-governance/res-trusted-advisor-checklist-performance.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Management-Governance/Res_AWS-Trusted-Advisor_Checklist-Performance_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-management-governance/res-trusted-advisor-checklist-security.svg b/src/icons/aws/resource/res-management-governance/res-trusted-advisor-checklist-security.svg new file mode 100644 index 0000000..f07ca77 --- /dev/null +++ b/src/icons/aws/resource/res-management-governance/res-trusted-advisor-checklist-security.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Management-Governance/Res_AWS-Trusted-Advisor_Checklist-Security_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-management-governance/res-trusted-advisor-checklist.svg b/src/icons/aws/resource/res-management-governance/res-trusted-advisor-checklist.svg new file mode 100644 index 0000000..b351782 --- /dev/null +++ b/src/icons/aws/resource/res-management-governance/res-trusted-advisor-checklist.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Management-Governance/Res_AWS-Trusted-Advisor_Checklist_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-media-services/res-cloud-digital-interface.svg b/src/icons/aws/resource/res-media-services/res-cloud-digital-interface.svg new file mode 100644 index 0000000..f6fd0cd --- /dev/null +++ b/src/icons/aws/resource/res-media-services/res-cloud-digital-interface.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Media-Services/Res_AWS-Cloud-Digital-Interface_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-media-services/res-elemental-mediaconnect-mediaconnect-gateway.svg b/src/icons/aws/resource/res-media-services/res-elemental-mediaconnect-mediaconnect-gateway.svg new file mode 100644 index 0000000..8813bd8 --- /dev/null +++ b/src/icons/aws/resource/res-media-services/res-elemental-mediaconnect-mediaconnect-gateway.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Media-Services/Res_AWS-Elemental-MediaConnect_Gateway_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-migration-modernization/res-application-discovery-service-agentless-collector.svg b/src/icons/aws/resource/res-migration-modernization/res-application-discovery-service-agentless-collector.svg new file mode 100644 index 0000000..b6ca289 --- /dev/null +++ b/src/icons/aws/resource/res-migration-modernization/res-application-discovery-service-agentless-collector.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Migration-and-Transfer/Res_AWS-Application-Discovery-Service_AWS-Agentless-Collector_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-migration-modernization/res-application-discovery-service-discovery-agent.svg b/src/icons/aws/resource/res-migration-modernization/res-application-discovery-service-discovery-agent.svg new file mode 100644 index 0000000..57e30f2 --- /dev/null +++ b/src/icons/aws/resource/res-migration-modernization/res-application-discovery-service-discovery-agent.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Migration-and-Transfer/Res_AWS-Application-Discovery-Service_AWS-Discovery-Agent_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-migration-modernization/res-application-discovery-service-migration-evaluator-collector.svg b/src/icons/aws/resource/res-migration-modernization/res-application-discovery-service-migration-evaluator-collector.svg new file mode 100644 index 0000000..8fe210b --- /dev/null +++ b/src/icons/aws/resource/res-migration-modernization/res-application-discovery-service-migration-evaluator-collector.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Migration-and-Transfer/Res_AWS-Application-Discovery-Service_Migration-Evaluator-Collector_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-migration-modernization/res-datasync-agent.svg b/src/icons/aws/resource/res-migration-modernization/res-datasync-agent.svg new file mode 100644 index 0000000..605dfe0 --- /dev/null +++ b/src/icons/aws/resource/res-migration-modernization/res-datasync-agent.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Migration-and-Transfer/Res_AWS-Datasync_Agent_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-migration-modernization/res-datasync-discovery.svg b/src/icons/aws/resource/res-migration-modernization/res-datasync-discovery.svg new file mode 100644 index 0000000..5119ae0 --- /dev/null +++ b/src/icons/aws/resource/res-migration-modernization/res-datasync-discovery.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Migration-and-Transfer/Res_AWS-DataSync_Discovery_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-migration-modernization/res-mainframe-modernization-analyzer.svg b/src/icons/aws/resource/res-migration-modernization/res-mainframe-modernization-analyzer.svg new file mode 100644 index 0000000..6bddc6e --- /dev/null +++ b/src/icons/aws/resource/res-migration-modernization/res-mainframe-modernization-analyzer.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Migration-and-Transfer/Res_AWS-Mainframe-Modernization_Analyzer_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-migration-modernization/res-mainframe-modernization-compiler.svg b/src/icons/aws/resource/res-migration-modernization/res-mainframe-modernization-compiler.svg new file mode 100644 index 0000000..385a81e --- /dev/null +++ b/src/icons/aws/resource/res-migration-modernization/res-mainframe-modernization-compiler.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Migration-and-Transfer/Res_AWS-Mainframe-Modernization_Compiler_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-migration-modernization/res-mainframe-modernization-converter.svg b/src/icons/aws/resource/res-migration-modernization/res-mainframe-modernization-converter.svg new file mode 100644 index 0000000..695ff04 --- /dev/null +++ b/src/icons/aws/resource/res-migration-modernization/res-mainframe-modernization-converter.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Migration-and-Transfer/Res_AWS-Mainframe-Modernization_Converter_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-migration-modernization/res-mainframe-modernization-developer.svg b/src/icons/aws/resource/res-migration-modernization/res-mainframe-modernization-developer.svg new file mode 100644 index 0000000..efc38f6 --- /dev/null +++ b/src/icons/aws/resource/res-migration-modernization/res-mainframe-modernization-developer.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Migration-and-Transfer/Res_AWS-Mainframe-Modernization_Developer_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-migration-modernization/res-mainframe-modernization-runtime.svg b/src/icons/aws/resource/res-migration-modernization/res-mainframe-modernization-runtime.svg new file mode 100644 index 0000000..2a6c388 --- /dev/null +++ b/src/icons/aws/resource/res-migration-modernization/res-mainframe-modernization-runtime.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Migration-and-Transfer/Res_AWS-Mainframe-Modernization_Runtime_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-migration-modernization/res-migration-hub-refactor-spaces-applications.svg b/src/icons/aws/resource/res-migration-modernization/res-migration-hub-refactor-spaces-applications.svg new file mode 100644 index 0000000..63250cb --- /dev/null +++ b/src/icons/aws/resource/res-migration-modernization/res-migration-hub-refactor-spaces-applications.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Migration-and-Transfer/Res_AWS-Migration-Hub_Refactor-Spaces-Applications_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-migration-modernization/res-migration-hub-refactor-spaces-environments.svg b/src/icons/aws/resource/res-migration-modernization/res-migration-hub-refactor-spaces-environments.svg new file mode 100644 index 0000000..30aa516 --- /dev/null +++ b/src/icons/aws/resource/res-migration-modernization/res-migration-hub-refactor-spaces-environments.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Migration-and-Transfer/Res_AWS-Migration-Hub_Refactor-Spaces-Environments_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-migration-modernization/res-migration-hub-refactor-spaces-services.svg b/src/icons/aws/resource/res-migration-modernization/res-migration-hub-refactor-spaces-services.svg new file mode 100644 index 0000000..fdb647d --- /dev/null +++ b/src/icons/aws/resource/res-migration-modernization/res-migration-hub-refactor-spaces-services.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Migration-and-Transfer/Res_AWS-Migration-Hub_Refactor-Spaces-Services_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-migration-modernization/res-transfer-family-as2.svg b/src/icons/aws/resource/res-migration-modernization/res-transfer-family-as2.svg new file mode 100644 index 0000000..bcf2fd0 --- /dev/null +++ b/src/icons/aws/resource/res-migration-modernization/res-transfer-family-as2.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Migration-and-Transfer/Res_AWS-Transfer-Family_AWS-AS2_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-migration-modernization/res-transfer-family-ftp.svg b/src/icons/aws/resource/res-migration-modernization/res-transfer-family-ftp.svg new file mode 100644 index 0000000..92887d8 --- /dev/null +++ b/src/icons/aws/resource/res-migration-modernization/res-transfer-family-ftp.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Migration-and-Transfer/Res_AWS-Transfer-Family_AWS-FTP_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-migration-modernization/res-transfer-family-ftps.svg b/src/icons/aws/resource/res-migration-modernization/res-transfer-family-ftps.svg new file mode 100644 index 0000000..91abc6a --- /dev/null +++ b/src/icons/aws/resource/res-migration-modernization/res-transfer-family-ftps.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Migration-and-Transfer/Res_AWS-Transfer-Family_AWS-FTPS_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-migration-modernization/res-transfer-family-sftp.svg b/src/icons/aws/resource/res-migration-modernization/res-transfer-family-sftp.svg new file mode 100644 index 0000000..6b1374e --- /dev/null +++ b/src/icons/aws/resource/res-migration-modernization/res-transfer-family-sftp.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Migration-and-Transfer/Res_AWS-Transfer-Family_AWS-SFTP_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-api-gateway-endpoint.svg b/src/icons/aws/resource/res-networking-content-delivery/res-api-gateway-endpoint.svg new file mode 100644 index 0000000..9693f88 --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-api-gateway-endpoint.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-app-mesh-mesh.svg b/src/icons/aws/resource/res-networking-content-delivery/res-app-mesh-mesh.svg new file mode 100644 index 0000000..be70d73 --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-app-mesh-mesh.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_AWS-App-Mesh_Mesh_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-app-mesh-virtual-gateway.svg b/src/icons/aws/resource/res-networking-content-delivery/res-app-mesh-virtual-gateway.svg new file mode 100644 index 0000000..2601e65 --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-app-mesh-virtual-gateway.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_AWS-App-Mesh_Virtual-Gateway_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-app-mesh-virtual-node.svg b/src/icons/aws/resource/res-networking-content-delivery/res-app-mesh-virtual-node.svg new file mode 100644 index 0000000..c8b45db --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-app-mesh-virtual-node.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_AWS-App-Mesh_Virtual-Node_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-app-mesh-virtual-router.svg b/src/icons/aws/resource/res-networking-content-delivery/res-app-mesh-virtual-router.svg new file mode 100644 index 0000000..8907fd1 --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-app-mesh-virtual-router.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_AWS-App-Mesh_Virtual-Router_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-app-mesh-virtual-service.svg b/src/icons/aws/resource/res-networking-content-delivery/res-app-mesh-virtual-service.svg new file mode 100644 index 0000000..d1a7731 --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-app-mesh-virtual-service.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_AWS-App-Mesh_Virtual-Service_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-cloud-map-namespace.svg b/src/icons/aws/resource/res-networking-content-delivery/res-cloud-map-namespace.svg new file mode 100644 index 0000000..216a9bc --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-cloud-map-namespace.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_AWS-Cloud-Map_Namespace_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-cloud-map-resource.svg b/src/icons/aws/resource/res-networking-content-delivery/res-cloud-map-resource.svg new file mode 100644 index 0000000..eb813b9 --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-cloud-map-resource.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_AWS-Cloud-Map_Resource_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-cloud-map-service.svg b/src/icons/aws/resource/res-networking-content-delivery/res-cloud-map-service.svg new file mode 100644 index 0000000..1e5a85a --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-cloud-map-service.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_AWS-Cloud-Map_Service_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-cloud-wan-core-network-edge.svg b/src/icons/aws/resource/res-networking-content-delivery/res-cloud-wan-core-network-edge.svg new file mode 100644 index 0000000..cc82054 --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-cloud-wan-core-network-edge.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_AWS-Cloud-WAN_Core-Network-Edge_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-cloud-wan-segment-network.svg b/src/icons/aws/resource/res-networking-content-delivery/res-cloud-wan-segment-network.svg new file mode 100644 index 0000000..41d4824 --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-cloud-wan-segment-network.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_AWS-Cloud-WAN_Segment-Network_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-cloud-wan-transit-gateway-route-table-attachment.svg b/src/icons/aws/resource/res-networking-content-delivery/res-cloud-wan-transit-gateway-route-table-attachment.svg new file mode 100644 index 0000000..6df5144 --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-cloud-wan-transit-gateway-route-table-attachment.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_AWS-Cloud-WAN_Transit-Gateway-Route-Table-Attachment_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-cloudfront-download-distribution.svg b/src/icons/aws/resource/res-networking-content-delivery/res-cloudfront-download-distribution.svg new file mode 100644 index 0000000..346efff --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-cloudfront-download-distribution.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_Amazon-CloudFront_Download-Distribution_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-cloudfront-edge-location.svg b/src/icons/aws/resource/res-networking-content-delivery/res-cloudfront-edge-location.svg new file mode 100644 index 0000000..c9f74c1 --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-cloudfront-edge-location.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_Amazon-CloudFront_Edge-Location_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-cloudfront-functions.svg b/src/icons/aws/resource/res-networking-content-delivery/res-cloudfront-functions.svg new file mode 100644 index 0000000..685ce36 --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-cloudfront-functions.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_Amazon-CloudFront_Functions_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-cloudfront-streaming-distribution.svg b/src/icons/aws/resource/res-networking-content-delivery/res-cloudfront-streaming-distribution.svg new file mode 100644 index 0000000..1c0efde --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-cloudfront-streaming-distribution.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_Amazon-CloudFront_Streaming-Distribution_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-direct-connect-gateway.svg b/src/icons/aws/resource/res-networking-content-delivery/res-direct-connect-gateway.svg new file mode 100644 index 0000000..4e0e666 --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-direct-connect-gateway.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_AWS-Direct-Connect_Gateway_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-elastic-load-balancing-application-load-balancer.svg b/src/icons/aws/resource/res-networking-content-delivery/res-elastic-load-balancing-application-load-balancer.svg new file mode 100644 index 0000000..992c502 --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-elastic-load-balancing-application-load-balancer.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_Elastic-Load-Balancing_Application-Load-Balancer_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-elastic-load-balancing-classic-load-balancer.svg b/src/icons/aws/resource/res-networking-content-delivery/res-elastic-load-balancing-classic-load-balancer.svg new file mode 100644 index 0000000..ff11010 --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-elastic-load-balancing-classic-load-balancer.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_Elastic-Load-Balancing_Classic-Load-Balancer_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-elastic-load-balancing-gateway-load-balancer.svg b/src/icons/aws/resource/res-networking-content-delivery/res-elastic-load-balancing-gateway-load-balancer.svg new file mode 100644 index 0000000..a20314a --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-elastic-load-balancing-gateway-load-balancer.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_Elastic-Load-Balancing_Gateway-Load-Balancer_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-elastic-load-balancing-network-load-balancer.svg b/src/icons/aws/resource/res-networking-content-delivery/res-elastic-load-balancing-network-load-balancer.svg new file mode 100644 index 0000000..bb6b4f0 --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-elastic-load-balancing-network-load-balancer.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_Elastic-Load-Balancing_Network-Load-Balancer_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-route-53-hosted-zone.svg b/src/icons/aws/resource/res-networking-content-delivery/res-route-53-hosted-zone.svg new file mode 100644 index 0000000..40bf3a5 --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-route-53-hosted-zone.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_Amazon-Route-53-Hosted-Zone_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-route-53-readiness-checks.svg b/src/icons/aws/resource/res-networking-content-delivery/res-route-53-readiness-checks.svg new file mode 100644 index 0000000..1a42c68 --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-route-53-readiness-checks.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_Amazon-Route-53_Readiness-Checks_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-route-53-resolver-dns-firewall.svg b/src/icons/aws/resource/res-networking-content-delivery/res-route-53-resolver-dns-firewall.svg new file mode 100644 index 0000000..fe3b5d9 --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-route-53-resolver-dns-firewall.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_Amazon-Route-53_Resolver-DNS-Firewall_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-route-53-resolver-query-logging.svg b/src/icons/aws/resource/res-networking-content-delivery/res-route-53-resolver-query-logging.svg new file mode 100644 index 0000000..af11c14 --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-route-53-resolver-query-logging.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_Amazon-Route-53_Resolver-Query-Logging_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-route-53-resolver.svg b/src/icons/aws/resource/res-networking-content-delivery/res-route-53-resolver.svg new file mode 100644 index 0000000..1f09b94 --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-route-53-resolver.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_Amazon-Route-53_Resolver_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-route-53-route-table.svg b/src/icons/aws/resource/res-networking-content-delivery/res-route-53-route-table.svg new file mode 100644 index 0000000..e69d860 --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-route-53-route-table.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_Amazon-Route-53_Route-Table_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-route-53-routing-controls.svg b/src/icons/aws/resource/res-networking-content-delivery/res-route-53-routing-controls.svg new file mode 100644 index 0000000..1b99eb0 --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-route-53-routing-controls.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_Amazon-Route-53_Routing-Controls_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-transit-gateway-attachment.svg b/src/icons/aws/resource/res-networking-content-delivery/res-transit-gateway-attachment.svg new file mode 100644 index 0000000..32975fc --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-transit-gateway-attachment.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_AWS-Transit-Gateway_Attachment_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-vpc-carrier-gateway.svg b/src/icons/aws/resource/res-networking-content-delivery/res-vpc-carrier-gateway.svg new file mode 100644 index 0000000..6cf8ec8 --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-vpc-carrier-gateway.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_Amazon-VPC_Carrier-Gateway_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-vpc-customer-gateway.svg b/src/icons/aws/resource/res-networking-content-delivery/res-vpc-customer-gateway.svg new file mode 100644 index 0000000..b950c28 --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-vpc-customer-gateway.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_Amazon-VPC_Customer-Gateway_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-vpc-elastic-network-adapter.svg b/src/icons/aws/resource/res-networking-content-delivery/res-vpc-elastic-network-adapter.svg new file mode 100644 index 0000000..d2624d1 --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-vpc-elastic-network-adapter.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_Amazon-VPC_Elastic-Network-Adapter_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-vpc-elastic-network-interface.svg b/src/icons/aws/resource/res-networking-content-delivery/res-vpc-elastic-network-interface.svg new file mode 100644 index 0000000..fecee3b --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-vpc-elastic-network-interface.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_Amazon-VPC_Elastic-Network-Interface_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-vpc-endpoints.svg b/src/icons/aws/resource/res-networking-content-delivery/res-vpc-endpoints.svg new file mode 100644 index 0000000..4ec585f --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-vpc-endpoints.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_Amazon-VPC_Endpoints_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-vpc-flow-logs.svg b/src/icons/aws/resource/res-networking-content-delivery/res-vpc-flow-logs.svg new file mode 100644 index 0000000..2fddce0 --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-vpc-flow-logs.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_Amazon-VPC_Flow-Logs_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-vpc-internet-gateway.svg b/src/icons/aws/resource/res-networking-content-delivery/res-vpc-internet-gateway.svg new file mode 100644 index 0000000..8d35e22 --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-vpc-internet-gateway.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_Amazon-VPC_Internet-Gateway_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-vpc-nat-gateway.svg b/src/icons/aws/resource/res-networking-content-delivery/res-vpc-nat-gateway.svg new file mode 100644 index 0000000..cace689 --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-vpc-nat-gateway.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_Amazon-VPC_NAT-Gateway_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-vpc-network-access-analyzer.svg b/src/icons/aws/resource/res-networking-content-delivery/res-vpc-network-access-analyzer.svg new file mode 100644 index 0000000..e44bf7c --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-vpc-network-access-analyzer.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_Amazon-VPC_Network-Access-Analyzer_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-vpc-network-access-control-list.svg b/src/icons/aws/resource/res-networking-content-delivery/res-vpc-network-access-control-list.svg new file mode 100644 index 0000000..71c4366 --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-vpc-network-access-control-list.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_Amazon-VPC_Network-Access-Control-List_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-vpc-peering-connection.svg b/src/icons/aws/resource/res-networking-content-delivery/res-vpc-peering-connection.svg new file mode 100644 index 0000000..f911cd5 --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-vpc-peering-connection.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_Amazon-VPC_Peering-Connection_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-vpc-reachability-analyzer.svg b/src/icons/aws/resource/res-networking-content-delivery/res-vpc-reachability-analyzer.svg new file mode 100644 index 0000000..022030f --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-vpc-reachability-analyzer.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_Amazon-VPC_Reachability-Analyzer_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-vpc-router.svg b/src/icons/aws/resource/res-networking-content-delivery/res-vpc-router.svg new file mode 100644 index 0000000..fbe9148 --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-vpc-router.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_Amazon-VPC_Router_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-vpc-traffic-mirroring.svg b/src/icons/aws/resource/res-networking-content-delivery/res-vpc-traffic-mirroring.svg new file mode 100644 index 0000000..6da1fd0 --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-vpc-traffic-mirroring.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_Amazon-VPC_Traffic-Mirroring_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-vpc-virtual-private-cloud-vpc.svg b/src/icons/aws/resource/res-networking-content-delivery/res-vpc-virtual-private-cloud-vpc.svg new file mode 100644 index 0000000..9770654 --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-vpc-virtual-private-cloud-vpc.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_Amazon-VPC_Virtual-private-cloud-VPC_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-vpc-vpn-connection.svg b/src/icons/aws/resource/res-networking-content-delivery/res-vpc-vpn-connection.svg new file mode 100644 index 0000000..3ecf168 --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-vpc-vpn-connection.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_Amazon-VPC_VPN-Connection_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-networking-content-delivery/res-vpc-vpn-gateway.svg b/src/icons/aws/resource/res-networking-content-delivery/res-vpc-vpn-gateway.svg new file mode 100644 index 0000000..355f59d --- /dev/null +++ b/src/icons/aws/resource/res-networking-content-delivery/res-vpc-vpn-gateway.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Networking-and-Content-Delivery/Res_Amazon-VPC_VPN-Gateway_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-quantum-technologies/res-braket-chandelier.svg b/src/icons/aws/resource/res-quantum-technologies/res-braket-chandelier.svg new file mode 100644 index 0000000..fa8e1f8 --- /dev/null +++ b/src/icons/aws/resource/res-quantum-technologies/res-braket-chandelier.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Quantum-Technologies/Res_Amazon-Braket_Chandelier_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-quantum-technologies/res-braket-chip.svg b/src/icons/aws/resource/res-quantum-technologies/res-braket-chip.svg new file mode 100644 index 0000000..33dd9f2 --- /dev/null +++ b/src/icons/aws/resource/res-quantum-technologies/res-braket-chip.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Quantum-Technologies/Res_Amazon-Braket_Chip_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-quantum-technologies/res-braket-embedded-simulator.svg b/src/icons/aws/resource/res-quantum-technologies/res-braket-embedded-simulator.svg new file mode 100644 index 0000000..e1da6cb --- /dev/null +++ b/src/icons/aws/resource/res-quantum-technologies/res-braket-embedded-simulator.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Quantum-Technologies/Res_Amazon-Braket_Embedded-Simulator_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-quantum-technologies/res-braket-managed-simulator.svg b/src/icons/aws/resource/res-quantum-technologies/res-braket-managed-simulator.svg new file mode 100644 index 0000000..6b229f9 --- /dev/null +++ b/src/icons/aws/resource/res-quantum-technologies/res-braket-managed-simulator.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Quantum-Technologies/Res_Amazon-Braket_Managed-Simulator_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-quantum-technologies/res-braket-noise-simulator.svg b/src/icons/aws/resource/res-quantum-technologies/res-braket-noise-simulator.svg new file mode 100644 index 0000000..aa654df --- /dev/null +++ b/src/icons/aws/resource/res-quantum-technologies/res-braket-noise-simulator.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Quantum-Technologies/Res_Amazon-Braket_Noise-Simulator_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-quantum-technologies/res-braket-qpu.svg b/src/icons/aws/resource/res-quantum-technologies/res-braket-qpu.svg new file mode 100644 index 0000000..3e4adc6 --- /dev/null +++ b/src/icons/aws/resource/res-quantum-technologies/res-braket-qpu.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Quantum-Technologies/Res_Amazon-Braket_QPU_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-quantum-technologies/res-braket-simulator-1.svg b/src/icons/aws/resource/res-quantum-technologies/res-braket-simulator-1.svg new file mode 100644 index 0000000..2d7ea7d --- /dev/null +++ b/src/icons/aws/resource/res-quantum-technologies/res-braket-simulator-1.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Quantum-Technologies/Res_Amazon-Braket_Simulator-1_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-quantum-technologies/res-braket-simulator-2.svg b/src/icons/aws/resource/res-quantum-technologies/res-braket-simulator-2.svg new file mode 100644 index 0000000..9e0d93b --- /dev/null +++ b/src/icons/aws/resource/res-quantum-technologies/res-braket-simulator-2.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Quantum-Technologies/Res_Amazon-Braket_Simulator-2_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-quantum-technologies/res-braket-simulator-3.svg b/src/icons/aws/resource/res-quantum-technologies/res-braket-simulator-3.svg new file mode 100644 index 0000000..921663b --- /dev/null +++ b/src/icons/aws/resource/res-quantum-technologies/res-braket-simulator-3.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Quantum-Technologies/Res_Amazon-Braket_Simulator-3_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-quantum-technologies/res-braket-simulator-4.svg b/src/icons/aws/resource/res-quantum-technologies/res-braket-simulator-4.svg new file mode 100644 index 0000000..bb7e90d --- /dev/null +++ b/src/icons/aws/resource/res-quantum-technologies/res-braket-simulator-4.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Quantum-Technologies/Res_Amazon-Braket_Simulator-4_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-quantum-technologies/res-braket-simulator.svg b/src/icons/aws/resource/res-quantum-technologies/res-braket-simulator.svg new file mode 100644 index 0000000..f99aadf --- /dev/null +++ b/src/icons/aws/resource/res-quantum-technologies/res-braket-simulator.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Quantum-Technologies/Res_Amazon-Braket_Simulator_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-quantum-technologies/res-braket-state-vector.svg b/src/icons/aws/resource/res-quantum-technologies/res-braket-state-vector.svg new file mode 100644 index 0000000..21b75ae --- /dev/null +++ b/src/icons/aws/resource/res-quantum-technologies/res-braket-state-vector.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Quantum-Technologies/Res_Amazon-Braket_State-Vector_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-quantum-technologies/res-braket-tensor-network.svg b/src/icons/aws/resource/res-quantum-technologies/res-braket-tensor-network.svg new file mode 100644 index 0000000..aedbc58 --- /dev/null +++ b/src/icons/aws/resource/res-quantum-technologies/res-braket-tensor-network.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Quantum-Technologies/Res_Amazon-Braket_Tensor-Network_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-robotics/res-robomaker-cloud-extensions-ros.svg b/src/icons/aws/resource/res-robotics/res-robomaker-cloud-extensions-ros.svg new file mode 100644 index 0000000..511f095 --- /dev/null +++ b/src/icons/aws/resource/res-robotics/res-robomaker-cloud-extensions-ros.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Robotics/Res_AWS-RoboMaker_Cloud-Extensions-ROS_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-robotics/res-robomaker-development-environment.svg b/src/icons/aws/resource/res-robotics/res-robomaker-development-environment.svg new file mode 100644 index 0000000..fad3835 --- /dev/null +++ b/src/icons/aws/resource/res-robotics/res-robomaker-development-environment.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Robotics/Res_AWS-RoboMaker_Development-Environment_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-robotics/res-robomaker-fleet-management.svg b/src/icons/aws/resource/res-robotics/res-robomaker-fleet-management.svg new file mode 100644 index 0000000..64554c1 --- /dev/null +++ b/src/icons/aws/resource/res-robotics/res-robomaker-fleet-management.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Robotics/Res_AWS-RoboMaker_Fleet-Management_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-robotics/res-robomaker-simulation.svg b/src/icons/aws/resource/res-robotics/res-robomaker-simulation.svg new file mode 100644 index 0000000..3fda021 --- /dev/null +++ b/src/icons/aws/resource/res-robotics/res-robomaker-simulation.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Robotics/Res_AWS-RoboMaker_Simulation_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-security-identity-compliance/res-certificate-manager-certificate-authority.svg b/src/icons/aws/resource/res-security-identity-compliance/res-certificate-manager-certificate-authority.svg new file mode 100644 index 0000000..95a1beb --- /dev/null +++ b/src/icons/aws/resource/res-security-identity-compliance/res-certificate-manager-certificate-authority.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Security-Identity-and-Compliance/Res_AWS-Certificate-Manager_Certificate-Authority_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-security-identity-compliance/res-directory-service-ad-connector.svg b/src/icons/aws/resource/res-security-identity-compliance/res-directory-service-ad-connector.svg new file mode 100644 index 0000000..ab87252 --- /dev/null +++ b/src/icons/aws/resource/res-security-identity-compliance/res-directory-service-ad-connector.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Security-Identity-and-Compliance/Res_AWS-Directory-Service_AD-Connector_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-security-identity-compliance/res-directory-service-managed-microsoft-ad.svg b/src/icons/aws/resource/res-security-identity-compliance/res-directory-service-managed-microsoft-ad.svg new file mode 100644 index 0000000..d8ef693 --- /dev/null +++ b/src/icons/aws/resource/res-security-identity-compliance/res-directory-service-managed-microsoft-ad.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Security-Identity-and-Compliance/Res_AWS-Directory-Service_AWS-Managed-Microsoft-AD_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-security-identity-compliance/res-directory-service-simple-ad.svg b/src/icons/aws/resource/res-security-identity-compliance/res-directory-service-simple-ad.svg new file mode 100644 index 0000000..36853b2 --- /dev/null +++ b/src/icons/aws/resource/res-security-identity-compliance/res-directory-service-simple-ad.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Security-Identity-and-Compliance/Res_AWS-Directory-Service_Simple-AD_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-add-on.svg b/src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-add-on.svg new file mode 100644 index 0000000..9f941ce --- /dev/null +++ b/src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-add-on.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Security-Identity-and-Compliance/Res_AWS-Identity-Access-Management_Add-on_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-data-encryption-key.svg b/src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-data-encryption-key.svg new file mode 100644 index 0000000..72349e2 --- /dev/null +++ b/src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-data-encryption-key.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Security-Identity-and-Compliance/Res_AWS-Identity-Access-Management_Data-Encryption-Key_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-encrypted-data.svg b/src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-encrypted-data.svg new file mode 100644 index 0000000..a0562e9 --- /dev/null +++ b/src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-encrypted-data.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Security-Identity-and-Compliance/Res_AWS-Identity-Access-Management_Encrypted-Data_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-iam-access-analyzer.svg b/src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-iam-access-analyzer.svg new file mode 100644 index 0000000..6e616c2 --- /dev/null +++ b/src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-iam-access-analyzer.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Security-Identity-and-Compliance/Res_AWS-Identity-Access-Management_IAM-Access-Analyzer_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-iam-roles-anywhere.svg b/src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-iam-roles-anywhere.svg new file mode 100644 index 0000000..a21dd2b --- /dev/null +++ b/src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-iam-roles-anywhere.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Security-Identity-and-Compliance/Res_AWS-Identity-Access-Management_IAM-Roles-Anywhere_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-long-term-security-credential.svg b/src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-long-term-security-credential.svg new file mode 100644 index 0000000..0b09ebd --- /dev/null +++ b/src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-long-term-security-credential.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Security-Identity-and-Compliance/Res_AWS-Identity-Access-Management_Long-Term-Security-Credential_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-mfa-token.svg b/src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-mfa-token.svg new file mode 100644 index 0000000..c51ed7d --- /dev/null +++ b/src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-mfa-token.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Security-Identity-and-Compliance/Res_AWS-Identity-Access-Management_MFA-Token_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-permissions.svg b/src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-permissions.svg new file mode 100644 index 0000000..0322b8e --- /dev/null +++ b/src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-permissions.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Security-Identity-and-Compliance/Res_AWS-Identity-Access-Management_Permissions_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-role.svg b/src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-role.svg new file mode 100644 index 0000000..e353ef2 --- /dev/null +++ b/src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-role.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Security-Identity-and-Compliance/Res_AWS-Identity-Access-Management_Role_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-sts-alternate.svg b/src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-sts-alternate.svg new file mode 100644 index 0000000..a49080f --- /dev/null +++ b/src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-sts-alternate.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Security-Identity-and-Compliance/Res_AWS-Identity-Access-Management_AWS-STS-Alternate_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-sts.svg b/src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-sts.svg new file mode 100644 index 0000000..954e219 --- /dev/null +++ b/src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-sts.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Security-Identity-and-Compliance/Res_AWS-Identity-Access-Management_AWS-STS_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-temporary-security-credential.svg b/src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-temporary-security-credential.svg new file mode 100644 index 0000000..96db0ae --- /dev/null +++ b/src/icons/aws/resource/res-security-identity-compliance/res-identity-access-management-temporary-security-credential.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Security-Identity-and-Compliance/Res_AWS-Identity-Access-Management_Temporary-Security-Credential_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-security-identity-compliance/res-inspector-agent.svg b/src/icons/aws/resource/res-security-identity-compliance/res-inspector-agent.svg new file mode 100644 index 0000000..39e2d1f --- /dev/null +++ b/src/icons/aws/resource/res-security-identity-compliance/res-inspector-agent.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Security-Identity-and-Compliance/Res_Amazon-Inspector_Agent_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-security-identity-compliance/res-key-management-service-external-key-store.svg b/src/icons/aws/resource/res-security-identity-compliance/res-key-management-service-external-key-store.svg new file mode 100644 index 0000000..5fda358 --- /dev/null +++ b/src/icons/aws/resource/res-security-identity-compliance/res-key-management-service-external-key-store.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Security-Identity-and-Compliance/Res_AWS-Key-Management-Service_External-Key-Store_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-security-identity-compliance/res-network-firewall-endpoints.svg b/src/icons/aws/resource/res-security-identity-compliance/res-network-firewall-endpoints.svg new file mode 100644 index 0000000..376753c --- /dev/null +++ b/src/icons/aws/resource/res-security-identity-compliance/res-network-firewall-endpoints.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Security-Identity-and-Compliance/Res_AWS-Network-Firewall_Endpoints_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-security-identity-compliance/res-security-hub-finding.svg b/src/icons/aws/resource/res-security-identity-compliance/res-security-hub-finding.svg new file mode 100644 index 0000000..ba45309 --- /dev/null +++ b/src/icons/aws/resource/res-security-identity-compliance/res-security-hub-finding.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Security-Identity-and-Compliance/Res_AWS-Security-Hub_Finding_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-security-identity-compliance/res-shield-shield-advanced.svg b/src/icons/aws/resource/res-security-identity-compliance/res-shield-shield-advanced.svg new file mode 100644 index 0000000..58f23d3 --- /dev/null +++ b/src/icons/aws/resource/res-security-identity-compliance/res-shield-shield-advanced.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Security-Identity-and-Compliance/Res_AWS-Shield_AWS-Shield-Advanced_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-security-identity-compliance/res-waf-bad-bot.svg b/src/icons/aws/resource/res-security-identity-compliance/res-waf-bad-bot.svg new file mode 100644 index 0000000..d978d32 --- /dev/null +++ b/src/icons/aws/resource/res-security-identity-compliance/res-waf-bad-bot.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Security-Identity-and-Compliance/Res_AWS-WAF_Bad-Bot_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-security-identity-compliance/res-waf-bot-control.svg b/src/icons/aws/resource/res-security-identity-compliance/res-waf-bot-control.svg new file mode 100644 index 0000000..00cc4a7 --- /dev/null +++ b/src/icons/aws/resource/res-security-identity-compliance/res-waf-bot-control.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Security-Identity-and-Compliance/Res_AWS-WAF_Bot-Control_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-security-identity-compliance/res-waf-bot.svg b/src/icons/aws/resource/res-security-identity-compliance/res-waf-bot.svg new file mode 100644 index 0000000..a25e678 --- /dev/null +++ b/src/icons/aws/resource/res-security-identity-compliance/res-waf-bot.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Security-Identity-and-Compliance/Res_AWS-WAF_Bot_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-security-identity-compliance/res-waf-filtering-rule.svg b/src/icons/aws/resource/res-security-identity-compliance/res-waf-filtering-rule.svg new file mode 100644 index 0000000..a13afeb --- /dev/null +++ b/src/icons/aws/resource/res-security-identity-compliance/res-waf-filtering-rule.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Security-Identity-and-Compliance/Res_AWS-WAF_Filtering-Rule_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-security-identity-compliance/res-waf-labels.svg b/src/icons/aws/resource/res-security-identity-compliance/res-waf-labels.svg new file mode 100644 index 0000000..7147da1 --- /dev/null +++ b/src/icons/aws/resource/res-security-identity-compliance/res-waf-labels.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Security-Identity-and-Compliance/Res_AWS-WAF_Labels_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-security-identity-compliance/res-waf-managed-rule.svg b/src/icons/aws/resource/res-security-identity-compliance/res-waf-managed-rule.svg new file mode 100644 index 0000000..e30c4cf --- /dev/null +++ b/src/icons/aws/resource/res-security-identity-compliance/res-waf-managed-rule.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Security-Identity-and-Compliance/Res_AWS-WAF_Managed-Rule_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-security-identity-compliance/res-waf-rule.svg b/src/icons/aws/resource/res-security-identity-compliance/res-waf-rule.svg new file mode 100644 index 0000000..f20cf76 --- /dev/null +++ b/src/icons/aws/resource/res-security-identity-compliance/res-waf-rule.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Security-Identity-and-Compliance/Res_AWS-WAF_Rule_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-backup-audit-manager.svg b/src/icons/aws/resource/res-storage/res-backup-audit-manager.svg new file mode 100644 index 0000000..60af779 --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-backup-audit-manager.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_AWS-Backup_Audit-Manager_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-backup-backup-for-cloudformation.svg b/src/icons/aws/resource/res-storage/res-backup-backup-for-cloudformation.svg new file mode 100644 index 0000000..ff6202e --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-backup-backup-for-cloudformation.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_AWS-Backup_AWS-Backup-for-AWS-CloudFormation_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-backup-backup-plan.svg b/src/icons/aws/resource/res-storage/res-backup-backup-plan.svg new file mode 100644 index 0000000..cc255d7 --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-backup-backup-plan.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_AWS-Backup_Backup-Plan_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-backup-backup-restore.svg b/src/icons/aws/resource/res-storage/res-backup-backup-restore.svg new file mode 100644 index 0000000..d0286c4 --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-backup-backup-restore.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_AWS-Backup_Backup-Restore_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-backup-backup-support-for-fsx-for-netapp-ontap.svg b/src/icons/aws/resource/res-storage/res-backup-backup-support-for-fsx-for-netapp-ontap.svg new file mode 100644 index 0000000..2c9bed6 --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-backup-backup-support-for-fsx-for-netapp-ontap.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_AWS-Backup_AWS-Backup-support-for-Amazon-FSx-for-NetApp-ONTAP_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-backup-backup-support-for-s3.svg b/src/icons/aws/resource/res-storage/res-backup-backup-support-for-s3.svg new file mode 100644 index 0000000..cb42cb6 --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-backup-backup-support-for-s3.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_AWS-Backup_AWS-Backup-support-for-Amazon-S3_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-backup-backup-support-for-vmware-workloads.svg b/src/icons/aws/resource/res-storage/res-backup-backup-support-for-vmware-workloads.svg new file mode 100644 index 0000000..feb1865 --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-backup-backup-support-for-vmware-workloads.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_AWS-Backup_AWS-Backup-Support-for-VMware-Workloads_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-backup-backup-vault.svg b/src/icons/aws/resource/res-storage/res-backup-backup-vault.svg new file mode 100644 index 0000000..06840bc --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-backup-backup-vault.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_AWS-Backup_Backup-Vault_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-backup-compliance-reporting.svg b/src/icons/aws/resource/res-storage/res-backup-compliance-reporting.svg new file mode 100644 index 0000000..98082d1 --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-backup-compliance-reporting.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_AWS-Backup_Compliance-Reporting_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-backup-compute.svg b/src/icons/aws/resource/res-storage/res-backup-compute.svg new file mode 100644 index 0000000..5fbb70f --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-backup-compute.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_AWS-Backup_Compute_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-backup-database.svg b/src/icons/aws/resource/res-storage/res-backup-database.svg new file mode 100644 index 0000000..235036a --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-backup-database.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_AWS-Backup_Database_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-backup-gateway.svg b/src/icons/aws/resource/res-storage/res-backup-gateway.svg new file mode 100644 index 0000000..74b7336 --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-backup-gateway.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_AWS-Backup_Gateway_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-backup-legal-hold.svg b/src/icons/aws/resource/res-storage/res-backup-legal-hold.svg new file mode 100644 index 0000000..92d32f3 --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-backup-legal-hold.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_AWS-Backup_Legal-Hold_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-backup-recovery-point-objective.svg b/src/icons/aws/resource/res-storage/res-backup-recovery-point-objective.svg new file mode 100644 index 0000000..a5f91ba --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-backup-recovery-point-objective.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_AWS-Backup_Recovery-Point-Objective_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-backup-recovery-time-objective.svg b/src/icons/aws/resource/res-storage/res-backup-recovery-time-objective.svg new file mode 100644 index 0000000..c051541 --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-backup-recovery-time-objective.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_AWS-Backup_Recovery-Time-Objective_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-backup-storage.svg b/src/icons/aws/resource/res-storage/res-backup-storage.svg new file mode 100644 index 0000000..bf42cc6 --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-backup-storage.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_AWS-Backup_Storage_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-backup-vault-lock.svg b/src/icons/aws/resource/res-storage/res-backup-vault-lock.svg new file mode 100644 index 0000000..8f30262 --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-backup-vault-lock.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_AWS-Backup_Vault-Lock_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-backup-virtual-machine-monitor.svg b/src/icons/aws/resource/res-storage/res-backup-virtual-machine-monitor.svg new file mode 100644 index 0000000..985da2b --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-backup-virtual-machine-monitor.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_AWS-Backup_Virtual-Machine-Monitor_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-backup-virtual-machine.svg b/src/icons/aws/resource/res-storage/res-backup-virtual-machine.svg new file mode 100644 index 0000000..a89bffb --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-backup-virtual-machine.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_AWS-Backup_Virtual-Machine_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-elastic-block-store-data-lifecycle-manager.svg b/src/icons/aws/resource/res-storage/res-elastic-block-store-data-lifecycle-manager.svg new file mode 100644 index 0000000..f9e3317 --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-elastic-block-store-data-lifecycle-manager.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_Amazon-Elastic-Block-Store_Amazon-Data-Lifecycle-Manager_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-elastic-block-store-multiple-volumes.svg b/src/icons/aws/resource/res-storage/res-elastic-block-store-multiple-volumes.svg new file mode 100644 index 0000000..3b6067b --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-elastic-block-store-multiple-volumes.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_Amazon-Elastic-Block-Store_Multiple-Volumes_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-elastic-block-store-snapshot.svg b/src/icons/aws/resource/res-storage/res-elastic-block-store-snapshot.svg new file mode 100644 index 0000000..d6b424e --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-elastic-block-store-snapshot.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_Amazon-Elastic-Block-Store_Snapshot_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-elastic-block-store-volume-gp3.svg b/src/icons/aws/resource/res-storage/res-elastic-block-store-volume-gp3.svg new file mode 100644 index 0000000..b70b5cd --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-elastic-block-store-volume-gp3.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_Amazon-Elastic-Block-Store_Volume-gp3_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-elastic-block-store-volume.svg b/src/icons/aws/resource/res-storage/res-elastic-block-store-volume.svg new file mode 100644 index 0000000..5815a47 --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-elastic-block-store-volume.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_Amazon-Elastic-Block-Store_Volume_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-elastic-file-system-efs-intelligent-tiering.svg b/src/icons/aws/resource/res-storage/res-elastic-file-system-efs-intelligent-tiering.svg new file mode 100644 index 0000000..3313afd --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-elastic-file-system-efs-intelligent-tiering.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_Amazon-Elastic-File-System_Intelligent-Tiering_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-elastic-file-system-efs-one-zone-infrequent-access.svg b/src/icons/aws/resource/res-storage/res-elastic-file-system-efs-one-zone-infrequent-access.svg new file mode 100644 index 0000000..a9aaa8b --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-elastic-file-system-efs-one-zone-infrequent-access.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_Amazon-Elastic-File-System_One-Zone-Infrequent-Access_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-elastic-file-system-efs-one-zone.svg b/src/icons/aws/resource/res-storage/res-elastic-file-system-efs-one-zone.svg new file mode 100644 index 0000000..a6bf9d1 --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-elastic-file-system-efs-one-zone.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_Amazon-Elastic-File-System_One-Zone_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-elastic-file-system-efs-standard-infrequent-access.svg b/src/icons/aws/resource/res-storage/res-elastic-file-system-efs-standard-infrequent-access.svg new file mode 100644 index 0000000..5589a7d --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-elastic-file-system-efs-standard-infrequent-access.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_Amazon-Elastic-File-System_Standard-Infrequent-Access_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-elastic-file-system-efs-standard.svg b/src/icons/aws/resource/res-storage/res-elastic-file-system-efs-standard.svg new file mode 100644 index 0000000..7c35d3d --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-elastic-file-system-efs-standard.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_Amazon-Elastic-File-System_Standard_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-elastic-file-system-elastic-throughput.svg b/src/icons/aws/resource/res-storage/res-elastic-file-system-elastic-throughput.svg new file mode 100644 index 0000000..824007e --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-elastic-file-system-elastic-throughput.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_Amazon-Elastic-File-System_Elastic-Throughput_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-elastic-file-system-file-system.svg b/src/icons/aws/resource/res-storage/res-elastic-file-system-file-system.svg new file mode 100644 index 0000000..f6bd60b --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-elastic-file-system-file-system.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_Amazon-Elastic-File-System_File-System_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-file-cache-hybrid-nfs-linked-datasets.svg b/src/icons/aws/resource/res-storage/res-file-cache-hybrid-nfs-linked-datasets.svg new file mode 100644 index 0000000..fe2eff9 --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-file-cache-hybrid-nfs-linked-datasets.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_Amazon-File-Cache_Hybrid-NFS-linked-datasets_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-file-cache-on-premises-nfs-linked-datasets.svg b/src/icons/aws/resource/res-storage/res-file-cache-on-premises-nfs-linked-datasets.svg new file mode 100644 index 0000000..616476e --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-file-cache-on-premises-nfs-linked-datasets.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_Amazon-File-Cache_On-premises-NFS-linked-datasets_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-file-cache-s3-linked-datasets.svg b/src/icons/aws/resource/res-storage/res-file-cache-s3-linked-datasets.svg new file mode 100644 index 0000000..ca0ef8a --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-file-cache-s3-linked-datasets.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_Amazon-File-Cache_S3-linked-datasets_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-simple-storage-service-bucket-with-objects.svg b/src/icons/aws/resource/res-storage/res-simple-storage-service-bucket-with-objects.svg new file mode 100644 index 0000000..500d598 --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-simple-storage-service-bucket-with-objects.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_Amazon-Simple-Storage-Service_Bucket-With-Objects_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-simple-storage-service-bucket.svg b/src/icons/aws/resource/res-storage/res-simple-storage-service-bucket.svg new file mode 100644 index 0000000..e0b9597 --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-simple-storage-service-bucket.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_Amazon-Simple-Storage-Service_Bucket_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-simple-storage-service-directory-bucket.svg b/src/icons/aws/resource/res-storage/res-simple-storage-service-directory-bucket.svg new file mode 100644 index 0000000..685a7ca --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-simple-storage-service-directory-bucket.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/icons/aws/resource/res-storage/res-simple-storage-service-general-access-points.svg b/src/icons/aws/resource/res-storage/res-simple-storage-service-general-access-points.svg new file mode 100644 index 0000000..51a0963 --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-simple-storage-service-general-access-points.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_Amazon-Simple-Storage-Service_General-Access-Points_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-simple-storage-service-glacier-ive.svg b/src/icons/aws/resource/res-storage/res-simple-storage-service-glacier-ive.svg new file mode 100644 index 0000000..0d77a54 --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-simple-storage-service-glacier-ive.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_Amazon-Simple-Storage-Service-Glacier_Archive_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-simple-storage-service-glacier-vault.svg b/src/icons/aws/resource/res-storage/res-simple-storage-service-glacier-vault.svg new file mode 100644 index 0000000..bd5a2f8 --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-simple-storage-service-glacier-vault.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_Amazon-Simple-Storage-Service-Glacier_Vault_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-simple-storage-service-object.svg b/src/icons/aws/resource/res-storage/res-simple-storage-service-object.svg new file mode 100644 index 0000000..8379f57 --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-simple-storage-service-object.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_Amazon-Simple-Storage-Service_Object_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-batch-operations.svg b/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-batch-operations.svg new file mode 100644 index 0000000..7800a8f --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-batch-operations.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_Amazon-Simple-Storage-Service_S3-Batch-Operations_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-express-one-zone.svg b/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-express-one-zone.svg new file mode 100644 index 0000000..2044705 --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-express-one-zone.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-glacier-deep-ive.svg b/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-glacier-deep-ive.svg new file mode 100644 index 0000000..cae1492 --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-glacier-deep-ive.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_Amazon-Simple-Storage-Service_S3-Glacier-Deep-Archive_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-glacier-flexible-retrieval.svg b/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-glacier-flexible-retrieval.svg new file mode 100644 index 0000000..e47572b --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-glacier-flexible-retrieval.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_Amazon-Simple-Storage-Service_S3-Glacier-Flexible-Retrieval_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-glacier-instant-retrieval.svg b/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-glacier-instant-retrieval.svg new file mode 100644 index 0000000..8a55deb --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-glacier-instant-retrieval.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_Amazon-Simple-Storage-Service_S3-Glacier-Instant-Retrieval_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-intelligent-tiering.svg b/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-intelligent-tiering.svg new file mode 100644 index 0000000..72b6498 --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-intelligent-tiering.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_Amazon-Simple-Storage-Service_S3-Intelligent-Tiering_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-multi-region-access-points.svg b/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-multi-region-access-points.svg new file mode 100644 index 0000000..0b09fc8 --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-multi-region-access-points.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_Amazon-Simple-Storage-Service_S3-Multi-Region-Access-Points_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-object-lambda-access-points.svg b/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-object-lambda-access-points.svg new file mode 100644 index 0000000..4b0c527 --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-object-lambda-access-points.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_Amazon-Simple-Storage-Service_S3-Object-Lambda-Access-Points_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-object-lambda.svg b/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-object-lambda.svg new file mode 100644 index 0000000..478d25f --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-object-lambda.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_Amazon-Simple-Storage-Service_S3-Object-Lambda_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-object-lock.svg b/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-object-lock.svg new file mode 100644 index 0000000..bcbc018 --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-object-lock.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_Amazon-Simple-Storage-Service_S3-Object-Lock_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-on-outposts.svg b/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-on-outposts.svg new file mode 100644 index 0000000..7bd2668 --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-on-outposts.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_Amazon-Simple-Storage-Service_S3-On-Outposts_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-one-zone-ia.svg b/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-one-zone-ia.svg new file mode 100644 index 0000000..392da56 --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-one-zone-ia.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_Amazon-Simple-Storage-Service_S3-One-Zone-IA_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-replication-time-control.svg b/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-replication-time-control.svg new file mode 100644 index 0000000..24a80d9 --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-replication-time-control.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_Amazon-Simple-Storage-Service_S3-Replication-Time-Control_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-replication.svg b/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-replication.svg new file mode 100644 index 0000000..0163ce2 --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-replication.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_Amazon-Simple-Storage-Service_S3-Replication_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-select.svg b/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-select.svg new file mode 100644 index 0000000..804d66c --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-select.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_Amazon-Simple-Storage-Service_S3-Select_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-standard-ia.svg b/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-standard-ia.svg new file mode 100644 index 0000000..1a2af82 --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-standard-ia.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_Amazon-Simple-Storage-Service_S3-Standard-IA_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-standard.svg b/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-standard.svg new file mode 100644 index 0000000..8d2bced --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-standard.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_Amazon-Simple-Storage-Service_S3-Standard_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-storage-lens.svg b/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-storage-lens.svg new file mode 100644 index 0000000..96ecdde --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-storage-lens.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_Amazon-Simple-Storage-Service_S3-Storage-Lens_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-tables.svg b/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-tables.svg new file mode 100644 index 0000000..b7dc8a5 --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-simple-storage-service-s3-tables.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/icons/aws/resource/res-storage/res-simple-storage-service-vpc-access-points.svg b/src/icons/aws/resource/res-storage/res-simple-storage-service-vpc-access-points.svg new file mode 100644 index 0000000..5a9de62 --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-simple-storage-service-vpc-access-points.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_Amazon-Simple-Storage-Service_VPC-Access-Points_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-snowball-snowball-import-export.svg b/src/icons/aws/resource/res-storage/res-snowball-snowball-import-export.svg new file mode 100644 index 0000000..5143a7e --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-snowball-snowball-import-export.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_AWS-Snowball_Snowball-Import-Export_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-storage-gateway-cached-volume.svg b/src/icons/aws/resource/res-storage/res-storage-gateway-cached-volume.svg new file mode 100644 index 0000000..763683e --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-storage-gateway-cached-volume.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_AWS-Storage-Gateway_Cached-Volume_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-storage-gateway-file-gateway.svg b/src/icons/aws/resource/res-storage/res-storage-gateway-file-gateway.svg new file mode 100644 index 0000000..3f818c3 --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-storage-gateway-file-gateway.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_AWS-Storage-Gateway_File-Gateway_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-storage-gateway-fsx-file-gateway.svg b/src/icons/aws/resource/res-storage/res-storage-gateway-fsx-file-gateway.svg new file mode 100644 index 0000000..8c9da05 --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-storage-gateway-fsx-file-gateway.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_AWS-Storage-Gateway_Amazon-FSx-File-Gateway_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-storage-gateway-noncached-volume.svg b/src/icons/aws/resource/res-storage/res-storage-gateway-noncached-volume.svg new file mode 100644 index 0000000..e6753e8 --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-storage-gateway-noncached-volume.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_AWS-Storage-Gateway_Noncached-Volume_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-storage-gateway-s3-file-gateway.svg b/src/icons/aws/resource/res-storage/res-storage-gateway-s3-file-gateway.svg new file mode 100644 index 0000000..1c44626 --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-storage-gateway-s3-file-gateway.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_AWS-Storage-Gateway_Amazon-S3-File-Gateway_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-storage-gateway-tape-gateway.svg b/src/icons/aws/resource/res-storage/res-storage-gateway-tape-gateway.svg new file mode 100644 index 0000000..b18f557 --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-storage-gateway-tape-gateway.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_AWS-Storage-Gateway_Tape-Gateway_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-storage-gateway-virtual-tape-library.svg b/src/icons/aws/resource/res-storage/res-storage-gateway-virtual-tape-library.svg new file mode 100644 index 0000000..23a158f --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-storage-gateway-virtual-tape-library.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_AWS-Storage-Gateway_Virtual-Tape-Library_48 + + + + \ No newline at end of file diff --git a/src/icons/aws/resource/res-storage/res-storage-gateway-volume-gateway.svg b/src/icons/aws/resource/res-storage/res-storage-gateway-volume-gateway.svg new file mode 100644 index 0000000..a59f3c0 --- /dev/null +++ b/src/icons/aws/resource/res-storage/res-storage-gateway-volume-gateway.svg @@ -0,0 +1,7 @@ + + + Icon-Resource/Storage/Res_AWS-Storage-Gateway_Volume-Gateway_48 + + + + \ No newline at end of file diff --git a/src/icons/gcp/access-context-manager.svg b/src/icons/gcp/access-context-manager.svg new file mode 100644 index 0000000..bcd11a2 --- /dev/null +++ b/src/icons/gcp/access-context-manager.svg @@ -0,0 +1 @@ +Icon_24px_ACM_Color \ No newline at end of file diff --git a/src/icons/gcp/administration.svg b/src/icons/gcp/administration.svg new file mode 100644 index 0000000..454c762 --- /dev/null +++ b/src/icons/gcp/administration.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + diff --git a/src/icons/gcp/advanced-agent-modeling.svg b/src/icons/gcp/advanced-agent-modeling.svg new file mode 100644 index 0000000..62ff22a --- /dev/null +++ b/src/icons/gcp/advanced-agent-modeling.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/icons/gcp/advanced-solutions-lab.svg b/src/icons/gcp/advanced-solutions-lab.svg new file mode 100644 index 0000000..277e101 --- /dev/null +++ b/src/icons/gcp/advanced-solutions-lab.svg @@ -0,0 +1 @@ +Icon_24px_AdvancedSolutionsLab_Color \ No newline at end of file diff --git a/src/icons/gcp/agent-assist.svg b/src/icons/gcp/agent-assist.svg new file mode 100644 index 0000000..a1b6ed0 --- /dev/null +++ b/src/icons/gcp/agent-assist.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/ai-hub.svg b/src/icons/gcp/ai-hub.svg new file mode 100644 index 0000000..8334c71 --- /dev/null +++ b/src/icons/gcp/ai-hub.svg @@ -0,0 +1 @@ +Icon_24px_AIHub_Color \ No newline at end of file diff --git a/src/icons/gcp/ai-platform-unified.svg b/src/icons/gcp/ai-platform-unified.svg new file mode 100644 index 0000000..b1c48fb --- /dev/null +++ b/src/icons/gcp/ai-platform-unified.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/ai-platform.svg b/src/icons/gcp/ai-platform.svg new file mode 100644 index 0000000..3b0ad48 --- /dev/null +++ b/src/icons/gcp/ai-platform.svg @@ -0,0 +1 @@ +Icon_24px_MLEngine_Color \ No newline at end of file diff --git a/src/icons/gcp/analytics-hub.svg b/src/icons/gcp/analytics-hub.svg new file mode 100644 index 0000000..8701559 --- /dev/null +++ b/src/icons/gcp/analytics-hub.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/anthos-config-management.svg b/src/icons/gcp/anthos-config-management.svg new file mode 100644 index 0000000..3a06973 --- /dev/null +++ b/src/icons/gcp/anthos-config-management.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/anthos-service-mesh.svg b/src/icons/gcp/anthos-service-mesh.svg new file mode 100644 index 0000000..8346522 --- /dev/null +++ b/src/icons/gcp/anthos-service-mesh.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/icons/gcp/anthos.svg b/src/icons/gcp/anthos.svg new file mode 100644 index 0000000..eabe28d --- /dev/null +++ b/src/icons/gcp/anthos.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/src/icons/gcp/api-analytics.svg b/src/icons/gcp/api-analytics.svg new file mode 100644 index 0000000..32df10a --- /dev/null +++ b/src/icons/gcp/api-analytics.svg @@ -0,0 +1 @@ +Icon_24px_APIAnalytics_Color \ No newline at end of file diff --git a/src/icons/gcp/api-monetization.svg b/src/icons/gcp/api-monetization.svg new file mode 100644 index 0000000..cf37a07 --- /dev/null +++ b/src/icons/gcp/api-monetization.svg @@ -0,0 +1 @@ +Icon_24px_APIMonitization_Color \ No newline at end of file diff --git a/src/icons/gcp/api.svg b/src/icons/gcp/api.svg new file mode 100644 index 0000000..baec009 --- /dev/null +++ b/src/icons/gcp/api.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + diff --git a/src/icons/gcp/apigee-api-platform.svg b/src/icons/gcp/apigee-api-platform.svg new file mode 100644 index 0000000..753d0c8 --- /dev/null +++ b/src/icons/gcp/apigee-api-platform.svg @@ -0,0 +1 @@ +Icon_24px_AppigeeAPIPlatform_Color \ No newline at end of file diff --git a/src/icons/gcp/apigee-sense.svg b/src/icons/gcp/apigee-sense.svg new file mode 100644 index 0000000..5ea6458 --- /dev/null +++ b/src/icons/gcp/apigee-sense.svg @@ -0,0 +1 @@ +Icon_24px_ApigeeSense_Color \ No newline at end of file diff --git a/src/icons/gcp/app-engine.svg b/src/icons/gcp/app-engine.svg new file mode 100644 index 0000000..d6b8c32 --- /dev/null +++ b/src/icons/gcp/app-engine.svg @@ -0,0 +1 @@ +Icon_24px_AppEngine_Color \ No newline at end of file diff --git a/src/icons/gcp/artifact-registry.svg b/src/icons/gcp/artifact-registry.svg new file mode 100644 index 0000000..81c46f8 --- /dev/null +++ b/src/icons/gcp/artifact-registry.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/icons/gcp/asset-inventory.svg b/src/icons/gcp/asset-inventory.svg new file mode 100644 index 0000000..1c1396c --- /dev/null +++ b/src/icons/gcp/asset-inventory.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/assured-workloads.svg b/src/icons/gcp/assured-workloads.svg new file mode 100644 index 0000000..2b30716 --- /dev/null +++ b/src/icons/gcp/assured-workloads.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/automl-natural-language.svg b/src/icons/gcp/automl-natural-language.svg new file mode 100644 index 0000000..508b9af --- /dev/null +++ b/src/icons/gcp/automl-natural-language.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/icons/gcp/automl-tables.svg b/src/icons/gcp/automl-tables.svg new file mode 100644 index 0000000..2fd79b9 --- /dev/null +++ b/src/icons/gcp/automl-tables.svg @@ -0,0 +1 @@ +Icon_24px_AutoMLTables_Color \ No newline at end of file diff --git a/src/icons/gcp/automl-translation.svg b/src/icons/gcp/automl-translation.svg new file mode 100644 index 0000000..1b67b53 --- /dev/null +++ b/src/icons/gcp/automl-translation.svg @@ -0,0 +1 @@ +Icon_24px_AutoMLTranslation_Color \ No newline at end of file diff --git a/src/icons/gcp/automl-video-intelligence.svg b/src/icons/gcp/automl-video-intelligence.svg new file mode 100644 index 0000000..c54be88 --- /dev/null +++ b/src/icons/gcp/automl-video-intelligence.svg @@ -0,0 +1 @@ +Icon_24px_AutoMLIntelligence_Color \ No newline at end of file diff --git a/src/icons/gcp/automl-vision.svg b/src/icons/gcp/automl-vision.svg new file mode 100644 index 0000000..29ee065 --- /dev/null +++ b/src/icons/gcp/automl-vision.svg @@ -0,0 +1 @@ +Icon_24px_AutoMLVision_Color \ No newline at end of file diff --git a/src/icons/gcp/automl.svg b/src/icons/gcp/automl.svg new file mode 100644 index 0000000..e93c3c6 --- /dev/null +++ b/src/icons/gcp/automl.svg @@ -0,0 +1 @@ +Icon_24px_AutoML_Color \ No newline at end of file diff --git a/src/icons/gcp/bare-metal-solutions.svg b/src/icons/gcp/bare-metal-solutions.svg new file mode 100644 index 0000000..b122ea6 --- /dev/null +++ b/src/icons/gcp/bare-metal-solutions.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/beyondcorp.svg b/src/icons/gcp/beyondcorp.svg new file mode 100644 index 0000000..dbbdedb --- /dev/null +++ b/src/icons/gcp/beyondcorp.svg @@ -0,0 +1 @@ +Icon_24px_BeyondCorp_Color \ No newline at end of file diff --git a/src/icons/gcp/bigquery.svg b/src/icons/gcp/bigquery.svg new file mode 100644 index 0000000..c6b3cea --- /dev/null +++ b/src/icons/gcp/bigquery.svg @@ -0,0 +1 @@ +Icon_24px_BigQuery_Color \ No newline at end of file diff --git a/src/icons/gcp/bigtable.svg b/src/icons/gcp/bigtable.svg new file mode 100644 index 0000000..de98576 --- /dev/null +++ b/src/icons/gcp/bigtable.svg @@ -0,0 +1 @@ +Icon_24px_BigTable_Color \ No newline at end of file diff --git a/src/icons/gcp/billing.svg b/src/icons/gcp/billing.svg new file mode 100644 index 0000000..85e30df --- /dev/null +++ b/src/icons/gcp/billing.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + diff --git a/src/icons/gcp/binary-authorization.svg b/src/icons/gcp/binary-authorization.svg new file mode 100644 index 0000000..16d6ba1 --- /dev/null +++ b/src/icons/gcp/binary-authorization.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/catalog.svg b/src/icons/gcp/catalog.svg new file mode 100644 index 0000000..71b69ce --- /dev/null +++ b/src/icons/gcp/catalog.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/icons/gcp/certificate-authority-service.svg b/src/icons/gcp/certificate-authority-service.svg new file mode 100644 index 0000000..db536a3 --- /dev/null +++ b/src/icons/gcp/certificate-authority-service.svg @@ -0,0 +1,13 @@ + + + + + + + + + diff --git a/src/icons/gcp/cloud-api-gateway.svg b/src/icons/gcp/cloud-api-gateway.svg new file mode 100644 index 0000000..4e7412d --- /dev/null +++ b/src/icons/gcp/cloud-api-gateway.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/src/icons/gcp/cloud-apis.svg b/src/icons/gcp/cloud-apis.svg new file mode 100644 index 0000000..e8a29f8 --- /dev/null +++ b/src/icons/gcp/cloud-apis.svg @@ -0,0 +1 @@ +Icon_24px_CloudAPIs_Color \ No newline at end of file diff --git a/src/icons/gcp/cloud-armor.svg b/src/icons/gcp/cloud-armor.svg new file mode 100644 index 0000000..e664c7c --- /dev/null +++ b/src/icons/gcp/cloud-armor.svg @@ -0,0 +1 @@ +Icon_24px_CloudArmor_Color \ No newline at end of file diff --git a/src/icons/gcp/cloud-asset-inventory.svg b/src/icons/gcp/cloud-asset-inventory.svg new file mode 100644 index 0000000..58ad566 --- /dev/null +++ b/src/icons/gcp/cloud-asset-inventory.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/icons/gcp/cloud-audit-logs.svg b/src/icons/gcp/cloud-audit-logs.svg new file mode 100644 index 0000000..74c5cf4 --- /dev/null +++ b/src/icons/gcp/cloud-audit-logs.svg @@ -0,0 +1 @@ +Icon_24px_CloudAuditLogs_Color \ No newline at end of file diff --git a/src/icons/gcp/cloud-build.svg b/src/icons/gcp/cloud-build.svg new file mode 100644 index 0000000..21de542 --- /dev/null +++ b/src/icons/gcp/cloud-build.svg @@ -0,0 +1 @@ +Icon_24px_CloudBuild_Color \ No newline at end of file diff --git a/src/icons/gcp/cloud-cdn.svg b/src/icons/gcp/cloud-cdn.svg new file mode 100644 index 0000000..b335514 --- /dev/null +++ b/src/icons/gcp/cloud-cdn.svg @@ -0,0 +1 @@ +Icon_24px_CDN_Color \ No newline at end of file diff --git a/src/icons/gcp/cloud-code.svg b/src/icons/gcp/cloud-code.svg new file mode 100644 index 0000000..436e755 --- /dev/null +++ b/src/icons/gcp/cloud-code.svg @@ -0,0 +1 @@ +Icon_24px_CloudCode_Color \ No newline at end of file diff --git a/src/icons/gcp/cloud-composer.svg b/src/icons/gcp/cloud-composer.svg new file mode 100644 index 0000000..85ca7e4 --- /dev/null +++ b/src/icons/gcp/cloud-composer.svg @@ -0,0 +1 @@ +Icon_24px_CloudComposer_Color \ No newline at end of file diff --git a/src/icons/gcp/cloud-data-fusion.svg b/src/icons/gcp/cloud-data-fusion.svg new file mode 100644 index 0000000..23866df --- /dev/null +++ b/src/icons/gcp/cloud-data-fusion.svg @@ -0,0 +1 @@ +Icon_24px_DataFusion_Color \ No newline at end of file diff --git a/src/icons/gcp/cloud-deploy.svg b/src/icons/gcp/cloud-deploy.svg new file mode 100644 index 0000000..b55ef3c --- /dev/null +++ b/src/icons/gcp/cloud-deploy.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/icons/gcp/cloud-deployment-manager.svg b/src/icons/gcp/cloud-deployment-manager.svg new file mode 100644 index 0000000..931a46f --- /dev/null +++ b/src/icons/gcp/cloud-deployment-manager.svg @@ -0,0 +1 @@ +Icon_24px_DeployManage_Color \ No newline at end of file diff --git a/src/icons/gcp/cloud-dns.svg b/src/icons/gcp/cloud-dns.svg new file mode 100644 index 0000000..e0a5dad --- /dev/null +++ b/src/icons/gcp/cloud-dns.svg @@ -0,0 +1 @@ +Icon_24px_DNS_Color \ No newline at end of file diff --git a/src/icons/gcp/cloud-domains.svg b/src/icons/gcp/cloud-domains.svg new file mode 100644 index 0000000..d070175 --- /dev/null +++ b/src/icons/gcp/cloud-domains.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/cloud-ekm.svg b/src/icons/gcp/cloud-ekm.svg new file mode 100644 index 0000000..ae528b1 --- /dev/null +++ b/src/icons/gcp/cloud-ekm.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/icons/gcp/cloud-endpoints.svg b/src/icons/gcp/cloud-endpoints.svg new file mode 100644 index 0000000..c184a64 --- /dev/null +++ b/src/icons/gcp/cloud-endpoints.svg @@ -0,0 +1 @@ +Icon_24px_Endpoints_Color \ No newline at end of file diff --git a/src/icons/gcp/cloud-external-ip-addresses.svg b/src/icons/gcp/cloud-external-ip-addresses.svg new file mode 100644 index 0000000..6b13c43 --- /dev/null +++ b/src/icons/gcp/cloud-external-ip-addresses.svg @@ -0,0 +1 @@ +Icon_24px_ExternalIPAddressesColor \ No newline at end of file diff --git a/src/icons/gcp/cloud-firewall-rules.svg b/src/icons/gcp/cloud-firewall-rules.svg new file mode 100644 index 0000000..a29bd52 --- /dev/null +++ b/src/icons/gcp/cloud-firewall-rules.svg @@ -0,0 +1 @@ +Icon_24px_FirewallRules_Color \ No newline at end of file diff --git a/src/icons/gcp/cloud-for-marketing.svg b/src/icons/gcp/cloud-for-marketing.svg new file mode 100644 index 0000000..5f94e55 --- /dev/null +++ b/src/icons/gcp/cloud-for-marketing.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/icons/gcp/cloud-functions.svg b/src/icons/gcp/cloud-functions.svg new file mode 100644 index 0000000..9459c2e --- /dev/null +++ b/src/icons/gcp/cloud-functions.svg @@ -0,0 +1 @@ +Icon_24px_Functions_Color \ No newline at end of file diff --git a/src/icons/gcp/cloud-generic.svg b/src/icons/gcp/cloud-generic.svg new file mode 100644 index 0000000..fcf3a10 --- /dev/null +++ b/src/icons/gcp/cloud-generic.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/icons/gcp/cloud-gpu.svg b/src/icons/gcp/cloud-gpu.svg new file mode 100644 index 0000000..c535565 --- /dev/null +++ b/src/icons/gcp/cloud-gpu.svg @@ -0,0 +1 @@ +Icon_24px_GPU_Color \ No newline at end of file diff --git a/src/icons/gcp/cloud-healthcare-api.svg b/src/icons/gcp/cloud-healthcare-api.svg new file mode 100644 index 0000000..443fc68 --- /dev/null +++ b/src/icons/gcp/cloud-healthcare-api.svg @@ -0,0 +1 @@ +Icon_24px_HealthcareAPI_Color \ No newline at end of file diff --git a/src/icons/gcp/cloud-healthcare-marketplace.svg b/src/icons/gcp/cloud-healthcare-marketplace.svg new file mode 100644 index 0000000..1b22700 --- /dev/null +++ b/src/icons/gcp/cloud-healthcare-marketplace.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/icons/gcp/cloud-hsm.svg b/src/icons/gcp/cloud-hsm.svg new file mode 100644 index 0000000..905d998 --- /dev/null +++ b/src/icons/gcp/cloud-hsm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/cloud-ids.svg b/src/icons/gcp/cloud-ids.svg new file mode 100644 index 0000000..be5f3c3 --- /dev/null +++ b/src/icons/gcp/cloud-ids.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/cloud-inference-api.svg b/src/icons/gcp/cloud-inference-api.svg new file mode 100644 index 0000000..f758f24 --- /dev/null +++ b/src/icons/gcp/cloud-inference-api.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/cloud-interconnect.svg b/src/icons/gcp/cloud-interconnect.svg new file mode 100644 index 0000000..a5c24d7 --- /dev/null +++ b/src/icons/gcp/cloud-interconnect.svg @@ -0,0 +1 @@ +Icon_24px_Interconnect_Color \ No newline at end of file diff --git a/src/icons/gcp/cloud-jobs-api.svg b/src/icons/gcp/cloud-jobs-api.svg new file mode 100644 index 0000000..da97fe3 --- /dev/null +++ b/src/icons/gcp/cloud-jobs-api.svg @@ -0,0 +1 @@ +Icon_24px_Jobs_Color \ No newline at end of file diff --git a/src/icons/gcp/cloud-load-balancing.svg b/src/icons/gcp/cloud-load-balancing.svg new file mode 100644 index 0000000..8ee1ca7 --- /dev/null +++ b/src/icons/gcp/cloud-load-balancing.svg @@ -0,0 +1 @@ +Icon_24px_LoadBalancing_Color \ No newline at end of file diff --git a/src/icons/gcp/cloud-logging.svg b/src/icons/gcp/cloud-logging.svg new file mode 100644 index 0000000..7691a3e --- /dev/null +++ b/src/icons/gcp/cloud-logging.svg @@ -0,0 +1 @@ +Icon_24px_Logging_Color \ No newline at end of file diff --git a/src/icons/gcp/cloud-media-edge.svg b/src/icons/gcp/cloud-media-edge.svg new file mode 100644 index 0000000..f7d30fd --- /dev/null +++ b/src/icons/gcp/cloud-media-edge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/cloud-monitoring.svg b/src/icons/gcp/cloud-monitoring.svg new file mode 100644 index 0000000..ab3111d --- /dev/null +++ b/src/icons/gcp/cloud-monitoring.svg @@ -0,0 +1 @@ +Icon_24px_Monitoring_Color \ No newline at end of file diff --git a/src/icons/gcp/cloud-nat.svg b/src/icons/gcp/cloud-nat.svg new file mode 100644 index 0000000..5e16535 --- /dev/null +++ b/src/icons/gcp/cloud-nat.svg @@ -0,0 +1 @@ +Icon_24px_CloudNAT_Color \ No newline at end of file diff --git a/src/icons/gcp/cloud-natural-language-api.svg b/src/icons/gcp/cloud-natural-language-api.svg new file mode 100644 index 0000000..0078eec --- /dev/null +++ b/src/icons/gcp/cloud-natural-language-api.svg @@ -0,0 +1 @@ +Icon_24px_NaturalLanguage_Color \ No newline at end of file diff --git a/src/icons/gcp/cloud-network.svg b/src/icons/gcp/cloud-network.svg new file mode 100644 index 0000000..9a156f3 --- /dev/null +++ b/src/icons/gcp/cloud-network.svg @@ -0,0 +1 @@ +Icon_24px_Network_Color \ No newline at end of file diff --git a/src/icons/gcp/cloud-ops.svg b/src/icons/gcp/cloud-ops.svg new file mode 100644 index 0000000..64ac43b --- /dev/null +++ b/src/icons/gcp/cloud-ops.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + diff --git a/src/icons/gcp/cloud-optimization-ai-fleet-routing-api.svg b/src/icons/gcp/cloud-optimization-ai-fleet-routing-api.svg new file mode 100644 index 0000000..1e8dba3 --- /dev/null +++ b/src/icons/gcp/cloud-optimization-ai-fleet-routing-api.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + diff --git a/src/icons/gcp/cloud-optimization-ai.svg b/src/icons/gcp/cloud-optimization-ai.svg new file mode 100644 index 0000000..6759c3d --- /dev/null +++ b/src/icons/gcp/cloud-optimization-ai.svg @@ -0,0 +1,24 @@ + + + + + + diff --git a/src/icons/gcp/cloud-router.svg b/src/icons/gcp/cloud-router.svg new file mode 100644 index 0000000..1afa7b7 --- /dev/null +++ b/src/icons/gcp/cloud-router.svg @@ -0,0 +1 @@ +Icon_24px_Router_Color \ No newline at end of file diff --git a/src/icons/gcp/cloud-routes.svg b/src/icons/gcp/cloud-routes.svg new file mode 100644 index 0000000..6b9cca1 --- /dev/null +++ b/src/icons/gcp/cloud-routes.svg @@ -0,0 +1 @@ +Icon_24px_Routes_Color \ No newline at end of file diff --git a/src/icons/gcp/cloud-run-for-anthos.svg b/src/icons/gcp/cloud-run-for-anthos.svg new file mode 100644 index 0000000..70bab4f --- /dev/null +++ b/src/icons/gcp/cloud-run-for-anthos.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/cloud-run.svg b/src/icons/gcp/cloud-run.svg new file mode 100644 index 0000000..e2e3b7d --- /dev/null +++ b/src/icons/gcp/cloud-run.svg @@ -0,0 +1 @@ +Icon_24px_CloudRun_Color \ No newline at end of file diff --git a/src/icons/gcp/cloud-scheduler.svg b/src/icons/gcp/cloud-scheduler.svg new file mode 100644 index 0000000..39f4695 --- /dev/null +++ b/src/icons/gcp/cloud-scheduler.svg @@ -0,0 +1 @@ +Icon_24px_Scheduler_Color \ No newline at end of file diff --git a/src/icons/gcp/cloud-security-scanner.svg b/src/icons/gcp/cloud-security-scanner.svg new file mode 100644 index 0000000..20d1009 --- /dev/null +++ b/src/icons/gcp/cloud-security-scanner.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/cloud-shell.svg b/src/icons/gcp/cloud-shell.svg new file mode 100644 index 0000000..880091e --- /dev/null +++ b/src/icons/gcp/cloud-shell.svg @@ -0,0 +1 @@ +Icon_24px_Cloudshell_Color \ No newline at end of file diff --git a/src/icons/gcp/cloud-spanner.svg b/src/icons/gcp/cloud-spanner.svg new file mode 100644 index 0000000..6e9cd86 --- /dev/null +++ b/src/icons/gcp/cloud-spanner.svg @@ -0,0 +1 @@ +Icon_24px_CloudSpanner_Color \ No newline at end of file diff --git a/src/icons/gcp/cloud-sql.svg b/src/icons/gcp/cloud-sql.svg new file mode 100644 index 0000000..9f29818 --- /dev/null +++ b/src/icons/gcp/cloud-sql.svg @@ -0,0 +1 @@ +Icon_24px_SQL_Color \ No newline at end of file diff --git a/src/icons/gcp/cloud-storage.svg b/src/icons/gcp/cloud-storage.svg new file mode 100644 index 0000000..59db35d --- /dev/null +++ b/src/icons/gcp/cloud-storage.svg @@ -0,0 +1 @@ +Icon_24px_CloudStorage_Color \ No newline at end of file diff --git a/src/icons/gcp/cloud-tasks.svg b/src/icons/gcp/cloud-tasks.svg new file mode 100644 index 0000000..5ea5934 --- /dev/null +++ b/src/icons/gcp/cloud-tasks.svg @@ -0,0 +1 @@ +Icon_24px_Tasks_Color \ No newline at end of file diff --git a/src/icons/gcp/cloud-test-lab.svg b/src/icons/gcp/cloud-test-lab.svg new file mode 100644 index 0000000..302e30f --- /dev/null +++ b/src/icons/gcp/cloud-test-lab.svg @@ -0,0 +1 @@ +Icon_24px_CloudTestLab_Color \ No newline at end of file diff --git a/src/icons/gcp/cloud-tpu.svg b/src/icons/gcp/cloud-tpu.svg new file mode 100644 index 0000000..19e5e78 --- /dev/null +++ b/src/icons/gcp/cloud-tpu.svg @@ -0,0 +1 @@ +Icon_24px_TPU_Color \ No newline at end of file diff --git a/src/icons/gcp/cloud-translation-api.svg b/src/icons/gcp/cloud-translation-api.svg new file mode 100644 index 0000000..75410e2 --- /dev/null +++ b/src/icons/gcp/cloud-translation-api.svg @@ -0,0 +1 @@ +Icon_24px_Translation_Color \ No newline at end of file diff --git a/src/icons/gcp/cloud-vision-api.svg b/src/icons/gcp/cloud-vision-api.svg new file mode 100644 index 0000000..f396d48 --- /dev/null +++ b/src/icons/gcp/cloud-vision-api.svg @@ -0,0 +1 @@ +Icon_24px_VisionAPI_Color \ No newline at end of file diff --git a/src/icons/gcp/cloud-vpn.svg b/src/icons/gcp/cloud-vpn.svg new file mode 100644 index 0000000..c8e46ff --- /dev/null +++ b/src/icons/gcp/cloud-vpn.svg @@ -0,0 +1 @@ +Icon_24px_VPN-01_Color \ No newline at end of file diff --git a/src/icons/gcp/compute-engine.svg b/src/icons/gcp/compute-engine.svg new file mode 100644 index 0000000..811860c --- /dev/null +++ b/src/icons/gcp/compute-engine.svg @@ -0,0 +1 @@ +Icon_24px_ComputeEngine_Color \ No newline at end of file diff --git a/src/icons/gcp/configuration-management.svg b/src/icons/gcp/configuration-management.svg new file mode 100644 index 0000000..840dfa1 --- /dev/null +++ b/src/icons/gcp/configuration-management.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/connectivity-test.svg b/src/icons/gcp/connectivity-test.svg new file mode 100644 index 0000000..8d5d0f8 --- /dev/null +++ b/src/icons/gcp/connectivity-test.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/src/icons/gcp/connectors.svg b/src/icons/gcp/connectors.svg new file mode 100644 index 0000000..6562b9d --- /dev/null +++ b/src/icons/gcp/connectors.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/contact-center-ai.svg b/src/icons/gcp/contact-center-ai.svg new file mode 100644 index 0000000..c8f0ef2 --- /dev/null +++ b/src/icons/gcp/contact-center-ai.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/container-optimized-os.svg b/src/icons/gcp/container-optimized-os.svg new file mode 100644 index 0000000..eac9ceb --- /dev/null +++ b/src/icons/gcp/container-optimized-os.svg @@ -0,0 +1 @@ +Icon_24px_ContainerOptimizedOS_Color \ No newline at end of file diff --git a/src/icons/gcp/container-registry.svg b/src/icons/gcp/container-registry.svg new file mode 100644 index 0000000..8f28ed5 --- /dev/null +++ b/src/icons/gcp/container-registry.svg @@ -0,0 +1 @@ +Icon_24px_ContainerRegistry_Color \ No newline at end of file diff --git a/src/icons/gcp/data-catalog.svg b/src/icons/gcp/data-catalog.svg new file mode 100644 index 0000000..811f79a --- /dev/null +++ b/src/icons/gcp/data-catalog.svg @@ -0,0 +1 @@ +Icon_24px_CloudDataCatalog_Color \ No newline at end of file diff --git a/src/icons/gcp/data-labeling.svg b/src/icons/gcp/data-labeling.svg new file mode 100644 index 0000000..1817deb --- /dev/null +++ b/src/icons/gcp/data-labeling.svg @@ -0,0 +1 @@ +Icon_24px_DataLabeling_Color \ No newline at end of file diff --git a/src/icons/gcp/data-layers.svg b/src/icons/gcp/data-layers.svg new file mode 100644 index 0000000..c64205c --- /dev/null +++ b/src/icons/gcp/data-layers.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/data-loss-prevention-api.svg b/src/icons/gcp/data-loss-prevention-api.svg new file mode 100644 index 0000000..5b7af48 --- /dev/null +++ b/src/icons/gcp/data-loss-prevention-api.svg @@ -0,0 +1 @@ +Icon_24px_DataLossPrevention_Color \ No newline at end of file diff --git a/src/icons/gcp/data-qna.svg b/src/icons/gcp/data-qna.svg new file mode 100644 index 0000000..b9accc9 --- /dev/null +++ b/src/icons/gcp/data-qna.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/data-studio.svg b/src/icons/gcp/data-studio.svg new file mode 100644 index 0000000..87f6402 --- /dev/null +++ b/src/icons/gcp/data-studio.svg @@ -0,0 +1 @@ +Icon_24px_DataStudio_Color \ No newline at end of file diff --git a/src/icons/gcp/data-transfer.svg b/src/icons/gcp/data-transfer.svg new file mode 100644 index 0000000..886e85e --- /dev/null +++ b/src/icons/gcp/data-transfer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/dataflow.svg b/src/icons/gcp/dataflow.svg new file mode 100644 index 0000000..3ddc777 --- /dev/null +++ b/src/icons/gcp/dataflow.svg @@ -0,0 +1 @@ +Icon_24px_Dataflow_Color \ No newline at end of file diff --git a/src/icons/gcp/datalab.svg b/src/icons/gcp/datalab.svg new file mode 100644 index 0000000..89e19d6 --- /dev/null +++ b/src/icons/gcp/datalab.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/icons/gcp/dataplex.svg b/src/icons/gcp/dataplex.svg new file mode 100644 index 0000000..83bb8ad --- /dev/null +++ b/src/icons/gcp/dataplex.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/src/icons/gcp/datapol.svg b/src/icons/gcp/datapol.svg new file mode 100644 index 0000000..d6286c3 --- /dev/null +++ b/src/icons/gcp/datapol.svg @@ -0,0 +1 @@ +Icon_24px_Datapol_Color \ No newline at end of file diff --git a/src/icons/gcp/dataprep.svg b/src/icons/gcp/dataprep.svg new file mode 100644 index 0000000..4fc17fc --- /dev/null +++ b/src/icons/gcp/dataprep.svg @@ -0,0 +1 @@ +Icon_24px_Dataprep_Color \ No newline at end of file diff --git a/src/icons/gcp/dataproc-metastore.svg b/src/icons/gcp/dataproc-metastore.svg new file mode 100644 index 0000000..05449df --- /dev/null +++ b/src/icons/gcp/dataproc-metastore.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/dataproc.svg b/src/icons/gcp/dataproc.svg new file mode 100644 index 0000000..df09bd2 --- /dev/null +++ b/src/icons/gcp/dataproc.svg @@ -0,0 +1 @@ +Icon_24px_DataProc_Color \ No newline at end of file diff --git a/src/icons/gcp/datashare.svg b/src/icons/gcp/datashare.svg new file mode 100644 index 0000000..4e03a0a --- /dev/null +++ b/src/icons/gcp/datashare.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/icons/gcp/datastore.svg b/src/icons/gcp/datastore.svg new file mode 100644 index 0000000..0556fcf --- /dev/null +++ b/src/icons/gcp/datastore.svg @@ -0,0 +1 @@ +Icon_24px_DataStore_Color \ No newline at end of file diff --git a/src/icons/gcp/datastream.svg b/src/icons/gcp/datastream.svg new file mode 100644 index 0000000..7e83e2d --- /dev/null +++ b/src/icons/gcp/datastream.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/icons/gcp/debugger.svg b/src/icons/gcp/debugger.svg new file mode 100644 index 0000000..bdeab41 --- /dev/null +++ b/src/icons/gcp/debugger.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/icons/gcp/developer-portal.svg b/src/icons/gcp/developer-portal.svg new file mode 100644 index 0000000..f3050b5 --- /dev/null +++ b/src/icons/gcp/developer-portal.svg @@ -0,0 +1 @@ +Icon_24px_DevPortal_Color \ No newline at end of file diff --git a/src/icons/gcp/dialogflow-cx.svg b/src/icons/gcp/dialogflow-cx.svg new file mode 100644 index 0000000..dc4575b --- /dev/null +++ b/src/icons/gcp/dialogflow-cx.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/dialogflow-insights.svg b/src/icons/gcp/dialogflow-insights.svg new file mode 100644 index 0000000..b8806ac --- /dev/null +++ b/src/icons/gcp/dialogflow-insights.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/dialogflow.svg b/src/icons/gcp/dialogflow.svg new file mode 100644 index 0000000..c7882e5 --- /dev/null +++ b/src/icons/gcp/dialogflow.svg @@ -0,0 +1 @@ +Icon_24px_Dialogflow_Color \ No newline at end of file diff --git a/src/icons/gcp/document-ai.svg b/src/icons/gcp/document-ai.svg new file mode 100644 index 0000000..5a9b2a0 --- /dev/null +++ b/src/icons/gcp/document-ai.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/early-access-center.svg b/src/icons/gcp/early-access-center.svg new file mode 100644 index 0000000..96149ed --- /dev/null +++ b/src/icons/gcp/early-access-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/error-reporting.svg b/src/icons/gcp/error-reporting.svg new file mode 100644 index 0000000..ff4346b --- /dev/null +++ b/src/icons/gcp/error-reporting.svg @@ -0,0 +1 @@ +Icon_24px_ErrorReporting_Color \ No newline at end of file diff --git a/src/icons/gcp/eventarc.svg b/src/icons/gcp/eventarc.svg new file mode 100644 index 0000000..15973f6 --- /dev/null +++ b/src/icons/gcp/eventarc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/filestore.svg b/src/icons/gcp/filestore.svg new file mode 100644 index 0000000..6d04a5f --- /dev/null +++ b/src/icons/gcp/filestore.svg @@ -0,0 +1 @@ +Icon_24px_Filestore_Color \ No newline at end of file diff --git a/src/icons/gcp/financial-services-marketplace.svg b/src/icons/gcp/financial-services-marketplace.svg new file mode 100644 index 0000000..8fd0884 --- /dev/null +++ b/src/icons/gcp/financial-services-marketplace.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/icons/gcp/firestore.svg b/src/icons/gcp/firestore.svg new file mode 100644 index 0000000..df95cd0 --- /dev/null +++ b/src/icons/gcp/firestore.svg @@ -0,0 +1 @@ +Icon_24px_Firestore_Color \ No newline at end of file diff --git a/src/icons/gcp/fleet-engine.svg b/src/icons/gcp/fleet-engine.svg new file mode 100644 index 0000000..994c274 --- /dev/null +++ b/src/icons/gcp/fleet-engine.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/free-trial.svg b/src/icons/gcp/free-trial.svg new file mode 100644 index 0000000..0c0e714 --- /dev/null +++ b/src/icons/gcp/free-trial.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + diff --git a/src/icons/gcp/game-servers.svg b/src/icons/gcp/game-servers.svg new file mode 100644 index 0000000..b7cfa71 --- /dev/null +++ b/src/icons/gcp/game-servers.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/icons/gcp/gce-systems-management.svg b/src/icons/gcp/gce-systems-management.svg new file mode 100644 index 0000000..5bd94ca --- /dev/null +++ b/src/icons/gcp/gce-systems-management.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/icons/gcp/gcp-batch.svg b/src/icons/gcp/gcp-batch.svg new file mode 100644 index 0000000..426c7c5 --- /dev/null +++ b/src/icons/gcp/gcp-batch.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/icons/gcp/gcp-certificate-manager.svg b/src/icons/gcp/gcp-certificate-manager.svg new file mode 100644 index 0000000..2615703 --- /dev/null +++ b/src/icons/gcp/gcp-certificate-manager.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/gcp-database-migration-service.svg b/src/icons/gcp/gcp-database-migration-service.svg new file mode 100644 index 0000000..0131558 --- /dev/null +++ b/src/icons/gcp/gcp-database-migration-service.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/gcp-identity-and-access-management.svg b/src/icons/gcp/gcp-identity-and-access-management.svg new file mode 100644 index 0000000..4ba9ea6 --- /dev/null +++ b/src/icons/gcp/gcp-identity-and-access-management.svg @@ -0,0 +1 @@ +Icon_24px_IAM_Color \ No newline at end of file diff --git a/src/icons/gcp/gcp-iot-core.svg b/src/icons/gcp/gcp-iot-core.svg new file mode 100644 index 0000000..5cd07de --- /dev/null +++ b/src/icons/gcp/gcp-iot-core.svg @@ -0,0 +1 @@ +Icon_24px_IoTCore_Color \ No newline at end of file diff --git a/src/icons/gcp/gcp-key-management-service.svg b/src/icons/gcp/gcp-key-management-service.svg new file mode 100644 index 0000000..5364fdd --- /dev/null +++ b/src/icons/gcp/gcp-key-management-service.svg @@ -0,0 +1 @@ +Icon_24px_KeyManageService_Color \ No newline at end of file diff --git a/src/icons/gcp/gcp-support.svg b/src/icons/gcp/gcp-support.svg new file mode 100644 index 0000000..145c73a --- /dev/null +++ b/src/icons/gcp/gcp-support.svg @@ -0,0 +1,12 @@ + + + + + + + + + diff --git a/src/icons/gcp/gcp-virtual-private-cloud.svg b/src/icons/gcp/gcp-virtual-private-cloud.svg new file mode 100644 index 0000000..295b0ee --- /dev/null +++ b/src/icons/gcp/gcp-virtual-private-cloud.svg @@ -0,0 +1 @@ +Icon_24px_VirtualPrivateCloud_Color \ No newline at end of file diff --git a/src/icons/gcp/genomics.svg b/src/icons/gcp/genomics.svg new file mode 100644 index 0000000..bc7baf3 --- /dev/null +++ b/src/icons/gcp/genomics.svg @@ -0,0 +1 @@ +Icon_24px_Genomic_Color \ No newline at end of file diff --git a/src/icons/gcp/gke-on-prem.svg b/src/icons/gcp/gke-on-prem.svg new file mode 100644 index 0000000..9cbabc5 --- /dev/null +++ b/src/icons/gcp/gke-on-prem.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/google-cloud-marketplace.svg b/src/icons/gcp/google-cloud-marketplace.svg new file mode 100644 index 0000000..85a466f --- /dev/null +++ b/src/icons/gcp/google-cloud-marketplace.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/src/icons/gcp/google-kubernetes-engine.svg b/src/icons/gcp/google-kubernetes-engine.svg new file mode 100644 index 0000000..472b373 --- /dev/null +++ b/src/icons/gcp/google-kubernetes-engine.svg @@ -0,0 +1 @@ +Icon_24px_K8Engine_Color \ No newline at end of file diff --git a/src/icons/gcp/google-maps-platform.svg b/src/icons/gcp/google-maps-platform.svg new file mode 100644 index 0000000..e5c979d --- /dev/null +++ b/src/icons/gcp/google-maps-platform.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/icons/gcp/healthcare-nlp-api.svg b/src/icons/gcp/healthcare-nlp-api.svg new file mode 100644 index 0000000..4ec7aa8 --- /dev/null +++ b/src/icons/gcp/healthcare-nlp-api.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/home.svg b/src/icons/gcp/home.svg new file mode 100644 index 0000000..a24465b --- /dev/null +++ b/src/icons/gcp/home.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + diff --git a/src/icons/gcp/identity-aware-proxy.svg b/src/icons/gcp/identity-aware-proxy.svg new file mode 100644 index 0000000..18d4a6c --- /dev/null +++ b/src/icons/gcp/identity-aware-proxy.svg @@ -0,0 +1 @@ +Icon_24px_IdentityAwareProxy_Color \ No newline at end of file diff --git a/src/icons/gcp/identity-platform.svg b/src/icons/gcp/identity-platform.svg new file mode 100644 index 0000000..88af328 --- /dev/null +++ b/src/icons/gcp/identity-platform.svg @@ -0,0 +1 @@ +Icon_24px_CICP_Color \ No newline at end of file diff --git a/src/icons/gcp/iot-edge.svg b/src/icons/gcp/iot-edge.svg new file mode 100644 index 0000000..b39f9d1 --- /dev/null +++ b/src/icons/gcp/iot-edge.svg @@ -0,0 +1 @@ +Icon_24px_CloudIoTEdge_Color \ No newline at end of file diff --git a/src/icons/gcp/key-access-justifications.svg b/src/icons/gcp/key-access-justifications.svg new file mode 100644 index 0000000..3f8017f --- /dev/null +++ b/src/icons/gcp/key-access-justifications.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/kuberun.svg b/src/icons/gcp/kuberun.svg new file mode 100644 index 0000000..8e36374 --- /dev/null +++ b/src/icons/gcp/kuberun.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/src/icons/gcp/launcher.svg b/src/icons/gcp/launcher.svg new file mode 100644 index 0000000..3176a73 --- /dev/null +++ b/src/icons/gcp/launcher.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + diff --git a/src/icons/gcp/local-ssd.svg b/src/icons/gcp/local-ssd.svg new file mode 100644 index 0000000..d177460 --- /dev/null +++ b/src/icons/gcp/local-ssd.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/icons/gcp/looker.svg b/src/icons/gcp/looker.svg new file mode 100644 index 0000000..f9a44d0 --- /dev/null +++ b/src/icons/gcp/looker.svg @@ -0,0 +1,15 @@ + + + + + + + + diff --git a/src/icons/gcp/managed-service-for-microsoft-active-directory.svg b/src/icons/gcp/managed-service-for-microsoft-active-directory.svg new file mode 100644 index 0000000..0dd7c5e --- /dev/null +++ b/src/icons/gcp/managed-service-for-microsoft-active-directory.svg @@ -0,0 +1 @@ +Icon_24px_MicrosoftAd_Color \ No newline at end of file diff --git a/src/icons/gcp/media-translation-api.svg b/src/icons/gcp/media-translation-api.svg new file mode 100644 index 0000000..fd3bd44 --- /dev/null +++ b/src/icons/gcp/media-translation-api.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/memorystore.svg b/src/icons/gcp/memorystore.svg new file mode 100644 index 0000000..fb1fbef --- /dev/null +++ b/src/icons/gcp/memorystore.svg @@ -0,0 +1 @@ +Icon_24px_MemoryStore_Color \ No newline at end of file diff --git a/src/icons/gcp/migrate-for-anthos.svg b/src/icons/gcp/migrate-for-anthos.svg new file mode 100644 index 0000000..bb61749 --- /dev/null +++ b/src/icons/gcp/migrate-for-anthos.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/icons/gcp/migrate-for-compute-engine.svg b/src/icons/gcp/migrate-for-compute-engine.svg new file mode 100644 index 0000000..3a66f9c --- /dev/null +++ b/src/icons/gcp/migrate-for-compute-engine.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/icons/gcp/my-cloud.svg b/src/icons/gcp/my-cloud.svg new file mode 100644 index 0000000..125331f --- /dev/null +++ b/src/icons/gcp/my-cloud.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/icons/gcp/network-connectivity-center.svg b/src/icons/gcp/network-connectivity-center.svg new file mode 100644 index 0000000..c6dc78d --- /dev/null +++ b/src/icons/gcp/network-connectivity-center.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/network-intelligence-center.svg b/src/icons/gcp/network-intelligence-center.svg new file mode 100644 index 0000000..c987b50 --- /dev/null +++ b/src/icons/gcp/network-intelligence-center.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/icons/gcp/network-security.svg b/src/icons/gcp/network-security.svg new file mode 100644 index 0000000..67d3e5d --- /dev/null +++ b/src/icons/gcp/network-security.svg @@ -0,0 +1 @@ +Icon_24px_NetworkSecurity_Color \ No newline at end of file diff --git a/src/icons/gcp/network-tiers.svg b/src/icons/gcp/network-tiers.svg new file mode 100644 index 0000000..0ae424a --- /dev/null +++ b/src/icons/gcp/network-tiers.svg @@ -0,0 +1 @@ +Icon_24px_NetworkTiers_Color \ No newline at end of file diff --git a/src/icons/gcp/network-topology.svg b/src/icons/gcp/network-topology.svg new file mode 100644 index 0000000..64666bb --- /dev/null +++ b/src/icons/gcp/network-topology.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/icons/gcp/onboarding.svg b/src/icons/gcp/onboarding.svg new file mode 100644 index 0000000..d006444 --- /dev/null +++ b/src/icons/gcp/onboarding.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + diff --git a/src/icons/gcp/os-configuration-management.svg b/src/icons/gcp/os-configuration-management.svg new file mode 100644 index 0000000..b1f9f2a --- /dev/null +++ b/src/icons/gcp/os-configuration-management.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/icons/gcp/os-inventory-management.svg b/src/icons/gcp/os-inventory-management.svg new file mode 100644 index 0000000..1ee2ffa --- /dev/null +++ b/src/icons/gcp/os-inventory-management.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/icons/gcp/os-patch-management.svg b/src/icons/gcp/os-patch-management.svg new file mode 100644 index 0000000..ce179bf --- /dev/null +++ b/src/icons/gcp/os-patch-management.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/icons/gcp/partner-interconnect.svg b/src/icons/gcp/partner-interconnect.svg new file mode 100644 index 0000000..6faa44b --- /dev/null +++ b/src/icons/gcp/partner-interconnect.svg @@ -0,0 +1 @@ +Icon_24px_PartnerInterconnect_Color \ No newline at end of file diff --git a/src/icons/gcp/partner-portal.svg b/src/icons/gcp/partner-portal.svg new file mode 100644 index 0000000..c9b55fc --- /dev/null +++ b/src/icons/gcp/partner-portal.svg @@ -0,0 +1,21 @@ + + + + + + + diff --git a/src/icons/gcp/performance-dashboard.svg b/src/icons/gcp/performance-dashboard.svg new file mode 100644 index 0000000..250f323 --- /dev/null +++ b/src/icons/gcp/performance-dashboard.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/icons/gcp/permissions.svg b/src/icons/gcp/permissions.svg new file mode 100644 index 0000000..a743179 --- /dev/null +++ b/src/icons/gcp/permissions.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/src/icons/gcp/persistent-disk.svg b/src/icons/gcp/persistent-disk.svg new file mode 100644 index 0000000..0b8f9de --- /dev/null +++ b/src/icons/gcp/persistent-disk.svg @@ -0,0 +1 @@ +Icon_24px_PersistentDisk_Color \ No newline at end of file diff --git a/src/icons/gcp/phishing-protection.svg b/src/icons/gcp/phishing-protection.svg new file mode 100644 index 0000000..43b2c25 --- /dev/null +++ b/src/icons/gcp/phishing-protection.svg @@ -0,0 +1 @@ +Icon_24px_PhishingProtection_Color \ No newline at end of file diff --git a/src/icons/gcp/policy-analyzer.svg b/src/icons/gcp/policy-analyzer.svg new file mode 100644 index 0000000..4476516 --- /dev/null +++ b/src/icons/gcp/policy-analyzer.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/icons/gcp/premium-network-tier.svg b/src/icons/gcp/premium-network-tier.svg new file mode 100644 index 0000000..5d39a76 --- /dev/null +++ b/src/icons/gcp/premium-network-tier.svg @@ -0,0 +1 @@ +Icon_24px_PremierNetworkTier_Color \ No newline at end of file diff --git a/src/icons/gcp/private-connectivity.svg b/src/icons/gcp/private-connectivity.svg new file mode 100644 index 0000000..9414884 --- /dev/null +++ b/src/icons/gcp/private-connectivity.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/private-service-connect.svg b/src/icons/gcp/private-service-connect.svg new file mode 100644 index 0000000..7d2cf74 --- /dev/null +++ b/src/icons/gcp/private-service-connect.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/producer-portal.svg b/src/icons/gcp/producer-portal.svg new file mode 100644 index 0000000..61be723 --- /dev/null +++ b/src/icons/gcp/producer-portal.svg @@ -0,0 +1,13 @@ + + + + + + + + + + diff --git a/src/icons/gcp/profiler.svg b/src/icons/gcp/profiler.svg new file mode 100644 index 0000000..1e8802c --- /dev/null +++ b/src/icons/gcp/profiler.svg @@ -0,0 +1 @@ +Icon_24px_Profiler_Color \ No newline at end of file diff --git a/src/icons/gcp/project.svg b/src/icons/gcp/project.svg new file mode 100644 index 0000000..728e85e --- /dev/null +++ b/src/icons/gcp/project.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + diff --git a/src/icons/gcp/pubsub.svg b/src/icons/gcp/pubsub.svg new file mode 100644 index 0000000..51cccfd --- /dev/null +++ b/src/icons/gcp/pubsub.svg @@ -0,0 +1 @@ +Icon_24px_Pub-Sub_Color \ No newline at end of file diff --git a/src/icons/gcp/quantum-engine.svg b/src/icons/gcp/quantum-engine.svg new file mode 100644 index 0000000..9ccd632 --- /dev/null +++ b/src/icons/gcp/quantum-engine.svg @@ -0,0 +1 @@ +Icon_24px_QuantamEngine_Color \ No newline at end of file diff --git a/src/icons/gcp/quotas.svg b/src/icons/gcp/quotas.svg new file mode 100644 index 0000000..cd71ad1 --- /dev/null +++ b/src/icons/gcp/quotas.svg @@ -0,0 +1 @@ +Icon_24px_Quotas_Color \ No newline at end of file diff --git a/src/icons/gcp/real-world-insights.svg b/src/icons/gcp/real-world-insights.svg new file mode 100644 index 0000000..c9dec0e --- /dev/null +++ b/src/icons/gcp/real-world-insights.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/icons/gcp/recommendations-ai.svg b/src/icons/gcp/recommendations-ai.svg new file mode 100644 index 0000000..781ad22 --- /dev/null +++ b/src/icons/gcp/recommendations-ai.svg @@ -0,0 +1 @@ +Icon_24px_Recommendation_Color \ No newline at end of file diff --git a/src/icons/gcp/release-notes.svg b/src/icons/gcp/release-notes.svg new file mode 100644 index 0000000..0e6649c --- /dev/null +++ b/src/icons/gcp/release-notes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/retail-api.svg b/src/icons/gcp/retail-api.svg new file mode 100644 index 0000000..3102916 --- /dev/null +++ b/src/icons/gcp/retail-api.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/risk-manager.svg b/src/icons/gcp/risk-manager.svg new file mode 100644 index 0000000..eb60a65 --- /dev/null +++ b/src/icons/gcp/risk-manager.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/runtime-config.svg b/src/icons/gcp/runtime-config.svg new file mode 100644 index 0000000..ffaee6a --- /dev/null +++ b/src/icons/gcp/runtime-config.svg @@ -0,0 +1 @@ +Icon_24px_RuntimeConfig_Color \ No newline at end of file diff --git a/src/icons/gcp/secret-manager.svg b/src/icons/gcp/secret-manager.svg new file mode 100644 index 0000000..1668a03 --- /dev/null +++ b/src/icons/gcp/secret-manager.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/src/icons/gcp/security-command-center.svg b/src/icons/gcp/security-command-center.svg new file mode 100644 index 0000000..2d60d64 --- /dev/null +++ b/src/icons/gcp/security-command-center.svg @@ -0,0 +1 @@ +Icon_24px_SecurityCommandCenter_Color \ No newline at end of file diff --git a/src/icons/gcp/security-health-advisor.svg b/src/icons/gcp/security-health-advisor.svg new file mode 100644 index 0000000..4115a00 --- /dev/null +++ b/src/icons/gcp/security-health-advisor.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/icons/gcp/security-key-enforcement.svg b/src/icons/gcp/security-key-enforcement.svg new file mode 100644 index 0000000..548a4e8 --- /dev/null +++ b/src/icons/gcp/security-key-enforcement.svg @@ -0,0 +1 @@ +Icon_24px_SecKeyEnforcer_Color \ No newline at end of file diff --git a/src/icons/gcp/security.svg b/src/icons/gcp/security.svg new file mode 100644 index 0000000..7cd8a63 --- /dev/null +++ b/src/icons/gcp/security.svg @@ -0,0 +1,12 @@ + + + + + + + + + + diff --git a/src/icons/gcp/service-discovery.svg b/src/icons/gcp/service-discovery.svg new file mode 100644 index 0000000..7a79c61 --- /dev/null +++ b/src/icons/gcp/service-discovery.svg @@ -0,0 +1 @@ +Icon_24px_Color_ServiceDiscovery \ No newline at end of file diff --git a/src/icons/gcp/speech-to-text.svg b/src/icons/gcp/speech-to-text.svg new file mode 100644 index 0000000..fe068d5 --- /dev/null +++ b/src/icons/gcp/speech-to-text.svg @@ -0,0 +1 @@ +Icon_24px_SpeechtoText_Color \ No newline at end of file diff --git a/src/icons/gcp/stackdriver.svg b/src/icons/gcp/stackdriver.svg new file mode 100644 index 0000000..4c9272c --- /dev/null +++ b/src/icons/gcp/stackdriver.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/standard-network-tier.svg b/src/icons/gcp/standard-network-tier.svg new file mode 100644 index 0000000..1b1aaca --- /dev/null +++ b/src/icons/gcp/standard-network-tier.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/icons/gcp/stream-suite.svg b/src/icons/gcp/stream-suite.svg new file mode 100644 index 0000000..059a74b --- /dev/null +++ b/src/icons/gcp/stream-suite.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/icons/gcp/tensorflow-enterprise.svg b/src/icons/gcp/tensorflow-enterprise.svg new file mode 100644 index 0000000..364a370 --- /dev/null +++ b/src/icons/gcp/tensorflow-enterprise.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/src/icons/gcp/text-to-speech.svg b/src/icons/gcp/text-to-speech.svg new file mode 100644 index 0000000..5aebb5a --- /dev/null +++ b/src/icons/gcp/text-to-speech.svg @@ -0,0 +1 @@ +Icon_24px_TexttoSpeech_Color \ No newline at end of file diff --git a/src/icons/gcp/tools-for-powershell.svg b/src/icons/gcp/tools-for-powershell.svg new file mode 100644 index 0000000..4cd1847 --- /dev/null +++ b/src/icons/gcp/tools-for-powershell.svg @@ -0,0 +1 @@ +Icon_24px_ToolsforPowershell_Color \ No newline at end of file diff --git a/src/icons/gcp/trace.svg b/src/icons/gcp/trace.svg new file mode 100644 index 0000000..b018b3c --- /dev/null +++ b/src/icons/gcp/trace.svg @@ -0,0 +1 @@ +Icon_24px_Trace_Color \ No newline at end of file diff --git a/src/icons/gcp/traffic-director.svg b/src/icons/gcp/traffic-director.svg new file mode 100644 index 0000000..c34230a --- /dev/null +++ b/src/icons/gcp/traffic-director.svg @@ -0,0 +1 @@ +Icon_24px_TrafficDetector_Color \ No newline at end of file diff --git a/src/icons/gcp/transfer-appliance.svg b/src/icons/gcp/transfer-appliance.svg new file mode 100644 index 0000000..8ea9460 --- /dev/null +++ b/src/icons/gcp/transfer-appliance.svg @@ -0,0 +1 @@ +Icon_24px_TransferAppliance_Color \ No newline at end of file diff --git a/src/icons/gcp/transfer.svg b/src/icons/gcp/transfer.svg new file mode 100644 index 0000000..1dbf0de --- /dev/null +++ b/src/icons/gcp/transfer.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/src/icons/gcp/user-preferences.svg b/src/icons/gcp/user-preferences.svg new file mode 100644 index 0000000..eacd302 --- /dev/null +++ b/src/icons/gcp/user-preferences.svg @@ -0,0 +1,19 @@ + + + + + + + + + diff --git a/src/icons/gcp/vertexai.svg b/src/icons/gcp/vertexai.svg new file mode 100644 index 0000000..efc3589 --- /dev/null +++ b/src/icons/gcp/vertexai.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/video-intelligence-api.svg b/src/icons/gcp/video-intelligence-api.svg new file mode 100644 index 0000000..fbe87e2 --- /dev/null +++ b/src/icons/gcp/video-intelligence-api.svg @@ -0,0 +1 @@ +Icon_24px_VideoIntelligence_Color \ No newline at end of file diff --git a/src/icons/gcp/visual-inspection.svg b/src/icons/gcp/visual-inspection.svg new file mode 100644 index 0000000..08e5fb3 --- /dev/null +++ b/src/icons/gcp/visual-inspection.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/vmware-engine.svg b/src/icons/gcp/vmware-engine.svg new file mode 100644 index 0000000..1d84598 --- /dev/null +++ b/src/icons/gcp/vmware-engine.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/icons/gcp/web-risk.svg b/src/icons/gcp/web-risk.svg new file mode 100644 index 0000000..4e456e6 --- /dev/null +++ b/src/icons/gcp/web-risk.svg @@ -0,0 +1 @@ +Icon_24px_WebRisk_Color \ No newline at end of file diff --git a/src/icons/gcp/web-security-scanner.svg b/src/icons/gcp/web-security-scanner.svg new file mode 100644 index 0000000..5806dc7 --- /dev/null +++ b/src/icons/gcp/web-security-scanner.svg @@ -0,0 +1 @@ +Icon_24px_SecurityScanner_Color \ No newline at end of file diff --git a/src/icons/gcp/workflows.svg b/src/icons/gcp/workflows.svg new file mode 100644 index 0000000..5878e8d --- /dev/null +++ b/src/icons/gcp/workflows.svg @@ -0,0 +1 @@ + diff --git a/src/icons/gcp/workload-identity-pool.svg b/src/icons/gcp/workload-identity-pool.svg new file mode 100644 index 0000000..e12606e --- /dev/null +++ b/src/icons/gcp/workload-identity-pool.svg @@ -0,0 +1 @@ + \ No newline at end of file From 2d61c92870476c910ac4bff4317f786d3477d226 Mon Sep 17 00:00:00 2001 From: MoezehDev Date: Mon, 28 Apr 2025 04:10:28 -0700 Subject: [PATCH 15/15] fix(typo): fix typo in org name --- README.md | 8 ++++---- package.json | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 178e512..f3091ea 100644 --- a/README.md +++ b/README.md @@ -8,11 +8,11 @@ We use optimized SVGs with optional `colors[]` and `colorsByHex{}` support, so t #### install ```bash -npm i @crtcloudnet/icons +npm i @ctrlcloud/icons ``` #### basic usage ```js -import {EC2} from '@crtcloudnet/icons'; +import {EC2} from '@ctrlcloud/icons'; export default function Home() { return ( @@ -27,7 +27,7 @@ To use this library in a Next.js app, add the following to your `next.config.js` ```js - transpilePackages: ['@crtcloudnet/icons'], // Explicitly transpile this package + transpilePackages: ['@ctrlcloud/icons'], // Explicitly transpile this package webpack(config) { config.module.rules.push({ test: /\.svg$/, @@ -63,7 +63,7 @@ All props are optional: Example usage: ```jsx -import { EC2, S3, Lambda } from '@crtcloudnet/icons'; +import { EC2, S3, Lambda } from '@ctrlcloud/icons'; export default function Example() { return ( diff --git a/package.json b/package.json index 23d68c9..0de1f3e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { - "name": "@crtcloudnet/icons", - "version": "1.0.0-beta.0", + "name": "@ctrlcloud/icons", + "version": "1.0.0-beta.1", "sideEffects": false, "description": "The set of icons from CtrlCloud for DevOps projects", "type": "module",