From 6590f46ad4064e7cdbcc80b8967b0e9e6c5b1f70 Mon Sep 17 00:00:00 2001 From: haoziqaq <357229046@qq.com> Date: Sun, 12 Jan 2025 20:33:15 +0800 Subject: [PATCH] chore: update deps --- .eslintrc | 5 - .prettierrc | 5 - eslint.config.js | 5 + package.json | 11 +- packages/playground-vite/vite.config.ts | 4 +- packages/playground-webpack/src/main.ts | 2 +- .../playground-webpack/src/shims-vue.d.ts | 1 - packages/varlet-icon-builder/bin/index.js | 2 +- .../varlet-icon-builder/src/commands/build.ts | 10 +- .../varlet-icon-builder/src/commands/figma.ts | 4 +- .../src/commands/generate.ts | 12 +- .../src/framework/react.ts | 6 +- .../varlet-icon-builder/src/framework/vue3.ts | 4 +- .../varlet-icon-builder/src/utils/compiler.ts | 4 +- .../varlet-unplugin-icon-builder/src/index.ts | 18 +- pnpm-lock.yaml | 1350 ++++++++++++++++- prettier.config.js | 3 + 17 files changed, 1372 insertions(+), 74 deletions(-) delete mode 100644 .eslintrc delete mode 100644 .prettierrc create mode 100644 eslint.config.js create mode 100644 prettier.config.js diff --git a/.eslintrc b/.eslintrc deleted file mode 100644 index 67bbe6d..0000000 --- a/.eslintrc +++ /dev/null @@ -1,5 +0,0 @@ -{ - "root": true, - "ignorePatterns": ["dist"], - "extends": ["@varlet"] -} diff --git a/.prettierrc b/.prettierrc deleted file mode 100644 index b397782..0000000 --- a/.prettierrc +++ /dev/null @@ -1,5 +0,0 @@ -{ - "printWidth": 120, - "singleQuote": true, - "semi": false -} diff --git a/eslint.config.js b/eslint.config.js new file mode 100644 index 0000000..1a33f12 --- /dev/null +++ b/eslint.config.js @@ -0,0 +1,5 @@ +import { defineConfig } from '@configurajs/eslint' + +export default defineConfig({ + ignores: ['**/svg-esm', '**/svg-cjs', '**/svg-types', '**/svg-components'], +}) diff --git a/package.json b/package.json index 68e4c4b..f81ab3d 100644 --- a/package.json +++ b/package.json @@ -1,20 +1,23 @@ { "root": true, "version": "0.6.0", + "type": "module", "scripts": { "preinstall": "npx only-allow pnpm", "postinstall": "simple-git-hooks", "bootstrap": "pnpm install && pnpm build", "build": "pnpm --dir packages/varlet-icon-builder build && pnpm --dir packages/varlet-unplugin-icon-builder build", - "lint": "eslint --ext .ts,.js", + "lint": "eslint --fix .", "format": "prettier --write .", "release": "pnpm build && vr release", "clean": "rimraf ./node_modules ./packages/*/node_modules" }, "devDependencies": { "@varlet/release": "0.2.5", - "eslint": "^8.53.0", - "prettier": "^3.1.0", + "@configurajs/eslint": "^0.1.0", + "@configurajs/prettier": "^0.1.1", + "eslint": "^9.18.0", + "prettier": "^3.4.2", "simple-git-hooks": "^2.9.0", "nano-staged": "^0.8.0", "typescript": "^5.2.2", @@ -43,4 +46,4 @@ "object.values": "npm:@nolyfill/object.values@latest" } } -} \ No newline at end of file +} diff --git a/packages/playground-vite/vite.config.ts b/packages/playground-vite/vite.config.ts index 7a03e7f..1e48944 100644 --- a/packages/playground-vite/vite.config.ts +++ b/packages/playground-vite/vite.config.ts @@ -1,6 +1,6 @@ -import { defineConfig } from 'vite' -import vue from '@vitejs/plugin-vue' import icon from '@varlet/unplugin-icon-builder/vite' +import vue from '@vitejs/plugin-vue' +import { defineConfig } from 'vite' export default defineConfig({ plugins: [vue(), icon({ lib: '@varlet/test-icons/svg-icons', onDemand: true })], diff --git a/packages/playground-webpack/src/main.ts b/packages/playground-webpack/src/main.ts index 387807b..5ca96f4 100644 --- a/packages/playground-webpack/src/main.ts +++ b/packages/playground-webpack/src/main.ts @@ -1,5 +1,5 @@ -import App from './App.vue' import { createApp } from 'vue' +import App from './App.vue' import 'virtual-icons' createApp(App).mount('#app') diff --git a/packages/playground-webpack/src/shims-vue.d.ts b/packages/playground-webpack/src/shims-vue.d.ts index 3804a43..2b97bd9 100644 --- a/packages/playground-webpack/src/shims-vue.d.ts +++ b/packages/playground-webpack/src/shims-vue.d.ts @@ -1,4 +1,3 @@ -/* eslint-disable */ declare module '*.vue' { import type { DefineComponent } from 'vue' const component: DefineComponent<{}, {}, any> diff --git a/packages/varlet-icon-builder/bin/index.js b/packages/varlet-icon-builder/bin/index.js index 0a1c325..4e436e3 100755 --- a/packages/varlet-icon-builder/bin/index.js +++ b/packages/varlet-icon-builder/bin/index.js @@ -1,6 +1,6 @@ #!/usr/bin/env node -import { build, generate, figma } from '../dist/index.js' import { Command } from 'commander' +import { build, figma, generate } from '../dist/index.js' const program = new Command() diff --git a/packages/varlet-icon-builder/src/commands/build.ts b/packages/varlet-icon-builder/src/commands/build.ts index de7316c..9d83143 100644 --- a/packages/varlet-icon-builder/src/commands/build.ts +++ b/packages/varlet-icon-builder/src/commands/build.ts @@ -1,11 +1,11 @@ -import fse from 'fs-extra' +import { resolve } from 'path' +import { webfont } from '@varlet/webfont' import chokidar from 'chokidar' +import fse from 'fs-extra' +import { slash } from 'rattail' +import { getViConfig, VIConfig } from '../utils/config.js' import logger from '../utils/logger.js' -import { webfont } from '@varlet/webfont' import { resolvePath } from '../utils/shared.js' -import { slash } from 'rattail' -import { resolve } from 'path' -import { VIConfig, getViConfig } from '../utils/config.js' export interface BuildCommandOptions { watch?: boolean diff --git a/packages/varlet-icon-builder/src/commands/figma.ts b/packages/varlet-icon-builder/src/commands/figma.ts index 8a20956..c1d9797 100644 --- a/packages/varlet-icon-builder/src/commands/figma.ts +++ b/packages/varlet-icon-builder/src/commands/figma.ts @@ -1,9 +1,9 @@ import { AxleInstance, createAxle } from '@varlet/axle' +import fse from 'fs-extra' import { kebabCase } from 'rattail' import { getViConfig } from '../utils/config.js' -import { resolvePath } from '../utils/shared.js' -import fse from 'fs-extra' import logger from '../utils/logger.js' +import { resolvePath } from '../utils/shared.js' export interface FigmaCommandOptions { token?: string diff --git a/packages/varlet-icon-builder/src/commands/generate.ts b/packages/varlet-icon-builder/src/commands/generate.ts index d39908c..3104d0e 100644 --- a/packages/varlet-icon-builder/src/commands/generate.ts +++ b/packages/varlet-icon-builder/src/commands/generate.ts @@ -1,13 +1,13 @@ -import { getViConfig } from '../utils/config.js' import { resolve } from 'path' -import { compileSFC } from '../utils/compiler.js' -import { removeExtname } from '../utils/shared.js' -import { getTransformResult } from '../utils/esbuild.js' -import { generateVueSfc, generateVueSfcTypes } from '../framework/vue3.js' +import fse from 'fs-extra' import { generateReactTsx, generateReactTsxTypes } from '../framework/react.js' +import { generateVueSfc, generateVueSfcTypes } from '../framework/vue3.js' +import { compileSFC } from '../utils/compiler.js' +import { getViConfig } from '../utils/config.js' import { INDEX_FILE } from '../utils/constants.js' -import fse from 'fs-extra' +import { getTransformResult } from '../utils/esbuild.js' import logger from '../utils/logger.js' +import { removeExtname } from '../utils/shared.js' export interface GenerateCommandOptions { entry?: string diff --git a/packages/varlet-icon-builder/src/framework/react.ts b/packages/varlet-icon-builder/src/framework/react.ts index f6efd9d..b6b4bb5 100644 --- a/packages/varlet-icon-builder/src/framework/react.ts +++ b/packages/varlet-icon-builder/src/framework/react.ts @@ -1,8 +1,8 @@ -import fse from 'fs-extra' import { resolve } from 'path' -import { pascalCase, camelize } from 'rattail' -import { injectSvgCurrentColor, removeExtname } from '../utils/shared' +import fse from 'fs-extra' +import { camelize, pascalCase } from 'rattail' import { INDEX_D_FILE, INDEX_FILE } from '../utils/constants' +import { injectSvgCurrentColor, removeExtname } from '../utils/shared' export function camelizeSvgAttributes(content: string) { return content.replace(/((\w|-|:)+)(?==")/g, (_, p1) => camelize(p1.replace(/:/g, '-'))) diff --git a/packages/varlet-icon-builder/src/framework/vue3.ts b/packages/varlet-icon-builder/src/framework/vue3.ts index e27d027..dd66dc5 100644 --- a/packages/varlet-icon-builder/src/framework/vue3.ts +++ b/packages/varlet-icon-builder/src/framework/vue3.ts @@ -1,8 +1,8 @@ -import fse from 'fs-extra' import { resolve } from 'path' +import fse from 'fs-extra' import { pascalCase } from 'rattail' -import { injectSvgCurrentColor, removeExtname } from '../utils/shared.js' import { INDEX_D_FILE, INDEX_FILE } from '../utils/constants.js' +import { injectSvgCurrentColor, removeExtname } from '../utils/shared.js' export function injectVueSfcSvgStyle(content: string) { return content.replace(' ts) diff --git a/packages/varlet-unplugin-icon-builder/src/index.ts b/packages/varlet-unplugin-icon-builder/src/index.ts index 6ca30b5..178437e 100644 --- a/packages/varlet-unplugin-icon-builder/src/index.ts +++ b/packages/varlet-unplugin-icon-builder/src/index.ts @@ -1,12 +1,12 @@ -import type { UnpluginFactory } from 'unplugin' -import type { Options } from './types' -import { createUnplugin } from 'unplugin' +import { basename, isAbsolute, resolve } from 'path' import { buildIcons } from '@varlet/icon-builder' -import { isAbsolute, resolve, basename } from 'path' -import { debounce, isPlainObject, uniq, slash } from 'rattail' +import chokidar from 'chokidar' import glob from 'fast-glob' import fse from 'fs-extra' -import chokidar from 'chokidar' +import { debounce, isPlainObject, slash, uniq } from 'rattail' +import type { UnpluginFactory } from 'unplugin' +import { createUnplugin } from 'unplugin' +import type { Options } from './types' export function resolvePath(path: string) { return isAbsolute(path) ? path : resolve(process.cwd(), path) @@ -67,7 +67,7 @@ export const unpluginFactory: UnpluginFactory = (options: O function getOnDemandFilter() { const defaultInclude = ['./src/**/*.{vue,jsx,tsx,js,ts}'] const internalInclude = ['node_modules', generatedFileId] - const include = isPlainObject(onDemand) ? onDemand.include ?? defaultInclude : defaultInclude + const include = isPlainObject(onDemand) ? (onDemand.include ?? defaultInclude) : defaultInclude const exclude = isPlainObject(onDemand) ? [...internalInclude, ...(onDemand.exclude ?? [])] : internalInclude return { @@ -211,7 +211,7 @@ export const unpluginFactory: UnpluginFactory = (options: O fse.outputFileSync(generatedFileId, cssTemplate) if (!base64) { - fse.outputFileSync(generatedFontId, ttf!) + fse.outputFileSync(generatedFontId, ttf! as any) } } catch (e) { console.error(e) @@ -229,7 +229,7 @@ export const unpluginFactory: UnpluginFactory = (options: O } }, - async resolveId(id) { + resolveId(id) { if (id === moduleId) { return generatedFileId } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 20e64f6..b7ad928 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -16,18 +16,24 @@ importers: .: devDependencies: + '@configurajs/eslint': + specifier: ^0.1.0 + version: 0.1.0(@types/eslint@8.56.10)(eslint-config-prettier@8.10.0(eslint@9.18.0(jiti@1.21.0)))(eslint@9.18.0(jiti@1.21.0))(prettier@3.4.2)(typescript@5.2.2) + '@configurajs/prettier': + specifier: ^0.1.1 + version: 0.1.1(@vue/compiler-sfc@3.4.29)(prettier@3.4.2) '@varlet/release': specifier: 0.2.5 version: 0.2.5 eslint: - specifier: ^8.53.0 - version: 8.53.0 + specifier: ^9.18.0 + version: 9.18.0(jiti@1.21.0) nano-staged: specifier: ^0.8.0 version: 0.8.0 prettier: - specifier: ^3.1.0 - version: 3.1.0 + specifier: ^3.4.2 + version: 3.4.2 rimraf: specifier: ^5.0.1 version: 5.0.5 @@ -77,13 +83,13 @@ importers: version: link:../varlet-unplugin-icon-builder '@vue/cli-plugin-babel': specifier: ~5.0.0 - version: 5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.4.29)(handlebars@4.7.8)(lodash@4.17.21)(prettier@3.1.0)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@4.5.5))(webpack-sources@3.2.3))(core-js@3.37.0)(vue@3.4.27(typescript@4.5.5)) + version: 5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.4.29)(handlebars@4.7.8)(lodash@4.17.21)(prettier@3.4.2)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@4.5.5))(webpack-sources@3.2.3))(core-js@3.37.0)(vue@3.4.27(typescript@4.5.5)) '@vue/cli-plugin-typescript': specifier: ~5.0.0 - version: 5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.4.29)(handlebars@4.7.8)(lodash@4.17.21)(prettier@3.1.0)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@4.5.5))(webpack-sources@3.2.3))(eslint@8.53.0)(typescript@4.5.5)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@4.5.5)) + version: 5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.4.29)(handlebars@4.7.8)(lodash@4.17.21)(prettier@3.4.2)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@4.5.5))(webpack-sources@3.2.3))(eslint@8.53.0)(typescript@4.5.5)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@4.5.5)) '@vue/cli-service': specifier: ~5.0.0 - version: 5.0.8(@vue/compiler-sfc@3.4.29)(handlebars@4.7.8)(lodash@4.17.21)(prettier@3.1.0)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@4.5.5))(webpack-sources@3.2.3) + version: 5.0.8(@vue/compiler-sfc@3.4.29)(handlebars@4.7.8)(lodash@4.17.21)(prettier@3.4.2)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@4.5.5))(webpack-sources@3.2.3) typescript: specifier: ~4.5.5 version: 4.5.5 @@ -235,6 +241,10 @@ packages: resolution: {integrity: sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==} engines: {node: '>=6.9.0'} + '@babel/code-frame@7.26.2': + resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==} + engines: {node: '>=6.9.0'} + '@babel/compat-data@7.24.4': resolution: {integrity: sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ==} engines: {node: '>=6.9.0'} @@ -247,6 +257,10 @@ packages: resolution: {integrity: sha512-x32i4hEXvr+iI0NEoEfDKzlemF8AmtOP8CcrRaEcpzysWuoEb1KknpcvMsHKPONoKZiDuItklgWhB18xEhr9PA==} engines: {node: '>=6.9.0'} + '@babel/generator@7.26.5': + resolution: {integrity: sha512-2caSP6fN9I7HOe6nqhtft7V4g7/V/gfDsC3Ag4W7kEzzvRGKqiv0pu0HogPiZ3KaVSoNDhUws6IJjDjpfmYIXw==} + engines: {node: '>=6.9.0'} + '@babel/helper-annotate-as-pure@7.22.5': resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} engines: {node: '>=6.9.0'} @@ -342,6 +356,10 @@ packages: resolution: {integrity: sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==} engines: {node: '>=6.9.0'} + '@babel/helper-string-parser@7.25.9': + resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==} + engines: {node: '>=6.9.0'} + '@babel/helper-validator-identifier@7.22.20': resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} engines: {node: '>=6.9.0'} @@ -350,6 +368,10 @@ packages: resolution: {integrity: sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA==} engines: {node: '>=6.9.0'} + '@babel/helper-validator-identifier@7.25.9': + resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==} + engines: {node: '>=6.9.0'} + '@babel/helper-validator-option@7.23.5': resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==} engines: {node: '>=6.9.0'} @@ -380,6 +402,11 @@ packages: engines: {node: '>=6.0.0'} hasBin: true + '@babel/parser@7.26.5': + resolution: {integrity: sha512-SRJ4jYmXRqV1/Xc+TIVG84WjHBXKlxO9sHQnA2Pf12QQEAp1LOh6kDzNHXcUnbH1QI0FDoPPVOt+vyUDucxpaw==} + engines: {node: '>=6.0.0'} + hasBin: true + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.5': resolution: {integrity: sha512-LdXRi1wEMTrHVR4Zc9F8OewC3vdm5h4QB6L71zy6StmYeqGi1b3ttIO8UC+BfZKcH9jdr4aI249rBkm+3+YvHw==} engines: {node: '>=6.9.0'} @@ -847,14 +874,38 @@ packages: resolution: {integrity: sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==} engines: {node: '>=6.9.0'} + '@babel/template@7.25.9': + resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==} + engines: {node: '>=6.9.0'} + '@babel/traverse@7.24.5': resolution: {integrity: sha512-7aaBLeDQ4zYcUFDUD41lJc1fG8+5IU9DaNSJAgal866FGvmD5EbWQgnEC6kO1gGLsX0esNkfnJSndbTXA3r7UA==} engines: {node: '>=6.9.0'} + '@babel/traverse@7.26.5': + resolution: {integrity: sha512-rkOSPOw+AXbgtwUga3U4u8RpoK9FEFWBNAlTpcnkLFjL5CT+oyHNuUUC/xx6XefEJ16r38r8Bc/lfp6rYuHeJQ==} + engines: {node: '>=6.9.0'} + '@babel/types@7.24.5': resolution: {integrity: sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ==} engines: {node: '>=6.9.0'} + '@babel/types@7.26.5': + resolution: {integrity: sha512-L6mZmwFDK6Cjh1nRCLXpa6no13ZIioJDz7mdkzHv399pThrTa/k0nUlNaenOeh2kWu/iaOQYElEpKPUswUa9Vg==} + engines: {node: '>=6.9.0'} + + '@configurajs/eslint@0.1.0': + resolution: {integrity: sha512-AFquY5vpRn1ldUhBnYPi5DeuwF+jv8o6ZOVrp8VfHeWecgDYIz0tcwA+dVxhJ5uuqHsEQ8FQfy1XZ+h7GgBcIw==} + engines: {pnpm: '>=9.0'} + peerDependencies: + eslint: ^9.17.0 + + '@configurajs/prettier@0.1.1': + resolution: {integrity: sha512-vFqu5BCTwxS3k0mfUfFx0tU7gFM0VkIYn+c5wl9lUTAwWrhQMZSX8HmYuMcjycrINUjR4OxcTf1xYaiNBxEb1w==} + engines: {pnpm: '>=9.0'} + peerDependencies: + prettier: ^3.4.2 + '@discoveryjs/json-ext@0.5.7': resolution: {integrity: sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==} engines: {node: '>=10.0.0'} @@ -1267,6 +1318,12 @@ packages: cpu: [x64] os: [win32] + '@eslint-community/eslint-plugin-eslint-comments@4.4.1': + resolution: {integrity: sha512-lb/Z/MzbTf7CaVYM9WCFNQZ4L1yi3ev2fsFPF99h31ljhSEyUoyEsKsNWiU+qD1glbYTDJdqgyaLKtyTkkqtuQ==} + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 + '@eslint-community/eslint-utils@4.4.0': resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -1277,20 +1334,94 @@ packages: resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==} engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + '@eslint-community/regexpp@4.12.1': + resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==} + engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + + '@eslint-react/ast@1.23.2': + resolution: {integrity: sha512-+D9dUcex2qXhqhIlE06Y2G6g9IMBFiEFtyAH76anUkhsJmH3llfsOzLUVeugex8wJjjkxHOYfZCj4yJgH+bB6w==} + engines: {bun: '>=1.0.15', node: '>=18.18.0'} + + '@eslint-react/core@1.23.2': + resolution: {integrity: sha512-pm3H/4v+7X3UJ8mnJEz7QseZR/B94xC0Yd8Z/IJXAT6cN9nDCrCysENd1xLm0iOipAnCPCmsqO3RndGTwM7Oxw==} + engines: {bun: '>=1.0.15', node: '>=18.18.0'} + + '@eslint-react/eff@1.23.2': + resolution: {integrity: sha512-pLinl51denc906C8E/IYYSCxIY0o/OmNBLz5cJHt4Gr/spzmGv4myu/SOZWO/2YQGMg5TwOh5hLWNZ76Z6zDJA==} + engines: {bun: '>=1.0.15', node: '>=18.18.0'} + + '@eslint-react/eslint-plugin@1.23.2': + resolution: {integrity: sha512-M2T/ij/UTnrydFihI2eC1rqSTjlLK0MwTavrc7MxB2Bi6CxNdr4FrTrnEPpWjeECZHVEQQq8bmjwi7IUiQck8w==} + engines: {bun: '>=1.0.15', node: '>=18.18.0'} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: ^4.9.5 || ^5.3.3 + peerDependenciesMeta: + typescript: + optional: true + + '@eslint-react/jsx@1.23.2': + resolution: {integrity: sha512-7z4otNmQ2t5D1Nbv0PXlPLGVmR7+qrwiAG41RJg2lPIVh30Kt6/4PnVWeWGFeveaCMjUfMqo0Qmkx/KIJPN9lw==} + engines: {bun: '>=1.0.15', node: '>=18.18.0'} + + '@eslint-react/shared@1.23.2': + resolution: {integrity: sha512-I45dowpR5n4iv6MfHmRpNPdBcRoET7XdTbFavZWGh5Kaux04xiJNTQ31C3bqv83gHX6QkTZofFeohVd2pa4T2w==} + engines: {bun: '>=1.0.15', node: '>=18.18.0'} + + '@eslint-react/types@1.23.2': + resolution: {integrity: sha512-dZvn40sk+IqaCRWUlZRdDKxLsNaZBlpdX0cWo6IiHMFZ2dliovV88haMvqXtSatpAZc0CzSkC7BC8bJeqAmrWg==} + engines: {bun: '>=1.0.15', node: '>=18.18.0'} + + '@eslint-react/var@1.23.2': + resolution: {integrity: sha512-1XFmstpqpIwnZ6H/Xhm+QgYCPLlevZ33HjMEC1lNhv/+1xjGjutQfiavx91n68+HJ+lyk6mBV46+73wZi0dclw==} + engines: {bun: '>=1.0.15', node: '>=18.18.0'} + + '@eslint/config-array@0.19.1': + resolution: {integrity: sha512-fo6Mtm5mWyKjA/Chy1BYTdn5mGJoDNjC7C64ug20ADsRDGrA85bN3uK3MaKbeRkRuuIEAR5N33Jr1pbm411/PA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/core@0.10.0': + resolution: {integrity: sha512-gFHJ+xBOo4G3WRlR1e/3G8A6/KZAH6zcE/hkLRCZTi/B9avAG365QhFA8uOGzTMqgTghpn7/fSnscW++dpMSAw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/eslintrc@2.1.3': resolution: {integrity: sha512-yZzuIG+jnVu6hNSzFEN07e8BxF3uAzYtQb6uDkaYZLo6oYZDCq454c5kB8zxnzfCYyP4MIuyBn10L0DqwujTmA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + '@eslint/eslintrc@3.2.0': + resolution: {integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@eslint/js@8.53.0': resolution: {integrity: sha512-Kn7K8dx/5U6+cT1yEhpX1w4PCSg0M+XyRILPgvwcEBjerFWCwQj5sbr3/VmxqV0JGHCBCzyd6LxypEuehypY1w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + '@eslint/js@9.18.0': + resolution: {integrity: sha512-fK6L7rxcq6/z+AaQMtiFTkvbHkBLNlwyRxHpKawP0x3u9+NC6MQTnFW+AdpwC6gfHTW0051cokQgtTN2FqlxQA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/object-schema@2.1.5': + resolution: {integrity: sha512-o0bhxnL89h5Bae5T318nFoFzGy+YE5i/gGkoPAgkmTVdRKTiv3p8JHevPiPaMwoloKfEiiaHlawCqaZMqRm+XQ==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + + '@eslint/plugin-kit@0.2.5': + resolution: {integrity: sha512-lB05FkqEdUg2AA0xEbUz0SnkXT1LcCTa438W4IWTUh4hdOnVbQyOJ81OrDXsJk/LSiJHubgGEFoR5EHq1NsH1A==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@hapi/hoek@9.3.0': resolution: {integrity: sha512-/c6rf4UJlmHlC9b5BaNvzAcFv7HZ2QHaV0D4/HNlBdvFnvQq8RI4kYdhyPCl7Xj+oWvTWQ8ujhqS53LIgAe6KQ==} '@hapi/topo@5.1.0': resolution: {integrity: sha512-foQZKJig7Ob0BMAYBfcJk8d77QtOe7Wo4ox7ff1lQYoNNAb6jwcY1ncdoy2e9wQZzvNy7ODZCYJkK8kzmcAnAg==} + '@humanfs/core@0.19.1': + resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==} + engines: {node: '>=18.18.0'} + + '@humanfs/node@0.16.6': + resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==} + engines: {node: '>=18.18.0'} + '@humanwhocodes/config-array@0.11.13': resolution: {integrity: sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==} engines: {node: '>=10.10.0'} @@ -1302,10 +1433,27 @@ packages: '@humanwhocodes/object-schema@2.0.1': resolution: {integrity: sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==} + '@humanwhocodes/retry@0.3.1': + resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==} + engines: {node: '>=18.18'} + + '@humanwhocodes/retry@0.4.1': + resolution: {integrity: sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==} + engines: {node: '>=18.18'} + '@hutson/parse-repository-url@5.0.0': resolution: {integrity: sha512-e5+YUKENATs1JgYHMzTr2MW/NDcXGfYFAuOQU8gJgF/kEh4EqKgfGrfLI67bMD4tbhZVlkigz/9YYwWcbOFthg==} engines: {node: '>=10.13.0'} + '@ianvs/prettier-plugin-sort-imports@4.4.0': + resolution: {integrity: sha512-f4/e+/ANGk3tHuwRW0uh2YuBR50I4h1ZjGQ+5uD8sWfinHTivQsnieR5cz24t8M6Vx4rYvZ5v/IEKZhYpzQm9Q==} + peerDependencies: + '@vue/compiler-sfc': 2.7.x || 3.x + prettier: 2 || 3 + peerDependenciesMeta: + '@vue/compiler-sfc': + optional: true + '@isaacs/cliui@8.0.2': resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} engines: {node: '>=12'} @@ -1396,6 +1544,10 @@ packages: resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} engines: {node: '>=14'} + '@pkgr/core@0.1.1': + resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==} + engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} + '@polka/url@1.0.0-next.25': resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==} @@ -1513,6 +1665,9 @@ packages: '@types/connect@3.4.38': resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} + '@types/doctrine@0.0.9': + resolution: {integrity: sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==} + '@types/eslint-scope@3.7.7': resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==} @@ -1522,6 +1677,9 @@ packages: '@types/estree@1.0.5': resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==} + '@types/estree@1.0.6': + resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} + '@types/express-serve-static-core@4.19.0': resolution: {integrity: sha512-bGyep3JqPCRry1wq+O5n7oiBgGWmeIJXPjXXCo8EK0u8duZGSYar7cGqd3ML2JUsLGeB7fmc06KYo9fLGWqPvQ==} @@ -1614,6 +1772,14 @@ packages: typescript: optional: true + '@typescript-eslint/eslint-plugin@8.19.1': + resolution: {integrity: sha512-tJzcVyvvb9h/PB96g30MpxACd9IrunT7GF9wfA9/0TJ1LxGOJx1TdPzSbBBnNED7K9Ka8ybJsnEpiXPktolTLg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0 + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <5.8.0' + '@typescript-eslint/parser@5.62.0': resolution: {integrity: sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -1624,10 +1790,21 @@ packages: typescript: optional: true + '@typescript-eslint/parser@8.19.1': + resolution: {integrity: sha512-67gbfv8rAwawjYx3fYArwldTQKoYfezNUT4D5ioWetr/xCrxXxvleo3uuiFuKfejipvq+og7mjz3b0G2bVyUCw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <5.8.0' + '@typescript-eslint/scope-manager@5.62.0': resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + '@typescript-eslint/scope-manager@8.19.1': + resolution: {integrity: sha512-60L9KIuN/xgmsINzonOcMDSB8p82h95hoBfSBtXuO4jlR1R9L1xSkmVZKgCPVfavDlXihh4ARNjXhh1gGnLC7Q==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@typescript-eslint/type-utils@5.62.0': resolution: {integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -1638,10 +1815,21 @@ packages: typescript: optional: true + '@typescript-eslint/type-utils@8.19.1': + resolution: {integrity: sha512-Rp7k9lhDKBMRJB/nM9Ksp1zs4796wVNyihG9/TU9R6KCJDNkQbc2EOKjrBtLYh3396ZdpXLtr/MkaSEmNMtykw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <5.8.0' + '@typescript-eslint/types@5.62.0': resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + '@typescript-eslint/types@8.19.1': + resolution: {integrity: sha512-JBVHMLj7B1K1v1051ZaMMgLW4Q/jre5qGK0Ew6UgXz1Rqh+/xPzV1aW581OM00X6iOfyr1be+QyW8LOUf19BbA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@typescript-eslint/typescript-estree@5.62.0': resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -1651,16 +1839,33 @@ packages: typescript: optional: true + '@typescript-eslint/typescript-estree@8.19.1': + resolution: {integrity: sha512-jk/TZwSMJlxlNnqhy0Eod1PNEvCkpY6MXOXE/WLlblZ6ibb32i2We4uByoKPv1d0OD2xebDv4hbs3fm11SMw8Q==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <5.8.0' + '@typescript-eslint/utils@5.62.0': resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + '@typescript-eslint/utils@8.19.1': + resolution: {integrity: sha512-IxG5gLO0Ne+KaUc8iW1A+XuKLd63o4wlbI1Zp692n1xojCl/THvgIKXJXBZixTh5dd5+yTJ/VXH7GJaaw21qXA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: '>=4.8.4 <5.8.0' + '@typescript-eslint/visitor-keys@5.62.0': resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + '@typescript-eslint/visitor-keys@8.19.1': + resolution: {integrity: sha512-fzmjU8CHK853V/avYZAvuVut3ZTfwN5YtMaoi+X9Y9MA9keaWNHC3zEQ9zvyX/7Hj+5JkNyK1l7TOR2hevHB6Q==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@ungap/structured-clone@1.2.0': resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==} @@ -1973,6 +2178,11 @@ packages: engines: {node: '>=0.4.0'} hasBin: true + acorn@8.14.0: + resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==} + engines: {node: '>=0.4.0'} + hasBin: true + add-stream@1.0.0: resolution: {integrity: sha512-qQLMr+8o0WC4FZGQTcJiKBVC59JylcPSrTtk6usvmIDFUOCKegapy1VHQwRbFMOFyb/inzUVqHs+eMYKDM1YeQ==} @@ -2338,6 +2548,9 @@ packages: compare-func@2.0.0: resolution: {integrity: sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==} + compare-versions@6.1.1: + resolution: {integrity: sha512-4hm4VPpIecmlg59CHXnRDnqGplJFrbLG4aFEl5vl6cK1u76ws3LLvX7ikFnTDl5vo39sjWD6AaDPYodJp/NNHg==} + compressible@2.0.18: resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==} engines: {node: '>= 0.6'} @@ -2633,6 +2846,10 @@ packages: resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==} engines: {node: '>= 8'} + cross-spawn@7.0.6: + resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} + engines: {node: '>= 8'} + crypto-js@4.2.0: resolution: {integrity: sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==} @@ -2801,6 +3018,14 @@ packages: resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} + detect-indent@7.0.1: + resolution: {integrity: sha512-Mc7QhQ8s+cLrnUfU/Ji94vG/r8M26m8f++vyres4ZoojaRDpZ1eSIh/EpzLNwlWuvzSZ3UbDFspjFvTDXe6e/g==} + engines: {node: '>=12.20'} + + detect-newline@4.0.1: + resolution: {integrity: sha512-qE3Veg1YXzGHQhlA6jzebZN2qVf6NX+A7m7qlhCGG30dJixrAQhYOsJjsnBjJkCSmuOPpCk30145fr8FV0bzog==} + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + detect-node@2.1.0: resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==} @@ -2887,6 +3112,10 @@ packages: resolution: {integrity: sha512-4U5pNsuDl0EhuZpq46M5xPslstkviJuhrdobaRDBk2Jy2KO37FDAJl4lb2KlNabxT0m4MTK2UHNrsAcphE8nyw==} engines: {node: '>=10.13.0'} + enhanced-resolve@5.18.0: + resolution: {integrity: sha512-0/r0MySGYG8YqlayBZ6MuCfECmHFdJ5qyPh8s8wa5Hnm6SaFLSK1VYCbj+NKp090Nm1caZhD+QTnmxO7esYGyQ==} + engines: {node: '>=10.13.0'} + entities@2.2.0: resolution: {integrity: sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==} @@ -2989,6 +3218,12 @@ packages: eslint-import-resolver-webpack: optional: true + eslint-plugin-import-x@4.6.1: + resolution: {integrity: sha512-wluSUifMIb7UfwWXqx7Yx0lE/SGCcGXECLx/9bCmbY2nneLwvAZ4vkd1IXDjPKFvdcdUgr1BaRnaRpx3k2+Pfw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + eslint-plugin-import@2.29.0: resolution: {integrity: sha512-QPOO5NO6Odv5lpoTkddtutccQjysJuFxoPS7fAHO+9m9udNHvTCPSAMW9zGAYj8lAIdr40I8yPCdUYrncXtrwg==} engines: {node: '>=4'} @@ -2999,12 +3234,98 @@ packages: '@typescript-eslint/parser': optional: true + eslint-plugin-prettier@5.2.1: + resolution: {integrity: sha512-gH3iR3g4JfF+yYPaJYkN7jEl9QbweL/YfkoRlNnuIEHEz1vHVlCmWOS+eGGiRuzHQXdJFCOTxRgvju9b8VUmrw==} + engines: {node: ^14.18.0 || >=16.0.0} + peerDependencies: + '@types/eslint': '>=8.0.0' + eslint: '>=8.0.0' + eslint-config-prettier: '*' + prettier: '>=3.0.0' + peerDependenciesMeta: + '@types/eslint': + optional: true + eslint-config-prettier: + optional: true + + eslint-plugin-react-debug@1.23.2: + resolution: {integrity: sha512-euDhBS9jsG13HfPAWNnKxgSHZHXdhP4IBGLwgH7y4fUjsalxdWohy0hADr8odE/G0+FUkTeYZAJ6PZikisI25g==} + engines: {bun: '>=1.0.15', node: '>=18.18.0'} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: ^4.9.5 || ^5.3.3 + peerDependenciesMeta: + typescript: + optional: true + + eslint-plugin-react-dom@1.23.2: + resolution: {integrity: sha512-uT+qAkeKiryD+gqKOBNbtX6QwG+bXvPLUwAGHS1cYoFQSR4OL75nsDvfNs6qOPOuElRsm/Blnaml34U6nylm/A==} + engines: {bun: '>=1.0.15', node: '>=18.18.0'} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: ^4.9.5 || ^5.3.3 + peerDependenciesMeta: + typescript: + optional: true + + eslint-plugin-react-hooks-extra@1.23.2: + resolution: {integrity: sha512-FeLfexk9NHga6YMmEMaXMUC8irnEvr+RGtqF51l2XwvXNgerzmAzaUKq3qctKCtXIzTWglc+rnivQ9yl7SvxAg==} + engines: {bun: '>=1.0.15', node: '>=18.18.0'} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: ^4.9.5 || ^5.3.3 + peerDependenciesMeta: + typescript: + optional: true + + eslint-plugin-react-hooks@5.1.0: + resolution: {integrity: sha512-mpJRtPgHN2tNAvZ35AMfqeB3Xqeo273QxrHJsbBEPWODRM4r0yB6jfoROqKEYrOn27UtRPpcpHc2UqyBSuUNTw==} + engines: {node: '>=10'} + peerDependencies: + eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0 + + eslint-plugin-react-naming-convention@1.23.2: + resolution: {integrity: sha512-Bdw0zrF92msJob/0nKAfTh/8Maj8MkG5L2/iqdGI5YwqXF0fS6aP8ZhDh1RtMKp9U6+4KW3btEpWsZwXjyat1g==} + engines: {bun: '>=1.0.15', node: '>=18.18.0'} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: ^4.9.5 || ^5.3.3 + peerDependenciesMeta: + typescript: + optional: true + + eslint-plugin-react-web-api@1.23.2: + resolution: {integrity: sha512-7Uy0RBw1prEoy74S4/zdFKerNdpxQGxQ8XJl9V+JU1GULODpCBAgPKjv99pyhRo89wBP9LBJxoCZUCRt6b08NQ==} + engines: {bun: '>=1.0.15', node: '>=18.18.0'} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: ^4.9.5 || ^5.3.3 + peerDependenciesMeta: + typescript: + optional: true + + eslint-plugin-react-x@1.23.2: + resolution: {integrity: sha512-RHfOtUvLGUVOE4D4PgmQYzxCVnJUeaXIYWyS01ixDOy5y0JwCZ+VAHHj1ArqefUbbu5Zen+aQmsKCYXQ4xaO/Q==} + engines: {bun: '>=1.0.15', node: '>=18.18.0'} + peerDependencies: + eslint: ^8.57.0 || ^9.0.0 + typescript: ^4.9.5 || ^5.3.3 + peerDependenciesMeta: + typescript: + optional: true + eslint-plugin-vue@9.18.1: resolution: {integrity: sha512-7hZFlrEgg9NIzuVik2I9xSnJA5RsmOfueYgsUGUokEDLJ1LHtxO0Pl4duje1BriZ/jDWb+44tcIlC3yi0tdlZg==} engines: {node: ^14.17.0 || >=16.0.0} peerDependencies: eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 + eslint-plugin-vue@9.32.0: + resolution: {integrity: sha512-b/Y05HYmnB/32wqVcjxjHZzNpwxj1onBOvqW89W+V+XNG1dRuaFbNd3vT9CLbr2LXjEoq+3vn8DanWf7XU22Ug==} + engines: {node: ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: ^6.2.0 || ^7.0.0 || ^8.0.0 || ^9.0.0 + eslint-scope@5.1.1: resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==} engines: {node: '>=8.0.0'} @@ -3013,15 +3334,37 @@ packages: resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + eslint-scope@8.2.0: + resolution: {integrity: sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + eslint-visitor-keys@3.4.3: resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + eslint-visitor-keys@4.2.0: + resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + eslint@8.53.0: resolution: {integrity: sha512-N4VuiPjXDUa4xVeV/GC/RV3hQW9Nw+Y463lkWaKKXKYMvmRiRDAtfpuPFLN+E1/6ZhyR8J2ig+eVREnYgUsiag==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} hasBin: true + eslint@9.18.0: + resolution: {integrity: sha512-+waTfRWQlSbpt3KWE+CjrPPYnbq9kfZIYUqapc0uBXyjTp8aYXZDsUH16m39Ryq3NjAVP4tjuF7KaukeqoCoaA==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + hasBin: true + peerDependencies: + jiti: '*' + peerDependenciesMeta: + jiti: + optional: true + + espree@10.3.0: + resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + espree@9.6.1: resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -3087,6 +3430,9 @@ packages: fast-deep-equal@3.1.3: resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + fast-diff@1.3.0: + resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==} + fast-glob@3.3.2: resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} engines: {node: '>=8.6.0'} @@ -3104,6 +3450,14 @@ packages: resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==} engines: {node: '>=0.8.0'} + fdir@6.4.2: + resolution: {integrity: sha512-KnhMXsKSPZlAhp7+IjUkRZKPb4fUyccpDrdFXbi4QL1qkmFh9kVY09Yox+n4MaOb3lHZ1Tv829C3oaaXoMYPDQ==} + peerDependencies: + picomatch: ^3 || ^4 + peerDependenciesMeta: + picomatch: + optional: true + figures@2.0.0: resolution: {integrity: sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==} engines: {node: '>=4'} @@ -3116,6 +3470,10 @@ packages: resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} engines: {node: ^10.12.0 || >=12.0.0} + file-entry-cache@8.0.0: + resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==} + engines: {node: '>=16.0.0'} + fill-range@7.0.1: resolution: {integrity: sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==} engines: {node: '>=8'} @@ -3144,6 +3502,10 @@ packages: resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==} engines: {node: ^10.12.0 || >=12.0.0} + flat-cache@4.0.1: + resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==} + engines: {node: '>=16'} + flat@5.0.2: resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==} hasBin: true @@ -3243,6 +3605,10 @@ packages: get-intrinsic@1.2.2: resolution: {integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==} + get-stdin@9.0.0: + resolution: {integrity: sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA==} + engines: {node: '>=12'} + get-stream@4.1.0: resolution: {integrity: sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==} engines: {node: '>=6'} @@ -3259,6 +3625,12 @@ packages: resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} engines: {node: '>= 0.4'} + get-tsconfig@4.8.1: + resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==} + + git-hooks-list@3.1.0: + resolution: {integrity: sha512-LF8VeHeR7v+wAbXqfgRlTSX/1BJR9Q1vEMR8JAz1cEg6GX07+zyj3sAdDvYjj/xnlIfVuGgj4qBei1K3hKH+PA==} + git-raw-commits@4.0.0: resolution: {integrity: sha512-ICsMM1Wk8xSGMowkOmPrzo2Fgmfo4bMHLNX6ytHjajRJUqvHOw/TFapQ+QG75c3X/tTDDhOSRPGC52dDbNM8FQ==} engines: {node: '>=16'} @@ -3299,6 +3671,18 @@ packages: resolution: {integrity: sha512-XAmF0RjlrjY23MA51q3HltdlGxUpXPvg0GioKiD9X6HD28iMjo2dKC8Vqwm7lne4GNr78+RHTfliktR6ZH09wA==} engines: {node: '>=8'} + globals@13.24.0: + resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==} + engines: {node: '>=8'} + + globals@14.0.0: + resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==} + engines: {node: '>=18'} + + globals@15.14.0: + resolution: {integrity: sha512-OkToC372DtlQeje9/zHIo5CT8lRP/FUgEOKBEhU4e0abL7J7CD24fD9ohiLN5hagG/kWCYj4K5oaxxtj2Z0Dig==} + engines: {node: '>=18'} + globalthis@1.0.3: resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} engines: {node: '>= 0.4'} @@ -3467,6 +3851,10 @@ packages: resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} engines: {node: '>= 4'} + ignore@5.3.2: + resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==} + engines: {node: '>= 4'} + import-fresh@3.3.0: resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} engines: {node: '>=6'} @@ -3552,6 +3940,12 @@ packages: resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} engines: {node: '>=0.10.0'} + is-immutable-type@5.0.1: + resolution: {integrity: sha512-LkHEOGVZZXxGl8vDs+10k3DvP++SEoYEAJLRk6buTFi6kD7QekThV7xHS0j6gpnUCQ0zpud/gMDGiV4dQneLTg==} + peerDependencies: + eslint: '*' + typescript: '>=4.7.4' + is-interactive@1.0.0: resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==} engines: {node: '>=8'} @@ -3580,6 +3974,10 @@ packages: resolution: {integrity: sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==} engines: {node: '>=10'} + is-plain-obj@4.1.0: + resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} + engines: {node: '>=12'} + is-plain-object@2.0.4: resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==} engines: {node: '>=0.10.0'} @@ -3692,6 +4090,11 @@ packages: engines: {node: '>=4'} hasBin: true + jsesc@3.1.0: + resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} + engines: {node: '>=6'} + hasBin: true + json-buffer@3.0.1: resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==} @@ -3929,6 +4332,10 @@ packages: minimalistic-assert@1.0.1: resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} + minimatch@10.0.1: + resolution: {integrity: sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==} + engines: {node: 20 || >=22} + minimatch@3.1.2: resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} @@ -3936,6 +4343,10 @@ packages: resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} engines: {node: '>=16 || 14 >=14.17'} + minimatch@9.0.5: + resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} + engines: {node: '>=16 || 14 >=14.17'} + minimist@1.2.8: resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} @@ -4245,6 +4656,10 @@ packages: resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} engines: {node: '>=8.6'} + picomatch@4.0.2: + resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==} + engines: {node: '>=12'} + pirates@4.0.6: resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==} engines: {node: '>= 6'} @@ -4453,6 +4868,10 @@ packages: resolution: {integrity: sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==} engines: {node: '>=4'} + postcss-selector-parser@6.1.2: + resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==} + engines: {node: '>=4'} + postcss-svgo@5.1.0: resolution: {integrity: sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==} engines: {node: ^10 || ^12 || >=14.0} @@ -4480,6 +4899,73 @@ packages: resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} engines: {node: '>= 0.8.0'} + prettier-linter-helpers@1.0.0: + resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==} + engines: {node: '>=6.0.0'} + + prettier-plugin-packagejson@2.5.6: + resolution: {integrity: sha512-TY7KiLtyt6Tlf53BEbXUWkN0+TRdHKgIMmtXtDCyHH6yWnZ50Lwq6Vb6lyjapZrhDTXooC4EtlY5iLe1sCgi5w==} + peerDependencies: + prettier: '>= 1.16.0' + peerDependenciesMeta: + prettier: + optional: true + + prettier-plugin-tailwindcss@0.6.9: + resolution: {integrity: sha512-r0i3uhaZAXYP0At5xGfJH876W3HHGHDp+LCRUJrs57PBeQ6mYHMwr25KH8NPX44F2yGTvdnH7OqCshlQx183Eg==} + engines: {node: '>=14.21.3'} + peerDependencies: + '@ianvs/prettier-plugin-sort-imports': '*' + '@prettier/plugin-pug': '*' + '@shopify/prettier-plugin-liquid': '*' + '@trivago/prettier-plugin-sort-imports': '*' + '@zackad/prettier-plugin-twig-melody': '*' + prettier: ^3.0 + prettier-plugin-astro: '*' + prettier-plugin-css-order: '*' + prettier-plugin-import-sort: '*' + prettier-plugin-jsdoc: '*' + prettier-plugin-marko: '*' + prettier-plugin-multiline-arrays: '*' + prettier-plugin-organize-attributes: '*' + prettier-plugin-organize-imports: '*' + prettier-plugin-sort-imports: '*' + prettier-plugin-style-order: '*' + prettier-plugin-svelte: '*' + peerDependenciesMeta: + '@ianvs/prettier-plugin-sort-imports': + optional: true + '@prettier/plugin-pug': + optional: true + '@shopify/prettier-plugin-liquid': + optional: true + '@trivago/prettier-plugin-sort-imports': + optional: true + '@zackad/prettier-plugin-twig-melody': + optional: true + prettier-plugin-astro: + optional: true + prettier-plugin-css-order: + optional: true + prettier-plugin-import-sort: + optional: true + prettier-plugin-jsdoc: + optional: true + prettier-plugin-marko: + optional: true + prettier-plugin-multiline-arrays: + optional: true + prettier-plugin-organize-attributes: + optional: true + prettier-plugin-organize-imports: + optional: true + prettier-plugin-sort-imports: + optional: true + prettier-plugin-style-order: + optional: true + prettier-plugin-svelte: + optional: true + prettier@2.8.8: resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==} engines: {node: '>=10.13.0'} @@ -4490,6 +4976,11 @@ packages: engines: {node: '>=14'} hasBin: true + prettier@3.4.2: + resolution: {integrity: sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==} + engines: {node: '>=14'} + hasBin: true + pretty-error@4.0.0: resolution: {integrity: sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==} @@ -4537,6 +5028,10 @@ packages: resolution: {integrity: sha512-ccYN21TuJWxP4/XI0BfYcc9NFE+wvNk5tT4J4oyYMG3vUryiW218NZdXAbtp6C1L4IZLjdCW/dFz1Ym4WwBGFA==} engines: {pnpm: '>=9.0'} + rattail@1.0.18: + resolution: {integrity: sha512-ZyVKhIiDBaFZkiii2nbAEwmekzycgV51TGHjnd/HU4t/vpMJ564G0WdJgFRq+uNNGBlWv91bTJZJ4uRe9jQfPQ==} + engines: {pnpm: '>=9.0'} + raw-body@2.5.2: resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==} engines: {node: '>= 0.8'} @@ -4622,6 +5117,9 @@ packages: resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==} engines: {node: '>=8'} + resolve-pkg-maps@1.0.0: + resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==} + resolve@1.22.8: resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==} hasBin: true @@ -4721,6 +5219,11 @@ packages: engines: {node: '>=10'} hasBin: true + semver@7.6.3: + resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==} + engines: {node: '>=10'} + hasBin: true + send@0.18.0: resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==} engines: {node: '>= 0.8.0'} @@ -4798,6 +5301,13 @@ packages: sockjs@0.3.24: resolution: {integrity: sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==} + sort-object-keys@1.1.3: + resolution: {integrity: sha512-855pvK+VkU7PaKYPc+Jjnmt4EzejQHyhhF33q31qG8x7maDzkeFhAAThdCYay11CISO+qAMwjOBP+fPZe0IPyg==} + + sort-package-json@2.12.0: + resolution: {integrity: sha512-/HrPQAeeLaa+vbAH/znjuhwUluuiM/zL5XX9kop8UpDgjtyWKt43hGDk2vd/TBdDpzIyzIHVUgmYofzYrAQjew==} + hasBin: true + source-map-js@1.2.0: resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==} engines: {node: '>=0.10.0'} @@ -4844,6 +5354,9 @@ packages: resolution: {integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==} engines: {node: '>= 8'} + stable-hash@0.0.4: + resolution: {integrity: sha512-LjdcbuBeLcdETCrPn9i8AYAZ1eCtu4ECAWtP7UleOiZ9LzVxRzzUZEoZ8zB24nhkQnDWyET0I+3sWokSDS3E7g==} + stable@0.1.8: resolution: {integrity: sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==} deprecated: 'Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility' @@ -4859,6 +5372,9 @@ packages: resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} engines: {node: '>= 0.8'} + string-ts@2.2.0: + resolution: {integrity: sha512-VTP0LLZo4Jp9Gz5IiDVMS9WyLx/3IeYh0PXUn0NdPqusUFNgkHPWiEdbB9TU2Iv3myUskraD5WtYEdHUrQEIlQ==} + string-width@2.1.1: resolution: {integrity: sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==} engines: {node: '>=4'} @@ -4973,6 +5489,10 @@ packages: svgpath@2.6.0: resolution: {integrity: sha512-OIWR6bKzXvdXYyO4DK/UWa1VA1JeKq8E+0ug2DG98Y/vOmMpfZNj+TIG988HjfYSqtcy/hFOtZq/n/j5GSESNg==} + synckit@0.9.2: + resolution: {integrity: sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw==} + engines: {node: ^14.18.0 || >=16.0.0} + tapable@1.1.3: resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==} engines: {node: '>=6'} @@ -5028,6 +5548,10 @@ packages: thunky@1.1.0: resolution: {integrity: sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==} + tinyglobby@0.2.10: + resolution: {integrity: sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==} + engines: {node: '>=12.0.0'} + tmp@0.0.33: resolution: {integrity: sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==} engines: {node: '>=0.6.0'} @@ -5058,6 +5582,17 @@ packages: resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} hasBin: true + ts-api-utils@2.0.0: + resolution: {integrity: sha512-xCt/TOAc+EOHS1XPnijD3/yzpH6qg2xppZO1YDqGoVsNXfQfzHpOdNuXwrwOU8u4ITXJyDCTyt8w5g1sZv9ynQ==} + engines: {node: '>=18.12'} + peerDependencies: + typescript: '>=4.8.4' + + ts-declaration-location@1.0.5: + resolution: {integrity: sha512-WqmlO9IoeYwCqJ2E9kHMcY9GZhhfLYItC3VnHDlPOrg6nNdUWS4wn4hhDZUPt60m1EvtjPIZyprTjpI992Bgzw==} + peerDependencies: + typescript: '>=4.0.0' + ts-interface-checker@0.1.13: resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} @@ -5068,6 +5603,9 @@ packages: typescript: '*' webpack: ^5.0.0 + ts-pattern@5.6.0: + resolution: {integrity: sha512-SL8u60X5+LoEy9tmQHWCdPc2hhb2pKI6I1tU5Jue3v8+iRqZdcT3mWPwKKJy1fMfky6uha82c8ByHAE8PMhKHw==} + tsconfig-paths@3.14.2: resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==} @@ -5077,6 +5615,9 @@ packages: tslib@2.6.2: resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} + tslib@2.8.1: + resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} + tsup@8.0.1: resolution: {integrity: sha512-hvW7gUSG96j53ZTSlT4j/KL0q1Q2l6TqGBFc6/mu/L46IoNWqLLUzLRLP1R8Q7xrJTmkDxxDoojV5uCVs1sVOg==} engines: {node: '>=18'} @@ -5275,6 +5816,12 @@ packages: peerDependencies: eslint: '>=6.0.0' + vue-eslint-parser@9.4.3: + resolution: {integrity: sha512-2rYRLWlIpaiN8xbPiDyXZXRgLGOtWxERV7ND5fFAv5qo1D2N9Fu9MNajBNc6o13lZ+24DAWCkQCvj4klgmcITg==} + engines: {node: ^14.17.0 || >=16.0.0} + peerDependencies: + eslint: '>=6.0.0' + vue-hot-reload-api@2.3.4: resolution: {integrity: sha512-BXq3jwIagosjgNVae6tkHzzIk6a8MHFtzAdwhnV5VlvPTFxDCvIttgSiHWjdGoTJvXtmRu5HacExfdarRcFhog==} @@ -5553,6 +6100,12 @@ snapshots: '@babel/highlight': 7.24.5 picocolors: 1.0.0 + '@babel/code-frame@7.26.2': + dependencies: + '@babel/helper-validator-identifier': 7.25.9 + js-tokens: 4.0.0 + picocolors: 1.0.0 + '@babel/compat-data@7.24.4': {} '@babel/core@7.24.5': @@ -5582,6 +6135,14 @@ snapshots: '@jridgewell/trace-mapping': 0.3.25 jsesc: 2.5.2 + '@babel/generator@7.26.5': + dependencies: + '@babel/parser': 7.26.5 + '@babel/types': 7.26.5 + '@jridgewell/gen-mapping': 0.3.5 + '@jridgewell/trace-mapping': 0.3.25 + jsesc: 3.1.0 + '@babel/helper-annotate-as-pure@7.22.5': dependencies: '@babel/types': 7.24.5 @@ -5695,10 +6256,14 @@ snapshots: '@babel/helper-string-parser@7.24.1': {} + '@babel/helper-string-parser@7.25.9': {} + '@babel/helper-validator-identifier@7.22.20': {} '@babel/helper-validator-identifier@7.24.5': {} + '@babel/helper-validator-identifier@7.25.9': {} + '@babel/helper-validator-option@7.23.5': {} '@babel/helper-wrap-function@7.24.5': @@ -5736,6 +6301,10 @@ snapshots: dependencies: '@babel/types': 7.24.5 + '@babel/parser@7.26.5': + dependencies: + '@babel/types': 7.26.5 + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.5(@babel/core@7.24.5)': dependencies: '@babel/core': 7.24.5 @@ -6287,6 +6856,12 @@ snapshots: '@babel/parser': 7.24.5 '@babel/types': 7.24.5 + '@babel/template@7.25.9': + dependencies: + '@babel/code-frame': 7.26.2 + '@babel/parser': 7.26.5 + '@babel/types': 7.26.5 + '@babel/traverse@7.24.5': dependencies: '@babel/code-frame': 7.24.2 @@ -6302,19 +6877,82 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/traverse@7.26.5': + dependencies: + '@babel/code-frame': 7.26.2 + '@babel/generator': 7.26.5 + '@babel/parser': 7.26.5 + '@babel/template': 7.25.9 + '@babel/types': 7.26.5 + debug: 4.3.4 + globals: 11.12.0 + transitivePeerDependencies: + - supports-color + '@babel/types@7.24.5': dependencies: '@babel/helper-string-parser': 7.24.1 '@babel/helper-validator-identifier': 7.24.5 to-fast-properties: 2.0.0 - '@discoveryjs/json-ext@0.5.7': {} + '@babel/types@7.26.5': + dependencies: + '@babel/helper-string-parser': 7.25.9 + '@babel/helper-validator-identifier': 7.25.9 - '@esbuild/aix-ppc64@0.20.2': - optional: true + '@configurajs/eslint@0.1.0(@types/eslint@8.56.10)(eslint-config-prettier@8.10.0(eslint@9.18.0(jiti@1.21.0)))(eslint@9.18.0(jiti@1.21.0))(prettier@3.4.2)(typescript@5.2.2)': + dependencies: + '@eslint-community/eslint-plugin-eslint-comments': 4.4.1(eslint@9.18.0(jiti@1.21.0)) + '@eslint-react/eslint-plugin': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@typescript-eslint/eslint-plugin': 8.19.1(@typescript-eslint/parser@8.19.1(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2))(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@typescript-eslint/parser': 8.19.1(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + eslint: 9.18.0(jiti@1.21.0) + eslint-plugin-import-x: 4.6.1(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + eslint-plugin-prettier: 5.2.1(@types/eslint@8.56.10)(eslint-config-prettier@8.10.0(eslint@9.18.0(jiti@1.21.0)))(eslint@9.18.0(jiti@1.21.0))(prettier@3.4.2) + eslint-plugin-react-hooks: 5.1.0(eslint@9.18.0(jiti@1.21.0)) + eslint-plugin-vue: 9.32.0(eslint@9.18.0(jiti@1.21.0)) + globals: 15.14.0 + vue-eslint-parser: 9.4.3(eslint@9.18.0(jiti@1.21.0)) + transitivePeerDependencies: + - '@types/eslint' + - eslint-config-prettier + - prettier + - supports-color + - typescript - '@esbuild/aix-ppc64@0.21.5': - optional: true + '@configurajs/prettier@0.1.1(@vue/compiler-sfc@3.4.29)(prettier@3.4.2)': + dependencies: + '@ianvs/prettier-plugin-sort-imports': 4.4.0(@vue/compiler-sfc@3.4.29)(prettier@3.4.2) + prettier: 3.4.2 + prettier-plugin-packagejson: 2.5.6(prettier@3.4.2) + prettier-plugin-tailwindcss: 0.6.9(@ianvs/prettier-plugin-sort-imports@4.4.0(@vue/compiler-sfc@3.4.29)(prettier@3.4.2))(prettier@3.4.2) + rattail: 1.0.18 + transitivePeerDependencies: + - '@prettier/plugin-pug' + - '@shopify/prettier-plugin-liquid' + - '@trivago/prettier-plugin-sort-imports' + - '@vue/compiler-sfc' + - '@zackad/prettier-plugin-twig-melody' + - prettier-plugin-astro + - prettier-plugin-css-order + - prettier-plugin-import-sort + - prettier-plugin-jsdoc + - prettier-plugin-marko + - prettier-plugin-multiline-arrays + - prettier-plugin-organize-attributes + - prettier-plugin-organize-imports + - prettier-plugin-sort-imports + - prettier-plugin-style-order + - prettier-plugin-svelte + - supports-color + + '@discoveryjs/json-ext@0.5.7': {} + + '@esbuild/aix-ppc64@0.20.2': + optional: true + + '@esbuild/aix-ppc64@0.21.5': + optional: true '@esbuild/android-arm64@0.19.5': optional: true @@ -6514,13 +7152,144 @@ snapshots: '@esbuild/win32-x64@0.21.5': optional: true + '@eslint-community/eslint-plugin-eslint-comments@4.4.1(eslint@9.18.0(jiti@1.21.0))': + dependencies: + escape-string-regexp: 4.0.0 + eslint: 9.18.0(jiti@1.21.0) + ignore: 5.2.4 + '@eslint-community/eslint-utils@4.4.0(eslint@8.53.0)': dependencies: eslint: 8.53.0 eslint-visitor-keys: 3.4.3 + '@eslint-community/eslint-utils@4.4.0(eslint@9.18.0(jiti@1.21.0))': + dependencies: + eslint: 9.18.0(jiti@1.21.0) + eslint-visitor-keys: 3.4.3 + '@eslint-community/regexpp@4.10.0': {} + '@eslint-community/regexpp@4.12.1': {} + + '@eslint-react/ast@1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2)': + dependencies: + '@eslint-react/eff': 1.23.2 + '@eslint-react/types': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@typescript-eslint/types': 8.19.1 + '@typescript-eslint/typescript-estree': 8.19.1(typescript@5.2.2) + '@typescript-eslint/utils': 8.19.1(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + string-ts: 2.2.0 + ts-pattern: 5.6.0 + transitivePeerDependencies: + - eslint + - supports-color + - typescript + + '@eslint-react/core@1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2)': + dependencies: + '@eslint-react/ast': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@eslint-react/eff': 1.23.2 + '@eslint-react/jsx': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@eslint-react/shared': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@eslint-react/types': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@eslint-react/var': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@typescript-eslint/scope-manager': 8.19.1 + '@typescript-eslint/type-utils': 8.19.1(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@typescript-eslint/types': 8.19.1 + '@typescript-eslint/utils': 8.19.1(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + ts-pattern: 5.6.0 + transitivePeerDependencies: + - eslint + - supports-color + - typescript + + '@eslint-react/eff@1.23.2': {} + + '@eslint-react/eslint-plugin@1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2)': + dependencies: + '@eslint-react/eff': 1.23.2 + '@eslint-react/shared': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@eslint-react/types': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@typescript-eslint/scope-manager': 8.19.1 + '@typescript-eslint/type-utils': 8.19.1(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@typescript-eslint/types': 8.19.1 + '@typescript-eslint/utils': 8.19.1(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + eslint: 9.18.0(jiti@1.21.0) + eslint-plugin-react-debug: 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + eslint-plugin-react-dom: 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + eslint-plugin-react-hooks-extra: 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + eslint-plugin-react-naming-convention: 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + eslint-plugin-react-web-api: 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + eslint-plugin-react-x: 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + optionalDependencies: + typescript: 5.2.2 + transitivePeerDependencies: + - supports-color + + '@eslint-react/jsx@1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2)': + dependencies: + '@eslint-react/ast': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@eslint-react/eff': 1.23.2 + '@eslint-react/types': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@eslint-react/var': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@typescript-eslint/scope-manager': 8.19.1 + '@typescript-eslint/types': 8.19.1 + '@typescript-eslint/utils': 8.19.1(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + ts-pattern: 5.6.0 + transitivePeerDependencies: + - eslint + - supports-color + - typescript + + '@eslint-react/shared@1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2)': + dependencies: + '@eslint-react/eff': 1.23.2 + '@typescript-eslint/utils': 8.19.1(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + picomatch: 4.0.2 + ts-pattern: 5.6.0 + transitivePeerDependencies: + - eslint + - supports-color + - typescript + + '@eslint-react/types@1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2)': + dependencies: + '@eslint-react/eff': 1.23.2 + '@typescript-eslint/types': 8.19.1 + '@typescript-eslint/utils': 8.19.1(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + transitivePeerDependencies: + - eslint + - supports-color + - typescript + + '@eslint-react/var@1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2)': + dependencies: + '@eslint-react/ast': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@eslint-react/eff': 1.23.2 + '@eslint-react/types': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@typescript-eslint/scope-manager': 8.19.1 + '@typescript-eslint/types': 8.19.1 + '@typescript-eslint/utils': 8.19.1(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + string-ts: 2.2.0 + ts-pattern: 5.6.0 + transitivePeerDependencies: + - eslint + - supports-color + - typescript + + '@eslint/config-array@0.19.1': + dependencies: + '@eslint/object-schema': 2.1.5 + debug: 4.3.4 + minimatch: 3.1.2 + transitivePeerDependencies: + - supports-color + + '@eslint/core@0.10.0': + dependencies: + '@types/json-schema': 7.0.15 + '@eslint/eslintrc@2.1.3': dependencies: ajv: 6.12.6 @@ -6535,14 +7304,44 @@ snapshots: transitivePeerDependencies: - supports-color + '@eslint/eslintrc@3.2.0': + dependencies: + ajv: 6.12.6 + debug: 4.3.4 + espree: 10.3.0 + globals: 14.0.0 + ignore: 5.2.4 + import-fresh: 3.3.0 + js-yaml: 4.1.0 + minimatch: 3.1.2 + strip-json-comments: 3.1.1 + transitivePeerDependencies: + - supports-color + '@eslint/js@8.53.0': {} + '@eslint/js@9.18.0': {} + + '@eslint/object-schema@2.1.5': {} + + '@eslint/plugin-kit@0.2.5': + dependencies: + '@eslint/core': 0.10.0 + levn: 0.4.1 + '@hapi/hoek@9.3.0': {} '@hapi/topo@5.1.0': dependencies: '@hapi/hoek': 9.3.0 + '@humanfs/core@0.19.1': {} + + '@humanfs/node@0.16.6': + dependencies: + '@humanfs/core': 0.19.1 + '@humanwhocodes/retry': 0.3.1 + '@humanwhocodes/config-array@0.11.13': dependencies: '@humanwhocodes/object-schema': 2.0.1 @@ -6555,8 +7354,25 @@ snapshots: '@humanwhocodes/object-schema@2.0.1': {} + '@humanwhocodes/retry@0.3.1': {} + + '@humanwhocodes/retry@0.4.1': {} + '@hutson/parse-repository-url@5.0.0': {} + '@ianvs/prettier-plugin-sort-imports@4.4.0(@vue/compiler-sfc@3.4.29)(prettier@3.4.2)': + dependencies: + '@babel/generator': 7.26.5 + '@babel/parser': 7.26.5 + '@babel/traverse': 7.26.5 + '@babel/types': 7.26.5 + prettier: 3.4.2 + semver: 7.5.4 + optionalDependencies: + '@vue/compiler-sfc': 3.4.29 + transitivePeerDependencies: + - supports-color + '@isaacs/cliui@8.0.2': dependencies: string-width: 5.1.2 @@ -6652,6 +7468,8 @@ snapshots: '@pkgjs/parseargs@0.11.0': optional: true + '@pkgr/core@0.1.1': {} + '@polka/url@1.0.0-next.25': {} '@rollup/rollup-android-arm-eabi@4.17.2': @@ -6740,6 +7558,8 @@ snapshots: dependencies: '@types/node': 20.12.11 + '@types/doctrine@0.0.9': {} + '@types/eslint-scope@3.7.7': dependencies: '@types/eslint': 8.56.10 @@ -6752,6 +7572,8 @@ snapshots: '@types/estree@1.0.5': {} + '@types/estree@1.0.6': {} + '@types/express-serve-static-core@4.19.0': dependencies: '@types/node': 20.12.11 @@ -6861,6 +7683,23 @@ snapshots: transitivePeerDependencies: - supports-color + '@typescript-eslint/eslint-plugin@8.19.1(@typescript-eslint/parser@8.19.1(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2))(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2)': + dependencies: + '@eslint-community/regexpp': 4.10.0 + '@typescript-eslint/parser': 8.19.1(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@typescript-eslint/scope-manager': 8.19.1 + '@typescript-eslint/type-utils': 8.19.1(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@typescript-eslint/utils': 8.19.1(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@typescript-eslint/visitor-keys': 8.19.1 + eslint: 9.18.0(jiti@1.21.0) + graphemer: 1.4.0 + ignore: 5.3.2 + natural-compare: 1.4.0 + ts-api-utils: 2.0.0(typescript@5.2.2) + typescript: 5.2.2 + transitivePeerDependencies: + - supports-color + '@typescript-eslint/parser@5.62.0(eslint@8.53.0)(typescript@5.2.2)': dependencies: '@typescript-eslint/scope-manager': 5.62.0 @@ -6873,11 +7712,28 @@ snapshots: transitivePeerDependencies: - supports-color + '@typescript-eslint/parser@8.19.1(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2)': + dependencies: + '@typescript-eslint/scope-manager': 8.19.1 + '@typescript-eslint/types': 8.19.1 + '@typescript-eslint/typescript-estree': 8.19.1(typescript@5.2.2) + '@typescript-eslint/visitor-keys': 8.19.1 + debug: 4.3.4 + eslint: 9.18.0(jiti@1.21.0) + typescript: 5.2.2 + transitivePeerDependencies: + - supports-color + '@typescript-eslint/scope-manager@5.62.0': dependencies: '@typescript-eslint/types': 5.62.0 '@typescript-eslint/visitor-keys': 5.62.0 + '@typescript-eslint/scope-manager@8.19.1': + dependencies: + '@typescript-eslint/types': 8.19.1 + '@typescript-eslint/visitor-keys': 8.19.1 + '@typescript-eslint/type-utils@5.62.0(eslint@8.53.0)(typescript@5.2.2)': dependencies: '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.2.2) @@ -6890,8 +7746,21 @@ snapshots: transitivePeerDependencies: - supports-color + '@typescript-eslint/type-utils@8.19.1(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2)': + dependencies: + '@typescript-eslint/typescript-estree': 8.19.1(typescript@5.2.2) + '@typescript-eslint/utils': 8.19.1(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + debug: 4.3.4 + eslint: 9.18.0(jiti@1.21.0) + ts-api-utils: 2.0.0(typescript@5.2.2) + typescript: 5.2.2 + transitivePeerDependencies: + - supports-color + '@typescript-eslint/types@5.62.0': {} + '@typescript-eslint/types@8.19.1': {} + '@typescript-eslint/typescript-estree@5.62.0(typescript@5.2.2)': dependencies: '@typescript-eslint/types': 5.62.0 @@ -6906,6 +7775,20 @@ snapshots: transitivePeerDependencies: - supports-color + '@typescript-eslint/typescript-estree@8.19.1(typescript@5.2.2)': + dependencies: + '@typescript-eslint/types': 8.19.1 + '@typescript-eslint/visitor-keys': 8.19.1 + debug: 4.3.4 + fast-glob: 3.3.2 + is-glob: 4.0.3 + minimatch: 9.0.5 + semver: 7.6.3 + ts-api-utils: 2.0.0(typescript@5.2.2) + typescript: 5.2.2 + transitivePeerDependencies: + - supports-color + '@typescript-eslint/utils@5.62.0(eslint@8.53.0)(typescript@5.2.2)': dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.53.0) @@ -6921,11 +7804,27 @@ snapshots: - supports-color - typescript + '@typescript-eslint/utils@8.19.1(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2)': + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@9.18.0(jiti@1.21.0)) + '@typescript-eslint/scope-manager': 8.19.1 + '@typescript-eslint/types': 8.19.1 + '@typescript-eslint/typescript-estree': 8.19.1(typescript@5.2.2) + eslint: 9.18.0(jiti@1.21.0) + typescript: 5.2.2 + transitivePeerDependencies: + - supports-color + '@typescript-eslint/visitor-keys@5.62.0': dependencies: '@typescript-eslint/types': 5.62.0 eslint-visitor-keys: 3.4.3 + '@typescript-eslint/visitor-keys@8.19.1': + dependencies: + '@typescript-eslint/types': 8.19.1 + eslint-visitor-keys: 4.2.0 + '@ungap/structured-clone@1.2.0': {} '@varlet/axle@0.9.0(vue@3.4.27(typescript@5.2.2))': @@ -7103,11 +8002,11 @@ snapshots: '@vue/cli-overlay@5.0.8': {} - '@vue/cli-plugin-babel@5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.4.29)(handlebars@4.7.8)(lodash@4.17.21)(prettier@3.1.0)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@4.5.5))(webpack-sources@3.2.3))(core-js@3.37.0)(vue@3.4.27(typescript@4.5.5))': + '@vue/cli-plugin-babel@5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.4.29)(handlebars@4.7.8)(lodash@4.17.21)(prettier@3.4.2)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@4.5.5))(webpack-sources@3.2.3))(core-js@3.37.0)(vue@3.4.27(typescript@4.5.5))': dependencies: '@babel/core': 7.24.5 '@vue/babel-preset-app': 5.0.8(@babel/core@7.24.5)(core-js@3.37.0)(vue@3.4.27(typescript@4.5.5)) - '@vue/cli-service': 5.0.8(@vue/compiler-sfc@3.4.29)(handlebars@4.7.8)(lodash@4.17.21)(prettier@3.1.0)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@4.5.5))(webpack-sources@3.2.3) + '@vue/cli-service': 5.0.8(@vue/compiler-sfc@3.4.29)(handlebars@4.7.8)(lodash@4.17.21)(prettier@3.4.2)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@4.5.5))(webpack-sources@3.2.3) '@vue/cli-shared-utils': 5.0.8 babel-loader: 8.3.0(@babel/core@7.24.5)(webpack@5.91.0) thread-loader: 3.0.4(webpack@5.91.0) @@ -7122,18 +8021,18 @@ snapshots: - vue - webpack-cli - '@vue/cli-plugin-router@5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.4.29)(handlebars@4.7.8)(lodash@4.17.21)(prettier@3.1.0)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@4.5.5))(webpack-sources@3.2.3))': + '@vue/cli-plugin-router@5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.4.29)(handlebars@4.7.8)(lodash@4.17.21)(prettier@3.4.2)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@4.5.5))(webpack-sources@3.2.3))': dependencies: - '@vue/cli-service': 5.0.8(@vue/compiler-sfc@3.4.29)(handlebars@4.7.8)(lodash@4.17.21)(prettier@3.1.0)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@4.5.5))(webpack-sources@3.2.3) + '@vue/cli-service': 5.0.8(@vue/compiler-sfc@3.4.29)(handlebars@4.7.8)(lodash@4.17.21)(prettier@3.4.2)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@4.5.5))(webpack-sources@3.2.3) '@vue/cli-shared-utils': 5.0.8 transitivePeerDependencies: - encoding - '@vue/cli-plugin-typescript@5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.4.29)(handlebars@4.7.8)(lodash@4.17.21)(prettier@3.1.0)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@4.5.5))(webpack-sources@3.2.3))(eslint@8.53.0)(typescript@4.5.5)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@4.5.5))': + '@vue/cli-plugin-typescript@5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.4.29)(handlebars@4.7.8)(lodash@4.17.21)(prettier@3.4.2)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@4.5.5))(webpack-sources@3.2.3))(eslint@8.53.0)(typescript@4.5.5)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@4.5.5))': dependencies: '@babel/core': 7.24.5 '@types/webpack-env': 1.18.5 - '@vue/cli-service': 5.0.8(@vue/compiler-sfc@3.4.29)(handlebars@4.7.8)(lodash@4.17.21)(prettier@3.1.0)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@4.5.5))(webpack-sources@3.2.3) + '@vue/cli-service': 5.0.8(@vue/compiler-sfc@3.4.29)(handlebars@4.7.8)(lodash@4.17.21)(prettier@3.4.2)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@4.5.5))(webpack-sources@3.2.3) '@vue/cli-shared-utils': 5.0.8 babel-loader: 8.3.0(@babel/core@7.24.5)(webpack@5.91.0) fork-ts-checker-webpack-plugin: 6.5.3(eslint@8.53.0)(typescript@4.5.5)(vue-template-compiler@2.7.16)(webpack@5.91.0) @@ -7154,22 +8053,22 @@ snapshots: - uglify-js - webpack-cli - '@vue/cli-plugin-vuex@5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.4.29)(handlebars@4.7.8)(lodash@4.17.21)(prettier@3.1.0)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@4.5.5))(webpack-sources@3.2.3))': + '@vue/cli-plugin-vuex@5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.4.29)(handlebars@4.7.8)(lodash@4.17.21)(prettier@3.4.2)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@4.5.5))(webpack-sources@3.2.3))': dependencies: - '@vue/cli-service': 5.0.8(@vue/compiler-sfc@3.4.29)(handlebars@4.7.8)(lodash@4.17.21)(prettier@3.1.0)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@4.5.5))(webpack-sources@3.2.3) + '@vue/cli-service': 5.0.8(@vue/compiler-sfc@3.4.29)(handlebars@4.7.8)(lodash@4.17.21)(prettier@3.4.2)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@4.5.5))(webpack-sources@3.2.3) - '@vue/cli-service@5.0.8(@vue/compiler-sfc@3.4.29)(handlebars@4.7.8)(lodash@4.17.21)(prettier@3.1.0)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@4.5.5))(webpack-sources@3.2.3)': + '@vue/cli-service@5.0.8(@vue/compiler-sfc@3.4.29)(handlebars@4.7.8)(lodash@4.17.21)(prettier@3.4.2)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@4.5.5))(webpack-sources@3.2.3)': dependencies: '@babel/helper-compilation-targets': 7.23.6 '@soda/friendly-errors-webpack-plugin': 1.8.1(webpack@5.91.0) '@soda/get-current-script': 1.0.2 '@types/minimist': 1.2.5 '@vue/cli-overlay': 5.0.8 - '@vue/cli-plugin-router': 5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.4.29)(handlebars@4.7.8)(lodash@4.17.21)(prettier@3.1.0)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@4.5.5))(webpack-sources@3.2.3)) - '@vue/cli-plugin-vuex': 5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.4.29)(handlebars@4.7.8)(lodash@4.17.21)(prettier@3.1.0)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@4.5.5))(webpack-sources@3.2.3)) + '@vue/cli-plugin-router': 5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.4.29)(handlebars@4.7.8)(lodash@4.17.21)(prettier@3.4.2)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@4.5.5))(webpack-sources@3.2.3)) + '@vue/cli-plugin-vuex': 5.0.8(@vue/cli-service@5.0.8(@vue/compiler-sfc@3.4.29)(handlebars@4.7.8)(lodash@4.17.21)(prettier@3.4.2)(vue-template-compiler@2.7.16)(vue@3.4.27(typescript@4.5.5))(webpack-sources@3.2.3)) '@vue/cli-shared-utils': 5.0.8 '@vue/component-compiler-utils': 3.3.0(handlebars@4.7.8)(lodash@4.17.21) - '@vue/vue-loader-v15': vue-loader@15.11.1(@vue/compiler-sfc@3.4.29)(css-loader@6.11.0(webpack@5.91.0))(handlebars@4.7.8)(lodash@4.17.21)(prettier@3.1.0)(vue-template-compiler@2.7.16)(webpack@5.91.0) + '@vue/vue-loader-v15': vue-loader@15.11.1(@vue/compiler-sfc@3.4.29)(css-loader@6.11.0(webpack@5.91.0))(handlebars@4.7.8)(lodash@4.17.21)(prettier@3.4.2)(vue-template-compiler@2.7.16)(webpack@5.91.0) '@vue/web-component-wrapper': 1.3.0 acorn: 8.11.3 acorn-walk: 8.3.2 @@ -7571,12 +8470,18 @@ snapshots: dependencies: acorn: 8.11.2 + acorn-jsx@5.3.2(acorn@8.14.0): + dependencies: + acorn: 8.14.0 + acorn-walk@8.3.2: {} acorn@8.11.2: {} acorn@8.11.3: {} + acorn@8.14.0: {} + add-stream@1.0.0: {} address@1.2.2: {} @@ -7961,6 +8866,8 @@ snapshots: array-ify: 1.0.0 dot-prop: 5.3.0 + compare-versions@6.1.1: {} + compressible@2.0.18: dependencies: mime-db: 1.52.0 @@ -8121,6 +9028,12 @@ snapshots: shebang-command: 2.0.0 which: 2.0.2 + cross-spawn@7.0.6: + dependencies: + path-key: 3.1.1 + shebang-command: 2.0.0 + which: 2.0.2 + crypto-js@4.2.0: {} css-declaration-sorter@6.4.1(postcss@8.4.38): @@ -8276,6 +9189,10 @@ snapshots: destroy@1.2.0: {} + detect-indent@7.0.1: {} + + detect-newline@4.0.1: {} + detect-node@2.1.0: {} dir-glob@3.0.1: @@ -8356,6 +9273,11 @@ snapshots: graceful-fs: 4.2.11 tapable: 2.2.1 + enhanced-resolve@5.18.0: + dependencies: + graceful-fs: 4.2.11 + tapable: 2.2.1 + entities@2.2.0: {} entities@4.5.0: {} @@ -8528,6 +9450,11 @@ snapshots: dependencies: eslint: 8.53.0 + eslint-config-prettier@8.10.0(eslint@9.18.0(jiti@1.21.0)): + dependencies: + eslint: 9.18.0(jiti@1.21.0) + optional: true + eslint-import-resolver-node@0.3.9: dependencies: debug: 3.2.7 @@ -8546,6 +9473,26 @@ snapshots: transitivePeerDependencies: - supports-color + eslint-plugin-import-x@4.6.1(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2): + dependencies: + '@types/doctrine': 0.0.9 + '@typescript-eslint/scope-manager': 8.19.1 + '@typescript-eslint/utils': 8.19.1(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + debug: 4.3.4 + doctrine: 3.0.0 + enhanced-resolve: 5.18.0 + eslint: 9.18.0(jiti@1.21.0) + eslint-import-resolver-node: 0.3.9 + get-tsconfig: 4.8.1 + is-glob: 4.0.3 + minimatch: 9.0.3 + semver: 7.6.3 + stable-hash: 0.0.4 + tslib: 2.8.1 + transitivePeerDependencies: + - supports-color + - typescript + eslint-plugin-import@2.29.0(@typescript-eslint/parser@5.62.0(eslint@8.53.0)(typescript@5.2.2))(eslint@8.53.0): dependencies: array-includes: '@nolyfill/array-includes@1.0.28' @@ -8573,6 +9520,147 @@ snapshots: - eslint-import-resolver-webpack - supports-color + eslint-plugin-prettier@5.2.1(@types/eslint@8.56.10)(eslint-config-prettier@8.10.0(eslint@9.18.0(jiti@1.21.0)))(eslint@9.18.0(jiti@1.21.0))(prettier@3.4.2): + dependencies: + eslint: 9.18.0(jiti@1.21.0) + prettier: 3.4.2 + prettier-linter-helpers: 1.0.0 + synckit: 0.9.2 + optionalDependencies: + '@types/eslint': 8.56.10 + eslint-config-prettier: 8.10.0(eslint@9.18.0(jiti@1.21.0)) + + eslint-plugin-react-debug@1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2): + dependencies: + '@eslint-react/ast': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@eslint-react/core': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@eslint-react/eff': 1.23.2 + '@eslint-react/jsx': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@eslint-react/shared': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@eslint-react/types': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@eslint-react/var': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@typescript-eslint/scope-manager': 8.19.1 + '@typescript-eslint/type-utils': 8.19.1(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@typescript-eslint/types': 8.19.1 + '@typescript-eslint/utils': 8.19.1(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + eslint: 9.18.0(jiti@1.21.0) + string-ts: 2.2.0 + ts-pattern: 5.6.0 + optionalDependencies: + typescript: 5.2.2 + transitivePeerDependencies: + - supports-color + + eslint-plugin-react-dom@1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2): + dependencies: + '@eslint-react/ast': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@eslint-react/core': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@eslint-react/eff': 1.23.2 + '@eslint-react/jsx': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@eslint-react/shared': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@eslint-react/types': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@eslint-react/var': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@typescript-eslint/scope-manager': 8.19.1 + '@typescript-eslint/types': 8.19.1 + '@typescript-eslint/utils': 8.19.1(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + compare-versions: 6.1.1 + eslint: 9.18.0(jiti@1.21.0) + string-ts: 2.2.0 + ts-pattern: 5.6.0 + optionalDependencies: + typescript: 5.2.2 + transitivePeerDependencies: + - supports-color + + eslint-plugin-react-hooks-extra@1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2): + dependencies: + '@eslint-react/ast': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@eslint-react/core': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@eslint-react/eff': 1.23.2 + '@eslint-react/jsx': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@eslint-react/shared': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@eslint-react/types': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@eslint-react/var': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@typescript-eslint/scope-manager': 8.19.1 + '@typescript-eslint/type-utils': 8.19.1(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@typescript-eslint/types': 8.19.1 + '@typescript-eslint/utils': 8.19.1(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + eslint: 9.18.0(jiti@1.21.0) + string-ts: 2.2.0 + ts-pattern: 5.6.0 + optionalDependencies: + typescript: 5.2.2 + transitivePeerDependencies: + - supports-color + + eslint-plugin-react-hooks@5.1.0(eslint@9.18.0(jiti@1.21.0)): + dependencies: + eslint: 9.18.0(jiti@1.21.0) + + eslint-plugin-react-naming-convention@1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2): + dependencies: + '@eslint-react/ast': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@eslint-react/core': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@eslint-react/eff': 1.23.2 + '@eslint-react/jsx': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@eslint-react/shared': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@eslint-react/types': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@typescript-eslint/scope-manager': 8.19.1 + '@typescript-eslint/type-utils': 8.19.1(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@typescript-eslint/types': 8.19.1 + '@typescript-eslint/utils': 8.19.1(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + eslint: 9.18.0(jiti@1.21.0) + string-ts: 2.2.0 + ts-pattern: 5.6.0 + optionalDependencies: + typescript: 5.2.2 + transitivePeerDependencies: + - supports-color + + eslint-plugin-react-web-api@1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2): + dependencies: + '@eslint-react/ast': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@eslint-react/core': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@eslint-react/eff': 1.23.2 + '@eslint-react/jsx': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@eslint-react/shared': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@eslint-react/types': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@eslint-react/var': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@typescript-eslint/scope-manager': 8.19.1 + '@typescript-eslint/types': 8.19.1 + '@typescript-eslint/utils': 8.19.1(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + eslint: 9.18.0(jiti@1.21.0) + string-ts: 2.2.0 + ts-pattern: 5.6.0 + optionalDependencies: + typescript: 5.2.2 + transitivePeerDependencies: + - supports-color + + eslint-plugin-react-x@1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2): + dependencies: + '@eslint-react/ast': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@eslint-react/core': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@eslint-react/eff': 1.23.2 + '@eslint-react/jsx': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@eslint-react/shared': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@eslint-react/types': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@eslint-react/var': 1.23.2(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@typescript-eslint/scope-manager': 8.19.1 + '@typescript-eslint/type-utils': 8.19.1(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + '@typescript-eslint/types': 8.19.1 + '@typescript-eslint/utils': 8.19.1(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + compare-versions: 6.1.1 + eslint: 9.18.0(jiti@1.21.0) + is-immutable-type: 5.0.1(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + string-ts: 2.2.0 + ts-api-utils: 2.0.0(typescript@5.2.2) + ts-pattern: 5.6.0 + optionalDependencies: + typescript: 5.2.2 + transitivePeerDependencies: + - supports-color + eslint-plugin-vue@9.18.1(eslint@8.53.0): dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.53.0) @@ -8586,6 +9674,20 @@ snapshots: transitivePeerDependencies: - supports-color + eslint-plugin-vue@9.32.0(eslint@9.18.0(jiti@1.21.0)): + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@9.18.0(jiti@1.21.0)) + eslint: 9.18.0(jiti@1.21.0) + globals: 13.24.0 + natural-compare: 1.4.0 + nth-check: 2.1.1 + postcss-selector-parser: 6.1.2 + semver: 7.6.3 + vue-eslint-parser: 9.4.3(eslint@9.18.0(jiti@1.21.0)) + xml-name-validator: 4.0.0 + transitivePeerDependencies: + - supports-color + eslint-scope@5.1.1: dependencies: esrecurse: 4.3.0 @@ -8596,8 +9698,15 @@ snapshots: esrecurse: 4.3.0 estraverse: 5.3.0 + eslint-scope@8.2.0: + dependencies: + esrecurse: 4.3.0 + estraverse: 5.3.0 + eslint-visitor-keys@3.4.3: {} + eslint-visitor-keys@4.2.0: {} + eslint@8.53.0: dependencies: '@eslint-community/eslint-utils': 4.4.0(eslint@8.53.0) @@ -8641,6 +9750,53 @@ snapshots: transitivePeerDependencies: - supports-color + eslint@9.18.0(jiti@1.21.0): + dependencies: + '@eslint-community/eslint-utils': 4.4.0(eslint@9.18.0(jiti@1.21.0)) + '@eslint-community/regexpp': 4.12.1 + '@eslint/config-array': 0.19.1 + '@eslint/core': 0.10.0 + '@eslint/eslintrc': 3.2.0 + '@eslint/js': 9.18.0 + '@eslint/plugin-kit': 0.2.5 + '@humanfs/node': 0.16.6 + '@humanwhocodes/module-importer': 1.0.1 + '@humanwhocodes/retry': 0.4.1 + '@types/estree': 1.0.6 + '@types/json-schema': 7.0.15 + ajv: 6.12.6 + chalk: 4.1.2 + cross-spawn: 7.0.6 + debug: 4.3.4 + escape-string-regexp: 4.0.0 + eslint-scope: 8.2.0 + eslint-visitor-keys: 4.2.0 + espree: 10.3.0 + esquery: 1.5.0 + esutils: 2.0.3 + fast-deep-equal: 3.1.3 + file-entry-cache: 8.0.0 + find-up: 5.0.0 + glob-parent: 6.0.2 + ignore: 5.2.4 + imurmurhash: 0.1.4 + is-glob: 4.0.3 + json-stable-stringify-without-jsonify: 1.0.1 + lodash.merge: 4.6.2 + minimatch: 3.1.2 + natural-compare: 1.4.0 + optionator: 0.9.3 + optionalDependencies: + jiti: 1.21.0 + transitivePeerDependencies: + - supports-color + + espree@10.3.0: + dependencies: + acorn: 8.14.0 + acorn-jsx: 5.3.2(acorn@8.14.0) + eslint-visitor-keys: 4.2.0 + espree@9.6.1: dependencies: acorn: 8.11.2 @@ -8749,6 +9905,8 @@ snapshots: fast-deep-equal@3.1.3: {} + fast-diff@1.3.0: {} + fast-glob@3.3.2: dependencies: '@nodelib/fs.stat': 2.0.5 @@ -8769,6 +9927,10 @@ snapshots: dependencies: websocket-driver: 0.7.4 + fdir@6.4.2(picomatch@4.0.2): + optionalDependencies: + picomatch: 4.0.2 + figures@2.0.0: dependencies: escape-string-regexp: 1.0.5 @@ -8782,6 +9944,10 @@ snapshots: dependencies: flat-cache: 3.2.0 + file-entry-cache@8.0.0: + dependencies: + flat-cache: 4.0.1 + fill-range@7.0.1: dependencies: to-regex-range: 5.0.1 @@ -8825,6 +9991,11 @@ snapshots: keyv: 4.5.4 rimraf: 3.0.2 + flat-cache@4.0.1: + dependencies: + flatted: 3.2.9 + keyv: 4.5.4 + flat@5.0.2: {} flatted@3.2.9: {} @@ -8925,6 +10096,8 @@ snapshots: has-symbols: 1.0.3 hasown: 2.0.0 + get-stdin@9.0.0: {} + get-stream@4.1.0: dependencies: pump: 3.0.0 @@ -8938,6 +10111,12 @@ snapshots: call-bind: 1.0.5 get-intrinsic: 1.2.2 + get-tsconfig@4.8.1: + dependencies: + resolve-pkg-maps: 1.0.0 + + git-hooks-list@3.1.0: {} + git-raw-commits@4.0.0: dependencies: dargs: 8.1.0 @@ -8991,6 +10170,14 @@ snapshots: dependencies: type-fest: 0.20.2 + globals@13.24.0: + dependencies: + type-fest: 0.20.2 + + globals@14.0.0: {} + + globals@15.14.0: {} + globalthis@1.0.3: dependencies: define-properties: 1.2.1 @@ -9160,6 +10347,8 @@ snapshots: ignore@5.2.4: {} + ignore@5.3.2: {} + import-fresh@3.3.0: dependencies: parent-module: 1.0.1 @@ -9251,6 +10440,16 @@ snapshots: dependencies: is-extglob: 2.1.1 + is-immutable-type@5.0.1(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2): + dependencies: + '@typescript-eslint/type-utils': 8.19.1(eslint@9.18.0(jiti@1.21.0))(typescript@5.2.2) + eslint: 9.18.0(jiti@1.21.0) + ts-api-utils: 2.0.0(typescript@5.2.2) + ts-declaration-location: 1.0.5(typescript@5.2.2) + typescript: 5.2.2 + transitivePeerDependencies: + - supports-color + is-interactive@1.0.0: {} is-negative-zero@2.0.2: {} @@ -9267,6 +10466,8 @@ snapshots: is-plain-obj@3.0.0: {} + is-plain-obj@4.1.0: {} + is-plain-object@2.0.4: dependencies: isobject: 3.0.1 @@ -9362,6 +10563,8 @@ snapshots: jsesc@2.5.2: {} + jsesc@3.1.0: {} + json-buffer@3.0.1: {} json-parse-better-errors@1.0.2: {} @@ -9559,6 +10762,10 @@ snapshots: minimalistic-assert@1.0.1: {} + minimatch@10.0.1: + dependencies: + brace-expansion: 2.0.1 + minimatch@3.1.2: dependencies: brace-expansion: 1.1.11 @@ -9567,6 +10774,10 @@ snapshots: dependencies: brace-expansion: 2.0.1 + minimatch@9.0.5: + dependencies: + brace-expansion: 2.0.1 + minimist@1.2.8: {} minipass@3.3.6: @@ -9852,6 +11063,8 @@ snapshots: picomatch@2.3.1: {} + picomatch@4.0.2: {} + pirates@4.0.6: {} pkg-dir@4.2.0: @@ -10044,6 +11257,11 @@ snapshots: cssesc: 3.0.0 util-deprecate: 1.0.2 + postcss-selector-parser@6.1.2: + dependencies: + cssesc: 3.0.0 + util-deprecate: 1.0.2 + postcss-svgo@5.1.0(postcss@8.4.38): dependencies: postcss: 8.4.38 @@ -10070,11 +11288,30 @@ snapshots: prelude-ls@1.2.1: {} + prettier-linter-helpers@1.0.0: + dependencies: + fast-diff: 1.3.0 + + prettier-plugin-packagejson@2.5.6(prettier@3.4.2): + dependencies: + sort-package-json: 2.12.0 + synckit: 0.9.2 + optionalDependencies: + prettier: 3.4.2 + + prettier-plugin-tailwindcss@0.6.9(@ianvs/prettier-plugin-sort-imports@4.4.0(@vue/compiler-sfc@3.4.29)(prettier@3.4.2))(prettier@3.4.2): + dependencies: + prettier: 3.4.2 + optionalDependencies: + '@ianvs/prettier-plugin-sort-imports': 4.4.0(@vue/compiler-sfc@3.4.29)(prettier@3.4.2) + prettier@2.8.8: optional: true prettier@3.1.0: {} + prettier@3.4.2: {} + pretty-error@4.0.0: dependencies: lodash: 4.17.21 @@ -10121,6 +11358,10 @@ snapshots: dependencies: mitt: 3.0.1 + rattail@1.0.18: + dependencies: + mitt: 3.0.1 + raw-body@2.5.2: dependencies: bytes: 3.1.2 @@ -10232,6 +11473,8 @@ snapshots: resolve-from@5.0.0: {} + resolve-pkg-maps@1.0.0: {} + resolve@1.22.8: dependencies: is-core-module: 2.13.1 @@ -10353,6 +11596,8 @@ snapshots: dependencies: lru-cache: 6.0.0 + semver@7.6.3: {} + send@0.18.0: dependencies: debug: 2.6.9 @@ -10457,6 +11702,19 @@ snapshots: uuid: 8.3.2 websocket-driver: 0.7.4 + sort-object-keys@1.1.3: {} + + sort-package-json@2.12.0: + dependencies: + detect-indent: 7.0.1 + detect-newline: 4.0.1 + get-stdin: 9.0.0 + git-hooks-list: 3.1.0 + is-plain-obj: 4.1.0 + semver: 7.6.3 + sort-object-keys: 1.1.3 + tinyglobby: 0.2.10 + source-map-js@1.2.0: {} source-map-support@0.5.21: @@ -10513,6 +11771,8 @@ snapshots: dependencies: minipass: 3.3.6 + stable-hash@0.0.4: {} + stable@0.1.8: {} stackframe@1.3.4: {} @@ -10521,6 +11781,8 @@ snapshots: statuses@2.0.1: {} + string-ts@2.2.0: {} + string-width@2.1.1: dependencies: is-fullwidth-code-point: 2.0.0 @@ -10653,6 +11915,11 @@ snapshots: svgpath@2.6.0: {} + synckit@0.9.2: + dependencies: + '@pkgr/core': 0.1.1 + tslib: 2.6.2 + tapable@1.1.3: {} tapable@2.2.1: {} @@ -10709,6 +11976,11 @@ snapshots: thunky@1.1.0: {} + tinyglobby@0.2.10: + dependencies: + fdir: 6.4.2(picomatch@4.0.2) + picomatch: 4.0.2 + tmp@0.0.33: dependencies: os-tmpdir: 1.0.2 @@ -10731,6 +12003,15 @@ snapshots: tree-kill@1.2.2: {} + ts-api-utils@2.0.0(typescript@5.2.2): + dependencies: + typescript: 5.2.2 + + ts-declaration-location@1.0.5(typescript@5.2.2): + dependencies: + minimatch: 10.0.1 + typescript: 5.2.2 + ts-interface-checker@0.1.13: {} ts-loader@9.5.1(typescript@4.5.5)(webpack@5.91.0): @@ -10743,6 +12024,8 @@ snapshots: typescript: 4.5.5 webpack: 5.91.0 + ts-pattern@5.6.0: {} + tsconfig-paths@3.14.2: dependencies: '@types/json5': 0.0.29 @@ -10754,6 +12037,8 @@ snapshots: tslib@2.6.2: {} + tslib@2.8.1: {} + tsup@8.0.1(postcss@8.4.38)(typescript@5.2.2): dependencies: bundle-require: 4.0.2(esbuild@0.19.5) @@ -10951,9 +12236,22 @@ snapshots: transitivePeerDependencies: - supports-color + vue-eslint-parser@9.4.3(eslint@9.18.0(jiti@1.21.0)): + dependencies: + debug: 4.3.4 + eslint: 9.18.0(jiti@1.21.0) + eslint-scope: 7.2.2 + eslint-visitor-keys: 3.4.3 + espree: 9.6.1 + esquery: 1.5.0 + lodash: 4.17.21 + semver: 7.5.4 + transitivePeerDependencies: + - supports-color + vue-hot-reload-api@2.3.4: {} - vue-loader@15.11.1(@vue/compiler-sfc@3.4.29)(css-loader@6.11.0(webpack@5.91.0))(handlebars@4.7.8)(lodash@4.17.21)(prettier@3.1.0)(vue-template-compiler@2.7.16)(webpack@5.91.0): + vue-loader@15.11.1(@vue/compiler-sfc@3.4.29)(css-loader@6.11.0(webpack@5.91.0))(handlebars@4.7.8)(lodash@4.17.21)(prettier@3.4.2)(vue-template-compiler@2.7.16)(webpack@5.91.0): dependencies: '@vue/component-compiler-utils': 3.3.0(handlebars@4.7.8)(lodash@4.17.21) css-loader: 6.11.0(webpack@5.91.0) @@ -10964,7 +12262,7 @@ snapshots: webpack: 5.91.0 optionalDependencies: '@vue/compiler-sfc': 3.4.29 - prettier: 3.1.0 + prettier: 3.4.2 vue-template-compiler: 2.7.16 transitivePeerDependencies: - arc-templates diff --git a/prettier.config.js b/prettier.config.js new file mode 100644 index 0000000..bbe71ff --- /dev/null +++ b/prettier.config.js @@ -0,0 +1,3 @@ +import { defineConfig } from '@configurajs/prettier' + +export default defineConfig()