From 5b36f88920d10395a0e7bc4ed38ea8045c1829bd Mon Sep 17 00:00:00 2001 From: Lexus Drumgold Date: Wed, 28 Dec 2022 17:47:19 -0500 Subject: [PATCH] chore: update project architecture Signed-off-by: Lexus Drumgold --- .cspell.json | 7 +- .dictionary.txt | 4 - .env.zsh | 1 + .eslintrc.base.cjs | 12 +- .github/dependabot.yml | 13 +- .github/workflows/ci.yml | 13 +- .vscode/settings.json | 17 +- CONTRIBUTING.md | 8 +- __tests__/setup/chai.ts | 14 - package.json | 49 +- patches/vitest+0.25.5.dev.patch | 13 - patches/vitest+0.26.2.dev.patch | 13 + vitest-env.d.ts | 1 - yarn.lock | 1306 ++++++++++++++----------------- 14 files changed, 681 insertions(+), 790 deletions(-) delete mode 100644 patches/vitest+0.25.5.dev.patch create mode 100644 patches/vitest+0.26.2.dev.patch diff --git a/.cspell.json b/.cspell.json index 7f68a6b7..9d465e9c 100644 --- a/.cspell.json +++ b/.cspell.json @@ -18,19 +18,22 @@ "**/.gitignore", "**/.gitkeep", "**/.npmignore", + "**/dist/", ".cspell.json", ".env*", ".eslintignore", ".git/", ".husky/_/", ".markdownlintignore", + ".npmrc", ".nvmrc", ".prettierignore", + ".vercel/", + ".vscode/settings.json", ".yarn/", "CHANGELOG.md", "LICENSE.md", "__tests__/report.json", - "dist/", "patches/", "yarn.lock" ], @@ -46,5 +49,5 @@ "useGitignore": true, "usePnP": false, "version": "0.2", - "words": ["fldv", "flexdevelopmentllc"] + "words": ["fldv", "flexdevelopmentllc", "pathe"] } diff --git a/.dictionary.txt b/.dictionary.txt index f04b792e..c7de24ff 100644 --- a/.dictionary.txt +++ b/.dictionary.txt @@ -8,11 +8,9 @@ dedupe deduped dessant dohm -esbenp esbuild fbca gpgsign -graphqlrc hmarr iife keyid @@ -24,7 +22,6 @@ nocheck npmrc nums nvmrc -pathe pkgs pnpm posix @@ -33,5 +30,4 @@ seglen sepidx syncer vates -vsicons yarnrc diff --git a/.env.zsh b/.env.zsh index ee4558ad..4c9b87c5 100644 --- a/.env.zsh +++ b/.env.zsh @@ -4,4 +4,5 @@ # # - https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins/dotenv +[ -f $PWD/.env.local ] && source $PWD/.env.local NODE_NO_WARNINGS=1 diff --git a/.eslintrc.base.cjs b/.eslintrc.base.cjs index b825f877..d7869061 100644 --- a/.eslintrc.base.cjs +++ b/.eslintrc.base.cjs @@ -466,6 +466,7 @@ const config = { 'no-array-constructor': 0, 'no-case-declarations': 0, 'no-duplicate-imports': 0, + 'no-empty': [2, { allowEmptyCatch: true }], 'no-empty-function': 0, 'no-ex-assign': 0, 'no-invalid-this': 0, @@ -679,7 +680,7 @@ const config = { '@typescript-eslint/no-base-to-string': [ 2, { - ignoredTypeNames: ['RegExp'] + ignoredTypeNames: ['Error', 'RegExp', 'URL', 'URLSearchParams'] } ], '@typescript-eslint/no-floating-promises': [ @@ -799,7 +800,7 @@ const config = { } }, { - files: ['*.cjs', '*.md/*.cjs', '*.js', '*.jsx', '*.mjs'], + files: ['*.cjs', '*.md/*.cjs', '*.mjs'], rules: { '@typescript-eslint/explicit-module-boundary-types': 0, '@typescript-eslint/no-implicit-any-catch': 0 @@ -848,7 +849,7 @@ const config = { } }, { - files: ['*.json', '*.json5', '*.jsonc'], + files: ['*.json', '*.jsonc'], extends: ['plugin:jsonc/prettier'], parser: 'jsonc-eslint-parser', plugins: ['jsonc'], @@ -924,7 +925,7 @@ const config = { } }, { - files: ['*.json5', '*.jsonc'], + files: ['*.jsonc'], rules: { 'jsonc/no-comments': 0 } @@ -995,7 +996,7 @@ const config = { } }, { - files: ['**/__tests__/*.spec.*', '**/__tests__/*.spec-d.ts'], + files: ['**/__tests__/*.spec.*', '**/__tests__/*.spec-d.*'], globals: { afterAll: true, afterEach: true, @@ -1036,6 +1037,7 @@ const config = { 'promise/prefer-await-to-callbacks': 0, 'promise/valid-params': 0, 'unicorn/consistent-destructuring': 0, + 'unicorn/error-message': 0, 'unicorn/explicit-length-check': 0, 'unicorn/no-array-for-each': 0, 'unicorn/no-useless-undefined': 0, diff --git a/.github/dependabot.yml b/.github/dependabot.yml index d64c3f6b..c4e6ce97 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,33 +4,32 @@ # # - https://docs.github.com/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/configuration-options-for-dependency-updates +--- version: 2 updates: - package-ecosystem: github-actions - directory: / - schedule: - interval: daily commit-message: prefix: ci include: scope + directory: / labels: - scope:dependencies - type:ci reviewers: - flex-development/dependabot-review - flexdevelopment - - package-ecosystem: npm - directory: / schedule: interval: daily + - package-ecosystem: npm commit-message: prefix: build include: scope - ignore: - - dependency-name: typescript + directory: / labels: - scope:dependencies - type:build reviewers: - flex-development/dependabot-review - flexdevelopment + schedule: + interval: daily diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 111876d0..916a35e5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,6 +9,8 @@ # - https://docs.github.com/actions/using-workflows/events-that-trigger-workflows#push # - https://docs.github.com/actions/using-workflows/events-that-trigger-workflows#workflow_dispatch # - https://github.com/actions/checkout +# - https://github.com/actions/setup-node +# - https://github.com/actions/setup-node/blob/main/docs/advanced-usage.md#yarn2-configuration # - https://github.com/actions/upload-artifact # - https://github.com/codecov/codecov-action # - https://github.com/hmarr/debug-action @@ -58,13 +60,14 @@ jobs: uses: actions/setup-node@v3.5.1 with: cache: yarn + cache-dependency-path: yarn.lock node-version: ${{ matrix.node-version }} - id: debug name: Print environment variables and event payload uses: hmarr/debug-action@v2.1.0 - id: yarn name: Install dependencies - run: yarn --no-immutable + run: yarn ${{ github.actor == 'dependabot[bot]' && '--no-immutable' || '--immutable' }} - id: format name: Check code formatting run: yarn check:format @@ -76,7 +79,7 @@ jobs: run: yarn check:spelling - id: typecheck name: Run typecheck - run: yarn typecheck + run: yarn typecheck && yarn check:types:build - id: test name: Run tests run: yarn test:cov --segfault-retry=3 @@ -85,15 +88,15 @@ jobs: run: yarn pack -o %s-%v.tgz env: NODE_ENV: production - - id: package-version + - id: version name: Get package version run: echo "result=$(jq .version package.json -r)" >> $GITHUB_OUTPUT - - id: package-archive + - id: archive name: Archive production artifacts uses: actions/upload-artifact@v3.1.1 with: name: | - ${{ format('@{0}-{1}-{2}', github.repository_owner, github.event.repository.name, steps.package-version.outputs.result) }} + ${{ format('@{0}-{1}-{2}', github.repository_owner, github.event.repository.name, steps.version.outputs.result) }} path: '*.tgz' - id: codecov name: Upload coverage report to Codecov diff --git a/.vscode/settings.json b/.vscode/settings.json index cdbf8acf..9257dfa4 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -118,6 +118,7 @@ }, "eslint.validate": [ "graphql", + "javascript", "json", "jsonc", "markdown", @@ -162,7 +163,11 @@ "typescript.suggest.completeJSDocs": true, "typescript.tsdk": "node_modules/typescript/lib", "typescript.updateImportsOnFileMove.enabled": "always", - "versionlens.npm.dependencyProperties": ["dependencies", "devDependencies"], + "versionlens.npm.dependencyProperties": [ + "dependencies", + "devDependencies", + "resolutions" + ], "vsicons.associations.files": [ { "extensions": [".eslintrc.base.cjs"], @@ -184,6 +189,11 @@ "format": "svg", "icon": "vitest" }, + { + "extensions": ["spec-d.ts"], + "format": "svg", + "icon": "testts" + }, { "extensions": ["yarnrc.yml"], "format": "svg", @@ -201,6 +211,11 @@ "format": "svg", "icon": "temp" }, + { + "extensions": ["internal"], + "format": "svg", + "icon": "private" + }, { "extensions": ["patches"], "format": "svg", diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 7e257e93..48831902 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -42,6 +42,8 @@ Follow the steps below to setup your local development environment: git config --global user.username ``` + See [`.gitconfig`](.github/.gitconfig) for a global Git config example. + 6. Install dependencies ```sh @@ -74,9 +76,7 @@ Follow the steps below to setup your local development environment: # LOAD ENVIRONMENT VARIABLES IN CURRENT WORKING DIRECTORY # 1. $GITHUB_WORKSPACE - # 2. environment variables (local) [ -d $PWD/.git ] && export GITHUB_WORKSPACE=$(git rev-parse --show-toplevel) - [ -f $PWD/.env.local ] && source $PWD/.env.local ``` 9. Load `dotenv` plugin via `$ZDOTDIR/.zshrc`: @@ -97,11 +97,11 @@ Follow the steps below to setup your local development environment: | name | | ----------------------- | -| `CI` | | `CODECOV_TOKEN` | +| `GITHUB_TOKEN` | | `NODE_ENV` | | `NODE_NO_WARNINGS` | -| `NODE_OPTIONS` | +| `PAT_BOT` | | `ZSH_DOTENV_FILE` | #### GitHub Actions diff --git a/__tests__/setup/chai.ts b/__tests__/setup/chai.ts index 944fbf5e..96f6c105 100644 --- a/__tests__/setup/chai.ts +++ b/__tests__/setup/chai.ts @@ -5,21 +5,7 @@ */ import chai from 'chai' -import chaiEach from 'chai-each' -import chaiQuantifiers from 'chai-quantifiers' -import chaiString from 'chai-string' // configure chai chai.config.includeStack = true chai.config.truncateThreshold = 0 - -/** - * initialize chai plugins. - * - * @see https://github.com/jamesthomasonjr/chai-each - * @see https://github.com/funny-bytes/chai-quantifiers - * @see https://github.com/onechiporenko/chai-string - */ -chai.use(chaiEach) -chai.use(chaiQuantifiers) -chai.use(chaiString) diff --git a/package.json b/package.json index ff60986d..058ba6d5 100644 --- a/package.json +++ b/package.json @@ -85,34 +85,30 @@ "@commitlint/config-conventional": "17.3.0", "@faker-js/faker": "7.6.0", "@flex-development/mkbuild": "1.0.0-alpha.9", - "@graphql-eslint/eslint-plugin": "3.13.1", + "@graphql-eslint/eslint-plugin": "3.14.3", "@types/chai": "4.3.4", - "@types/chai-string": "1.4.2", "@types/conventional-changelog": "3.1.1", "@types/conventional-changelog-config-spec": "2.1.2", "@types/conventional-changelog-writer": "4.0.1", - "@types/conventional-commits-parser": "3.0.2", + "@types/conventional-commits-parser": "3.0.3", "@types/dateformat": "5.0.0", "@types/eslint": "8.4.10", "@types/git-raw-commits": "2.0.1", "@types/is-ci": "3.0.0", - "@types/node": "18.11.10", + "@types/node": "16.18.11", "@types/node-notifier": "8.0.2", - "@types/prettier": "2.7.1", - "@typescript-eslint/eslint-plugin": "5.45.1", - "@typescript-eslint/parser": "5.45.1", + "@types/prettier": "2.7.2", + "@typescript-eslint/eslint-plugin": "5.47.1", + "@typescript-eslint/parser": "5.47.1", "@vates/toggle-scripts": "1.0.0", - "@vitest/coverage-c8": "0.25.5", - "@vitest/ui": "0.25.5", + "@vitest/coverage-c8": "0.26.2", + "@vitest/ui": "0.26.2", "chai": "4.3.7", - "chai-each": "0.0.1", - "chai-quantifiers": "1.0.17", - "chai-string": "1.5.0", "conventional-changelog-cli": "2.2.2", "conventional-recommended-bump": "6.1.0", - "cspell": "6.17.0", - "esbuild": "0.16.6", - "eslint": "8.29.0", + "cspell": "6.18.0", + "esbuild": "0.16.12", + "eslint": "8.30.0", "eslint-config-prettier": "8.5.0", "eslint-plugin-chai-expect": "3.0.0", "eslint-plugin-jest-formatting": "3.1.0", @@ -123,17 +119,17 @@ "eslint-plugin-node": "11.1.0", "eslint-plugin-prettier": "4.2.1", "eslint-plugin-promise": "6.1.1", - "eslint-plugin-unicorn": "45.0.1", - "eslint-plugin-yml": "1.2.0", + "eslint-plugin-unicorn": "45.0.2", + "eslint-plugin-yml": "1.4.0", "graphql": "16.6.0", - "graphql-config": "4.3.6", + "graphql-config": "4.4.0", "growl": "1.10.5", "husky": "8.0.2", "is-ci": "3.0.1", "jsonc-eslint-parser": "2.1.0", "lint-staged": "13.1.0", "node-notifier": "10.0.1", - "prettier": "2.8.0", + "prettier": "2.8.1", "prettier-plugin-sh": "0.12.8", "pretty-format": "29.3.1", "trash-cli": "5.0.0", @@ -141,19 +137,20 @@ "ts-node": "10.9.1", "tsconfig": "7.0.0", "tsconfig-paths": "4.1.1", - "typescript": "4.9.3", + "typescript": "4.9.4", "version-bump-prompt": "6.1.0", - "vite": "3.2.5", - "vite-tsconfig-paths": "3.6.0", - "vitest": "0.25.5", + "vite": "4.0.3", + "vite-tsconfig-paths": "4.0.3", + "vitest": "0.26.2", "vitest-github-actions-reporter": "0.9.0", "yaml-eslint-parser": "1.1.0" }, "resolutions": { "@ardatan/sync-fetch": "larsgw/sync-fetch#head=worker_threads", - "esbuild": "0.16.6", - "vite": "3.2.5", - "vitest@npm:0.25.5": "patch:vitest@npm%3A0.25.5#patches/vitest+0.25.5.dev.patch" + "@flex-development/tutils": "6.0.0-alpha.7", + "esbuild": "0.16.12", + "vite": "4.0.3", + "vitest@npm:0.26.2": "patch:vitest@npm%3A0.26.2#patches/vitest+0.26.2.dev.patch" }, "engines": { "node": ">=14", diff --git a/patches/vitest+0.25.5.dev.patch b/patches/vitest+0.25.5.dev.patch deleted file mode 100644 index a8bef557..00000000 --- a/patches/vitest+0.25.5.dev.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/dist/chunk-vite-node-externalize.ca4784be.js b/dist/chunk-vite-node-externalize.ca4784be.js -index v0.25.5..v0.25.5 100644 ---- a/dist/chunk-vite-node-externalize.ca4784be.js -+++ b/dist/chunk-vite-node-externalize.ca4784be.js -@@ -8312,7 +8312,7 @@ class DefaultReporter extends BaseReporter { - super.onWatcherStart(); - } - onCollected() { -- if (this.isTTY) { -+ if (this.isTTY || this.mode === "typecheck") { - this.rendererOptions.logger = this.ctx.logger; - this.rendererOptions.showHeap = this.ctx.config.logHeapUsage; - this.rendererOptions.mode = this.mode; diff --git a/patches/vitest+0.26.2.dev.patch b/patches/vitest+0.26.2.dev.patch new file mode 100644 index 00000000..b5e05819 --- /dev/null +++ b/patches/vitest+0.26.2.dev.patch @@ -0,0 +1,13 @@ +diff --git a/dist/chunk-snapshot-manager.8c94a052.js b/dist/chunk-snapshot-manager.8c94a052.js +index v0.26.2..v0.26.2 100644 +--- a/dist/chunk-snapshot-manager.8c94a052.js ++++ b/dist/chunk-snapshot-manager.8c94a052.js +@@ -8045,7 +8045,7 @@ class DefaultReporter extends BaseReporter { + super.onWatcherStart(); + } + onCollected() { +- if (this.isTTY) { ++ if (this.isTTY || this.mode === "typecheck") { + this.rendererOptions.logger = this.ctx.logger; + this.rendererOptions.showHeap = this.ctx.config.logHeapUsage; + this.rendererOptions.mode = this.mode; diff --git a/vitest-env.d.ts b/vitest-env.d.ts index 3649996a..05d42a04 100644 --- a/vitest-env.d.ts +++ b/vitest-env.d.ts @@ -6,7 +6,6 @@ interface ImportMetaEnv extends import('vitest/importMeta').ImportMetaEnv { readonly DEV: '1' | import('@flex-development/tutils').EmptyString readonly MODE: import('@flex-development/tutils').NodeEnv.TEST readonly NODE_ENV: import('@flex-development/tutils').NodeEnv.TEST - readonly NODE_OPTIONS: string readonly PROD: '1' | import('@flex-development/tutils').EmptyString readonly PWD: string readonly SSR: '1' | import('@flex-development/tutils').EmptyString diff --git a/yarn.lock b/yarn.lock index fa645391..b5b15ddc 100644 --- a/yarn.lock +++ b/yarn.lock @@ -367,82 +367,84 @@ __metadata: languageName: node linkType: hard -"@cspell/cspell-bundled-dicts@npm:6.17.0": - version: 6.17.0 - resolution: "@cspell/cspell-bundled-dicts@npm:6.17.0" +"@cspell/cspell-bundled-dicts@npm:6.18.0": + version: 6.18.0 + resolution: "@cspell/cspell-bundled-dicts@npm:6.18.0" dependencies: - "@cspell/dict-ada": "npm:^4.0.0" + "@cspell/dict-ada": "npm:^4.0.1" "@cspell/dict-aws": "npm:^3.0.0" - "@cspell/dict-bash": "npm:^4.1.0" - "@cspell/dict-companies": "npm:^3.0.3" - "@cspell/dict-cpp": "npm:^4.0.0" + "@cspell/dict-bash": "npm:^4.1.1" + "@cspell/dict-companies": "npm:^3.0.4" + "@cspell/dict-cpp": "npm:^4.0.1" "@cspell/dict-cryptocurrencies": "npm:^3.0.1" "@cspell/dict-csharp": "npm:^4.0.2" - "@cspell/dict-css": "npm:^4.0.0" - "@cspell/dict-dart": "npm:^2.0.0" - "@cspell/dict-django": "npm:^4.0.0" - "@cspell/dict-docker": "npm:^1.1.3" - "@cspell/dict-dotnet": "npm:^4.0.0" - "@cspell/dict-elixir": "npm:^4.0.0" + "@cspell/dict-css": "npm:^4.0.1" + "@cspell/dict-dart": "npm:^2.0.1" + "@cspell/dict-django": "npm:^4.0.1" + "@cspell/dict-docker": "npm:^1.1.4" + "@cspell/dict-dotnet": "npm:^4.0.1" + "@cspell/dict-elixir": "npm:^4.0.1" "@cspell/dict-en-gb": "npm:1.1.33" - "@cspell/dict-en_us": "npm:^4.1.0" + "@cspell/dict-en_us": "npm:^4.1.1" "@cspell/dict-filetypes": "npm:^3.0.0" "@cspell/dict-fonts": "npm:^3.0.0" "@cspell/dict-fullstack": "npm:^3.0.0" + "@cspell/dict-gaming-terms": "npm:^1.0.2" "@cspell/dict-git": "npm:^2.0.0" - "@cspell/dict-golang": "npm:^5.0.0" - "@cspell/dict-haskell": "npm:^4.0.0" - "@cspell/dict-html": "npm:^4.0.1" + "@cspell/dict-golang": "npm:^5.0.1" + "@cspell/dict-haskell": "npm:^4.0.1" + "@cspell/dict-html": "npm:^4.0.2" "@cspell/dict-html-symbol-entities": "npm:^4.0.0" - "@cspell/dict-java": "npm:^5.0.2" + "@cspell/dict-java": "npm:^5.0.3" + "@cspell/dict-k8s": "npm:^1.0.0" "@cspell/dict-latex": "npm:^3.0.0" "@cspell/dict-lorem-ipsum": "npm:^3.0.0" "@cspell/dict-lua": "npm:^3.0.0" - "@cspell/dict-node": "npm:^4.0.1" - "@cspell/dict-npm": "npm:^5.0.0" - "@cspell/dict-php": "npm:^3.0.3" + "@cspell/dict-node": "npm:^4.0.2" + "@cspell/dict-npm": "npm:^5.0.1" + "@cspell/dict-php": "npm:^3.0.4" "@cspell/dict-powershell": "npm:^3.0.0" - "@cspell/dict-public-licenses": "npm:^2.0.0" - "@cspell/dict-python": "npm:^4.0.0" - "@cspell/dict-r": "npm:^2.0.0" + "@cspell/dict-public-licenses": "npm:^2.0.1" + "@cspell/dict-python": "npm:^4.0.1" + "@cspell/dict-r": "npm:^2.0.1" "@cspell/dict-ruby": "npm:^3.0.0" "@cspell/dict-rust": "npm:^3.0.0" "@cspell/dict-scala": "npm:^3.0.0" - "@cspell/dict-software-terms": "npm:^3.0.5" - "@cspell/dict-sql": "npm:^2.0.0" - "@cspell/dict-svelte": "npm:^1.0.0" - "@cspell/dict-swift": "npm:^2.0.0" - "@cspell/dict-typescript": "npm:^3.0.1" + "@cspell/dict-software-terms": "npm:^3.0.6" + "@cspell/dict-sql": "npm:^2.0.1" + "@cspell/dict-svelte": "npm:^1.0.1" + "@cspell/dict-swift": "npm:^2.0.1" + "@cspell/dict-typescript": "npm:^3.0.2" "@cspell/dict-vue": "npm:^3.0.0" - checksum: 8bcbc77064bd17d628938fd208a30fe6f6e7d7f4c3e6753def1f5699a8fb616270f3cbfe57bcec8cb6d0e79b0b797af56b19d00e3099eb81496114f78c042a37 + checksum: b152d4738393c3828d9a045b802076780997615369ef3d43186c4464e56f898136dc22307f2092c6be1242857e83809d3e864dc685681f5634b00eecb2587a05 languageName: node linkType: hard -"@cspell/cspell-pipe@npm:6.17.0": - version: 6.17.0 - resolution: "@cspell/cspell-pipe@npm:6.17.0" - checksum: b36e6f0a969f81ed714b777892c14a4c92966a19bcf0f87e53a3114a6985d01f84c073e5bce68412576ba64d17632ff93444d940afc3dee5b100da4372d3aee6 +"@cspell/cspell-pipe@npm:6.18.0": + version: 6.18.0 + resolution: "@cspell/cspell-pipe@npm:6.18.0" + checksum: 759f3368ea26dd50e6183b6c34407694a502935713c64f8215e69d2a1f428d2d5d85c3a0ce17792fe44a0d40744d0c8c42a79067d015388921db4f4084493d91 languageName: node linkType: hard -"@cspell/cspell-service-bus@npm:6.17.0": - version: 6.17.0 - resolution: "@cspell/cspell-service-bus@npm:6.17.0" - checksum: 5b8e587788d6b2242692831a4d2ca73b911259f98430c392ee01ef334a84832502270130bc2372a036dc3f744273d5c0135006c4143801c4858ee2b63a15050c +"@cspell/cspell-service-bus@npm:6.18.0": + version: 6.18.0 + resolution: "@cspell/cspell-service-bus@npm:6.18.0" + checksum: 25ac9333d3075adde1447750c46432e170dc87dcad418d3c95cea7b4140fa5b6396bdec9b1ea0365058534ef946ad5e69ae236fc95ddd806f6ce66405d445c1d languageName: node linkType: hard -"@cspell/cspell-types@npm:6.17.0": - version: 6.17.0 - resolution: "@cspell/cspell-types@npm:6.17.0" - checksum: 6879929cc9920720fc3dda326f415ae17ea00fcb313e94fc836ab28be6faa3af8c952a822b576a5d5abe5b4d246bcaac5268c1a8f185946001fade7d4b6096a5 +"@cspell/cspell-types@npm:6.18.0": + version: 6.18.0 + resolution: "@cspell/cspell-types@npm:6.18.0" + checksum: 03a35bb6cb77d0281803a34bdb0b6480da312429f175716b1d0520d1d6cc87fea13e2cdfc63e9f975fac068779a3c023e3992c6bc5f1fa6c4d50e47221de82c2 languageName: node linkType: hard -"@cspell/dict-ada@npm:^4.0.0": - version: 4.0.0 - resolution: "@cspell/dict-ada@npm:4.0.0" - checksum: a6c0744ecfc4496206c4b7f1134b11afc13ad5d621565e0f491279feb934c98266e37af7587bd331349b05ad299aa9cf3ba851803bac53a4b2971b4077930461 +"@cspell/dict-ada@npm:^4.0.1": + version: 4.0.1 + resolution: "@cspell/dict-ada@npm:4.0.1" + checksum: 2502d9f13e423bafcaf2bb12516b2634ff0eed08b3a41bf2e8759d5f243451918c9a7a599596c49212bb2dc1d70c078f6cefc73efc72426e2d76504edeec5f46 languageName: node linkType: hard @@ -453,24 +455,24 @@ __metadata: languageName: node linkType: hard -"@cspell/dict-bash@npm:^4.1.0": - version: 4.1.0 - resolution: "@cspell/dict-bash@npm:4.1.0" - checksum: 7952c6cbd259dfb2217d0b4a3dc34ba7dd8ad88fdca21e98baac49f5f06304165552b2b42dc76a43d13918729dc058cd7c28f952d54595b7bd7d3c7e68c6e798 +"@cspell/dict-bash@npm:^4.1.1": + version: 4.1.1 + resolution: "@cspell/dict-bash@npm:4.1.1" + checksum: 7838afcc8845fd9d999a109420311d16e1baa56a310ac66448be8c31fec70e190832ee654d7b253cc7d7ac0c9fb0d8f27a9112ea94532d1c3d048f1957f48861 languageName: node linkType: hard -"@cspell/dict-companies@npm:^3.0.3": - version: 3.0.3 - resolution: "@cspell/dict-companies@npm:3.0.3" - checksum: bfeed087fd7d0c566db9a5f7cc6fb6709613259b1a8b9799a46897a619a7f8b975a5b1e6b786a29376bd31694607ff823a3b991f5afbfd5adc8abdee0ee8b718 +"@cspell/dict-companies@npm:^3.0.4": + version: 3.0.5 + resolution: "@cspell/dict-companies@npm:3.0.5" + checksum: ff3a0f4b8e629db9e6fa62d129f9eeed3c9c46bf12321c129dff7ff74cb5c9e305222d99470b955b09f7a00008b36eb3060d07ff693774a47d067d6bfe03c931 languageName: node linkType: hard -"@cspell/dict-cpp@npm:^4.0.0": - version: 4.0.0 - resolution: "@cspell/dict-cpp@npm:4.0.0" - checksum: 1a3796d4cc9a733487b8ee368ecdaac000c52bdd4562d844b3501de21f3d21ad128f0d8b402b2b56f1f7656fdacd5c39dbe9dc65ff360805358f6aa77bb3d381 +"@cspell/dict-cpp@npm:^4.0.1": + version: 4.0.1 + resolution: "@cspell/dict-cpp@npm:4.0.1" + checksum: 9d7e5611e51b77f1ab0f4412c9f2b90a92b2066f0c2121455b24c394355e400d9a816ad2f4d6cf22dd485b465dab11ce09b0aa74cce1a90bb794aba1ef8f645e languageName: node linkType: hard @@ -488,45 +490,45 @@ __metadata: languageName: node linkType: hard -"@cspell/dict-css@npm:^4.0.0": - version: 4.0.0 - resolution: "@cspell/dict-css@npm:4.0.0" - checksum: 3a193c7c48a352dd746188aac4cd6525fd26190f4010dbe0f3bf93e1001ed115520f2a0ccd9c8246bc862c30b6c735609a278da8b2b3c5bb938f1c25a9d5e25b +"@cspell/dict-css@npm:^4.0.1": + version: 4.0.1 + resolution: "@cspell/dict-css@npm:4.0.1" + checksum: dc109bed75aedb3be3e15295c03523fe8a39a9bd5250dc029cdf72c804beb27e5f02b5872520dbeb6813aababb9a516f1cfc30622ea37cacde6c745e7d6a01f1 languageName: node linkType: hard -"@cspell/dict-dart@npm:^2.0.0": - version: 2.0.0 - resolution: "@cspell/dict-dart@npm:2.0.0" - checksum: 24ae83fdd038ce9e2f58dfe9a433441deb2e02348308a426c277c44d182bccd7ea30f03d5631f6bf4a3df7cb25303813450c59c7bbe52a3e2557255e0378aa39 +"@cspell/dict-dart@npm:^2.0.1": + version: 2.0.1 + resolution: "@cspell/dict-dart@npm:2.0.1" + checksum: 4a6f4198a44265747d0aa8f3a286e3845a8bc99b4f9d9e4ddd42aa97020ad2429d8f021a42263446400d2365c4175de3032ba8828b75fc361849441c59370eec languageName: node linkType: hard -"@cspell/dict-django@npm:^4.0.0": - version: 4.0.0 - resolution: "@cspell/dict-django@npm:4.0.0" - checksum: ddc831f713449733dacce5fcfb7c4fa2e503e1babbceeff71c32cef491af90cb35fcf895b3e58660ced595fd0acc0f04270fe755fce9fe3a797ae4c2b01a56ac +"@cspell/dict-django@npm:^4.0.1": + version: 4.0.1 + resolution: "@cspell/dict-django@npm:4.0.1" + checksum: 486ffbb10698a563f729242b5842ebcb5f66fec51e5619e2d37223abccba531345da62a2893ad3fc6a20e2a5302b13eb1b1bcc16878886a11302d0da8ed90fcc languageName: node linkType: hard -"@cspell/dict-docker@npm:^1.1.3": - version: 1.1.3 - resolution: "@cspell/dict-docker@npm:1.1.3" - checksum: 1c9df4dd9f80633d73020f84176f87a91140d4265d854cbb81250f2bfe01f0bdd44b4ae14de246c4668c83e125146d75e2beeff8d1a25c4111eeb0cb640f9ad6 +"@cspell/dict-docker@npm:^1.1.4": + version: 1.1.4 + resolution: "@cspell/dict-docker@npm:1.1.4" + checksum: aefd6422bc98e32823b9f57f0599c912f7259d8177e622386b6f7968d9c1bbc7586ad6c4b9367d433675a17d1e513fceb912ff8703b3cb59b1826c3b696683ea languageName: node linkType: hard -"@cspell/dict-dotnet@npm:^4.0.0": - version: 4.0.0 - resolution: "@cspell/dict-dotnet@npm:4.0.0" - checksum: 42c7ef376b5e748aaf23d1a3e468102675d17c406a9fe6bed32289305a5d45e9a4ca52c27e9715e647a1451ffc7254fe7a0a2cd77391a9a9a02c7707a514c228 +"@cspell/dict-dotnet@npm:^4.0.1": + version: 4.0.1 + resolution: "@cspell/dict-dotnet@npm:4.0.1" + checksum: 166653b0af339fe55419ac8c0d2f51bd58532e2fb0191e1d98b3028173a59a6b126d9cff308dc1e1778d2d85dca60a8d793cd0cd9d7dabb0cee9d429ad73e975 languageName: node linkType: hard -"@cspell/dict-elixir@npm:^4.0.0": - version: 4.0.0 - resolution: "@cspell/dict-elixir@npm:4.0.0" - checksum: 3ae86eef5480ecbdd762106fbd13202a0adc75eea204bfa358cc4c20a9f296cbc899ec327e55111e96492448b8a5390f1eed5ea5e7dc04bcaefe23febeb88753 +"@cspell/dict-elixir@npm:^4.0.1": + version: 4.0.1 + resolution: "@cspell/dict-elixir@npm:4.0.1" + checksum: ed5a29d6d92610260e6d896f30b35d27fc82e53df8b669b585620b968a11fe4e50053cf8c886e5b2a6f5b23a5cf4a91e3c28c29135a17044e88cc48022b286d8 languageName: node linkType: hard @@ -537,10 +539,10 @@ __metadata: languageName: node linkType: hard -"@cspell/dict-en_us@npm:^4.1.0": - version: 4.1.0 - resolution: "@cspell/dict-en_us@npm:4.1.0" - checksum: b76796cddcda6a281f7e84144835e7285b93829fd2290581c5908b55d7b2423e0b030318706dc5a85434ce41aa3dd02a464610559232ed0a01f560c6a6e54202 +"@cspell/dict-en_us@npm:^4.1.1": + version: 4.1.2 + resolution: "@cspell/dict-en_us@npm:4.1.2" + checksum: 0daa01d4883f207b6a3db9e79eed689a6cb019a5c1d267fc714f5b45b4964727b266e2a4dd5ac1f5a10c77f14160a79d5a73c0da16dc97a3349c96f22087c3e1 languageName: node linkType: hard @@ -565,6 +567,13 @@ __metadata: languageName: node linkType: hard +"@cspell/dict-gaming-terms@npm:^1.0.2": + version: 1.0.3 + resolution: "@cspell/dict-gaming-terms@npm:1.0.3" + checksum: 452dca96421e92360179ceb7649d69548f375378d41fe3100293e666d7d832dc662288587e6e8954c246fc4800e6f7da03cbfe82c58aebc619070e7924c314bf + languageName: node + linkType: hard + "@cspell/dict-git@npm:^2.0.0": version: 2.0.0 resolution: "@cspell/dict-git@npm:2.0.0" @@ -572,17 +581,17 @@ __metadata: languageName: node linkType: hard -"@cspell/dict-golang@npm:^5.0.0": - version: 5.0.0 - resolution: "@cspell/dict-golang@npm:5.0.0" - checksum: e511c9fc35244c18da912cc37e81c8e465d1b60e406596ca0177faa8d6aa411d29a71e227a1612d7f3f2c296adcac6eb511f5c858c8f2dc26cbc4b0f983b5a1a +"@cspell/dict-golang@npm:^5.0.1": + version: 5.0.1 + resolution: "@cspell/dict-golang@npm:5.0.1" + checksum: 09fc4fe8d2ca614e4823fdbb34ec4561f0cc660ad86515cd834c628ca577879fa625c4d4f8b6e7ac83c2ad143630a309a212ac555905fb446d2cf4ff9d66cada languageName: node linkType: hard -"@cspell/dict-haskell@npm:^4.0.0": - version: 4.0.0 - resolution: "@cspell/dict-haskell@npm:4.0.0" - checksum: 13b3b088ba99a420237851befa689a52713fed347e9926c6a9067b33d13cf85016f54bcdb30d543cd5ea26e5b049b286b0f67ded061c67cf9f994dc96c426473 +"@cspell/dict-haskell@npm:^4.0.1": + version: 4.0.1 + resolution: "@cspell/dict-haskell@npm:4.0.1" + checksum: ad275234813ca02217ede25a54a52607634ba687eb044a3dedede3373c3ec0e812d6c732a6948a04f5b31bd3575f39c2a74744e43c060948a55beaccbe37dfe0 languageName: node linkType: hard @@ -593,17 +602,24 @@ __metadata: languageName: node linkType: hard -"@cspell/dict-html@npm:^4.0.1": - version: 4.0.1 - resolution: "@cspell/dict-html@npm:4.0.1" - checksum: 76a3eb787250d7bc4b9bb647b0dbd5b27f2fdaed29d5e9ea12ba1c97a712715cc9bf3bb57d5a96ec17b58022c7f243a8b30610d822dd812bb4e9b7c00512e90b +"@cspell/dict-html@npm:^4.0.2": + version: 4.0.2 + resolution: "@cspell/dict-html@npm:4.0.2" + checksum: 71ea782e380463135934831f307d4ee2c114f91c8655af0abf9caf72179b3e24befeab93985b8105fbc64a2e040e06d60684a3aa1d3f019eca2038c218264f4e languageName: node linkType: hard -"@cspell/dict-java@npm:^5.0.2": - version: 5.0.2 - resolution: "@cspell/dict-java@npm:5.0.2" - checksum: f5398064f5a2715fdc1872eb4c0ed19d174c2dc0d04a2abdf25d5484b9ace5e830f1dc9f063ec3e8492920c35b8da2f36df216c21062656ad651d2bc40e3ade4 +"@cspell/dict-java@npm:^5.0.3": + version: 5.0.3 + resolution: "@cspell/dict-java@npm:5.0.3" + checksum: 51bdc1fad07c297d67eedda830a92dc62a522a30e7fe4622c2a159a9bbdc4b2853f617611b23e9554d8b573a19d1e720c8dbb8c16788371b0014b99b67495bb1 + languageName: node + linkType: hard + +"@cspell/dict-k8s@npm:^1.0.0": + version: 1.0.0 + resolution: "@cspell/dict-k8s@npm:1.0.0" + checksum: e13b40f4aa87b9c3072e5ea5e2f3946a249f89329184d5efb6199343c80c369b0ff41bac4fb3ae31828ae2e02a77ba7cf715e01904d8177445d58582f5461a35 languageName: node linkType: hard @@ -628,24 +644,24 @@ __metadata: languageName: node linkType: hard -"@cspell/dict-node@npm:^4.0.1": - version: 4.0.1 - resolution: "@cspell/dict-node@npm:4.0.1" - checksum: 2e3e05b16b3d1780dde5560ea13f6246fa3f470d752904413afc51a7fc11241c003fe3af9f1b1b2629db5283b1406e0df1df583479dac5ac0f2104a66c690e6c +"@cspell/dict-node@npm:^4.0.2": + version: 4.0.2 + resolution: "@cspell/dict-node@npm:4.0.2" + checksum: a3c0b92366b617488f9d5fc0abde777f31369ddc9f8aaf190311840c9159f0fca1903f1b39afcffcd3e5af5bb04e2993d244bf70c0ce94357686d226355898b2 languageName: node linkType: hard -"@cspell/dict-npm@npm:^5.0.0": - version: 5.0.0 - resolution: "@cspell/dict-npm@npm:5.0.0" - checksum: 44175e9bcca68bfd95c9b507a7970ace84786648af16ac64b686b65958cb858b948c5078885246f1fb323afd17ff42fa84b77ad69d310329582844379721a88b +"@cspell/dict-npm@npm:^5.0.1": + version: 5.0.2 + resolution: "@cspell/dict-npm@npm:5.0.2" + checksum: 8e04cce27ed1b5ebc57b390066047b8d9997ad67d0092d8233c7bd81907d23aee10cded8d2e8b245565f7bfda7388ccd4c63c5c51001b3a7048f9cc5e49ae45e languageName: node linkType: hard -"@cspell/dict-php@npm:^3.0.3": - version: 3.0.3 - resolution: "@cspell/dict-php@npm:3.0.3" - checksum: 3e73f0834011bdac9ea97c79cb4f46cb6ea33ddaa345ff65781f0a44ef7f82592ae2e09f22933e8f516d56fec00f0ac1d83c55b0a8166cb3ce6553f74d99d092 +"@cspell/dict-php@npm:^3.0.4": + version: 3.0.4 + resolution: "@cspell/dict-php@npm:3.0.4" + checksum: a86b256cfdabc2ba4929b3e7e4f5b489c2e60e7833ed5805c2daafba5747dc052226d9c929402681b04d006148dfbc0818740b42c52ce3574c179a0ce21b962e languageName: node linkType: hard @@ -656,24 +672,24 @@ __metadata: languageName: node linkType: hard -"@cspell/dict-public-licenses@npm:^2.0.0": - version: 2.0.0 - resolution: "@cspell/dict-public-licenses@npm:2.0.0" - checksum: 24a964cafbe6b43577a68c0246390a2403be8d132ffc84d49932c30f43d05f496bef6599e17b2a71a0dae60f8aa3fe61c6f0507e83fde53c1100e3bbe56d5f73 +"@cspell/dict-public-licenses@npm:^2.0.1": + version: 2.0.1 + resolution: "@cspell/dict-public-licenses@npm:2.0.1" + checksum: 9ddf4953c8677538137d8ae6170598f81edbb145204bd3a43c818fa5466dccf7e6e46d4e34ac08de4538d792203e28ca15616bc8069ea87c5d6cfa629bc42e0d languageName: node linkType: hard -"@cspell/dict-python@npm:^4.0.0": - version: 4.0.0 - resolution: "@cspell/dict-python@npm:4.0.0" - checksum: 0c9ff8f04306e250257b217fdeaf941c0b9be346f0d2d9e22bf9256309ff308658731eebacd43a9a1cc83d8c1f43306311e4ecb7f414aefa04037e85baa590bb +"@cspell/dict-python@npm:^4.0.1": + version: 4.0.1 + resolution: "@cspell/dict-python@npm:4.0.1" + checksum: 1a3cc3f48c1df27e413bd77f8ca356f1bac4865d4d20e0641b25099a1cd77e92152b973475d9cda1d866896d3e3b683792747f99a24ddb23b6912c941571bc58 languageName: node linkType: hard -"@cspell/dict-r@npm:^2.0.0": - version: 2.0.0 - resolution: "@cspell/dict-r@npm:2.0.0" - checksum: 750625c79b6199d74f262e2164d917c5574c0a85f61ff5e21fc8d985d0f5c60a0ea336db8b397a9b896c1c4ed1dd8fe33fea9746f62241c3cd8af93387a44d17 +"@cspell/dict-r@npm:^2.0.1": + version: 2.0.1 + resolution: "@cspell/dict-r@npm:2.0.1" + checksum: 16ff895adddfdd2bd5e1ec8e5231518134fef4c85bd8cecfec1c7c741cabc55b307b5324dc0c7df2d9380e0c5e844f6e0626eb98e94a46c558eb3adee5e5f875 languageName: node linkType: hard @@ -698,38 +714,38 @@ __metadata: languageName: node linkType: hard -"@cspell/dict-software-terms@npm:^3.0.5": - version: 3.0.5 - resolution: "@cspell/dict-software-terms@npm:3.0.5" - checksum: f85c676010661183f0e48d319a10fe3c31890008121d33bb9b295df78ede0ea7ab7ed7b188f6a398d3a51cb87db3473912e9b317e5a85f1e79f70484a4e6711d +"@cspell/dict-software-terms@npm:^3.0.6": + version: 3.0.7 + resolution: "@cspell/dict-software-terms@npm:3.0.7" + checksum: 6f5ad1917a966903795949bcaf5bd3a180edd657b4e288795aabf49f35318d44c9c23131ada4a8eb67890e5cfc3cdd04eb4db0830d52c39d1bd5a041c734d36d languageName: node linkType: hard -"@cspell/dict-sql@npm:^2.0.0": - version: 2.0.0 - resolution: "@cspell/dict-sql@npm:2.0.0" - checksum: cb0092cda4406b92ce462dfe25be0f4c4829de1e2896d49952b45eeec8cd33ffaff1074e545a0ca3e11c1c6a1f259687ef62fe74f94be6261d58a6fda8de2c85 +"@cspell/dict-sql@npm:^2.0.1": + version: 2.0.1 + resolution: "@cspell/dict-sql@npm:2.0.1" + checksum: 4e0927b311e75414c9ae09de8e45a47452b7db4846742b7ad9eb50263d15082e6c1793f34c3832000e868ee34760de7c9b9584feaad68cf1b04c4f7d9138f98f languageName: node linkType: hard -"@cspell/dict-svelte@npm:^1.0.0": - version: 1.0.0 - resolution: "@cspell/dict-svelte@npm:1.0.0" - checksum: 61b4c2702e45a05587b2230a58f1c476d9bc37912655a3592d1448c4ffc964c038e0b79f3ae7852bc2811c66e027000f7513e7985140a3c89a8d87dd5e811069 +"@cspell/dict-svelte@npm:^1.0.1": + version: 1.0.1 + resolution: "@cspell/dict-svelte@npm:1.0.1" + checksum: 9116cd8e02def0e8188332d8f3c159557cfd4d05675ea84091745179e82a3f92ecc9d05065dddb138ac32621d5849b53a3e866af6f468d01082bb98f2db4ee26 languageName: node linkType: hard -"@cspell/dict-swift@npm:^2.0.0": - version: 2.0.0 - resolution: "@cspell/dict-swift@npm:2.0.0" - checksum: 2c9490926a0850288e92302276ebefb04b37c73f8432db22f42a79dc9b16a5e91ce4207f9ff529aef11dd2ce9119df35fb019b85216042221ca91773b2928da2 +"@cspell/dict-swift@npm:^2.0.1": + version: 2.0.1 + resolution: "@cspell/dict-swift@npm:2.0.1" + checksum: 1f5db91e86529fb7ebae9b9d72406291a1ad8303d5c451d689db13f52e615121888348724aca1a1098c4c12fec660e6000b8e04d4261949b8e9a49949b33511e languageName: node linkType: hard -"@cspell/dict-typescript@npm:^3.0.1": - version: 3.0.1 - resolution: "@cspell/dict-typescript@npm:3.0.1" - checksum: 30739028cdbf6100806d03dcc5d4472bedc5d488dea83ef0192f7a0746b02b6987dbd61ff6d7eb2aa707b863e57480443c1a1bcde1c42f7e8e241c2291da300e +"@cspell/dict-typescript@npm:^3.0.2": + version: 3.1.0 + resolution: "@cspell/dict-typescript@npm:3.1.0" + checksum: 0c215e83096e8219b7d1b1dc578a8a86fb5ad766833c4832fd97d8fd6cfcca56f49935899ae1c7b1e5ea78495fcd1b3cd0b81a7263f68c59ad0a71488df0b224 languageName: node linkType: hard @@ -740,10 +756,10 @@ __metadata: languageName: node linkType: hard -"@cspell/strong-weak-map@npm:6.17.0": - version: 6.17.0 - resolution: "@cspell/strong-weak-map@npm:6.17.0" - checksum: dcec1d889af3562ec62aaf339ad5699a37966eec141b6db44ebbc0028d66500cc89c29b77d5cbf82aa1c5784953a0941d912ab76864077f0907b35e31c48fb6b +"@cspell/strong-weak-map@npm:6.18.0": + version: 6.18.0 + resolution: "@cspell/strong-weak-map@npm:6.18.0" + checksum: bff6d30e33e668c8ffb0807dc1d8210740bc0cc7e8a0c4178c1904afe02329997cd1686dc5ebeb22a4b10990e80adfcd923bc65212edf5e4d706b4d234ce03e4 languageName: node linkType: hard @@ -756,13 +772,6 @@ __metadata: languageName: node linkType: hard -"@cush/relative@npm:^1.0.0": - version: 1.0.0 - resolution: "@cush/relative@npm:1.0.0" - checksum: a4aeb4fd1bf46ee509e0314f72bac4329b39a1e8a2331b1451fa2fb32e0915f87f7bd5d891f3f35cd3c5cea323062c9f1b070eafe9207f4144e0894330d3267b - languageName: node - linkType: hard - "@es-joy/jsdoccomment@npm:~0.36.1": version: 0.36.1 resolution: "@es-joy/jsdoccomment@npm:0.36.1" @@ -774,161 +783,161 @@ __metadata: languageName: node linkType: hard -"@esbuild/android-arm64@npm:0.16.6": - version: 0.16.6 - resolution: "@esbuild/android-arm64@npm:0.16.6" +"@esbuild/android-arm64@npm:0.16.12": + version: 0.16.12 + resolution: "@esbuild/android-arm64@npm:0.16.12" conditions: os=android & cpu=arm64 languageName: node linkType: hard -"@esbuild/android-arm@npm:0.16.6": - version: 0.16.6 - resolution: "@esbuild/android-arm@npm:0.16.6" +"@esbuild/android-arm@npm:0.16.12": + version: 0.16.12 + resolution: "@esbuild/android-arm@npm:0.16.12" conditions: os=android & cpu=arm languageName: node linkType: hard -"@esbuild/android-x64@npm:0.16.6": - version: 0.16.6 - resolution: "@esbuild/android-x64@npm:0.16.6" +"@esbuild/android-x64@npm:0.16.12": + version: 0.16.12 + resolution: "@esbuild/android-x64@npm:0.16.12" conditions: os=android & cpu=x64 languageName: node linkType: hard -"@esbuild/darwin-arm64@npm:0.16.6": - version: 0.16.6 - resolution: "@esbuild/darwin-arm64@npm:0.16.6" +"@esbuild/darwin-arm64@npm:0.16.12": + version: 0.16.12 + resolution: "@esbuild/darwin-arm64@npm:0.16.12" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"@esbuild/darwin-x64@npm:0.16.6": - version: 0.16.6 - resolution: "@esbuild/darwin-x64@npm:0.16.6" +"@esbuild/darwin-x64@npm:0.16.12": + version: 0.16.12 + resolution: "@esbuild/darwin-x64@npm:0.16.12" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"@esbuild/freebsd-arm64@npm:0.16.6": - version: 0.16.6 - resolution: "@esbuild/freebsd-arm64@npm:0.16.6" +"@esbuild/freebsd-arm64@npm:0.16.12": + version: 0.16.12 + resolution: "@esbuild/freebsd-arm64@npm:0.16.12" conditions: os=freebsd & cpu=arm64 languageName: node linkType: hard -"@esbuild/freebsd-x64@npm:0.16.6": - version: 0.16.6 - resolution: "@esbuild/freebsd-x64@npm:0.16.6" +"@esbuild/freebsd-x64@npm:0.16.12": + version: 0.16.12 + resolution: "@esbuild/freebsd-x64@npm:0.16.12" conditions: os=freebsd & cpu=x64 languageName: node linkType: hard -"@esbuild/linux-arm64@npm:0.16.6": - version: 0.16.6 - resolution: "@esbuild/linux-arm64@npm:0.16.6" +"@esbuild/linux-arm64@npm:0.16.12": + version: 0.16.12 + resolution: "@esbuild/linux-arm64@npm:0.16.12" conditions: os=linux & cpu=arm64 languageName: node linkType: hard -"@esbuild/linux-arm@npm:0.16.6": - version: 0.16.6 - resolution: "@esbuild/linux-arm@npm:0.16.6" +"@esbuild/linux-arm@npm:0.16.12": + version: 0.16.12 + resolution: "@esbuild/linux-arm@npm:0.16.12" conditions: os=linux & cpu=arm languageName: node linkType: hard -"@esbuild/linux-ia32@npm:0.16.6": - version: 0.16.6 - resolution: "@esbuild/linux-ia32@npm:0.16.6" +"@esbuild/linux-ia32@npm:0.16.12": + version: 0.16.12 + resolution: "@esbuild/linux-ia32@npm:0.16.12" conditions: os=linux & cpu=ia32 languageName: node linkType: hard -"@esbuild/linux-loong64@npm:0.16.6": - version: 0.16.6 - resolution: "@esbuild/linux-loong64@npm:0.16.6" +"@esbuild/linux-loong64@npm:0.16.12": + version: 0.16.12 + resolution: "@esbuild/linux-loong64@npm:0.16.12" conditions: os=linux & cpu=loong64 languageName: node linkType: hard -"@esbuild/linux-mips64el@npm:0.16.6": - version: 0.16.6 - resolution: "@esbuild/linux-mips64el@npm:0.16.6" +"@esbuild/linux-mips64el@npm:0.16.12": + version: 0.16.12 + resolution: "@esbuild/linux-mips64el@npm:0.16.12" conditions: os=linux & cpu=mips64el languageName: node linkType: hard -"@esbuild/linux-ppc64@npm:0.16.6": - version: 0.16.6 - resolution: "@esbuild/linux-ppc64@npm:0.16.6" +"@esbuild/linux-ppc64@npm:0.16.12": + version: 0.16.12 + resolution: "@esbuild/linux-ppc64@npm:0.16.12" conditions: os=linux & cpu=ppc64 languageName: node linkType: hard -"@esbuild/linux-riscv64@npm:0.16.6": - version: 0.16.6 - resolution: "@esbuild/linux-riscv64@npm:0.16.6" +"@esbuild/linux-riscv64@npm:0.16.12": + version: 0.16.12 + resolution: "@esbuild/linux-riscv64@npm:0.16.12" conditions: os=linux & cpu=riscv64 languageName: node linkType: hard -"@esbuild/linux-s390x@npm:0.16.6": - version: 0.16.6 - resolution: "@esbuild/linux-s390x@npm:0.16.6" +"@esbuild/linux-s390x@npm:0.16.12": + version: 0.16.12 + resolution: "@esbuild/linux-s390x@npm:0.16.12" conditions: os=linux & cpu=s390x languageName: node linkType: hard -"@esbuild/linux-x64@npm:0.16.6": - version: 0.16.6 - resolution: "@esbuild/linux-x64@npm:0.16.6" +"@esbuild/linux-x64@npm:0.16.12": + version: 0.16.12 + resolution: "@esbuild/linux-x64@npm:0.16.12" conditions: os=linux & cpu=x64 languageName: node linkType: hard -"@esbuild/netbsd-x64@npm:0.16.6": - version: 0.16.6 - resolution: "@esbuild/netbsd-x64@npm:0.16.6" +"@esbuild/netbsd-x64@npm:0.16.12": + version: 0.16.12 + resolution: "@esbuild/netbsd-x64@npm:0.16.12" conditions: os=netbsd & cpu=x64 languageName: node linkType: hard -"@esbuild/openbsd-x64@npm:0.16.6": - version: 0.16.6 - resolution: "@esbuild/openbsd-x64@npm:0.16.6" +"@esbuild/openbsd-x64@npm:0.16.12": + version: 0.16.12 + resolution: "@esbuild/openbsd-x64@npm:0.16.12" conditions: os=openbsd & cpu=x64 languageName: node linkType: hard -"@esbuild/sunos-x64@npm:0.16.6": - version: 0.16.6 - resolution: "@esbuild/sunos-x64@npm:0.16.6" +"@esbuild/sunos-x64@npm:0.16.12": + version: 0.16.12 + resolution: "@esbuild/sunos-x64@npm:0.16.12" conditions: os=sunos & cpu=x64 languageName: node linkType: hard -"@esbuild/win32-arm64@npm:0.16.6": - version: 0.16.6 - resolution: "@esbuild/win32-arm64@npm:0.16.6" +"@esbuild/win32-arm64@npm:0.16.12": + version: 0.16.12 + resolution: "@esbuild/win32-arm64@npm:0.16.12" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"@esbuild/win32-ia32@npm:0.16.6": - version: 0.16.6 - resolution: "@esbuild/win32-ia32@npm:0.16.6" +"@esbuild/win32-ia32@npm:0.16.12": + version: 0.16.12 + resolution: "@esbuild/win32-ia32@npm:0.16.12" conditions: os=win32 & cpu=ia32 languageName: node linkType: hard -"@esbuild/win32-x64@npm:0.16.6": - version: 0.16.6 - resolution: "@esbuild/win32-x64@npm:0.16.6" +"@esbuild/win32-x64@npm:0.16.12": + version: 0.16.12 + resolution: "@esbuild/win32-x64@npm:0.16.12" conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"@eslint-community/eslint-utils@npm:^4.1.0": +"@eslint-community/eslint-utils@npm:^4.1.2": version: 4.1.2 resolution: "@eslint-community/eslint-utils@npm:4.1.2" dependencies: @@ -939,20 +948,20 @@ __metadata: languageName: node linkType: hard -"@eslint/eslintrc@npm:^1.3.3": - version: 1.3.3 - resolution: "@eslint/eslintrc@npm:1.3.3" +"@eslint/eslintrc@npm:^1.4.0": + version: 1.4.0 + resolution: "@eslint/eslintrc@npm:1.4.0" dependencies: ajv: "npm:^6.12.4" debug: "npm:^4.3.2" espree: "npm:^9.4.0" - globals: "npm:^13.15.0" + globals: "npm:^13.19.0" ignore: "npm:^5.2.0" import-fresh: "npm:^3.2.1" js-yaml: "npm:^4.1.0" minimatch: "npm:^3.1.2" strip-json-comments: "npm:^3.1.1" - checksum: d27b4a840eeedabc643f4dfca0e8d41bf8180ccb57b7de97da85ad9a34b219a1ab7c1a531a1f18357c57c60ede1b94bef1eae5869fc808cde050d835a093ccbe + checksum: 64daa4d53d1861d2a810766c5bd239192fb5a8655b25774fbc49ebe40fde1c6172bcc306ac13453ec3306a036694de8b2159e5562535d8f5e0f4feabade31598 languageName: node linkType: hard @@ -1022,34 +1031,30 @@ __metadata: "@faker-js/faker": "npm:7.6.0" "@flex-development/mkbuild": "npm:1.0.0-alpha.9" "@flex-development/tutils": "npm:6.0.0-alpha.7" - "@graphql-eslint/eslint-plugin": "npm:3.13.1" + "@graphql-eslint/eslint-plugin": "npm:3.14.3" "@types/chai": "npm:4.3.4" - "@types/chai-string": "npm:1.4.2" "@types/conventional-changelog": "npm:3.1.1" "@types/conventional-changelog-config-spec": "npm:2.1.2" "@types/conventional-changelog-writer": "npm:4.0.1" - "@types/conventional-commits-parser": "npm:3.0.2" + "@types/conventional-commits-parser": "npm:3.0.3" "@types/dateformat": "npm:5.0.0" "@types/eslint": "npm:8.4.10" "@types/git-raw-commits": "npm:2.0.1" "@types/is-ci": "npm:3.0.0" - "@types/node": "npm:18.11.10" + "@types/node": "npm:16.18.11" "@types/node-notifier": "npm:8.0.2" - "@types/prettier": "npm:2.7.1" - "@typescript-eslint/eslint-plugin": "npm:5.45.1" - "@typescript-eslint/parser": "npm:5.45.1" + "@types/prettier": "npm:2.7.2" + "@typescript-eslint/eslint-plugin": "npm:5.47.1" + "@typescript-eslint/parser": "npm:5.47.1" "@vates/toggle-scripts": "npm:1.0.0" - "@vitest/coverage-c8": "npm:0.25.5" - "@vitest/ui": "npm:0.25.5" + "@vitest/coverage-c8": "npm:0.26.2" + "@vitest/ui": "npm:0.26.2" chai: "npm:4.3.7" - chai-each: "npm:0.0.1" - chai-quantifiers: "npm:1.0.17" - chai-string: "npm:1.5.0" conventional-changelog-cli: "npm:2.2.2" conventional-recommended-bump: "npm:6.1.0" - cspell: "npm:6.17.0" - esbuild: "npm:0.16.6" - eslint: "npm:8.29.0" + cspell: "npm:6.18.0" + esbuild: "npm:0.16.12" + eslint: "npm:8.30.0" eslint-config-prettier: "npm:8.5.0" eslint-plugin-chai-expect: "npm:3.0.0" eslint-plugin-jest-formatting: "npm:3.1.0" @@ -1060,10 +1065,10 @@ __metadata: eslint-plugin-node: "npm:11.1.0" eslint-plugin-prettier: "npm:4.2.1" eslint-plugin-promise: "npm:6.1.1" - eslint-plugin-unicorn: "npm:45.0.1" - eslint-plugin-yml: "npm:1.2.0" + eslint-plugin-unicorn: "npm:45.0.2" + eslint-plugin-yml: "npm:1.4.0" graphql: "npm:16.6.0" - graphql-config: "npm:4.3.6" + graphql-config: "npm:4.4.0" growl: "npm:1.10.5" husky: "npm:8.0.2" is-ci: "npm:3.0.1" @@ -1071,7 +1076,7 @@ __metadata: lint-staged: "npm:13.1.0" node-inspect-extracted: "npm:2.0.0" node-notifier: "npm:10.0.1" - prettier: "npm:2.8.0" + prettier: "npm:2.8.1" prettier-plugin-sh: "npm:0.12.8" pretty-format: "npm:29.3.1" trash-cli: "npm:5.0.0" @@ -1079,23 +1084,16 @@ __metadata: ts-node: "npm:10.9.1" tsconfig: "npm:7.0.0" tsconfig-paths: "npm:4.1.1" - typescript: "npm:4.9.3" + typescript: "npm:4.9.4" version-bump-prompt: "npm:6.1.0" - vite: "npm:3.2.5" - vite-tsconfig-paths: "npm:3.6.0" - vitest: "npm:0.25.5" + vite: "npm:4.0.3" + vite-tsconfig-paths: "npm:4.0.3" + vitest: "npm:0.26.2" vitest-github-actions-reporter: "npm:0.9.0" yaml-eslint-parser: "npm:1.1.0" languageName: unknown linkType: soft -"@flex-development/tutils@npm:5.0.1": - version: 5.0.1 - resolution: "@flex-development/tutils@npm:5.0.1::__archiveUrl=https%3A%2F%2Fnpm.pkg.github.com%2Fdownload%2F%40flex-development%2Ftutils%2F5.0.1%2Fc43853516a4e36e79b2ae3d7831518fbc904bcc4" - checksum: 5ac3ef0cfa6f300b7407dc7a4d36af138c021efadbb7ffe2465c01b3ff983dd13b6c4f467c643d0fc7259a825fc8a33c959ae57001d2dfaa1cbbaf294f133f5c - languageName: node - linkType: hard - "@flex-development/tutils@npm:6.0.0-alpha.7": version: 6.0.0-alpha.7 resolution: "@flex-development/tutils@npm:6.0.0-alpha.7::__archiveUrl=https%3A%2F%2Fnpm.pkg.github.com%2Fdownload%2F%40flex-development%2Ftutils%2F6.0.0-alpha.7%2F786916dcfd30bf076b5ac74cb31ca4031f74e1f0" @@ -1112,9 +1110,9 @@ __metadata: languageName: node linkType: hard -"@graphql-eslint/eslint-plugin@npm:3.13.1": - version: 3.13.1 - resolution: "@graphql-eslint/eslint-plugin@npm:3.13.1" +"@graphql-eslint/eslint-plugin@npm:3.14.3": + version: 3.14.3 + resolution: "@graphql-eslint/eslint-plugin@npm:3.14.3" dependencies: "@babel/code-frame": "npm:^7.18.6" "@graphql-tools/code-file-loader": "npm:^7.3.6" @@ -1123,12 +1121,13 @@ __metadata: chalk: "npm:^4.1.2" debug: "npm:^4.3.4" fast-glob: "npm:^3.2.12" - graphql-config: "npm:^4.3.6" + graphql-config: "npm:^4.4.0" graphql-depth-limit: "npm:^1.1.0" lodash.lowercase: "npm:^4.3.0" + tslib: "npm:^2.4.1" peerDependencies: graphql: ^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - checksum: 5fbd893accb6a38bd89c1ef4ef909544d0b563d022a53fa95163ccfa704a836dd1d414d2248314f8bf29528995843dc1ec4ba1046ebca4bb463ecb417d06e6ff + checksum: 6087ef5c67cd755fc014814a86b68d112799715779b392f60af170b8e78293fb37375388f771aff8c986ed9fd77c08177b73f9998842b86d1d9259e1bff153fe languageName: node linkType: hard @@ -1374,17 +1373,6 @@ __metadata: languageName: node linkType: hard -"@graphql-tools/utils@npm:^8.6.5": - version: 8.13.1 - resolution: "@graphql-tools/utils@npm:8.13.1" - dependencies: - tslib: "npm:^2.4.0" - peerDependencies: - graphql: ^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0 - checksum: c86537f1e38d4c86ab5d5d051d78e48e7de48b0f1601af49592e838e01f5b31b1210227749b3d0c830b55a5cf2900270e55c4dfd4d4a5fca1cb1239624d30b25 - languageName: node - linkType: hard - "@graphql-tools/wrap@npm:9.2.16": version: 9.2.16 resolution: "@graphql-tools/wrap@npm:9.2.16" @@ -1409,14 +1397,14 @@ __metadata: languageName: node linkType: hard -"@humanwhocodes/config-array@npm:^0.11.6": - version: 0.11.7 - resolution: "@humanwhocodes/config-array@npm:0.11.7" +"@humanwhocodes/config-array@npm:^0.11.8": + version: 0.11.8 + resolution: "@humanwhocodes/config-array@npm:0.11.8" dependencies: "@humanwhocodes/object-schema": "npm:^1.2.1" debug: "npm:^4.1.1" minimatch: "npm:^3.0.5" - checksum: 36b949c975774cd6ce2e06651066bfdac549398a9b677b7e85005c520fd6ab2e313964a0cf5f0df39f50ee1e45be20867f6d79ae71a7428b509cbd7a1ddd07c2 + checksum: 010892ba3c237e96562df1f21a7e04b611274f2c91b4df6c8263eb7d2ffcec3a5bfcab67b13d9c4acc8a2e3f94cb61d7ced772ecd445b226fb41b88c93e9194c languageName: node linkType: hard @@ -1441,13 +1429,6 @@ __metadata: languageName: node linkType: hard -"@iarna/toml@npm:^2.2.5": - version: 2.2.5 - resolution: "@iarna/toml@npm:2.2.5" - checksum: dd5b332f9324eba8449da0922fe461d273d6d0498254ff0ed34c74b4ee549418dc57073686b6e641e4e2f74239a404a4b33a1997e2d4bb4581fdaa4136235ae4 - languageName: node - linkType: hard - "@istanbuljs/schema@npm:^0.1.2, @istanbuljs/schema@npm:^0.1.3": version: 0.1.3 resolution: "@istanbuljs/schema@npm:0.1.3" @@ -1726,15 +1707,6 @@ __metadata: languageName: node linkType: hard -"@types/chai-string@npm:1.4.2": - version: 1.4.2 - resolution: "@types/chai-string@npm:1.4.2" - dependencies: - "@types/chai": "npm:*" - checksum: c272b47a9ee36ec43b337ac4995f4b0d6f942b4042c464a9211efae8cebeaa07212e06ff6196d397e44c7c3996f79ba67a0d3733c2989eb55ee71c0bb2f2ca26 - languageName: node - linkType: hard - "@types/chai-subset@npm:^1.3.3": version: 1.3.3 resolution: "@types/chai-subset@npm:1.3.3" @@ -1744,7 +1716,7 @@ __metadata: languageName: node linkType: hard -"@types/chai@npm:*, @types/chai@npm:4.3.4, @types/chai@npm:^4.3.3": +"@types/chai@npm:*, @types/chai@npm:4.3.4, @types/chai@npm:^4.3.4": version: 4.3.4 resolution: "@types/chai@npm:4.3.4" checksum: 477e9eabcf92d43706ac874585c8eab97b3f7808d4cc10479208e8675186633c20f30993a4e3ca510c70489823c3fb3ede508cd8b172bcdd3ef66cec8235e73a @@ -1796,12 +1768,12 @@ __metadata: languageName: node linkType: hard -"@types/conventional-commits-parser@npm:*, @types/conventional-commits-parser@npm:3.0.2": - version: 3.0.2 - resolution: "@types/conventional-commits-parser@npm:3.0.2" +"@types/conventional-commits-parser@npm:*, @types/conventional-commits-parser@npm:3.0.3": + version: 3.0.3 + resolution: "@types/conventional-commits-parser@npm:3.0.3" dependencies: "@types/node": "npm:*" - checksum: 0e233e667c8b258cc2dcd912d6e981a907cdc92a58efccc8af988bbce78323b49fe4f32a58968ccfb6a846762b9b12cfe10f3e24fa86a8f6c33e23eb6094c585 + checksum: 86fcd9c769bc7cf33c450a6bd1cb50dfc7e35cfc29982408eccb14732073a45aabbacc1ce4d2afe4a38c085f2b61ac2fa7f002d97f233dc6d8c53f07664a94cf languageName: node linkType: hard @@ -1897,13 +1869,20 @@ __metadata: languageName: node linkType: hard -"@types/node@npm:*, @types/node@npm:18.11.10": +"@types/node@npm:*": version: 18.11.10 resolution: "@types/node@npm:18.11.10" checksum: 0d8720580234f3a2fcb22779d4ccf9b7b7b778cfcf6fd7f2a9ea778bb2d943354111913d41b3142a82731305c525777d01f5f3982bbdd690ad53dffaa01a7529 languageName: node linkType: hard +"@types/node@npm:16.18.11": + version: 16.18.11 + resolution: "@types/node@npm:16.18.11" + checksum: 2486af67a607a0ba24ea3a1a50dacd9414f1b6ce62bf683859e054a803270ddee359f47d5c965954b43bd20d9022292616a3944ffbfe7169cbd2fda9fcc3648b + languageName: node + linkType: hard + "@types/node@npm:^14.0.0": version: 14.18.33 resolution: "@types/node@npm:14.18.33" @@ -1925,10 +1904,10 @@ __metadata: languageName: node linkType: hard -"@types/prettier@npm:2.7.1": - version: 2.7.1 - resolution: "@types/prettier@npm:2.7.1" - checksum: 7edc43b829b0047573c1328259a1ccfee3e0127b031b8e5a4b7115e9f375abed195d1f42ee350590372041cc0f0d5b529e2dbac1198989a050f38e1ec5e19760 +"@types/prettier@npm:2.7.2": + version: 2.7.2 + resolution: "@types/prettier@npm:2.7.2" + checksum: d4d09d291ec7017ed30cc2bac5a51dbd5de02e2d75389a4c724ac6c3d7bb99da3173f57247d832b8f83c154dc8006cbdc35e565c1f1bf6869718d25857e430db languageName: node linkType: hard @@ -1969,13 +1948,13 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/eslint-plugin@npm:5.45.1": - version: 5.45.1 - resolution: "@typescript-eslint/eslint-plugin@npm:5.45.1" +"@typescript-eslint/eslint-plugin@npm:5.47.1": + version: 5.47.1 + resolution: "@typescript-eslint/eslint-plugin@npm:5.47.1" dependencies: - "@typescript-eslint/scope-manager": "npm:5.45.1" - "@typescript-eslint/type-utils": "npm:5.45.1" - "@typescript-eslint/utils": "npm:5.45.1" + "@typescript-eslint/scope-manager": "npm:5.47.1" + "@typescript-eslint/type-utils": "npm:5.47.1" + "@typescript-eslint/utils": "npm:5.47.1" debug: "npm:^4.3.4" ignore: "npm:^5.2.0" natural-compare-lite: "npm:^1.4.0" @@ -1988,43 +1967,43 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: 8f1f7264a982df99754af2e62e5c553863387c5f889e2bd3d6e5c882a67ffe27abf76524605886a4b8271b24075d29be574eef4ffad4598b8d4cd4b41bff48e7 + checksum: e65ff2f1188f60f3b981ba3e25e3ffe30e773d45a3ad469c8f3f23e1fab0bb92f4a469bb9e6be839e064738e7cfe08ffbdc57e5a131222333aad90b2736ba11d languageName: node linkType: hard -"@typescript-eslint/parser@npm:5.45.1": - version: 5.45.1 - resolution: "@typescript-eslint/parser@npm:5.45.1" +"@typescript-eslint/parser@npm:5.47.1": + version: 5.47.1 + resolution: "@typescript-eslint/parser@npm:5.47.1" dependencies: - "@typescript-eslint/scope-manager": "npm:5.45.1" - "@typescript-eslint/types": "npm:5.45.1" - "@typescript-eslint/typescript-estree": "npm:5.45.1" + "@typescript-eslint/scope-manager": "npm:5.47.1" + "@typescript-eslint/types": "npm:5.47.1" + "@typescript-eslint/typescript-estree": "npm:5.47.1" debug: "npm:^4.3.4" peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 peerDependenciesMeta: typescript: optional: true - checksum: 66524920cf2d0d5c12fadfa2a04a97fffaebb18fbd6613d72443da32c2e83f031fd2015dadfa3b909a84d4ce1c57c03e53bb99a6fe90b85018f0e818fa32067f + checksum: d49088b6518da4a6d61be9da3f02e0153792bbbcca804ab0bff2462d86a709a0e97afbf98aa4ac687e82e350f29857778f11f3b1ff05a60f397067daefa9aa5c languageName: node linkType: hard -"@typescript-eslint/scope-manager@npm:5.45.1": - version: 5.45.1 - resolution: "@typescript-eslint/scope-manager@npm:5.45.1" +"@typescript-eslint/scope-manager@npm:5.47.1": + version: 5.47.1 + resolution: "@typescript-eslint/scope-manager@npm:5.47.1" dependencies: - "@typescript-eslint/types": "npm:5.45.1" - "@typescript-eslint/visitor-keys": "npm:5.45.1" - checksum: 507bc300b0f0a6250bee83de7426f478ea36d3b852276059f865bdff04379f492ddfdcf74a45d1ef98de94730cc601be5baf99e53c3e852b5fa87c11a84e45f9 + "@typescript-eslint/types": "npm:5.47.1" + "@typescript-eslint/visitor-keys": "npm:5.47.1" + checksum: fa504b099287663b56c8323e1f71769f00f8aad17869c5becc53d4e559add916c7d531eae3d1ac7ee3e0b25ee1cf2c2b1b3b115ae6cf62ac873ddd0aaf552cc6 languageName: node linkType: hard -"@typescript-eslint/type-utils@npm:5.45.1": - version: 5.45.1 - resolution: "@typescript-eslint/type-utils@npm:5.45.1" +"@typescript-eslint/type-utils@npm:5.47.1": + version: 5.47.1 + resolution: "@typescript-eslint/type-utils@npm:5.47.1" dependencies: - "@typescript-eslint/typescript-estree": "npm:5.45.1" - "@typescript-eslint/utils": "npm:5.45.1" + "@typescript-eslint/typescript-estree": "npm:5.47.1" + "@typescript-eslint/utils": "npm:5.47.1" debug: "npm:^4.3.4" tsutils: "npm:^3.21.0" peerDependencies: @@ -2032,23 +2011,23 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: 4b7d93c5fdeb4a459d4dd4cf6487bcfda46e57f29f7bbd71fcdda5dc7264ea7162e7e96042e4be9d0e0fae5e837d69369c2690639ba21fe901722b0f874ec1fc + checksum: 3bebc3b2bb05cb33326f316554d61a2fa8b8e72de572e11c0b5c7041751642161de1cfbe0b13f16f428694d624b1bc58df09eddcaf304b4e9be49703927b42e7 languageName: node linkType: hard -"@typescript-eslint/types@npm:5.45.1": - version: 5.45.1 - resolution: "@typescript-eslint/types@npm:5.45.1" - checksum: 619a420cd1012ee7ec8c656f90e3806235eef534d973f909f67bac8e164772349acca8afb020bc568a7e6785df03bd3ab0838ef2cd0e4d73659a9cf2a79c5a52 +"@typescript-eslint/types@npm:5.47.1": + version: 5.47.1 + resolution: "@typescript-eslint/types@npm:5.47.1" + checksum: 2e3e665c720166d54678b1bc68460c5ffec49e6af26412fe7e1f70d112c3aa5f2d8ba3abd9567a230fe3a8edd0a2e9dc70cdb78166c97e335478521c9d98202d languageName: node linkType: hard -"@typescript-eslint/typescript-estree@npm:5.45.1": - version: 5.45.1 - resolution: "@typescript-eslint/typescript-estree@npm:5.45.1" +"@typescript-eslint/typescript-estree@npm:5.47.1": + version: 5.47.1 + resolution: "@typescript-eslint/typescript-estree@npm:5.47.1" dependencies: - "@typescript-eslint/types": "npm:5.45.1" - "@typescript-eslint/visitor-keys": "npm:5.45.1" + "@typescript-eslint/types": "npm:5.47.1" + "@typescript-eslint/visitor-keys": "npm:5.47.1" debug: "npm:^4.3.4" globby: "npm:^11.1.0" is-glob: "npm:^4.0.3" @@ -2057,35 +2036,35 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: 49787f27c049438ed8a39b423eb7b72eba940819f094ce7fb7e10802d50653fe15b98dd5709ecc5ac64193ef2d1dc27e3512a0909aa0b589612d9aacb69feabb + checksum: dddbdc47869ac9039935a34c61b9e1bad948006aa403d151b7eac71783a333f6eb6c3876201d8fad9d3d4dae731a1f798e39c90f3d42638fc94a6880c51647e6 languageName: node linkType: hard -"@typescript-eslint/utils@npm:5.45.1": - version: 5.45.1 - resolution: "@typescript-eslint/utils@npm:5.45.1" +"@typescript-eslint/utils@npm:5.47.1": + version: 5.47.1 + resolution: "@typescript-eslint/utils@npm:5.47.1" dependencies: "@types/json-schema": "npm:^7.0.9" "@types/semver": "npm:^7.3.12" - "@typescript-eslint/scope-manager": "npm:5.45.1" - "@typescript-eslint/types": "npm:5.45.1" - "@typescript-eslint/typescript-estree": "npm:5.45.1" + "@typescript-eslint/scope-manager": "npm:5.47.1" + "@typescript-eslint/types": "npm:5.47.1" + "@typescript-eslint/typescript-estree": "npm:5.47.1" eslint-scope: "npm:^5.1.1" eslint-utils: "npm:^3.0.0" semver: "npm:^7.3.7" peerDependencies: eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - checksum: 536f6f0974766f97267c964e1dfac06f0fcdb004b68be0e2c8465c64538191c5604dcd1643c5f080461acc317cc446f628c401b25afde0be0290bd9da1a04ec9 + checksum: 886f6a3c6f0f50e4943ab632cade16837c5a18f3ce4eb6b6febed1a4b713081f0ba5b5d414636eb6e3ca3f7a1d63153779b4d080dadff363de174ed6d44938c7 languageName: node linkType: hard -"@typescript-eslint/visitor-keys@npm:5.45.1": - version: 5.45.1 - resolution: "@typescript-eslint/visitor-keys@npm:5.45.1" +"@typescript-eslint/visitor-keys@npm:5.47.1": + version: 5.47.1 + resolution: "@typescript-eslint/visitor-keys@npm:5.47.1" dependencies: - "@typescript-eslint/types": "npm:5.45.1" + "@typescript-eslint/types": "npm:5.47.1" eslint-visitor-keys: "npm:^3.3.0" - checksum: 6453f1e338550352a701f0658483030c1ff90fbd7cb84db651dc61eee37e87ca61e16b046f510041a68680e1bbd6e7fbed5175910940573e3798864caaf7e134 + checksum: 278b6d14864f03a59377462581c4bbad03160b8f134535e1adc28d7534aa64157c9d045b1d4a7dc1381fd7aec0db2cbcc949d8ba9f4a046ed6ea95c08368ef02 languageName: node linkType: hard @@ -2098,22 +2077,24 @@ __metadata: languageName: node linkType: hard -"@vitest/coverage-c8@npm:0.25.5": - version: 0.25.5 - resolution: "@vitest/coverage-c8@npm:0.25.5" +"@vitest/coverage-c8@npm:0.26.2": + version: 0.26.2 + resolution: "@vitest/coverage-c8@npm:0.26.2" dependencies: c8: "npm:^7.12.0" - vitest: "npm:0.25.5" - checksum: e001c519cca8f8c9a36a715a0b2f01059cda868173fcba517d035917762ef736189644a1d6b7724fc05f21c2784b144f197d2429f983b0d698a536a05bc03cc5 + vitest: "npm:0.26.2" + checksum: 02ed29aa19bafbac144f99b8531b3bc8d9bdc270d381663d58ce0006e192a3867e44dda40a77e56b46c7b9538296a2e49c02e556f2c0e5fd7c3d33f933bb8598 languageName: node linkType: hard -"@vitest/ui@npm:0.25.5": - version: 0.25.5 - resolution: "@vitest/ui@npm:0.25.5" +"@vitest/ui@npm:0.26.2": + version: 0.26.2 + resolution: "@vitest/ui@npm:0.26.2" dependencies: + fast-glob: "npm:^3.2.12" + flatted: "npm:^3.2.7" sirv: "npm:^2.0.2" - checksum: 50fb57ccdec804d7fec717c93b0f5a38d61b0a561215cfddf838cb26ad2ae92799420236608972d74939d6185ee69031e1dc43fbf6ce5154d817119e9ac7623a + checksum: b1f816ef6344eec7f7b92984b452d9fb10150c4b5e89ea70de150dbf674ddc3d6f4648747e9ed6a2a24adbf010c39d50ab042dca8a92c77e7512617eaccd7ea0 languageName: node linkType: hard @@ -2328,13 +2309,6 @@ __metadata: languageName: node linkType: hard -"any-promise@npm:^1.0.0": - version: 1.3.0 - resolution: "any-promise@npm:1.3.0" - checksum: 5768f5c5c10b5152048e2e4e44ba3509a9f3d0dfd8e73de34099adb6f05068966fa34feda164131a901fb37977d996f84a76a7ef120eff2f93725646937b4751 - languageName: node - linkType: hard - "aproba@npm:^1.0.3 || ^2.0.0": version: 2.0.0 resolution: "aproba@npm:2.0.0" @@ -2616,32 +2590,7 @@ __metadata: languageName: node linkType: hard -"chai-each@npm:0.0.1": - version: 0.0.1 - resolution: "chai-each@npm:0.0.1" - checksum: 545be493fb9eace3aea28ef9556a0433dd1467bd0bf96d1bb50212c0f12b833ae033fd50b56b6ca739a58868fab060ef794bca14da3b36347f4f8574d66fc2a8 - languageName: node - linkType: hard - -"chai-quantifiers@npm:1.0.17": - version: 1.0.17 - resolution: "chai-quantifiers@npm:1.0.17" - peerDependencies: - chai: ^4.x.x - checksum: 9e1c4af526998af9a862917c426ac0ff48560f1ab03ff97ef67ed65b88b2dad0d2af8a2f9315a55fbc434d77b1f82ecf5aa16b15453fa33dcad7f4a5266cb3ca - languageName: node - linkType: hard - -"chai-string@npm:1.5.0": - version: 1.5.0 - resolution: "chai-string@npm:1.5.0" - peerDependencies: - chai: ^4.1.2 - checksum: d39e07eb8311f99130c3fd404ef86bc09b4b4b4da153d61ec80875da48d06ead90fafd13692eaf3197b672679212603cd4e9dd3b9f30313d6f6fa56d40ac7517 - languageName: node - linkType: hard - -"chai@npm:4.3.7, chai@npm:^4.3.6": +"chai@npm:4.3.7, chai@npm:^4.3.7": version: 4.3.7 resolution: "chai@npm:4.3.7" dependencies: @@ -2879,13 +2828,6 @@ __metadata: languageName: node linkType: hard -"commander@npm:^4.0.0": - version: 4.1.1 - resolution: "commander@npm:4.1.1" - checksum: 3be44d4e8e108ce5056885db1ee90cf34afe5b1c965829c23b3a47890d27980e101889fe7355accd6ec22cad862abc9f609da6de0c4c061e19d04d098611baf4 - languageName: node - linkType: hard - "commander@npm:^9.4.1": version: 9.4.1 resolution: "commander@npm:9.4.1" @@ -3206,15 +3148,6 @@ __metadata: languageName: node linkType: hard -"cosmiconfig-toml-loader@npm:1.0.0": - version: 1.0.0 - resolution: "cosmiconfig-toml-loader@npm:1.0.0" - dependencies: - "@iarna/toml": "npm:^2.2.5" - checksum: 0097478b3cdb06e48b0e6429279edb4c58231e0a670e6bb45f4e7fa751cdad1b64f00ee342bad34edfebc3e2188b5f6015749f82cc30f296bc02b9a6ff73aec2 - languageName: node - linkType: hard - "cosmiconfig-typescript-loader@npm:^4.0.0": version: 4.2.0 resolution: "cosmiconfig-typescript-loader@npm:4.2.0" @@ -3240,28 +3173,28 @@ __metadata: languageName: node linkType: hard -"cosmiconfig@npm:^7.0.0": - version: 7.1.0 - resolution: "cosmiconfig@npm:7.1.0" +"cosmiconfig@npm:8.0.0, cosmiconfig@npm:^8.0.0": + version: 8.0.0 + resolution: "cosmiconfig@npm:8.0.0" dependencies: - "@types/parse-json": "npm:^4.0.0" import-fresh: "npm:^3.2.1" + js-yaml: "npm:^4.1.0" parse-json: "npm:^5.0.0" path-type: "npm:^4.0.0" - yaml: "npm:^1.10.0" - checksum: 8add352f0abd55fc5eaef0823937c33992e5ae670831418c8ff98bb301952260467533b09b8e9257dc360baa270610a7a92b288d94eb25d6f577a0d7e507801b + checksum: 436a849ca0a434b4a7344e9213db6314512c6af23c0b187728d21b0292736eec8c2df046a95b8c796a9304afbd9d154bf5e9aeeae535e6303d835d44835cad6d languageName: node linkType: hard -"cosmiconfig@npm:^8.0.0": - version: 8.0.0 - resolution: "cosmiconfig@npm:8.0.0" +"cosmiconfig@npm:^7.0.0": + version: 7.1.0 + resolution: "cosmiconfig@npm:7.1.0" dependencies: + "@types/parse-json": "npm:^4.0.0" import-fresh: "npm:^3.2.1" - js-yaml: "npm:^4.1.0" parse-json: "npm:^5.0.0" path-type: "npm:^4.0.0" - checksum: 436a849ca0a434b4a7344e9213db6314512c6af23c0b187728d21b0292736eec8c2df046a95b8c796a9304afbd9d154bf5e9aeeae535e6303d835d44835cad6d + yaml: "npm:^1.10.0" + checksum: 8add352f0abd55fc5eaef0823937c33992e5ae670831418c8ff98bb301952260467533b09b8e9257dc360baa270610a7a92b288d94eb25d6f577a0d7e507801b languageName: node linkType: hard @@ -3290,126 +3223,126 @@ __metadata: languageName: node linkType: hard -"cspell-dictionary@npm:6.17.0": - version: 6.17.0 - resolution: "cspell-dictionary@npm:6.17.0" +"cspell-dictionary@npm:6.18.0": + version: 6.18.0 + resolution: "cspell-dictionary@npm:6.18.0" dependencies: - "@cspell/cspell-pipe": "npm:6.17.0" - "@cspell/cspell-types": "npm:6.17.0" - cspell-trie-lib: "npm:6.17.0" + "@cspell/cspell-pipe": "npm:6.18.0" + "@cspell/cspell-types": "npm:6.18.0" + cspell-trie-lib: "npm:6.18.0" fast-equals: "npm:^4.0.3" - gensequence: "npm:^4.0.2" - checksum: 216df7950b2096074eaff2847d51bb4bb2dd51143016f2cfcaae92fd725f239eee5919c44c29500ffeb7b27afa3aa7de68f6cc1696c89aa27f530b6fad23ac8c + gensequence: "npm:^4.0.3" + checksum: 188386ce5dedd5408df3b891640c4b228d058f7a6c92d028ed73df55f595e69c48ad842a1ce748614b920fb23284636184dcf3dd9e71ef5450ac56397076767c languageName: node linkType: hard -"cspell-gitignore@npm:6.17.0": - version: 6.17.0 - resolution: "cspell-gitignore@npm:6.17.0" +"cspell-gitignore@npm:6.18.0": + version: 6.18.0 + resolution: "cspell-gitignore@npm:6.18.0" dependencies: - cspell-glob: "npm:6.17.0" + cspell-glob: "npm:6.18.0" find-up: "npm:^5.0.0" bin: cspell-gitignore: bin.js - checksum: 4d55eea5be740f06e8b1b90d205d330a377ea916b7bb96a5b30e905c75b1f10ccf97e68168d463f4c22721f2f280d7cdfc24f3701bfb8c9e49e4f37c612bcab0 + checksum: 9f08ff4a020197ef2c865a7adf219b1efc700869d16f33523c8eb2279c82848d9f5e195a3119486219983f6e96179f2f4014413dc091307916b1fdc3312f8f90 languageName: node linkType: hard -"cspell-glob@npm:6.17.0": - version: 6.17.0 - resolution: "cspell-glob@npm:6.17.0" +"cspell-glob@npm:6.18.0": + version: 6.18.0 + resolution: "cspell-glob@npm:6.18.0" dependencies: micromatch: "npm:^4.0.5" - checksum: 8b7b24f2f748d8455097854a875131bb1b466d84b5caab79017ea116759d97335cb12a20bef2881ad73bd1a85d5457367bd347008d49906674262ca8026121f8 + checksum: aa2cbb5964920bb69ddc6e901f029e587c0b99193644d27042b100fe6c117696f2613cbf4f56717e7184bf614702a0a66bb4ea41f4dda8890a400d35b68449f5 languageName: node linkType: hard -"cspell-grammar@npm:6.17.0": - version: 6.17.0 - resolution: "cspell-grammar@npm:6.17.0" +"cspell-grammar@npm:6.18.0": + version: 6.18.0 + resolution: "cspell-grammar@npm:6.18.0" dependencies: - "@cspell/cspell-pipe": "npm:6.17.0" - "@cspell/cspell-types": "npm:6.17.0" + "@cspell/cspell-pipe": "npm:6.18.0" + "@cspell/cspell-types": "npm:6.18.0" bin: cspell-grammar: bin.js - checksum: 3ed1dcc4249c8d712db41c08f62c1ed0ce3f12cf79d24914d2bc6158b1a0982fa4ccbb84d66f5f5ac4b80f2c981fe2380a6b87fff685099bf6f0819853504c1f + checksum: 8dafcf5ae2eac14137d9b89187333eb0b315d5a2b27676fa07dcc058793698e04db3b01f2ffa72dd01f414462b218b1f0c0463a15331dec29e03d3de0dec7c04 languageName: node linkType: hard -"cspell-io@npm:6.17.0": - version: 6.17.0 - resolution: "cspell-io@npm:6.17.0" +"cspell-io@npm:6.18.0": + version: 6.18.0 + resolution: "cspell-io@npm:6.18.0" dependencies: - "@cspell/cspell-service-bus": "npm:6.17.0" + "@cspell/cspell-service-bus": "npm:6.18.0" node-fetch: "npm:^2.6.7" - checksum: 50c9712df2f1d27a9b588c3c2d02ff2f3ebf906db67bc0ad29068c4375489f2d2f6aa81a05d7e884fc704a5120bece23debed749655591c91d44c17d9520befd + checksum: 0bf68353e4b9708e70eed0d0289caa88f370789b7ef526c2e32c622ce19a0def4f14b07ef60ed88aba4f3c3c258a0e32aed24fde8dd186220b34c588bcc1d9bc languageName: node linkType: hard -"cspell-lib@npm:6.17.0": - version: 6.17.0 - resolution: "cspell-lib@npm:6.17.0" +"cspell-lib@npm:6.18.0": + version: 6.18.0 + resolution: "cspell-lib@npm:6.18.0" dependencies: - "@cspell/cspell-bundled-dicts": "npm:6.17.0" - "@cspell/cspell-pipe": "npm:6.17.0" - "@cspell/cspell-types": "npm:6.17.0" - "@cspell/strong-weak-map": "npm:6.17.0" + "@cspell/cspell-bundled-dicts": "npm:6.18.0" + "@cspell/cspell-pipe": "npm:6.18.0" + "@cspell/cspell-types": "npm:6.18.0" + "@cspell/strong-weak-map": "npm:6.18.0" clear-module: "npm:^4.1.2" comment-json: "npm:^4.2.3" configstore: "npm:^5.0.1" cosmiconfig: "npm:^8.0.0" - cspell-dictionary: "npm:6.17.0" - cspell-glob: "npm:6.17.0" - cspell-grammar: "npm:6.17.0" - cspell-io: "npm:6.17.0" - cspell-trie-lib: "npm:6.17.0" + cspell-dictionary: "npm:6.18.0" + cspell-glob: "npm:6.18.0" + cspell-grammar: "npm:6.18.0" + cspell-io: "npm:6.18.0" + cspell-trie-lib: "npm:6.18.0" fast-equals: "npm:^4.0.3" find-up: "npm:^5.0.0" - fs-extra: "npm:^10.1.0" - gensequence: "npm:^4.0.2" + fs-extra: "npm:^11.1.0" + gensequence: "npm:^4.0.3" import-fresh: "npm:^3.3.0" resolve-from: "npm:^5.0.0" resolve-global: "npm:^1.0.0" - vscode-languageserver-textdocument: "npm:^1.0.7" - vscode-uri: "npm:^3.0.6" - checksum: 1deea64faf02af21d9ed115ae79faf53e4b011098b2b234a7edf466a42e1d7eef7ddf716c862b07b924e22e96f0b4c36ea4aa85e4b10133783d6e2af1bb415fc + vscode-languageserver-textdocument: "npm:^1.0.8" + vscode-uri: "npm:^3.0.7" + checksum: 2b9e54481b8f7f3bdeee422e1a42a2522a8ad0151c8f59f37dfd2beb5c11ec211ab257a588a4fd08b1fc228c3fc40a40208e6a514b219c8fbb05abfce465f612 languageName: node linkType: hard -"cspell-trie-lib@npm:6.17.0": - version: 6.17.0 - resolution: "cspell-trie-lib@npm:6.17.0" +"cspell-trie-lib@npm:6.18.0": + version: 6.18.0 + resolution: "cspell-trie-lib@npm:6.18.0" dependencies: - "@cspell/cspell-pipe": "npm:6.17.0" - "@cspell/cspell-types": "npm:6.17.0" - fs-extra: "npm:^10.1.0" - gensequence: "npm:^4.0.2" - checksum: e2facf09114c6d929d0bfec777799cb5dbe1df180506c84f318f9d2fe26b52a09d7483f7ca537831a6c1e22c6a92bf29a3a54886a181aad6512abb07cce4f8fc + "@cspell/cspell-pipe": "npm:6.18.0" + "@cspell/cspell-types": "npm:6.18.0" + fs-extra: "npm:^11.1.0" + gensequence: "npm:^4.0.3" + checksum: ac223b20e3dd276d0e3b2f2d7282feaeac7c97ca796e22af617c3b55cdaf3441076c472898aeb921141eaa87ec45c5feb489328a49d1e256553ca1a2d09c170c languageName: node linkType: hard -"cspell@npm:6.17.0": - version: 6.17.0 - resolution: "cspell@npm:6.17.0" +"cspell@npm:6.18.0": + version: 6.18.0 + resolution: "cspell@npm:6.18.0" dependencies: - "@cspell/cspell-pipe": "npm:6.17.0" + "@cspell/cspell-pipe": "npm:6.18.0" chalk: "npm:^4.1.2" commander: "npm:^9.4.1" - cspell-gitignore: "npm:6.17.0" - cspell-glob: "npm:6.17.0" - cspell-lib: "npm:6.17.0" + cspell-gitignore: "npm:6.18.0" + cspell-glob: "npm:6.18.0" + cspell-lib: "npm:6.18.0" fast-json-stable-stringify: "npm:^2.1.0" file-entry-cache: "npm:^6.0.1" - fs-extra: "npm:^10.1.0" + fs-extra: "npm:^11.1.0" get-stdin: "npm:^8.0.0" glob: "npm:^8.0.3" imurmurhash: "npm:^0.1.4" semver: "npm:^7.3.8" strip-ansi: "npm:^6.0.1" - vscode-uri: "npm:^3.0.6" + vscode-uri: "npm:^3.0.7" bin: cspell: bin.js - checksum: a9ee1c36cd2c5cb91946eff4d8ffc11d7bc53ffa795bf473596f398df51eef1d1c1b60c22ce636bd938c0bb7988b9b93cb4a8827217f7500c64b180baef23454 + checksum: d91cedd51eee0f69b6bab8234377c65bf13c90af4bcccddcaaf5bbebe3ded848bbec711919a6105d1eeb1af81ea4e98ada19e21963e5c0df8bf20e80a5880627 languageName: node linkType: hard @@ -3647,32 +3580,32 @@ __metadata: languageName: node linkType: hard -"esbuild@npm:0.16.6": - version: 0.16.6 - resolution: "esbuild@npm:0.16.6" - dependencies: - "@esbuild/android-arm": "npm:0.16.6" - "@esbuild/android-arm64": "npm:0.16.6" - "@esbuild/android-x64": "npm:0.16.6" - "@esbuild/darwin-arm64": "npm:0.16.6" - "@esbuild/darwin-x64": "npm:0.16.6" - "@esbuild/freebsd-arm64": "npm:0.16.6" - "@esbuild/freebsd-x64": "npm:0.16.6" - "@esbuild/linux-arm": "npm:0.16.6" - "@esbuild/linux-arm64": "npm:0.16.6" - "@esbuild/linux-ia32": "npm:0.16.6" - "@esbuild/linux-loong64": "npm:0.16.6" - "@esbuild/linux-mips64el": "npm:0.16.6" - "@esbuild/linux-ppc64": "npm:0.16.6" - "@esbuild/linux-riscv64": "npm:0.16.6" - "@esbuild/linux-s390x": "npm:0.16.6" - "@esbuild/linux-x64": "npm:0.16.6" - "@esbuild/netbsd-x64": "npm:0.16.6" - "@esbuild/openbsd-x64": "npm:0.16.6" - "@esbuild/sunos-x64": "npm:0.16.6" - "@esbuild/win32-arm64": "npm:0.16.6" - "@esbuild/win32-ia32": "npm:0.16.6" - "@esbuild/win32-x64": "npm:0.16.6" +"esbuild@npm:0.16.12": + version: 0.16.12 + resolution: "esbuild@npm:0.16.12" + dependencies: + "@esbuild/android-arm": "npm:0.16.12" + "@esbuild/android-arm64": "npm:0.16.12" + "@esbuild/android-x64": "npm:0.16.12" + "@esbuild/darwin-arm64": "npm:0.16.12" + "@esbuild/darwin-x64": "npm:0.16.12" + "@esbuild/freebsd-arm64": "npm:0.16.12" + "@esbuild/freebsd-x64": "npm:0.16.12" + "@esbuild/linux-arm": "npm:0.16.12" + "@esbuild/linux-arm64": "npm:0.16.12" + "@esbuild/linux-ia32": "npm:0.16.12" + "@esbuild/linux-loong64": "npm:0.16.12" + "@esbuild/linux-mips64el": "npm:0.16.12" + "@esbuild/linux-ppc64": "npm:0.16.12" + "@esbuild/linux-riscv64": "npm:0.16.12" + "@esbuild/linux-s390x": "npm:0.16.12" + "@esbuild/linux-x64": "npm:0.16.12" + "@esbuild/netbsd-x64": "npm:0.16.12" + "@esbuild/openbsd-x64": "npm:0.16.12" + "@esbuild/sunos-x64": "npm:0.16.12" + "@esbuild/win32-arm64": "npm:0.16.12" + "@esbuild/win32-ia32": "npm:0.16.12" + "@esbuild/win32-x64": "npm:0.16.12" dependenciesMeta: "@esbuild/android-arm": optional: true @@ -3720,7 +3653,7 @@ __metadata: optional: true bin: esbuild: bin/esbuild - checksum: 5141e0fb72abc67dc06ac9ac9cbdef99086889ef0eaf4bb9c828feb5989180d9ef4573ef8f5ffe67d02950b2dc1895b40c7e1f50fac03a06c1bdfbf25595072f + checksum: 024e7cf705225e4535aa054377eae3ed95ce6e952443ef6e73ed8988cfe4d7964db8a39681d71614fa40eb8159e0955d7c2f2c045217865682162ebef64b1b2b languageName: node linkType: hard @@ -3885,12 +3818,12 @@ __metadata: languageName: node linkType: hard -"eslint-plugin-unicorn@npm:45.0.1": - version: 45.0.1 - resolution: "eslint-plugin-unicorn@npm:45.0.1" +"eslint-plugin-unicorn@npm:45.0.2": + version: 45.0.2 + resolution: "eslint-plugin-unicorn@npm:45.0.2" dependencies: "@babel/helper-validator-identifier": "npm:^7.19.1" - "@eslint-community/eslint-utils": "npm:^4.1.0" + "@eslint-community/eslint-utils": "npm:^4.1.2" ci-info: "npm:^3.6.1" clean-regexp: "npm:^1.0.0" esquery: "npm:^1.4.0" @@ -3907,13 +3840,13 @@ __metadata: strip-indent: "npm:^3.0.0" peerDependencies: eslint: ">=8.28.0" - checksum: 1b52495a4d7b57f5b41b3bf7e145840ad053f1f9b80501e10c249853281fd4e10da2c462cf3b457bd0f8c5c13a2973e8cbd7b51022d8a78ad8172390825572f2 + checksum: 65e5fa10190376c2b7958767aa79963832a1fad576b8d3ad57d9d579bd788577123c5002c1129f445bba2780deca0b4dd72b0dcb046385b1c6e0f484dcda940b languageName: node linkType: hard -"eslint-plugin-yml@npm:1.2.0": - version: 1.2.0 - resolution: "eslint-plugin-yml@npm:1.2.0" +"eslint-plugin-yml@npm:1.4.0": + version: 1.4.0 + resolution: "eslint-plugin-yml@npm:1.4.0" dependencies: debug: "npm:^4.3.2" lodash: "npm:^4.17.21" @@ -3921,7 +3854,7 @@ __metadata: yaml-eslint-parser: "npm:^1.1.0" peerDependencies: eslint: ">=6.0.0" - checksum: d96e973c80c353cd0fd8ad87df18451a55ebe86713a2afcfbb45c88c4a93049210686294e484c51bda66b90705dff3a379be433af0f7bd56a154871d5dc2c2e3 + checksum: a947297167aa9fff0b4978dbc2ba4c0da1e8a54018636b282c05e13d35bb7f778c214c69e8bad59617c42d8c7934acdb4455acb496ac921ac63895981fb2ab31 languageName: node linkType: hard @@ -3986,12 +3919,12 @@ __metadata: languageName: node linkType: hard -"eslint@npm:8.29.0": - version: 8.29.0 - resolution: "eslint@npm:8.29.0" +"eslint@npm:8.30.0": + version: 8.30.0 + resolution: "eslint@npm:8.30.0" dependencies: - "@eslint/eslintrc": "npm:^1.3.3" - "@humanwhocodes/config-array": "npm:^0.11.6" + "@eslint/eslintrc": "npm:^1.4.0" + "@humanwhocodes/config-array": "npm:^0.11.8" "@humanwhocodes/module-importer": "npm:^1.0.1" "@nodelib/fs.walk": "npm:^1.2.8" ajv: "npm:^6.10.0" @@ -4010,7 +3943,7 @@ __metadata: file-entry-cache: "npm:^6.0.1" find-up: "npm:^5.0.0" glob-parent: "npm:^6.0.2" - globals: "npm:^13.15.0" + globals: "npm:^13.19.0" grapheme-splitter: "npm:^1.0.4" ignore: "npm:^5.2.0" import-fresh: "npm:^3.0.0" @@ -4031,7 +3964,7 @@ __metadata: text-table: "npm:^0.2.0" bin: eslint: bin/eslint.js - checksum: a819bf506466fd9a3931c4dbc07ea540824313fac13ae93f2320e78d9fdd71de5bb19205b3567274d3a841f48956a03b42ce51a29c0dc67fc3a769195d7d5cd2 + checksum: d6a2208422d76cac6934b1e17038236e85e18e662b0c0525b84164b90cafd81d23812d1a481e10a8cc1bd900e363b88cf005baca8e976c418125e3457f1ed6cc languageName: node linkType: hard @@ -4313,7 +4246,7 @@ __metadata: languageName: node linkType: hard -"flatted@npm:^3.1.0": +"flatted@npm:^3.1.0, flatted@npm:^3.2.7": version: 3.2.7 resolution: "flatted@npm:3.2.7" checksum: d57a559a56f8743f48067b992e70f222921bec6656de4617ee60dab5e531c2aeba67ace287965b759cca80fa0d3f0c7ffc39341ccc9bc874594f4b73c0fea48c @@ -4347,7 +4280,7 @@ __metadata: languageName: node linkType: hard -"fs-extra@npm:10.1.0, fs-extra@npm:^10.0.0, fs-extra@npm:^10.1.0": +"fs-extra@npm:10.1.0, fs-extra@npm:^10.0.0": version: 10.1.0 resolution: "fs-extra@npm:10.1.0" dependencies: @@ -4358,6 +4291,17 @@ __metadata: languageName: node linkType: hard +"fs-extra@npm:^11.1.0": + version: 11.1.0 + resolution: "fs-extra@npm:11.1.0" + dependencies: + graceful-fs: "npm:^4.2.0" + jsonfile: "npm:^6.0.1" + universalify: "npm:^2.0.0" + checksum: 20d9909070e7d9754cb651af067ae4343b5fc9b05fa9b8765a9348dab7dfa9b78c0f1ebe791774f06d4cca4231f4be9889a916d0457e8e87097a613e6bdd1746 + languageName: node + linkType: hard + "fs-minipass@npm:^2.0.0, fs-minipass@npm:^2.1.0": version: 2.1.0 resolution: "fs-minipass@npm:2.1.0" @@ -4416,10 +4360,10 @@ __metadata: languageName: node linkType: hard -"gensequence@npm:^4.0.2": - version: 4.0.2 - resolution: "gensequence@npm:4.0.2" - checksum: ff4298d41acb3dc865ebc66636d070fad0ded5d1f39feed91f7e45abf81a445429f1dbb2a020b0b847c951101abed18dc994d138d825bc89bf6544143b2b89e1 +"gensequence@npm:^4.0.3": + version: 4.0.3 + resolution: "gensequence@npm:4.0.3" + checksum: 30e3d6b2921bdd52eba33b7be2fd1d8f3cbeeaa7fbf63c9740d68332dbfddc7f71a78c92124c3913b5025714f3c317a57d1a8bef6609f1d2e5bde06e0370fa81 languageName: node linkType: hard @@ -4538,27 +4482,6 @@ __metadata: languageName: node linkType: hard -"glob-regex@npm:^0.3.0": - version: 0.3.2 - resolution: "glob-regex@npm:0.3.2" - checksum: c76c405ea21a61d88a6a0d9a6eef3495393547ad179eed390cfb770678049c51f5165cbabf85e4e2ab818ea3feb639dab744e7e3d5a2caedd8268d78be4ded38 - languageName: node - linkType: hard - -"glob@npm:7.1.6": - version: 7.1.6 - resolution: "glob@npm:7.1.6" - dependencies: - fs.realpath: "npm:^1.0.0" - inflight: "npm:^1.0.4" - inherits: "npm:2" - minimatch: "npm:^3.0.4" - once: "npm:^1.3.0" - path-is-absolute: "npm:^1.0.0" - checksum: d50636c269f66c01b688468f60eea9fd8fe98f8c1dc9837fd7767229b47274eeb3c18a1b5c314ce53550d05326d33d9ec531194d8b908fb312cf658664c8cc29 - languageName: node - linkType: hard - "glob@npm:^7.1.2, glob@npm:^7.1.3, glob@npm:^7.1.4": version: 7.2.3 resolution: "glob@npm:7.2.3" @@ -4602,12 +4525,12 @@ __metadata: languageName: node linkType: hard -"globals@npm:^13.15.0": - version: 13.18.0 - resolution: "globals@npm:13.18.0" +"globals@npm:^13.19.0": + version: 13.19.0 + resolution: "globals@npm:13.19.0" dependencies: type-fest: "npm:^0.20.2" - checksum: 6f892694a2be6ac05dfb6ae4b6955ec5ad4fe6d02c5de7481a4e7ea8519b43702775cb9022348a8c859c35bff81bdf768c76570cfd9b98c0d3759a1cc4b979f3 + checksum: 3f3d6606b78da1731d7a2837e75c5e941e7db414ca4a5ad90e456f771b68552095214457295f88a2b1580cd60b430c72020a3e10e39be1093c55c9331b5889ce languageName: node linkType: hard @@ -4680,26 +4603,25 @@ __metadata: languageName: node linkType: hard -"graphql-config@npm:4.3.6, graphql-config@npm:^4.3.6": - version: 4.3.6 - resolution: "graphql-config@npm:4.3.6" +"graphql-config@npm:4.4.0, graphql-config@npm:^4.4.0": + version: 4.4.0 + resolution: "graphql-config@npm:4.4.0" dependencies: "@graphql-tools/graphql-file-loader": "npm:^7.3.7" "@graphql-tools/json-file-loader": "npm:^7.3.7" "@graphql-tools/load": "npm:^7.5.5" "@graphql-tools/merge": "npm:^8.2.6" "@graphql-tools/url-loader": "npm:^7.9.7" - "@graphql-tools/utils": "npm:^8.6.5" - cosmiconfig: "npm:7.0.1" - cosmiconfig-toml-loader: "npm:1.0.0" - cosmiconfig-typescript-loader: "npm:^4.0.0" + "@graphql-tools/utils": "npm:^9.0.0" + cosmiconfig: "npm:8.0.0" minimatch: "npm:4.2.1" string-env-interpolation: "npm:1.0.1" - ts-node: "npm:^10.8.1" tslib: "npm:^2.4.0" peerDependencies: + cosmiconfig-toml-loader: ^1.0.0 + cosmiconfig-typescript-loader: ^4.0.0 graphql: ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0 - checksum: 80cd871ac7fa46671159a5a7e141bbcc0bccc59e5d3b9af5439aec21ab1f1f500e6dd467a51b56c25580b193de6c741fd03411e6c21b39d0e073a8c4eb2b637e + checksum: 64f26d71ce3e3cf9913742b2d29046a60023a566ad472868746a38e21968b6cb919239b738088c97ecc378f1e7a9ba3f6ffb58b97df77456c64903fbf4a3bf7e languageName: node linkType: hard @@ -6118,17 +6040,6 @@ __metadata: languageName: node linkType: hard -"mz@npm:^2.7.0": - version: 2.7.0 - resolution: "mz@npm:2.7.0" - dependencies: - any-promise: "npm:^1.0.0" - object-assign: "npm:^4.0.1" - thenify-all: "npm:^1.0.0" - checksum: 94100397dc4e8b8451c743b025bbd9a8fa8bb7c16fadab1a34f28f6a0d16cf03766c054d47352b07952434182776535e578dbbd146db235b1c65b8fb76a49bcc - languageName: node - linkType: hard - "nanoid@npm:^3.3.4": version: 3.3.4 resolution: "nanoid@npm:3.3.4" @@ -6325,13 +6236,6 @@ __metadata: languageName: node linkType: hard -"object-assign@npm:^4.0.1": - version: 4.1.1 - resolution: "object-assign@npm:4.1.1" - checksum: f5cd1f2f1e82e12207e4f2377d9d7d90fbc0d9822a6afa717a6dcab6930d8925e1ebbbb25df770c31ff11335ee423459ba65ffa2e53999926c328b806b4d73d6 - languageName: node - linkType: hard - "object-inspect@npm:^1.12.2": version: 1.12.2 resolution: "object-inspect@npm:1.12.2" @@ -6642,6 +6546,13 @@ __metadata: languageName: node linkType: hard +"pathe@npm:^0.2.0": + version: 0.2.0 + resolution: "pathe@npm:0.2.0" + checksum: 424e0759bf6182ce792c1a68efa1abda7efcfa86a0f6fe96d77bf35bddf9222e229cb12814ee26d7128c5bd6460ac62dd416f08415ef5e96298f3ddaa3deaa76 + languageName: node + linkType: hard + "pathe@npm:^0.3.7": version: 0.3.9 resolution: "pathe@npm:0.3.9" @@ -6716,13 +6627,6 @@ __metadata: languageName: node linkType: hard -"pirates@npm:^4.0.1": - version: 4.0.5 - resolution: "pirates@npm:4.0.5" - checksum: 1ade661dec736ffce6976c3430d37412bb75d7ba7caeb36ce3142de9b8bea4f756f0b317a2a24a28dd9e84adbf7a7819bfdca719126ccc44bf27b62d4a880eda - languageName: node - linkType: hard - "pkg-types@npm:0.3.5": version: 0.3.5 resolution: "pkg-types@npm:0.3.5" @@ -6752,14 +6656,14 @@ __metadata: languageName: node linkType: hard -"postcss@npm:^8.4.18": - version: 8.4.19 - resolution: "postcss@npm:8.4.19" +"postcss@npm:^8.4.20": + version: 8.4.20 + resolution: "postcss@npm:8.4.20" dependencies: nanoid: "npm:^3.3.4" picocolors: "npm:^1.0.0" source-map-js: "npm:^1.0.2" - checksum: 583897de1f1b39bed59fecfd2697e34195d6f2f85710572a8f060a14898102e13b0a74a96fd5490b2f8bdc6ed51ae43169a5a24f37684606f7c8272221b5d111 + checksum: bdc074b44b690f08c0496d78e0777bb2072633c6facbb6a987ae4cb1041333bcbd592e81244293ba1cf888ececc8dd224a1162751e84d173305aaed6f8f82957 languageName: node linkType: hard @@ -6792,12 +6696,12 @@ __metadata: languageName: node linkType: hard -"prettier@npm:2.8.0": - version: 2.8.0 - resolution: "prettier@npm:2.8.0" +"prettier@npm:2.8.1": + version: 2.8.1 + resolution: "prettier@npm:2.8.1" bin: prettier: bin-prettier.js - checksum: c95699326db607eac7f63274d38ca9c21462fa538fb69cf06cb3be2122f2d53daa02f96f69cffa985af852a95c6211472ddf3798dbdb2f20c520aded15f78684 + checksum: 06a74a0f7aa5877a3912aeeeae3558014b10e438d945f88bd313222e75e7282eb7f41299d204353ec7d00b208377ddc36ffe4c7d2151f0502e783139b934d66d languageName: node linkType: hard @@ -7027,19 +6931,6 @@ __metadata: languageName: node linkType: hard -"recrawl-sync@npm:^2.0.3": - version: 2.2.3 - resolution: "recrawl-sync@npm:2.2.3" - dependencies: - "@cush/relative": "npm:^1.0.0" - glob-regex: "npm:^0.3.0" - slash: "npm:^3.0.0" - sucrase: "npm:^3.20.3" - tslib: "npm:^1.9.3" - checksum: e58b7847cb04af871ce5b288883969ca15dcb953c1a40c8bfd026ed81f9e87c03f342975b5294c90caedbb4401b9d5ea9a7ab0a6ddab59ff31b32c1adf7e5e6e - languageName: node - linkType: hard - "redent@npm:^3.0.0": version: 3.0.0 resolution: "redent@npm:3.0.0" @@ -7206,9 +7097,9 @@ __metadata: languageName: node linkType: hard -"rollup@npm:^2.79.1": - version: 2.79.1 - resolution: "rollup@npm:2.79.1" +"rollup@npm:^3.7.0": + version: 3.9.0 + resolution: "rollup@npm:3.9.0" dependencies: fsevents: "npm:~2.3.2" dependenciesMeta: @@ -7216,7 +7107,7 @@ __metadata: optional: true bin: rollup: dist/bin/rollup - checksum: b91c27c3b5234af864f282ffa2c13891d9caf25cad8ba7ad11f5201bdb6516f10c90a8c3402a5f72eafc74a555b1c685b6b04d107a6d6866195812a82f4aa308 + checksum: 99588b6d2b3c31dcf26df4841c3335e7b57911707b3c7dfbdb31b27d55f350204b5245242fc43cce86c60e671fa47cbd408a9a47c237dc909e9af06dc234202a languageName: node linkType: hard @@ -7469,7 +7360,17 @@ __metadata: languageName: node linkType: hard -"source-map@npm:^0.6.1": +"source-map-support@npm:^0.5.21": + version: 0.5.21 + resolution: "source-map-support@npm:0.5.21" + dependencies: + buffer-from: "npm:^1.0.0" + source-map: "npm:^0.6.0" + checksum: ab0f9bfbcfc32018966a7199de5aeafee03a38408852400962d302392aab16d670dc84e6eda937570c5ff09972ae23347804cdffc5fe3c5e382a5b04cee3d580 + languageName: node + linkType: hard + +"source-map@npm:^0.6.0, source-map@npm:^0.6.1": version: 0.6.1 resolution: "source-map@npm:0.6.1" checksum: cba9f44c3a4a0485f44a7760ebe427eecdd3b58011ae0459c05506b54f898835b2302073d6afa563a19b60ee9e54c82e33bc4a032e28bebacdfc635f1d0bf7e0 @@ -7678,23 +7579,6 @@ __metadata: languageName: node linkType: hard -"sucrase@npm:^3.20.3": - version: 3.29.0 - resolution: "sucrase@npm:3.29.0" - dependencies: - commander: "npm:^4.0.0" - glob: "npm:7.1.6" - lines-and-columns: "npm:^1.1.6" - mz: "npm:^2.7.0" - pirates: "npm:^4.0.1" - ts-interface-checker: "npm:^0.1.9" - bin: - sucrase: bin/sucrase - sucrase-node: bin/sucrase-node - checksum: ed6b07adba4db749f67eef5afdc5067add1f627f36ae63c0376e3505e2adc9d9996282edec50cc097aa9f9281fac496f6fd7df6dcee0c7cd1d36257abc9b6e78 - languageName: node - linkType: hard - "supports-color@npm:^5.3.0": version: 5.5.0 resolution: "supports-color@npm:5.5.0" @@ -7786,24 +7670,6 @@ __metadata: languageName: node linkType: hard -"thenify-all@npm:^1.0.0": - version: 1.6.0 - resolution: "thenify-all@npm:1.6.0" - dependencies: - thenify: "npm:>= 3.1.0 < 4" - checksum: c04e83cf6b09741184d578ae73dfcd75566248f21bcf35aac2b9f90b8057b6bc5e401da12df1797cee3235a43113a6dcbd76a02532192a4da0a3007d94e8d6ef - languageName: node - linkType: hard - -"thenify@npm:>= 3.1.0 < 4": - version: 3.3.1 - resolution: "thenify@npm:3.3.1" - dependencies: - any-promise: "npm:^1.0.0" - checksum: 72ff962890b229a21c2c5cc022d105a265b9a3d631925efeba513fecefeb9a87ae6177dbe4befb7ddf78676f5f2a3320d1ed1a715c000da240807200a4e1a7d2 - languageName: node - linkType: hard - "through2@npm:^2.0.0": version: 2.0.5 resolution: "through2@npm:2.0.5" @@ -7949,13 +7815,6 @@ __metadata: languageName: node linkType: hard -"ts-interface-checker@npm:^0.1.9": - version: 0.1.13 - resolution: "ts-interface-checker@npm:0.1.13" - checksum: 28232bd3fc685da7d80666cb0c3edd8b07530931b0e3e192572c91019f863e5a9f619c7e0b52f185e8277e8515e99b0915b2b2f161cd62e183acc731a915dee9 - languageName: node - linkType: hard - "ts-node@npm:10.9.1, ts-node@npm:^10.8.1": version: 10.9.1 resolution: "ts-node@npm:10.9.1" @@ -7994,6 +7853,20 @@ __metadata: languageName: node linkType: hard +"tsconfck@npm:^2.0.1": + version: 2.0.2 + resolution: "tsconfck@npm:2.0.2" + peerDependencies: + typescript: ^4.3.5 + peerDependenciesMeta: + typescript: + optional: true + bin: + tsconfck: bin/tsconfck.js + checksum: 152f0c991c978d650a1ac93ea6ebf9f96ba13c52d4b0e3c0d2593f3391d02101159d85aa061a92f3017b3b635484e67711f55353239be9f65c0ec8be3860d078 + languageName: node + linkType: hard + "tsconfig-paths@npm:4.1.0": version: 4.1.0 resolution: "tsconfig-paths@npm:4.1.0" @@ -8005,7 +7878,7 @@ __metadata: languageName: node linkType: hard -"tsconfig-paths@npm:4.1.1, tsconfig-paths@npm:^4.0.0": +"tsconfig-paths@npm:4.1.1": version: 4.1.1 resolution: "tsconfig-paths@npm:4.1.1" dependencies: @@ -8028,7 +7901,7 @@ __metadata: languageName: node linkType: hard -"tslib@npm:^1.8.1, tslib@npm:^1.9.0, tslib@npm:^1.9.3": +"tslib@npm:^1.8.1, tslib@npm:^1.9.0": version: 1.14.1 resolution: "tslib@npm:1.14.1" checksum: 441af59dc42ad4ae57140e62cb362369620c6076845c2c2b0ecc863c1d719ce24fdbc301e9053433fef43075e061bf84b702318ff1204b496a5bba10baf9eb9f @@ -8141,23 +8014,23 @@ __metadata: languageName: node linkType: hard -"typescript@npm:4.9.3, typescript@npm:^4.6.4": - version: 4.9.3 - resolution: "typescript@npm:4.9.3" +"typescript@npm:4.9.4, typescript@npm:^4.6.4": + version: 4.9.4 + resolution: "typescript@npm:4.9.4" bin: tsc: bin/tsc tsserver: bin/tsserver - checksum: b0aafee5d6427b67fc557c46a6e9c093586444db463fde7a19ffc4eecc31889246210ff679f8384769dc99fca975bba5ac17411816855bb2d8a549e4fe442cc7 + checksum: b142d5e50785d0e5055771e4d9e712b01be58985ff29be3d3acc64f0fddd5fd8ade8b28583ba502f2565783c23bd5b509c5abcc1a93a2d7d4f05b8e4ee731fc9 languageName: node linkType: hard -"typescript@patch:typescript@npm%3A4.9.3#optional!builtin, typescript@patch:typescript@npm%3A^4.6.4#optional!builtin": - version: 4.9.3 - resolution: "typescript@patch:typescript@npm%3A4.9.3#optional!builtin::version=4.9.3&hash=d73830" +"typescript@patch:typescript@npm%3A4.9.4#optional!builtin, typescript@patch:typescript@npm%3A^4.6.4#optional!builtin": + version: 4.9.4 + resolution: "typescript@patch:typescript@npm%3A4.9.4#optional!builtin::version=4.9.4&hash=ad5954" bin: tsc: bin/tsc tsserver: bin/tsserver - checksum: 06fd518bc55d054127b39aa7ad11551fd132bb7a8395913ed84fd5caf715455393d622e884ccb4fcf962d4eb5182600009c096b82ec516e8fadd09bf2150bb93 + checksum: e7321aeb1e2c0e3c19599808707208e2b730de8d17a5624f0a7297b9a1ffa39974edd4a819108b3b635bc00171476ddfa339e04d928a03ce8d8c6944cb8ec008 languageName: node linkType: hard @@ -8348,29 +8221,44 @@ __metadata: languageName: node linkType: hard -"vite-tsconfig-paths@npm:3.6.0": - version: 3.6.0 - resolution: "vite-tsconfig-paths@npm:3.6.0" +"vite-node@npm:0.26.2": + version: 0.26.2 + resolution: "vite-node@npm:0.26.2" + dependencies: + debug: "npm:^4.3.4" + mlly: "npm:^1.0.0" + pathe: "npm:^0.2.0" + source-map: "npm:^0.6.1" + source-map-support: "npm:^0.5.21" + vite: "npm:^3.0.0 || ^4.0.0" + bin: + vite-node: vite-node.mjs + checksum: 3667273ee0826e9b3c2001e44b633cd26ca7b1227a325c234249f869090f49725b45242d10a4d50e9005c87c7f54445a02bb25ba4a045f50474a5b708e1f2726 + languageName: node + linkType: hard + +"vite-tsconfig-paths@npm:4.0.3": + version: 4.0.3 + resolution: "vite-tsconfig-paths@npm:4.0.3" dependencies: debug: "npm:^4.1.1" globrex: "npm:^0.1.2" - recrawl-sync: "npm:^2.0.3" - tsconfig-paths: "npm:^4.0.0" + tsconfck: "npm:^2.0.1" peerDependencies: vite: ">2.0.0-0" - checksum: f80b86a64604a06feaf96c1d7a5caf92b08bcc723c5e1d42864b29376ed3530c2d8831d180980fe865707f7d79050f66163c2275fa0b6beacd87989d69e76a27 + checksum: f821aee0f99ae713ec5440f2e77958cc11bc9058fe974001131d1a2fba380f664018aed543b4f845579ffb46292030cdbf2b0c9ff787e62ca750e6cf2a940994 languageName: node linkType: hard -"vite@npm:3.2.5": - version: 3.2.5 - resolution: "vite@npm:3.2.5" +"vite@npm:4.0.3": + version: 4.0.3 + resolution: "vite@npm:4.0.3" dependencies: - esbuild: "npm:^0.15.9" + esbuild: "npm:^0.16.3" fsevents: "npm:~2.3.2" - postcss: "npm:^8.4.18" + postcss: "npm:^8.4.20" resolve: "npm:^1.22.1" - rollup: "npm:^2.79.1" + rollup: "npm:^3.7.0" peerDependencies: "@types/node": ">= 14" less: "*" @@ -8396,7 +8284,7 @@ __metadata: optional: true bin: vite: bin/vite.js - checksum: be6d16ddfa0c1f099d74cc8b799ba4ef9e330c7be8d48208b79b35b6fdb1a51e3af4f02ce5c1740695597b6bd3f43101354245f4d679945a05f50c090383db96 + checksum: b6a539ef6a7f826b7d53585284896f4f4f45089a52d151baa0d956eece63b3edab4b1e5b828df59e4374dc650719c4301cc3d00833ce618c14e2b95859fdbd18 languageName: node linkType: hard @@ -8411,16 +8299,16 @@ __metadata: languageName: node linkType: hard -"vitest@npm:0.25.5": - version: 0.25.5 - resolution: "vitest@npm:0.25.5" +"vitest@npm:0.26.2": + version: 0.26.2 + resolution: "vitest@npm:0.26.2" dependencies: - "@types/chai": "npm:^4.3.3" + "@types/chai": "npm:^4.3.4" "@types/chai-subset": "npm:^1.3.3" "@types/node": "npm:*" - acorn: "npm:^8.8.0" + acorn: "npm:^8.8.1" acorn-walk: "npm:^8.2.0" - chai: "npm:^4.3.6" + chai: "npm:^4.3.7" debug: "npm:^4.3.4" local-pkg: "npm:^0.4.2" source-map: "npm:^0.6.1" @@ -8428,7 +8316,8 @@ __metadata: tinybench: "npm:^2.3.1" tinypool: "npm:^0.3.0" tinyspy: "npm:^1.0.2" - vite: "npm:^3.0.0" + vite: "npm:^3.0.0 || ^4.0.0" + vite-node: "npm:0.26.2" peerDependencies: "@edge-runtime/vm": "*" "@vitest/browser": "*" @@ -8448,20 +8337,20 @@ __metadata: optional: true bin: vitest: vitest.mjs - checksum: 9d05d48319982f8598e060262e0697786f2aea60c2d7fc65c5676e229753362c5cdc11aac02d1be7695a2af238771b5fc29359a048d7f758ef257bac243fa9c6 + checksum: beaf13c879ed617befede570289d9d04e0fcb3704e533a975d280728bc6ee202529b8178bfe87118967973866038bfc53b0fa238a08fe36128195426a1d9317b languageName: node linkType: hard -"vitest@patch:vitest@npm%3A0.25.5#patches/vitest+0.25.5.dev.patch::locator=%40flex-development%2Fpathe%40workspace%3A.": - version: 0.25.5 - resolution: "vitest@patch:vitest@npm%3A0.25.5#patches/vitest+0.25.5.dev.patch::version=0.25.5&hash=2b9f01&locator=%40flex-development%2Fpathe%40workspace%3A." +"vitest@patch:vitest@npm%3A0.26.2#patches/vitest+0.26.2.dev.patch::locator=%40flex-development%2Fpathe%40workspace%3A.": + version: 0.26.2 + resolution: "vitest@patch:vitest@npm%3A0.26.2#patches/vitest+0.26.2.dev.patch::version=0.26.2&hash=5d0070&locator=%40flex-development%2Fpathe%40workspace%3A." dependencies: - "@types/chai": "npm:^4.3.3" + "@types/chai": "npm:^4.3.4" "@types/chai-subset": "npm:^1.3.3" "@types/node": "npm:*" - acorn: "npm:^8.8.0" + acorn: "npm:^8.8.1" acorn-walk: "npm:^8.2.0" - chai: "npm:^4.3.6" + chai: "npm:^4.3.7" debug: "npm:^4.3.4" local-pkg: "npm:^0.4.2" source-map: "npm:^0.6.1" @@ -8469,7 +8358,8 @@ __metadata: tinybench: "npm:^2.3.1" tinypool: "npm:^0.3.0" tinyspy: "npm:^1.0.2" - vite: "npm:^3.0.0" + vite: "npm:^3.0.0 || ^4.0.0" + vite-node: "npm:0.26.2" peerDependencies: "@edge-runtime/vm": "*" "@vitest/browser": "*" @@ -8489,21 +8379,21 @@ __metadata: optional: true bin: vitest: vitest.mjs - checksum: 066cd00ea3841fa371d64a2bd37d998e95679e301c42c6ec527cf4e7c51f4efb898088074e8763e0489100ca6a2fd0d23787c7a27abd79a8a4704e274d9b88c7 + checksum: f9a26e927532daefcfb2ca5a66f1faefe5606004ae412f72101aed44d7cd1e2ae5a2e9afa2f2647011273c654e807a900ad5519c152a619785edb80091be26ef languageName: node linkType: hard -"vscode-languageserver-textdocument@npm:^1.0.7": - version: 1.0.7 - resolution: "vscode-languageserver-textdocument@npm:1.0.7" - checksum: 7a8986bfcb1a83ade93041909314ad63bd8dfc002822ad37d3c0c83ff3a630efc1a75581e2f612428e743b58e04599d266c1d906f38b3c938ec82704e9b1cd2b +"vscode-languageserver-textdocument@npm:^1.0.8": + version: 1.0.8 + resolution: "vscode-languageserver-textdocument@npm:1.0.8" + checksum: dd37824c287aecd3caf62366459808f2941fe8873732967f1e175d7e1033746ef063c625a1ccd330df9f9c81b863cdca599f074c4e2f6b4624f1f1bd99a42bda languageName: node linkType: hard -"vscode-uri@npm:^3.0.6": - version: 3.0.6 - resolution: "vscode-uri@npm:3.0.6" - checksum: 622afb99025f3a9183ca134daf781be8ffbd2ebe0eebac9b411bdfa8575dde09ce243ec6c51a05a5bb357361edc5f5b7bda411695e701102a188da47362b966a +"vscode-uri@npm:^3.0.7": + version: 3.0.7 + resolution: "vscode-uri@npm:3.0.7" + checksum: 618f5eab1344fd262194c35a0b2e17337eb926119ebb60f9ea48e718d7c6edf9a2b9689293bb56fad5706929a40d7294c74b9da17aa0c40af8d0622945ff8f90 languageName: node linkType: hard