diff --git a/.commitlintrc.yml b/.commitlintrc.yml index 0974185..958687e 100644 --- a/.commitlintrc.yml +++ b/.commitlintrc.yml @@ -1,2 +1,2 @@ extends: - - '@commitlint/config-conventional' + - '@kurone-kito/commitlint-config' diff --git a/.github/workflows/push-feature.yml b/.github/workflows/push-feature.yml index 495ffea..a88dde2 100644 --- a/.github/workflows/push-feature.yml +++ b/.github/workflows/push-feature.yml @@ -27,10 +27,14 @@ jobs: - name: Prepare the Node.js version ${{ matrix.node-version }} environment uses: actions/setup-node@v4 with: - cache: ${{ !env.ACT && 'yarn' || '' }} node-version: ${{ matrix.node-version }} - name: Enable the corepack because of the Yarn berry run: corepack enable + - name: Prepare the Node.js version ${{ matrix.node-version }} environment + uses: actions/setup-node@v4 + with: + cache: ${{ !env.ACT && 'yarn' || '' }} + node-version: ${{ matrix.node-version }} - env: HUSKY: 0 name: Install the dependencies diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c3a8dd5..858a01d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,10 +16,14 @@ jobs: - name: Prepare the Node.js environment uses: actions/setup-node@v4 with: - cache: ${{ !env.ACT && 'yarn' || '' }} node-version-file: .node-version - name: Enable the corepack because of the Yarn berry run: corepack enable + - name: Prepare the Node.js environment + uses: actions/setup-node@v4 + with: + cache: ${{ !env.ACT && 'yarn' || '' }} + node-version-file: .node-version - env: HUSKY: 0 name: Install the dependencies diff --git a/.gitignore b/.gitignore index 46ce4b0..31ce3db 100644 --- a/.gitignore +++ b/.gitignore @@ -310,6 +310,7 @@ $RECYCLE.BIN/ ### Node ### # Built files +packages/commitlint-config/.commitlintrc.json packages/cspell-config/cspell.config.json packages/eslint-config-*/.eslintrc.json packages/lint-staged-config/lint-staged.config.json diff --git a/.node-version b/.node-version index 87ec884..a9d0873 100644 --- a/.node-version +++ b/.node-version @@ -1 +1 @@ -18.18.2 +18.19.0 diff --git a/.nvmrc b/.nvmrc index fcf3475..62fe258 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1,3 +1,3 @@ -18.18.2 +18.19.0 lts/hydrogen node diff --git a/.tool-versions b/.tool-versions index 9dbd8ec..45e8ca2 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1 +1 @@ -nodejs 18.18.2 ref:v18.18.2 lts-hydrogen lts latest system +nodejs 18.19.0 ref:v18.19.0 lts-hydrogen lts latest system diff --git a/.yarn/sdks/eslint/package.json b/.yarn/sdks/eslint/package.json index d65ecf3..302d1fe 100644 --- a/.yarn/sdks/eslint/package.json +++ b/.yarn/sdks/eslint/package.json @@ -1,6 +1,6 @@ { "name": "eslint", - "version": "8.53.0-sdk", + "version": "8.55.0-sdk", "main": "./lib/api.js", "type": "commonjs", "bin": { diff --git a/.yarn/sdks/prettier/package.json b/.yarn/sdks/prettier/package.json index 48cd959..c61f511 100644 --- a/.yarn/sdks/prettier/package.json +++ b/.yarn/sdks/prettier/package.json @@ -1,6 +1,6 @@ { "name": "prettier", - "version": "3.0.3-sdk", + "version": "3.1.0-sdk", "main": "./index.cjs", "type": "commonjs", "bin": "./bin/prettier.cjs" diff --git a/.yarn/sdks/typescript/package.json b/.yarn/sdks/typescript/package.json index d32f391..bc10fac 100644 --- a/.yarn/sdks/typescript/package.json +++ b/.yarn/sdks/typescript/package.json @@ -1,6 +1,6 @@ { "name": "typescript", - "version": "5.2.2-sdk", + "version": "5.3.2-sdk", "main": "./lib/typescript.js", "type": "commonjs", "bin": { diff --git a/README.md b/README.md index 100c38c..4addf31 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,7 @@ My configuration for the ESLint / Prettier / TypeScript ## Structure of the monorepo +- [`packages/commitlint-config`](packages/commitlint-config/README.md): My commitlint configuration for general projects. - [`packages/cspell-config`](packages/cspell-config/README.md): My CSpell configuration for general projects. - [`packages/eslint-config-base`](packages/eslint-config-base/README.md): My ESLint configuration for general projects. - [`packages/eslint-config-react`](packages/eslint-config-base/README.md): My ESLint configuration for React projects. diff --git a/package.json b/package.json index ae917dd..30aae77 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@kurone-kito/lints-config", - "version": "0.8.1", + "version": "0.8.2", "private": true, "description": "My configuration for the ESLint / Prettier / TypeScript", "keywords": [ @@ -27,7 +27,7 @@ "scripts": { "build": "yarn run sub run build", "clean": "conc \"yarn:clean:*\"", - "clean:root": "rimraf -g \".eslintcache\" \"*.tgz\" \"*.tsbuildinfo\" \"undefined\"", + "clean:root": "rimraf -g .eslintcache \"*.tgz\" \"*.tsbuildinfo\"", "clean:sub": "yarn run sub run clean", "commit": "aicommits -t conventional", "postinstall": "husky install", @@ -46,25 +46,26 @@ }, "prettier": "@kurone-kito/prettier-config", "devDependencies": { - "@commitlint/cli": "^18.4.1", - "@commitlint/config-conventional": "^18.4.0", - "@cspell/cspell-types": "^8.0.0", - "@cspell/eslint-plugin": "^8.0.0", + "@commitlint/cli": "^18.4.3", + "@commitlint/config-conventional": "^18.4.3", + "@cspell/cspell-types": "^8.1.0", + "@cspell/eslint-plugin": "^8.1.0", + "@kurone-kito/commitlint-config": "workspace:*", "@kurone-kito/cspell-config": "workspace:*", "@kurone-kito/eslint-config-base": "workspace:*", "@kurone-kito/eslint-config-react": "workspace:*", "@kurone-kito/lint-staged-config": "workspace:*", "@kurone-kito/prettier-config": "workspace:*", "@kurone-kito/typescript-config": "workspace:*", - "@typescript-eslint/eslint-plugin": "^6.10.0", - "@typescript-eslint/parser": "^6.10.0", - "@yarnpkg/sdks": "^3.0.0", + "@typescript-eslint/eslint-plugin": "^6.13.1", + "@typescript-eslint/parser": "^6.13.1", + "@yarnpkg/sdks": "^3.1.0", "aicommits": "^1.11.0", "concurrently": "^8.2.2", - "cspell": "^8.0.0", - "eslint": "^8.53.0", + "cspell": "^8.1.0", + "eslint": "^8.55.0", "eslint-config-airbnb-typescript": "^17.1.0", - "eslint-config-prettier": "^9.0.0", + "eslint-config-prettier": "^9.1.0", "eslint-formatter-codeframe": "^7.32.1", "eslint-import-resolver-node": "^0.3.9", "eslint-import-resolver-typescript": "^3.6.1", @@ -79,12 +80,12 @@ "eslint-plugin-yaml": "^0.5.0", "husky": "^8.0.3", "lint-staged": "^15.1.0", - "prettier": "^3.0.3", + "prettier": "^3.1.0", "rimraf": "^5.0.5", - "typescript": "~5.2.2", + "typescript": "~5.3.2", "typescript-eslint-language-service": "^5.0.5" }, - "packageManager": "yarn@4.0.1", + "packageManager": "yarn@4.0.2", "engines": { "node": ">=18" }, diff --git a/packages/commitlint-config/.commitlintrc.yml b/packages/commitlint-config/.commitlintrc.yml new file mode 100644 index 0000000..2a35233 --- /dev/null +++ b/packages/commitlint-config/.commitlintrc.yml @@ -0,0 +1,23 @@ +extends: + - '@commitlint/config-conventional' +rules: + # Permission to capitalize the first letter of the body text is granted + # with a warning; the default rule for Conventional Commits prohibits it. + # In English commits, it is common for the subject to be a verb, as in + # `added the ...` in Japanese commits, however, nouns are commonly used + # as the subject, and prohibiting this may result in unnatural commit + # messages in Japanese. + body-case: + - 1 + - always + - lower-case + # Permits capitalization of the first letter of the main text with a + # warning; the default rule for Conventional Commits prohibits it. In + # English commits, it is common for the subject to be a verb, as in + # `added the ...` In Japanese commits, however, nouns are commonly used + # as the subject, and prohibiting this may result in unnatural commit + # messages in Japanese. + subject-case: + - 1 + - always + - lower-case diff --git a/packages/commitlint-config/README.md b/packages/commitlint-config/README.md new file mode 100644 index 0000000..3a23270 --- /dev/null +++ b/packages/commitlint-config/README.md @@ -0,0 +1,24 @@ +# `@kurone-kito/commitlint-config` + +My commitlint configuration for general Node.js projects. + +## Usage + +First, install this package and its peer dependencies: + +```sh +npm install --save-dev \ + @commitlint/config-conventional \ + @kurone-kito/commitlint-config +``` + +Then, create a `.commitlintrc.yml` file. If exists, merge the following configuration into it: + +```yaml +extends: + - '@kurone-kito/commitlint-config' +``` + +## License + +MIT diff --git a/packages/commitlint-config/package.json b/packages/commitlint-config/package.json new file mode 100644 index 0000000..2c31d45 --- /dev/null +++ b/packages/commitlint-config/package.json @@ -0,0 +1,54 @@ +{ + "name": "@kurone-kito/commitlint-config", + "version": "0.8.2", + "description": "My commitlint configuration for general projects", + "keywords": [ + "commitlint", + "config" + ], + "homepage": "https://github.com/kurone-kito/lints-config#readme", + "bugs": "https://github.com/kurone-kito/lints-config/issues", + "repository": { + "type": "git", + "url": "https://github.com/kurone-kito/lints-config.git", + "directory": "packages/commitlint-config" + }, + "license": "MIT", + "author": "kurone-kito (https://kit.black/)", + "type": "module", + "exports": { + ".": "./.commitlintrc.json", + "./.commitlintrc.json": "./.commitlintrc.json", + "./.commitlintrc.yml": "./.commitlintrc.yml" + }, + "main": ".commitlintrc.json", + "module": ".commitlintrc.json", + "files": [ + ".commitlintrc.*" + ], + "scripts": { + "build": "conc \"yarn:build:*\"", + "build:json": "js-yaml .commitlintrc.yml > .commitlintrc.json", + "build:license": "cpy \"../../LICENSE\" \"cspell-config/LICENSE\"", + "clean": "rimraf -g LICENSE .commitlintrc.json \"*.tgz\"", + "prepack": "conc -m 1 \"yarn:clean\" \"yarn:build\"" + }, + "devDependencies": { + "@commitlint/config-conventional": "^18.4.3", + "concurrently": "^8.2.2", + "cpy-cli": "^5.0.0", + "js-yaml": "^4.1.0", + "rimraf": "^5.0.5" + }, + "peerDependenciesMeta": { + "@commitlint/config-conventional": { + "optional": true + } + }, + "engines": { + "node": ">=18" + }, + "publishConfig": { + "access": "public" + } +} diff --git a/packages/cspell-config/package.json b/packages/cspell-config/package.json index 36f5859..2c2ad8b 100644 --- a/packages/cspell-config/package.json +++ b/packages/cspell-config/package.json @@ -1,6 +1,6 @@ { "name": "@kurone-kito/cspell-config", - "version": "0.8.1", + "version": "0.8.2", "description": "My CSpell configuration for general projects", "keywords": [ "config", @@ -37,14 +37,14 @@ "build": "conc \"yarn:build:*\"", "build:json": "js-yaml cspell.config.yml > cspell.config.json", "build:license": "cpy \"../../LICENSE\" \"cspell-config/LICENSE\"", - "clean": "rimraf -g \"cspell.config.json\" \"*.tgz\" \"undefined\"", + "clean": "rimraf -g LICENSE cspell.config.json \"*.tgz\"", "prepack": "conc -m 1 \"yarn:clean\" \"yarn:build\"" }, "devDependencies": { - "@cspell/cspell-types": "^8.0.0", + "@cspell/cspell-types": "^8.1.0", "concurrently": "^8.2.2", "cpy-cli": "^5.0.0", - "cspell": "^8.0.0", + "cspell": "^8.1.0", "js-yaml": "^4.1.0", "rimraf": "^5.0.5" }, diff --git a/packages/eslint-config-base/package.json b/packages/eslint-config-base/package.json index fc4707d..73df584 100644 --- a/packages/eslint-config-base/package.json +++ b/packages/eslint-config-base/package.json @@ -1,6 +1,6 @@ { "name": "@kurone-kito/eslint-config-base", - "version": "0.8.1", + "version": "0.8.2", "description": "My ESLint configuration for general Node.js projects", "keywords": [ "config", @@ -32,20 +32,20 @@ "build": "conc \"yarn:build:*\"", "build:json": "js-yaml .eslintrc.yml > .eslintrc.json", "build:license": "cpy \"../../LICENSE\" \"eslint-config-base/LICENSE\"", - "clean": "rimraf -g \".eslintcache\" \".eslintrc.json\" \"*.tgz\" \"*.tsbuildinfo\" \"undefined\"", + "clean": "rimraf -g .eslintcache .eslintrc.json LICENSE \"*.tgz\" \"*.tsbuildinfo\"", "prepack": "conc -m 1 \"yarn:clean\" \"yarn:build\"" }, "prettier": "@kurone-kito/prettier-config", "devDependencies": { - "@cspell/eslint-plugin": "^8.0.0", + "@cspell/eslint-plugin": "^8.1.0", "@kurone-kito/prettier-config": "workspace:*", - "@typescript-eslint/eslint-plugin": "^6.10.0", - "@typescript-eslint/parser": "^6.10.0", + "@typescript-eslint/eslint-plugin": "^6.13.1", + "@typescript-eslint/parser": "^6.13.1", "concurrently": "^8.2.2", "cpy-cli": "^5.0.0", - "eslint": "^8.53.0", + "eslint": "^8.55.0", "eslint-config-airbnb-typescript": "^17.1.0", - "eslint-config-prettier": "^9.0.0", + "eslint-config-prettier": "^9.1.0", "eslint-formatter-codeframe": "^7.32.1", "eslint-import-resolver-node": "^0.3.9", "eslint-import-resolver-typescript": "^3.6.1", @@ -58,9 +58,9 @@ "eslint-plugin-node": "^11.1.0", "eslint-plugin-yaml": "^0.5.0", "js-yaml": "^4.1.0", - "prettier": "^3.0.3", + "prettier": "^3.1.0", "rimraf": "^5.0.5", - "typescript": "~5.2.2" + "typescript": "~5.3.2" }, "peerDependencies": { "@cspell/eslint-plugin": ">=6.x.x", diff --git a/packages/eslint-config-react/package.json b/packages/eslint-config-react/package.json index 7d27d28..b1ce5d6 100644 --- a/packages/eslint-config-react/package.json +++ b/packages/eslint-config-react/package.json @@ -1,6 +1,6 @@ { "name": "@kurone-kito/eslint-config-react", - "version": "0.8.1", + "version": "0.8.2", "description": "My ESLint configuration for React projects", "keywords": [ "config", @@ -33,7 +33,7 @@ "build": "conc \"yarn:build:*\"", "build:json": "js-yaml .eslintrc.yml > .eslintrc.json", "build:license": "cpy \"../../LICENSE\" \"eslint-config-react/LICENSE\"", - "clean": "rimraf -g \".eslintcache\" \".eslintrc.json\" \"*.tgz\" \"*.tsbuildinfo\" \"undefined\"", + "clean": "rimraf -g .eslintcache .eslintrc.json LICENSE \"*.tgz\" \"*.tsbuildinfo\"", "prepack": "conc -m 1 \"yarn:clean\" \"yarn:build\"" }, "prettier": "@kurone-kito/prettier-config", @@ -41,15 +41,15 @@ "@kurone-kito/eslint-config-base": "workspace:*" }, "devDependencies": { - "@cspell/eslint-plugin": "^8.0.0", + "@cspell/eslint-plugin": "^8.1.0", "@kurone-kito/prettier-config": "workspace:*", - "@typescript-eslint/eslint-plugin": "^6.10.0", - "@typescript-eslint/parser": "^6.10.0", + "@typescript-eslint/eslint-plugin": "^6.13.1", + "@typescript-eslint/parser": "^6.13.1", "concurrently": "^8.2.2", "cpy-cli": "^5.0.0", - "eslint": "^8.53.0", + "eslint": "^8.55.0", "eslint-config-airbnb-typescript": "^17.1.0", - "eslint-config-prettier": "^9.0.0", + "eslint-config-prettier": "^9.1.0", "eslint-formatter-codeframe": "^7.32.1", "eslint-import-resolver-node": "^0.3.9", "eslint-import-resolver-typescript": "^3.6.1", @@ -66,9 +66,9 @@ "eslint-plugin-storybook": "^0.6.15", "eslint-plugin-yaml": "^0.5.0", "js-yaml": "^4.1.0", - "prettier": "^3.0.3", + "prettier": "^3.1.0", "rimraf": "^5.0.5", - "typescript": "~5.2.2" + "typescript": "~5.3.2" }, "peerDependencies": { "@cspell/eslint-plugin": ">=6.x.x", diff --git a/packages/lint-staged-config/package.json b/packages/lint-staged-config/package.json index 81fc40b..45915b2 100644 --- a/packages/lint-staged-config/package.json +++ b/packages/lint-staged-config/package.json @@ -1,6 +1,6 @@ { "name": "@kurone-kito/lint-staged-config", - "version": "0.8.1", + "version": "0.8.2", "description": "My lint-staged configuration for general projects", "keywords": [ "config", @@ -35,7 +35,7 @@ "build": "conc \"yarn:build:*\"", "build:json": "js-yaml lint-staged.config.yml > lint-staged.config.json", "build:license": "cpy \"../../LICENSE\" \"cspell-config/LICENSE\"", - "clean": "rimraf -g \"lint-staged.config.json\" \"*.tgz\"", + "clean": "rimraf -g LICENSE lint-staged.config.json \"*.tgz\"", "prepack": "conc -m 1 \"yarn:clean\" \"yarn:build\"" }, "devDependencies": { diff --git a/packages/prettier-config/package.json b/packages/prettier-config/package.json index 03600d7..a2d4071 100644 --- a/packages/prettier-config/package.json +++ b/packages/prettier-config/package.json @@ -1,6 +1,6 @@ { "name": "@kurone-kito/prettier-config", - "version": "0.8.1", + "version": "0.8.2", "description": "My Prettier configuration for general projects", "keywords": [ "config", @@ -32,7 +32,7 @@ "build": "conc \"yarn:build:*\"", "build:json": "js-yaml .prettierrc.yml > .prettierrc.json", "build:license": "cpy \"../../LICENSE\" \"prettier-config/LICENSE\"", - "clean": "rimraf -g \".prettierrc.json\" \"*.tgz\" \"undefined\"", + "clean": "rimraf -g .prettierrc.json LICENSE \"*.tgz\"", "lint": "yarn run prettier -cu", "lint:fix": "yarn run prettier -uw", "prepack": "conc -m 1 \"yarn:clean\" \"yarn:build\"", @@ -42,7 +42,7 @@ "concurrently": "^8.2.2", "cpy-cli": "^5.0.0", "js-yaml": "^4.1.0", - "prettier": "^3.0.3", + "prettier": "^3.1.0", "rimraf": "^5.0.5" }, "peerDependencies": { diff --git a/packages/typescript-config/package.json b/packages/typescript-config/package.json index 2274257..3ba781d 100644 --- a/packages/typescript-config/package.json +++ b/packages/typescript-config/package.json @@ -1,6 +1,6 @@ { "name": "@kurone-kito/typescript-config", - "version": "0.8.1", + "version": "0.8.2", "description": "My TypeScript configuration for general projects", "keywords": [ "config", @@ -28,17 +28,17 @@ "tsconfig.json" ], "scripts": { - "clean": "rimraf -g \"*.tgz\" \"*.tsbuildinfo\" LICENSE undefined", + "clean": "rimraf -g LICENSE \"*.tgz\" \"*.tsbuildinfo\"", "prepack": "cpy \"../../LICENSE\" \"typescript-config/LICENSE\"" }, "prettier": "@kurone-kito/prettier-config", "devDependencies": { "@kurone-kito/prettier-config": "workspace:*", - "@typescript-eslint/parser": "^6.10.0", + "@typescript-eslint/parser": "^6.13.1", "cpy-cli": "^5.0.0", - "eslint": "^8.53.0", - "prettier": "^3.0.3", - "typescript": "~5.2.2", + "eslint": "^8.55.0", + "prettier": "^3.1.0", + "typescript": "~5.3.2", "typescript-eslint-language-service": "^5.0.5" }, "peerDependencies": { diff --git a/yarn.lock b/yarn.lock index 00ea1ae..49f4e48 100644 --- a/yarn.lock +++ b/yarn.lock @@ -48,34 +48,34 @@ __metadata: linkType: hard "@babel/highlight@npm:^7.10.4, @babel/highlight@npm:^7.22.13": - version: 7.22.20 - resolution: "@babel/highlight@npm:7.22.20" + version: 7.23.4 + resolution: "@babel/highlight@npm:7.23.4" dependencies: "@babel/helper-validator-identifier": "npm:^7.22.20" chalk: "npm:^2.4.2" js-tokens: "npm:^4.0.0" - checksum: 1aabc95b2cb7f67adc26c7049554306f1435bfedb76b9731c36ff3d7cdfcb32bd65a6dd06985644124eb2100bd911721d9e5c4f5ac40b7f0da2995a61bf8da92 + checksum: 62fef9b5bcea7131df4626d009029b1ae85332042f4648a4ce6e740c3fd23112603c740c45575caec62f260c96b11054d3be5987f4981a5479793579c3aac71f languageName: node linkType: hard "@babel/runtime@npm:^7.21.0, @babel/runtime@npm:^7.23.2": - version: 7.23.2 - resolution: "@babel/runtime@npm:7.23.2" + version: 7.23.5 + resolution: "@babel/runtime@npm:7.23.5" dependencies: regenerator-runtime: "npm:^0.14.0" - checksum: abdcbdd590c7e31762e1bdab94dd466823c8bcedd3ff2fde85eeb94dac7cccaef151ac37c428bda7018ededd27c9a82b4dfeb621f978ad934232475a902f8e3a + checksum: 0f1669f639af30a0a2948ffcefa2c61935f337b0777bd94f8d7bc66bba8e7d4499e725caeb0449540d9c6d67399b733c4e719babb43ce9a0f33095aa01b42b37 languageName: node linkType: hard -"@commitlint/cli@npm:^18.4.1": - version: 18.4.1 - resolution: "@commitlint/cli@npm:18.4.1" +"@commitlint/cli@npm:^18.4.3": + version: 18.4.3 + resolution: "@commitlint/cli@npm:18.4.3" dependencies: - "@commitlint/format": "npm:^18.4.0" - "@commitlint/lint": "npm:^18.4.0" - "@commitlint/load": "npm:^18.4.1" - "@commitlint/read": "npm:^18.4.0" - "@commitlint/types": "npm:^18.4.0" + "@commitlint/format": "npm:^18.4.3" + "@commitlint/lint": "npm:^18.4.3" + "@commitlint/load": "npm:^18.4.3" + "@commitlint/read": "npm:^18.4.3" + "@commitlint/types": "npm:^18.4.3" execa: "npm:^5.0.0" lodash.isfunction: "npm:^3.0.9" resolve-from: "npm:5.0.0" @@ -83,90 +83,90 @@ __metadata: yargs: "npm:^17.0.0" bin: commitlint: cli.js - checksum: 08354788971437ef6b4693564d1a0476b0f89ce89f9d0257f7885af525904c1ba2a0dafa7321d635bc7a034ea4dbef978f5b662ef524d545ec8e8db98888b54b + checksum: 45f469eb53484a707fe97a48784ef92af75bd831a208ccc4c1d747c9b449f3a180dcdeb29bb9f2f0a6f0691403a1021cd36a762fe2a17f4c254f25f1332f677f languageName: node linkType: hard -"@commitlint/config-conventional@npm:^18.4.0": - version: 18.4.0 - resolution: "@commitlint/config-conventional@npm:18.4.0" +"@commitlint/config-conventional@npm:^18.4.3": + version: 18.4.3 + resolution: "@commitlint/config-conventional@npm:18.4.3" dependencies: conventional-changelog-conventionalcommits: "npm:^7.0.2" - checksum: d9101033e13bb5caee0c6691675c2bb8f3d374ad24a19dd29a25d6c81702b5cf549d06b3a1238b53aeae5bf00c6072c61fd6f7370c40b3506c2d0f84f8038bc9 + checksum: bb6c1559979002e79c5e7c575f57fd713638523cdadfa61754eaabb8aad042d688c859e82ccf58589bb9aa2a4497e820702744095c9b82f6018fbb3b5d75d08d languageName: node linkType: hard -"@commitlint/config-validator@npm:^18.4.0": - version: 18.4.0 - resolution: "@commitlint/config-validator@npm:18.4.0" +"@commitlint/config-validator@npm:^18.4.3": + version: 18.4.3 + resolution: "@commitlint/config-validator@npm:18.4.3" dependencies: - "@commitlint/types": "npm:^18.4.0" + "@commitlint/types": "npm:^18.4.3" ajv: "npm:^8.11.0" - checksum: 7bca5f64b4fa4f198e1af5884ec2e43983b5254e4813e6d05cdfd209f1bca30ff6e4dd79c4d94e35dd7e7ed696dddc1af785712349b66ab272733185600da1a4 + checksum: e56aa321aa4f680ed78822f974e724e27c005c6c6b910ff59c3a2b0220c97ff4291e316674637ec28da6f8234952e2d20673d9851e049913474e8f24b4e2d376 languageName: node linkType: hard -"@commitlint/ensure@npm:^18.4.0": - version: 18.4.0 - resolution: "@commitlint/ensure@npm:18.4.0" +"@commitlint/ensure@npm:^18.4.3": + version: 18.4.3 + resolution: "@commitlint/ensure@npm:18.4.3" dependencies: - "@commitlint/types": "npm:^18.4.0" + "@commitlint/types": "npm:^18.4.3" lodash.camelcase: "npm:^4.3.0" lodash.kebabcase: "npm:^4.1.1" lodash.snakecase: "npm:^4.1.1" lodash.startcase: "npm:^4.4.0" lodash.upperfirst: "npm:^4.3.1" - checksum: 84bc79e2636b5151a950d7c9b8dbe89da1565d570fd91e5f96d09dc23db7bb39cc57612eb26a706b51f43418ebb757b393275ae6a7da9a582665478432e8273d + checksum: 5c8c437ffef5b0d241a02d1c8967324765429d27e2ae882feb4fc96f53472e4c8d6ea6d86a64da7c97dd7efac07bc1f1c2a8babc1bbb56db48152a4f26f2ba69 languageName: node linkType: hard -"@commitlint/execute-rule@npm:^18.4.0": - version: 18.4.0 - resolution: "@commitlint/execute-rule@npm:18.4.0" - checksum: f1ce672f7102aeabd52bdef78b6b523bb0d7095951888e29fc61cc3e77508df557b863f7e66ea2bc11c14de6f647374cd200d22ea07579821523eff66ccf5880 +"@commitlint/execute-rule@npm:^18.4.3": + version: 18.4.3 + resolution: "@commitlint/execute-rule@npm:18.4.3" + checksum: 0f0e99e2f079872efe39915313f7d353a36dfac4432bb74ac60a526ca3c9b7bb55365a2e4627f99f4be3fb8ac4c6e745adcacfbdcbf940418f101ffaa10d5ae3 languageName: node linkType: hard -"@commitlint/format@npm:^18.4.0": - version: 18.4.0 - resolution: "@commitlint/format@npm:18.4.0" +"@commitlint/format@npm:^18.4.3": + version: 18.4.3 + resolution: "@commitlint/format@npm:18.4.3" dependencies: - "@commitlint/types": "npm:^18.4.0" + "@commitlint/types": "npm:^18.4.3" chalk: "npm:^4.1.0" - checksum: ed19b16065f6163c8908bc242daee34610c869a62d9fa34f35ccf4dd97eae78cdcc7b36b12756cd94667d79c0a7ca2bd96b33594d0ab7d0faef57c49cb0e4097 + checksum: 244515c99e60ce1e2c4106ee076554a082ab3655225c59c2bb4fab412f47e1d5e44c5e72a9b8907996eb947243f913347d20640a8da9c01b52e4cf247f1a9f94 languageName: node linkType: hard -"@commitlint/is-ignored@npm:^18.4.0": - version: 18.4.0 - resolution: "@commitlint/is-ignored@npm:18.4.0" +"@commitlint/is-ignored@npm:^18.4.3": + version: 18.4.3 + resolution: "@commitlint/is-ignored@npm:18.4.3" dependencies: - "@commitlint/types": "npm:^18.4.0" + "@commitlint/types": "npm:^18.4.3" semver: "npm:7.5.4" - checksum: 2194e2dacbe8097b049c2d4251de4db6d09067daad5a6e7dc66d9d6afb92ef495f888055fd3eb05fd736ee5c85575092ca4b880563abde9f76c85cf37fc6e680 + checksum: 01fd386bea9634dc7cee2a3f8f9916f4dabf9d3043d838b8ea3328ec622a777c4c637f4a80b639289e38429496535561cc7398b36e880b73fcc819d4f1427fb9 languageName: node linkType: hard -"@commitlint/lint@npm:^18.4.0": - version: 18.4.0 - resolution: "@commitlint/lint@npm:18.4.0" +"@commitlint/lint@npm:^18.4.3": + version: 18.4.3 + resolution: "@commitlint/lint@npm:18.4.3" dependencies: - "@commitlint/is-ignored": "npm:^18.4.0" - "@commitlint/parse": "npm:^18.4.0" - "@commitlint/rules": "npm:^18.4.0" - "@commitlint/types": "npm:^18.4.0" - checksum: b7e2240f597f3c32f6b9bce0108cdf85db1ad1cf4f148ef4d1e6aa7d1c666c3d570ab05956c916115000b82c9e78580cae7c4ee738ea5eb31e966b51e91e4998 + "@commitlint/is-ignored": "npm:^18.4.3" + "@commitlint/parse": "npm:^18.4.3" + "@commitlint/rules": "npm:^18.4.3" + "@commitlint/types": "npm:^18.4.3" + checksum: 800eba031df61addb7a8c36e8bb9e5585387eaa559d0156e74e591267462b7511cf4e051fb95ca54331624ed862a9f786282de57b93acc80b0bc552b5cb96028 languageName: node linkType: hard -"@commitlint/load@npm:^18.4.1": - version: 18.4.1 - resolution: "@commitlint/load@npm:18.4.1" +"@commitlint/load@npm:^18.4.3": + version: 18.4.3 + resolution: "@commitlint/load@npm:18.4.3" dependencies: - "@commitlint/config-validator": "npm:^18.4.0" - "@commitlint/execute-rule": "npm:^18.4.0" - "@commitlint/resolve-extends": "npm:^18.4.0" - "@commitlint/types": "npm:^18.4.0" + "@commitlint/config-validator": "npm:^18.4.3" + "@commitlint/execute-rule": "npm:^18.4.3" + "@commitlint/resolve-extends": "npm:^18.4.3" + "@commitlint/types": "npm:^18.4.3" "@types/node": "npm:^18.11.9" chalk: "npm:^4.1.0" cosmiconfig: "npm:^8.3.6" @@ -175,102 +175,102 @@ __metadata: lodash.merge: "npm:^4.6.2" lodash.uniq: "npm:^4.5.0" resolve-from: "npm:^5.0.0" - checksum: 77cb8b02c39fd0a28214cea898811100b1b0c33047914a9294df862ad0c75965b3000ddb1806a5e89054141ce5217419b419d5d3d9bcf757e904f34b530d7474 + checksum: 8fb8652f00f739c75493d3c805d5cc09e5bef8398eff26b9fbfd8d2be2b6a47758bab72650a3ab5202427c9e1936ea36270c40aca39f87fade38c7293194ee21 languageName: node linkType: hard -"@commitlint/message@npm:^18.4.0": - version: 18.4.0 - resolution: "@commitlint/message@npm:18.4.0" - checksum: 8d568fb78a860abd3c19e792e319f14fdbba0708593c3f9243047e8637cbae5d130a632dfa9513595510f2b0512e14f2abb4a4972760df6372273a3b45264db7 +"@commitlint/message@npm:^18.4.3": + version: 18.4.3 + resolution: "@commitlint/message@npm:18.4.3" + checksum: b81d59f5a295d0cffbab0edd212b1fa4cdd4fd05cc242bc95d6919c038be9d7022db2d6c0d8132c2910ee409cdce5ce6e472e12ac9bb2d3f6acb7a3db7bbeb99 languageName: node linkType: hard -"@commitlint/parse@npm:^18.4.0": - version: 18.4.0 - resolution: "@commitlint/parse@npm:18.4.0" +"@commitlint/parse@npm:^18.4.3": + version: 18.4.3 + resolution: "@commitlint/parse@npm:18.4.3" dependencies: - "@commitlint/types": "npm:^18.4.0" - conventional-changelog-angular: "npm:^6.0.0" + "@commitlint/types": "npm:^18.4.3" + conventional-changelog-angular: "npm:^7.0.0" conventional-commits-parser: "npm:^5.0.0" - checksum: 32bc327a75aa353577ba998e97dc64a626e7e321c6e9df7ee5343fb08cfb1a635078060a5342fd5b48185e4734ee9302529615ad6991fafa729135329dfaa215 + checksum: 696c60ecee20f9bfb5e19715ae777aca8e86b133ef709a66171c228b4f618ef15ba515e11274c46ff13df964ba69ab1ddec4055ddce1bc0a69f70b6d2301ccd5 languageName: node linkType: hard -"@commitlint/read@npm:^18.4.0": - version: 18.4.0 - resolution: "@commitlint/read@npm:18.4.0" +"@commitlint/read@npm:^18.4.3": + version: 18.4.3 + resolution: "@commitlint/read@npm:18.4.3" dependencies: - "@commitlint/top-level": "npm:^18.4.0" - "@commitlint/types": "npm:^18.4.0" + "@commitlint/top-level": "npm:^18.4.3" + "@commitlint/types": "npm:^18.4.3" fs-extra: "npm:^11.0.0" git-raw-commits: "npm:^2.0.11" minimist: "npm:^1.2.6" - checksum: 8efac84f30cb45c7a1c56b51537758398f353302bc5532615a2db32ccf78da99c3d070123dd6703a7fea1d4839e85b65275cd7e526fc70a3eb0c20ec77edc165 + checksum: ebc815effe4920c769f879947608c367b452f334d9a8e8c3140b7685920bb4ba092d36c5416781522c2e50178a4b91092c5661044c13a0d62dace60091f39706 languageName: node linkType: hard -"@commitlint/resolve-extends@npm:^18.4.0": - version: 18.4.0 - resolution: "@commitlint/resolve-extends@npm:18.4.0" +"@commitlint/resolve-extends@npm:^18.4.3": + version: 18.4.3 + resolution: "@commitlint/resolve-extends@npm:18.4.3" dependencies: - "@commitlint/config-validator": "npm:^18.4.0" - "@commitlint/types": "npm:^18.4.0" + "@commitlint/config-validator": "npm:^18.4.3" + "@commitlint/types": "npm:^18.4.3" import-fresh: "npm:^3.0.0" lodash.mergewith: "npm:^4.6.2" resolve-from: "npm:^5.0.0" resolve-global: "npm:^1.0.0" - checksum: cc734f73a438b93ec14fe0fdc7476e374ecb71a1bba8c6ca0ac1d2e7578a5b1c3fb474d4fd355205dde1c07d09905f8a2a1014ca2a3f0757bf3184040a850bab + checksum: ef321ae425385e720763019a1dcf39b5daf65a661f6af43d69b7aad04eda21ce43487c7552b65f5611c96b45bfefabe63c9eaef20352f223812b5c9d489a600a languageName: node linkType: hard -"@commitlint/rules@npm:^18.4.0": - version: 18.4.0 - resolution: "@commitlint/rules@npm:18.4.0" +"@commitlint/rules@npm:^18.4.3": + version: 18.4.3 + resolution: "@commitlint/rules@npm:18.4.3" dependencies: - "@commitlint/ensure": "npm:^18.4.0" - "@commitlint/message": "npm:^18.4.0" - "@commitlint/to-lines": "npm:^18.4.0" - "@commitlint/types": "npm:^18.4.0" + "@commitlint/ensure": "npm:^18.4.3" + "@commitlint/message": "npm:^18.4.3" + "@commitlint/to-lines": "npm:^18.4.3" + "@commitlint/types": "npm:^18.4.3" execa: "npm:^5.0.0" - checksum: ca01def7ead8835c77dbb00d9827b708b6e035de89f89793039e157a96748dbe4ad64d8a1aa930ea6b8071165439f6ca45e473839f757dc64bf644423f4d1e1c + checksum: 857c66c1e4d2d24bb3f07a16576626ac27d103ff589afe59ea36d84276c62bd49005ed2e81f43cb430bbd29eb86eb23ebbfec9c58796654249f0064802b9eb62 languageName: node linkType: hard -"@commitlint/to-lines@npm:^18.4.0": - version: 18.4.0 - resolution: "@commitlint/to-lines@npm:18.4.0" - checksum: cb695da0b77fc13210353273bb99553d4e7804a7365d8424021851e89a4123744c3b5bd24e45bec5f2b70e0229dc21e7e49b966fc49973ebe70a4bcf7b68df41 +"@commitlint/to-lines@npm:^18.4.3": + version: 18.4.3 + resolution: "@commitlint/to-lines@npm:18.4.3" + checksum: c9d47868284168fbe94764a2abe3526010bd2d43fa9a7ac3946648408998efc1279827299346042d019120eb8f5692cc5a5c12159f8da49585e4c885c2e628a6 languageName: node linkType: hard -"@commitlint/top-level@npm:^18.4.0": - version: 18.4.0 - resolution: "@commitlint/top-level@npm:18.4.0" +"@commitlint/top-level@npm:^18.4.3": + version: 18.4.3 + resolution: "@commitlint/top-level@npm:18.4.3" dependencies: find-up: "npm:^5.0.0" - checksum: 9b9ea05d7af393f0cd03c1f1060bde36820b3d0401bedc25c66687ae81c35014ee3c8bc99e206a1b5e8312da47ad51e0a7d40f2c6be31214f41e3f6411f1603f + checksum: b71581c9c485c2ca518b20021ed8d106ea6cd504453c9bed1436df2a620caec78a38bed1e3e8086c51e8b747a7ba6515569275ef29a6707349db6614cda70940 languageName: node linkType: hard -"@commitlint/types@npm:^18.4.0": - version: 18.4.0 - resolution: "@commitlint/types@npm:18.4.0" +"@commitlint/types@npm:^18.4.3": + version: 18.4.3 + resolution: "@commitlint/types@npm:18.4.3" dependencies: chalk: "npm:^4.1.0" - checksum: 1b92fa78055c28986317d9ec6a2c8eea70a6fa9b799bbb5ab5950d65c96e6c443ec92cbeae3201fd916fda93c51a827d5d8abfb0236d7b3c04fc1c58f4a27071 + checksum: 52dfc0ee835f3030fff25e45b4568e83eef818126a30f60860637c74de4919c5f9f1eab157622bb70facf9483f07898cfcb47efa484caf6443dd866942e460ec languageName: node linkType: hard -"@cspell/cspell-bundled-dicts@npm:8.0.0": - version: 8.0.0 - resolution: "@cspell/cspell-bundled-dicts@npm:8.0.0" +"@cspell/cspell-bundled-dicts@npm:8.1.0": + version: 8.1.0 + resolution: "@cspell/cspell-bundled-dicts@npm:8.1.0" dependencies: "@cspell/dict-ada": "npm:^4.0.2" "@cspell/dict-aws": "npm:^4.0.0" "@cspell/dict-bash": "npm:^4.1.2" - "@cspell/dict-companies": "npm:^3.0.27" - "@cspell/dict-cpp": "npm:^5.0.9" + "@cspell/dict-companies": "npm:^3.0.28" + "@cspell/dict-cpp": "npm:^5.0.10" "@cspell/dict-cryptocurrencies": "npm:^4.0.0" "@cspell/dict-csharp": "npm:^4.0.2" "@cspell/dict-css": "npm:^4.0.12" @@ -281,14 +281,14 @@ __metadata: "@cspell/dict-elixir": "npm:^4.0.3" "@cspell/dict-en-common-misspellings": "npm:^1.0.2" "@cspell/dict-en-gb": "npm:1.1.33" - "@cspell/dict-en_us": "npm:^4.3.11" - "@cspell/dict-filetypes": "npm:^3.0.2" + "@cspell/dict-en_us": "npm:^4.3.12" + "@cspell/dict-filetypes": "npm:^3.0.3" "@cspell/dict-fonts": "npm:^4.0.0" "@cspell/dict-fsharp": "npm:^1.0.1" "@cspell/dict-fullstack": "npm:^3.1.5" "@cspell/dict-gaming-terms": "npm:^1.0.4" "@cspell/dict-git": "npm:^2.0.0" - "@cspell/dict-golang": "npm:^6.0.4" + "@cspell/dict-golang": "npm:^6.0.5" "@cspell/dict-haskell": "npm:^4.0.1" "@cspell/dict-html": "npm:^4.0.5" "@cspell/dict-html-symbol-entities": "npm:^4.0.0" @@ -299,7 +299,7 @@ __metadata: "@cspell/dict-lua": "npm:^4.0.2" "@cspell/dict-makefile": "npm:^1.0.0" "@cspell/dict-node": "npm:^4.0.3" - "@cspell/dict-npm": "npm:^5.0.12" + "@cspell/dict-npm": "npm:^5.0.13" "@cspell/dict-php": "npm:^4.0.4" "@cspell/dict-powershell": "npm:^5.0.2" "@cspell/dict-public-licenses": "npm:^2.0.5" @@ -308,52 +308,52 @@ __metadata: "@cspell/dict-ruby": "npm:^5.0.1" "@cspell/dict-rust": "npm:^4.0.1" "@cspell/dict-scala": "npm:^5.0.0" - "@cspell/dict-software-terms": "npm:^3.3.9" + "@cspell/dict-software-terms": "npm:^3.3.11" "@cspell/dict-sql": "npm:^2.1.2" "@cspell/dict-svelte": "npm:^1.0.2" "@cspell/dict-swift": "npm:^2.0.1" "@cspell/dict-typescript": "npm:^3.1.2" "@cspell/dict-vue": "npm:^3.0.0" - checksum: 731ee7d9a53d7193491bfe9d8567fa4f4164b6f0687c18370db4d04bd970a46e7cee4c2ab06eb9f6163f2c55599a4b468bc048f675afdc5eaac7816da70375a5 + checksum: 505a96ca3e0cd563a939cb523290b7808c2dec9095d9397d869cbb73dc5bc877a3bcd0913d514a1a54c3fe49f017d32a7ad8fb141f7379eb10eb3cfc455556bb languageName: node linkType: hard -"@cspell/cspell-json-reporter@npm:8.0.0": - version: 8.0.0 - resolution: "@cspell/cspell-json-reporter@npm:8.0.0" +"@cspell/cspell-json-reporter@npm:8.1.0": + version: 8.1.0 + resolution: "@cspell/cspell-json-reporter@npm:8.1.0" dependencies: - "@cspell/cspell-types": "npm:8.0.0" - checksum: 0a39ef96b88b9e3b2e8aae8af432bb622f38a937b48645388f0822e4bf240de9282555da267f03518bd9621b521767898def96a27b5488fe2a7f54bfbf284566 + "@cspell/cspell-types": "npm:8.1.0" + checksum: 8c483f2915ce9cda3ec93d192771163a41de7686c4ebb0933d3f9b02e1d31580d7aa140bbb78a14a366e19c7384683ff29ca5a5c110657896eee2bf2cd22f61c languageName: node linkType: hard -"@cspell/cspell-pipe@npm:8.0.0": - version: 8.0.0 - resolution: "@cspell/cspell-pipe@npm:8.0.0" - checksum: 4bc5bf39cdf26c153e8aa79fb0c7f88078c789660205f99ba470a0822ff993e57dfdabc912cdebb5afb3c767e870a19b17215172114778b3535acd9cb78854ce +"@cspell/cspell-pipe@npm:8.1.0": + version: 8.1.0 + resolution: "@cspell/cspell-pipe@npm:8.1.0" + checksum: 7993392782a0bad50a2d657405a3a1f3b2c19a39d6b1abcf9572d3aacf72a2f6ca177c22c4ce57844270416d8080cef23ecfc7744c3d768182aa2b84071e54d7 languageName: node linkType: hard -"@cspell/cspell-resolver@npm:8.0.0": - version: 8.0.0 - resolution: "@cspell/cspell-resolver@npm:8.0.0" +"@cspell/cspell-resolver@npm:8.1.0": + version: 8.1.0 + resolution: "@cspell/cspell-resolver@npm:8.1.0" dependencies: - global-dirs: "npm:^3.0.1" - checksum: 4319c6de4550cdd0939e94b9079e4a4c192693d77d29127c296ab4aa341dead2fc1f0f968599d5e94c93695e1e4c9725a396374cc498a5f5d6b661e27dd1311f + global-directory: "npm:^4.0.1" + checksum: e481938217fecc2957e810f392d4a8310754fa6cc2742565cf7fcb22d32b6464cfa0bd1afc72b788cc8c789f6f0f62bf2837638ded92713e2191713925740cd6 languageName: node linkType: hard -"@cspell/cspell-service-bus@npm:8.0.0": - version: 8.0.0 - resolution: "@cspell/cspell-service-bus@npm:8.0.0" - checksum: 7fee54f2f55669910ecd0af38e95ac29616ed3d4e02afe768688091e9d323c41f943f8c241511192a713ffbf7e5a3ed7b77fbefc465c8f25205eaa124e2224bc +"@cspell/cspell-service-bus@npm:8.1.0": + version: 8.1.0 + resolution: "@cspell/cspell-service-bus@npm:8.1.0" + checksum: 88538f1f611cb681c263d52f16273c00173fa66773529d6db6c8446ba650254f16c621c2c87cc3ab40fe9d913a264b1096d3171ad6bbdb1d2c02853c39240f41 languageName: node linkType: hard -"@cspell/cspell-types@npm:8.0.0, @cspell/cspell-types@npm:^8.0.0": - version: 8.0.0 - resolution: "@cspell/cspell-types@npm:8.0.0" - checksum: bee0acff89a100d6478db19fc78cc74ea04ad9b4cc9b7c66738d5810ff2e5120c85a597cc9751984c3205da59d5176acd7dddb6efd5240458aacee8febb75680 +"@cspell/cspell-types@npm:8.1.0, @cspell/cspell-types@npm:^8.1.0": + version: 8.1.0 + resolution: "@cspell/cspell-types@npm:8.1.0" + checksum: 7375d8ce24c24f29d492b6eb7e5a922b2152fbd533027fb61a9f3b7c20d46e3f3b6c120d0783d92a6f0e31cd2df5ef8e727b2bd1ded5375ea25cef468c29d788 languageName: node linkType: hard @@ -378,17 +378,17 @@ __metadata: languageName: node linkType: hard -"@cspell/dict-companies@npm:^3.0.27": - version: 3.0.27 - resolution: "@cspell/dict-companies@npm:3.0.27" - checksum: 4a51cccba3de41bec8561c140d03d6ec1cb4dd32dcc2b5ee9561ba3a1d65349f42f2a7e1e2e8db21930940925fc8f4d3b3016223c29ad80236598df2ec87a520 +"@cspell/dict-companies@npm:^3.0.28": + version: 3.0.28 + resolution: "@cspell/dict-companies@npm:3.0.28" + checksum: 3566afe6973ea767bd4f57efb23cb4716519eff52cc7239c6304eee369a8e865b2f0ac0d88f43fe3aaca51668c8e9288de3ef948312c27ab345ba437cabc5f15 languageName: node linkType: hard -"@cspell/dict-cpp@npm:^5.0.9": - version: 5.0.9 - resolution: "@cspell/dict-cpp@npm:5.0.9" - checksum: ab801d0e6b46c83dd8815820ab800b8e18c3144fd4216200e913496437277001e489b7da5c799eab019be2bd591171434126007e814380f47cb5e1390f05e092 +"@cspell/dict-cpp@npm:^5.0.10": + version: 5.0.10 + resolution: "@cspell/dict-cpp@npm:5.0.10" + checksum: 063881d4d300f563bafb0c9050c27387264da22081c2743e7d6672782c941644ac0306c94fb603cdc0df3a4f7699cdfa0ae82aef5a4918a972c318b3449e113f languageName: node linkType: hard @@ -469,17 +469,17 @@ __metadata: languageName: node linkType: hard -"@cspell/dict-en_us@npm:^4.3.11": - version: 4.3.11 - resolution: "@cspell/dict-en_us@npm:4.3.11" - checksum: f8f60b54d592ff7922e75b91bc9ea68a2364f316680833713748708c21a843f4b9a5a7c7d3214617756eb76bfd9c123a01470e36d1a7758c267d39d008d7b5be +"@cspell/dict-en_us@npm:^4.3.12": + version: 4.3.12 + resolution: "@cspell/dict-en_us@npm:4.3.12" + checksum: 6a474bdc1e5bd805b95aea431860c005803cefd917730f74e27266c5b1ef6cd60c5c6d3fb13fc88f212f390f6d399eca9cf09d292e4f9aec9942b8f9d0082e4b languageName: node linkType: hard -"@cspell/dict-filetypes@npm:^3.0.2": - version: 3.0.2 - resolution: "@cspell/dict-filetypes@npm:3.0.2" - checksum: 929b5d9d547edfffb5ab507b5fe09afe3d7802db6f30484cff475ce3b6d3ddedca060a4d8fb69c32dede0b3312d6b773a136065457569179cf3c6b72bff0a446 +"@cspell/dict-filetypes@npm:^3.0.3": + version: 3.0.3 + resolution: "@cspell/dict-filetypes@npm:3.0.3" + checksum: 22c38a0b2e98d6223b364ddb5948d14bf6427c8286d4ddb111d5da9bdd4c47ddc0c9199a575c314142da9aefcaa5777a4ea33ac07f239cb4b9b303e4bd888aa1 languageName: node linkType: hard @@ -518,10 +518,10 @@ __metadata: languageName: node linkType: hard -"@cspell/dict-golang@npm:^6.0.4": - version: 6.0.4 - resolution: "@cspell/dict-golang@npm:6.0.4" - checksum: 9e08851e7bcd5f9520a904efc41bdd2fa36013daff80bb7fcd61343da57b25153cbedfaa2e9719b7ee1aa86f31c60abc3445ee4eaf40691fb0437051d870d9c0 +"@cspell/dict-golang@npm:^6.0.5": + version: 6.0.5 + resolution: "@cspell/dict-golang@npm:6.0.5" + checksum: d83917190e8a6230cebcb95c384c5114cb291c52ff51f9871197914fb6f7aaf83ad5ce4ba5a0a00dad7e8edb36c5654631b8ca9ccd4ebab7d0439b64b5773d57 languageName: node linkType: hard @@ -595,10 +595,10 @@ __metadata: languageName: node linkType: hard -"@cspell/dict-npm@npm:^5.0.12": - version: 5.0.12 - resolution: "@cspell/dict-npm@npm:5.0.12" - checksum: ac388cbe10426ec3504ca19ac2dfaaeb012a372099e7a8fd1032625fb434fec9157511d09e34c974eb71e5bcb4f26a0027332ce6d754970722ac98835aba07d3 +"@cspell/dict-npm@npm:^5.0.13": + version: 5.0.13 + resolution: "@cspell/dict-npm@npm:5.0.13" + checksum: eaf190311a3bed7d8aafde8249a3c6ec873a8ae23ae17bfa139593a476cc3ea801693ab2233b2af60812610697d605b744411d0ee3b0e30c573f8c17340aeb42 languageName: node linkType: hard @@ -660,10 +660,10 @@ __metadata: languageName: node linkType: hard -"@cspell/dict-software-terms@npm:^3.3.9": - version: 3.3.9 - resolution: "@cspell/dict-software-terms@npm:3.3.9" - checksum: 8c37af9f5191a510463994835b6730e977aeb62e1712ee815e8e8410ccf72f5d857331c0a24639974f949c8d12b8fea7fdd0995f9923882b145fadcc84b1f494 +"@cspell/dict-software-terms@npm:^3.3.11": + version: 3.3.11 + resolution: "@cspell/dict-software-terms@npm:3.3.11" + checksum: 0d3390c0f51e0760fc1c7873636960ca6e77a1b47ee4f9446b6bda6363f4e7c34c5089f6526b62475b23d1a9eb713702f5856cf1c13bb69243a30b0c890484c9 languageName: node linkType: hard @@ -702,31 +702,31 @@ __metadata: languageName: node linkType: hard -"@cspell/dynamic-import@npm:8.0.0": - version: 8.0.0 - resolution: "@cspell/dynamic-import@npm:8.0.0" +"@cspell/dynamic-import@npm:8.1.0": + version: 8.1.0 + resolution: "@cspell/dynamic-import@npm:8.1.0" dependencies: - import-meta-resolve: "npm:^3.1.1" - checksum: bdeeded3d47b05fcfe5d53e857f1244fe07edddb2bee80853c1ae915e6bee152bf7977e640377cd5fef0534963f66e0aa0ab3a29dba6ca51970ce548844c809a + import-meta-resolve: "npm:^4.0.0" + checksum: ec227f3ed735038bd4764c28b9ef6806c309a88b48c0f95c659b3bb663d05a406e462aaa4bf9098592609b1fe8a3119af4c9d759ce040e2ab91f600085e19603 languageName: node linkType: hard -"@cspell/eslint-plugin@npm:^8.0.0": - version: 8.0.0 - resolution: "@cspell/eslint-plugin@npm:8.0.0" +"@cspell/eslint-plugin@npm:^8.1.0": + version: 8.1.0 + resolution: "@cspell/eslint-plugin@npm:8.1.0" dependencies: - "@cspell/cspell-types": "npm:8.0.0" - cspell-lib: "npm:8.0.0" + "@cspell/cspell-types": "npm:8.1.0" + cspell-lib: "npm:8.1.0" estree-walker: "npm:^3.0.3" synckit: "npm:^0.8.5" - checksum: 618b5ce43380c3bfdb17cd4f725b4538580b4973f36333a18d04e5ee0932d46e5c9f8f22211098eac53adad2d903dd6bea21bf18ddf8bf2722c23d2f95ad2fcf + checksum: 708e111a8041f7682031c951167b31397db8ba824882521698ca793a595ec2c365fa51f75a73ccac5978ca6f7793fcc1f5405820d2915b2e6fc82b0db6ac123d languageName: node linkType: hard -"@cspell/strong-weak-map@npm:8.0.0": - version: 8.0.0 - resolution: "@cspell/strong-weak-map@npm:8.0.0" - checksum: 714a93841df5107604d0bd403f3a67d15fe7056afa674b7f397c0137c404cd9acdef01156e372741e4bf9854ee3f842b510616cf50ec207d5108a1c5e21b024e +"@cspell/strong-weak-map@npm:8.1.0": + version: 8.1.0 + resolution: "@cspell/strong-weak-map@npm:8.1.0" + checksum: 8f9943451baea3b22900254bafaa46b27253f146650b26d845832ff9f84770c5ac51df449b57bec7af2eeb9f9347aa0510ebd22d897da670ffb82f159edd63a5 languageName: node linkType: hard @@ -766,9 +766,9 @@ __metadata: languageName: node linkType: hard -"@eslint/eslintrc@npm:^2.1.3": - version: 2.1.3 - resolution: "@eslint/eslintrc@npm:2.1.3" +"@eslint/eslintrc@npm:^2.1.4": + version: 2.1.4 + resolution: "@eslint/eslintrc@npm:2.1.4" dependencies: ajv: "npm:^6.12.4" debug: "npm:^4.3.2" @@ -779,14 +779,14 @@ __metadata: js-yaml: "npm:^4.1.0" minimatch: "npm:^3.1.2" strip-json-comments: "npm:^3.1.1" - checksum: 77b70a89232fe702c2f765b5b92970f5e4224b55363b923238b996c66fcd991504f40d3663c0543ae17d6c5049ab9b07ab90b65d7601e6f25e8bcd4caf69ac75 + checksum: 7a3b14f4b40fc1a22624c3f84d9f467a3d9ea1ca6e9a372116cb92507e485260359465b58e25bcb6c9981b155416b98c9973ad9b796053fd7b3f776a6946bce8 languageName: node linkType: hard -"@eslint/js@npm:8.53.0": - version: 8.53.0 - resolution: "@eslint/js@npm:8.53.0" - checksum: a372d55aa2bbe0d9399acc8de3c892dcfe507fd914d29fde6826ae54a13452619be626aa7eb70b1ec4d4da5302b6ed8e8ac9bf1f830003f15c0ad56c30b4f520 +"@eslint/js@npm:8.55.0": + version: 8.55.0 + resolution: "@eslint/js@npm:8.55.0" + checksum: 34b001a95b16501fd64f525b1de3ab0e4c252e5820b74069004934cb13977fc04ba4522a3e8f8074bd6af49da10d3444cd49fa711819f425ad73d6bf46eea82d languageName: node linkType: hard @@ -829,14 +829,29 @@ __metadata: languageName: node linkType: hard +"@kurone-kito/commitlint-config@workspace:*, @kurone-kito/commitlint-config@workspace:packages/commitlint-config": + version: 0.0.0-use.local + resolution: "@kurone-kito/commitlint-config@workspace:packages/commitlint-config" + dependencies: + "@commitlint/config-conventional": "npm:^18.4.3" + concurrently: "npm:^8.2.2" + cpy-cli: "npm:^5.0.0" + js-yaml: "npm:^4.1.0" + rimraf: "npm:^5.0.5" + peerDependenciesMeta: + "@commitlint/config-conventional": + optional: true + languageName: unknown + linkType: soft + "@kurone-kito/cspell-config@workspace:*, @kurone-kito/cspell-config@workspace:packages/cspell-config": version: 0.0.0-use.local resolution: "@kurone-kito/cspell-config@workspace:packages/cspell-config" dependencies: - "@cspell/cspell-types": "npm:^8.0.0" + "@cspell/cspell-types": "npm:^8.1.0" concurrently: "npm:^8.2.2" cpy-cli: "npm:^5.0.0" - cspell: "npm:^8.0.0" + cspell: "npm:^8.1.0" js-yaml: "npm:^4.1.0" rimraf: "npm:^5.0.5" peerDependenciesMeta: @@ -851,15 +866,15 @@ __metadata: version: 0.0.0-use.local resolution: "@kurone-kito/eslint-config-base@workspace:packages/eslint-config-base" dependencies: - "@cspell/eslint-plugin": "npm:^8.0.0" + "@cspell/eslint-plugin": "npm:^8.1.0" "@kurone-kito/prettier-config": "workspace:*" - "@typescript-eslint/eslint-plugin": "npm:^6.10.0" - "@typescript-eslint/parser": "npm:^6.10.0" + "@typescript-eslint/eslint-plugin": "npm:^6.13.1" + "@typescript-eslint/parser": "npm:^6.13.1" concurrently: "npm:^8.2.2" cpy-cli: "npm:^5.0.0" - eslint: "npm:^8.53.0" + eslint: "npm:^8.55.0" eslint-config-airbnb-typescript: "npm:^17.1.0" - eslint-config-prettier: "npm:^9.0.0" + eslint-config-prettier: "npm:^9.1.0" eslint-formatter-codeframe: "npm:^7.32.1" eslint-import-resolver-node: "npm:^0.3.9" eslint-import-resolver-typescript: "npm:^3.6.1" @@ -872,9 +887,9 @@ __metadata: eslint-plugin-node: "npm:^11.1.0" eslint-plugin-yaml: "npm:^0.5.0" js-yaml: "npm:^4.1.0" - prettier: "npm:^3.0.3" + prettier: "npm:^3.1.0" rimraf: "npm:^5.0.5" - typescript: "npm:~5.2.2" + typescript: "npm:~5.3.2" peerDependencies: "@cspell/eslint-plugin": ">=6.x.x" "@typescript-eslint/eslint-plugin": ">=6.0.x" @@ -935,16 +950,16 @@ __metadata: version: 0.0.0-use.local resolution: "@kurone-kito/eslint-config-react@workspace:packages/eslint-config-react" dependencies: - "@cspell/eslint-plugin": "npm:^8.0.0" + "@cspell/eslint-plugin": "npm:^8.1.0" "@kurone-kito/eslint-config-base": "workspace:*" "@kurone-kito/prettier-config": "workspace:*" - "@typescript-eslint/eslint-plugin": "npm:^6.10.0" - "@typescript-eslint/parser": "npm:^6.10.0" + "@typescript-eslint/eslint-plugin": "npm:^6.13.1" + "@typescript-eslint/parser": "npm:^6.13.1" concurrently: "npm:^8.2.2" cpy-cli: "npm:^5.0.0" - eslint: "npm:^8.53.0" + eslint: "npm:^8.55.0" eslint-config-airbnb-typescript: "npm:^17.1.0" - eslint-config-prettier: "npm:^9.0.0" + eslint-config-prettier: "npm:^9.1.0" eslint-formatter-codeframe: "npm:^7.32.1" eslint-import-resolver-node: "npm:^0.3.9" eslint-import-resolver-typescript: "npm:^3.6.1" @@ -961,9 +976,9 @@ __metadata: eslint-plugin-storybook: "npm:^0.6.15" eslint-plugin-yaml: "npm:^0.5.0" js-yaml: "npm:^4.1.0" - prettier: "npm:^3.0.3" + prettier: "npm:^3.1.0" rimraf: "npm:^5.0.5" - typescript: "npm:~5.2.2" + typescript: "npm:~5.3.2" peerDependencies: "@cspell/eslint-plugin": ">=6.x.x" "@typescript-eslint/eslint-plugin": ">=6.0.x" @@ -1053,25 +1068,26 @@ __metadata: version: 0.0.0-use.local resolution: "@kurone-kito/lints-config@workspace:." dependencies: - "@commitlint/cli": "npm:^18.4.1" - "@commitlint/config-conventional": "npm:^18.4.0" - "@cspell/cspell-types": "npm:^8.0.0" - "@cspell/eslint-plugin": "npm:^8.0.0" + "@commitlint/cli": "npm:^18.4.3" + "@commitlint/config-conventional": "npm:^18.4.3" + "@cspell/cspell-types": "npm:^8.1.0" + "@cspell/eslint-plugin": "npm:^8.1.0" + "@kurone-kito/commitlint-config": "workspace:*" "@kurone-kito/cspell-config": "workspace:*" "@kurone-kito/eslint-config-base": "workspace:*" "@kurone-kito/eslint-config-react": "workspace:*" "@kurone-kito/lint-staged-config": "workspace:*" "@kurone-kito/prettier-config": "workspace:*" "@kurone-kito/typescript-config": "workspace:*" - "@typescript-eslint/eslint-plugin": "npm:^6.10.0" - "@typescript-eslint/parser": "npm:^6.10.0" - "@yarnpkg/sdks": "npm:^3.0.0" + "@typescript-eslint/eslint-plugin": "npm:^6.13.1" + "@typescript-eslint/parser": "npm:^6.13.1" + "@yarnpkg/sdks": "npm:^3.1.0" aicommits: "npm:^1.11.0" concurrently: "npm:^8.2.2" - cspell: "npm:^8.0.0" - eslint: "npm:^8.53.0" + cspell: "npm:^8.1.0" + eslint: "npm:^8.55.0" eslint-config-airbnb-typescript: "npm:^17.1.0" - eslint-config-prettier: "npm:^9.0.0" + eslint-config-prettier: "npm:^9.1.0" eslint-formatter-codeframe: "npm:^7.32.1" eslint-import-resolver-node: "npm:^0.3.9" eslint-import-resolver-typescript: "npm:^3.6.1" @@ -1086,9 +1102,9 @@ __metadata: eslint-plugin-yaml: "npm:^0.5.0" husky: "npm:^8.0.3" lint-staged: "npm:^15.1.0" - prettier: "npm:^3.0.3" + prettier: "npm:^3.1.0" rimraf: "npm:^5.0.5" - typescript: "npm:~5.2.2" + typescript: "npm:~5.3.2" typescript-eslint-language-service: "npm:^5.0.5" languageName: unknown linkType: soft @@ -1100,7 +1116,7 @@ __metadata: concurrently: "npm:^8.2.2" cpy-cli: "npm:^5.0.0" js-yaml: "npm:^4.1.0" - prettier: "npm:^3.0.3" + prettier: "npm:^3.1.0" rimraf: "npm:^5.0.5" peerDependencies: prettier: ">=2.3.x" @@ -1115,11 +1131,11 @@ __metadata: resolution: "@kurone-kito/typescript-config@workspace:packages/typescript-config" dependencies: "@kurone-kito/prettier-config": "workspace:*" - "@typescript-eslint/parser": "npm:^6.10.0" + "@typescript-eslint/parser": "npm:^6.13.1" cpy-cli: "npm:^5.0.0" - eslint: "npm:^8.53.0" - prettier: "npm:^3.0.3" - typescript: "npm:~5.2.2" + eslint: "npm:^8.55.0" + prettier: "npm:^3.1.0" + typescript: "npm:~5.3.2" typescript-eslint-language-service: "npm:^5.0.5" peerDependencies: typescript: ">=4.7.x" @@ -1173,7 +1189,7 @@ __metadata: languageName: node linkType: hard -"@pkgr/utils@npm:^2.3.1": +"@pkgr/utils@npm:^2.4.2": version: 2.4.2 resolution: "@pkgr/utils@npm:2.4.2" dependencies: @@ -1285,20 +1301,20 @@ __metadata: linkType: hard "@types/node@npm:*": - version: 20.9.0 - resolution: "@types/node@npm:20.9.0" + version: 20.10.2 + resolution: "@types/node@npm:20.10.2" dependencies: undici-types: "npm:~5.26.4" - checksum: a934f7645ed117a27857147403b0c657ffbca578c8f280e4c21d27dfb43e58dc4f24c4319d4335b8a4fa08e28fb2dc905a5bd5e4bc8878047164c56c1b162139 + checksum: e88d0e92870ec4880642cc39250903a098443d791e864a08d08f4e7fdca0c4c9c0233a6fd98bec356f0ebabc6551152a4590d1c9c34b73a95c2b33935f59185f languageName: node linkType: hard "@types/node@npm:^18.11.9": - version: 18.18.9 - resolution: "@types/node@npm:18.18.9" + version: 18.19.1 + resolution: "@types/node@npm:18.19.1" dependencies: undici-types: "npm:~5.26.4" - checksum: ebd98b117c868edc597807cd0dab214b6110b9cd5ee406632641d0cf5b8bd7cb199caaac657a046d9203c441dbcfb3c71154ffa2d615ec89f80e6972143e6ec8 + checksum: 825c5bf6f7c8f8bc413b2c45dd49b3b51d4fb18e42ed09711376b1d475d82e8c7160859544f8be04eaa3c6201053217d899573f0bf63a7419e5ea3cd7d161eaf languageName: node linkType: hard @@ -1319,9 +1335,9 @@ __metadata: linkType: hard "@types/semver@npm:^7.1.0, @types/semver@npm:^7.3.12, @types/semver@npm:^7.5.0": - version: 7.5.5 - resolution: "@types/semver@npm:7.5.5" - checksum: 1b0be2c4d830f5ef002a305308e06e3616fc38a41c9a2c5b4267df82a038d9bd0ba32ec1da82a52db84a720be7e4b69bac7593797d8dc1400a69069af8f19219 + version: 7.5.6 + resolution: "@types/semver@npm:7.5.6" + checksum: e77282b17f74354e17e771c0035cccb54b94cc53d0433fa7e9ba9d23fd5d7edcd14b6c8b7327d58bbd89e83b1c5eda71dfe408e06b929007e2b89586e9b63459 languageName: node linkType: hard @@ -1339,15 +1355,15 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/eslint-plugin@npm:^6.10.0": - version: 6.10.0 - resolution: "@typescript-eslint/eslint-plugin@npm:6.10.0" +"@typescript-eslint/eslint-plugin@npm:^6.13.1": + version: 6.13.1 + resolution: "@typescript-eslint/eslint-plugin@npm:6.13.1" dependencies: "@eslint-community/regexpp": "npm:^4.5.1" - "@typescript-eslint/scope-manager": "npm:6.10.0" - "@typescript-eslint/type-utils": "npm:6.10.0" - "@typescript-eslint/utils": "npm:6.10.0" - "@typescript-eslint/visitor-keys": "npm:6.10.0" + "@typescript-eslint/scope-manager": "npm:6.13.1" + "@typescript-eslint/type-utils": "npm:6.13.1" + "@typescript-eslint/utils": "npm:6.13.1" + "@typescript-eslint/visitor-keys": "npm:6.13.1" debug: "npm:^4.3.4" graphemer: "npm:^1.4.0" ignore: "npm:^5.2.4" @@ -1360,25 +1376,25 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: 54fd83cff912bae212934aae5abcb810cf182771778e1062f2aaf75989d300c5f23bdb03b8b3d587ece799dfabebfdc5cf6356e1ce07398011d728a3d0d0d381 + checksum: cae42c77404d8e6c149d68aca75bb3ce83cff5de8713d82e87e93bafae2839f29d261bc75b68f315b6b23858a85ea2f22ed8468cf5c7331e8330f7cee2129522 languageName: node linkType: hard -"@typescript-eslint/parser@npm:^6.10.0": - version: 6.10.0 - resolution: "@typescript-eslint/parser@npm:6.10.0" +"@typescript-eslint/parser@npm:^6.13.1": + version: 6.13.1 + resolution: "@typescript-eslint/parser@npm:6.13.1" dependencies: - "@typescript-eslint/scope-manager": "npm:6.10.0" - "@typescript-eslint/types": "npm:6.10.0" - "@typescript-eslint/typescript-estree": "npm:6.10.0" - "@typescript-eslint/visitor-keys": "npm:6.10.0" + "@typescript-eslint/scope-manager": "npm:6.13.1" + "@typescript-eslint/types": "npm:6.13.1" + "@typescript-eslint/typescript-estree": "npm:6.13.1" + "@typescript-eslint/visitor-keys": "npm:6.13.1" debug: "npm:^4.3.4" peerDependencies: eslint: ^7.0.0 || ^8.0.0 peerDependenciesMeta: typescript: optional: true - checksum: d24a981807ea1ee5e5bbd9be2996b06eb99908c717464c6274b596c094b0e2609c1d88fcb8bef3479a8e8d39bc61a7103651b23981e47a5d89f6dec77e3bec38 + checksum: cdc328d157a8b8a6babad88360451c177ea41666e2150f3822a474ed287a12336517dccf9f475f75a007d4aa622cb74f1442f17d17b87e19cc2c839784742351 languageName: node linkType: hard @@ -1392,22 +1408,22 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/scope-manager@npm:6.10.0": - version: 6.10.0 - resolution: "@typescript-eslint/scope-manager@npm:6.10.0" +"@typescript-eslint/scope-manager@npm:6.13.1": + version: 6.13.1 + resolution: "@typescript-eslint/scope-manager@npm:6.13.1" dependencies: - "@typescript-eslint/types": "npm:6.10.0" - "@typescript-eslint/visitor-keys": "npm:6.10.0" - checksum: 518cd60f9e9f5eef24f566f6a43d05241593a4520db6a93df714adac7b04b8bc2a1a89764f7a0aa23432e35e5f57ab2a3129f8f67ef211fa808c6bda29c28c78 + "@typescript-eslint/types": "npm:6.13.1" + "@typescript-eslint/visitor-keys": "npm:6.13.1" + checksum: f728dbd995c58fadfc390411fe31b1b8a729b1c85ecf0ae2fe70f97f613298feab78c05bc180e03612f595b24cf0090476a0b8234c617b3edf1dae568342a7cf languageName: node linkType: hard -"@typescript-eslint/type-utils@npm:6.10.0": - version: 6.10.0 - resolution: "@typescript-eslint/type-utils@npm:6.10.0" +"@typescript-eslint/type-utils@npm:6.13.1": + version: 6.13.1 + resolution: "@typescript-eslint/type-utils@npm:6.13.1" dependencies: - "@typescript-eslint/typescript-estree": "npm:6.10.0" - "@typescript-eslint/utils": "npm:6.10.0" + "@typescript-eslint/typescript-estree": "npm:6.13.1" + "@typescript-eslint/utils": "npm:6.13.1" debug: "npm:^4.3.4" ts-api-utils: "npm:^1.0.1" peerDependencies: @@ -1415,7 +1431,7 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: e4e5b119730fe615a60fb9118ab408a471dab11304a70d469393a0aac6d06238377cd87693129160c600b7a03804e2552d3a7192d291ea3db10d2390983b3628 + checksum: 484e5f74fc604b24687fe6426e650f40f679d62216ee5e45bf6d1f91edd60cd8deef747ca43f7dc3c22b2b76f030477603c82559e44c3f2fb5c8877a0c65aefa languageName: node linkType: hard @@ -1426,10 +1442,10 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/types@npm:6.10.0": - version: 6.10.0 - resolution: "@typescript-eslint/types@npm:6.10.0" - checksum: bc8faf3d00f1d4eaad0760f64a7e428646e65adc5322f41dc9a2d15d5df23e53b09605d69126c373630851cb258c15ba82cf66d949897d3758844964b0e98087 +"@typescript-eslint/types@npm:6.13.1": + version: 6.13.1 + resolution: "@typescript-eslint/types@npm:6.13.1" + checksum: 350c7f847052f7c24629d41645c02be152c512f3e5c21a79f53c04821b1fff3019416b18d9b72e5ca5c3c5f62f210301f2bb69080b84e67fe83af27751a7af18 languageName: node linkType: hard @@ -1451,12 +1467,12 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/typescript-estree@npm:6.10.0": - version: 6.10.0 - resolution: "@typescript-eslint/typescript-estree@npm:6.10.0" +"@typescript-eslint/typescript-estree@npm:6.13.1": + version: 6.13.1 + resolution: "@typescript-eslint/typescript-estree@npm:6.13.1" dependencies: - "@typescript-eslint/types": "npm:6.10.0" - "@typescript-eslint/visitor-keys": "npm:6.10.0" + "@typescript-eslint/types": "npm:6.13.1" + "@typescript-eslint/visitor-keys": "npm:6.13.1" debug: "npm:^4.3.4" globby: "npm:^11.1.0" is-glob: "npm:^4.0.3" @@ -1465,24 +1481,24 @@ __metadata: peerDependenciesMeta: typescript: optional: true - checksum: 41fc6dd0cfe8fb4c7ddc30d91e71d23ea1e0cbc261e8022ab089ddde6589eefdb89f66492d2ab4ae20dd45f51657022d9278bccc64aef7c6be0df756a081c0b5 + checksum: 1df965c5b202664da1a4a1ffc51bda3d85e581d8c206cd4be63653e2558775104258f6071e1f35a269619ebfb81bd18ee74e3fcb724fed15d3a2577d0ee5a34f languageName: node linkType: hard -"@typescript-eslint/utils@npm:6.10.0": - version: 6.10.0 - resolution: "@typescript-eslint/utils@npm:6.10.0" +"@typescript-eslint/utils@npm:6.13.1": + version: 6.13.1 + resolution: "@typescript-eslint/utils@npm:6.13.1" dependencies: "@eslint-community/eslint-utils": "npm:^4.4.0" "@types/json-schema": "npm:^7.0.12" "@types/semver": "npm:^7.5.0" - "@typescript-eslint/scope-manager": "npm:6.10.0" - "@typescript-eslint/types": "npm:6.10.0" - "@typescript-eslint/typescript-estree": "npm:6.10.0" + "@typescript-eslint/scope-manager": "npm:6.13.1" + "@typescript-eslint/types": "npm:6.13.1" + "@typescript-eslint/typescript-estree": "npm:6.13.1" semver: "npm:^7.5.4" peerDependencies: eslint: ^7.0.0 || ^8.0.0 - checksum: acf55bc231483f8b8d2d64ad9a261d0499085277b5ce3506cf579297401f78d88253ae52a9afad35cc32a532b53794367e32449283c06b2e89602c63184f011e + checksum: 6fab1122071c7a2da959dcf16cdd723a65bd8ba8e55af9cea11bb1707c4d047e94c3daaed2ab504cdbd2ca0d052f2a33de5290b28de0277ba00210569673ac9b languageName: node linkType: hard @@ -1514,13 +1530,13 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/visitor-keys@npm:6.10.0": - version: 6.10.0 - resolution: "@typescript-eslint/visitor-keys@npm:6.10.0" +"@typescript-eslint/visitor-keys@npm:6.13.1": + version: 6.13.1 + resolution: "@typescript-eslint/visitor-keys@npm:6.13.1" dependencies: - "@typescript-eslint/types": "npm:6.10.0" + "@typescript-eslint/types": "npm:6.13.1" eslint-visitor-keys: "npm:^3.4.1" - checksum: 17a6962e10ffbcc286d202c7dfcc0dfa489c76ab7838b3522e90b3e87cbe2cdd7a24ffab434d9ca6dfed361801f11c3349ba01f808093c65c5365a9179ee5eb0 + checksum: 27ccc4bfe940e50b0977838356b7feda95b68754fa544a988588a159a2619eb04d07c67e55d16bfea1b0dc6184a7fb5daff1366b266c9f5fd19d72831dea6163 languageName: node linkType: hard @@ -1531,9 +1547,9 @@ __metadata: languageName: node linkType: hard -"@yarnpkg/core@npm:^4.0.0": - version: 4.0.1 - resolution: "@yarnpkg/core@npm:4.0.1" +"@yarnpkg/core@npm:^4.0.2": + version: 4.0.2 + resolution: "@yarnpkg/core@npm:4.0.2" dependencies: "@arcanis/slice-ansi": "npm:^1.1.1" "@types/semver": "npm:^7.1.0" @@ -1561,7 +1577,7 @@ __metadata: treeify: "npm:^1.1.0" tslib: "npm:^2.4.0" tunnel: "npm:^0.0.6" - checksum: 52b014ef28a44228944c7ff5be45502b541259c9c1e16d2795433df43fe9720e97961d195b7b6c013cf742b5a4ae132d3f51946626d7189a48836766bc19e263 + checksum: 2a480feddd6aa2a9dadf7a17495e1698a96707f6ac7acfc1dd6a35c17445ed3f7d7037a5e4b14dce7c04771488f6da59bf3e2864efd9050630b9757b902abd65 languageName: node linkType: hard @@ -1597,12 +1613,12 @@ __metadata: languageName: node linkType: hard -"@yarnpkg/sdks@npm:^3.0.0": - version: 3.0.0 - resolution: "@yarnpkg/sdks@npm:3.0.0" +"@yarnpkg/sdks@npm:^3.1.0": + version: 3.1.0 + resolution: "@yarnpkg/sdks@npm:3.1.0" dependencies: - "@yarnpkg/core": "npm:^4.0.0" - "@yarnpkg/fslib": "npm:^3.0.0" + "@yarnpkg/core": "npm:^4.0.2" + "@yarnpkg/fslib": "npm:^3.0.1" "@yarnpkg/parsers": "npm:^3.0.0" chalk: "npm:^3.0.0" clipanion: "npm:^4.0.0-rc.2" @@ -1611,7 +1627,7 @@ __metadata: tslib: "npm:^2.4.0" bin: sdks: ./lib/cli.js - checksum: 5bb07521edfb05397ba3014110017e513bb01a270e6b5152e6cbdf5ec53c65be974076a60f4dc99e8530c7447e285f6895f141df0902d89189d761c51bd71fe0 + checksum: 34a69ca60e13f57cdf71e36642c0f1af09157ede7a268582dfab5bb10051fa70580749d10c281c7996ad36645c645f8c444da8c8bf59774d74f932bb3e48aa6e languageName: node linkType: hard @@ -1959,9 +1975,9 @@ __metadata: linkType: hard "big-integer@npm:^1.6.44": - version: 1.6.51 - resolution: "big-integer@npm:1.6.51" - checksum: c7a12640901906d6f6b6bdb42a4eaba9578397b6d9a0dd090cf001ec813ff2bfcd441e364068ea0416db6175d2615f8ed19cff7d1a795115bf7c92d44993f991 + version: 1.6.52 + resolution: "big-integer@npm:1.6.52" + checksum: 4bc6ae152a96edc9f95020f5fc66b13d26a9ad9a021225a9f0213f7e3dc44269f423aa8c42e19d6ac4a63bb2b22140b95d10be8f9ca7a6d9aa1b22b330d1f514 languageName: node linkType: hard @@ -2388,12 +2404,12 @@ __metadata: languageName: node linkType: hard -"conventional-changelog-angular@npm:^6.0.0": - version: 6.0.0 - resolution: "conventional-changelog-angular@npm:6.0.0" +"conventional-changelog-angular@npm:^7.0.0": + version: 7.0.0 + resolution: "conventional-changelog-angular@npm:7.0.0" dependencies: compare-func: "npm:^2.0.0" - checksum: ddc59ead53a45b817d83208200967f5340866782b8362d5e2e34105fdfa3d3a31585ebbdec7750bdb9de53da869f847e8ca96634a9801f51e27ecf4e7ffe2bad + checksum: e7966d2fee5475e76263f30f8b714b2b592b5bf556df225b7091e5090831fc9a20b99598a7d2997e19c2ef8118c0a3150b1eba290786367b0f55a5ccfa804ec9 languageName: node linkType: hard @@ -2440,18 +2456,6 @@ __metadata: languageName: node linkType: hard -"cosmiconfig@npm:8.0.0": - version: 8.0.0 - resolution: "cosmiconfig@npm:8.0.0" - dependencies: - 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: 623c09750d32328383b6d3eaafcb0b9c3d610c142479a594528d8122a97e741725534158cbc6c6c313e66bcdb82dac440f5e32446ed79bab501e55e57a7b3119 - languageName: node - linkType: hard - "cosmiconfig@npm:^8.3.6": version: 8.3.6 resolution: "cosmiconfig@npm:8.3.6" @@ -2528,120 +2532,130 @@ __metadata: languageName: node linkType: hard -"cspell-dictionary@npm:8.0.0": - version: 8.0.0 - resolution: "cspell-dictionary@npm:8.0.0" +"cspell-config-lib@npm:8.1.0": + version: 8.1.0 + resolution: "cspell-config-lib@npm:8.1.0" dependencies: - "@cspell/cspell-pipe": "npm:8.0.0" - "@cspell/cspell-types": "npm:8.0.0" - cspell-trie-lib: "npm:8.0.0" - fast-equals: "npm:^4.0.3" + "@cspell/cspell-types": "npm:8.1.0" + comment-json: "npm:^4.2.3" + yaml: "npm:^2.3.4" + checksum: 0e10dcba48d14e16f3ac29f5869c1c01831d3fa8a643108d5cfc2563ead364471ad3959f2a6e852569ba7600c2f87ceaad9180bd0306fd1091f22beffa7f0c68 + languageName: node + linkType: hard + +"cspell-dictionary@npm:8.1.0": + version: 8.1.0 + resolution: "cspell-dictionary@npm:8.1.0" + dependencies: + "@cspell/cspell-pipe": "npm:8.1.0" + "@cspell/cspell-types": "npm:8.1.0" + cspell-trie-lib: "npm:8.1.0" + fast-equals: "npm:^5.0.1" gensequence: "npm:^6.0.0" - checksum: 35aeca56ff5af855f3f29ab86dfe73e90e12c864ebebcf22d6888ae2b87c2744c373eef20a3761bf8d22f269ffceca15024279c5607c6bd2f6ac6e41897de017 + checksum: 4e31bcfe752cc806e1a17919f6518d605ca6baec639a96e0fbda268af794eda4a054ac915e48d18d88a58b03e059287cc658ba52c62bd96d85b12c2bd5deebbc languageName: node linkType: hard -"cspell-gitignore@npm:8.0.0": - version: 8.0.0 - resolution: "cspell-gitignore@npm:8.0.0" +"cspell-gitignore@npm:8.1.0": + version: 8.1.0 + resolution: "cspell-gitignore@npm:8.1.0" dependencies: - cspell-glob: "npm:8.0.0" - find-up: "npm:^5.0.0" + cspell-glob: "npm:8.1.0" + find-up-simple: "npm:^1.0.0" bin: cspell-gitignore: bin.mjs - checksum: 6430606facf53c88b4532b8945f158828e2ecfe40e5023f1a4233c6fc3a8b54beee4df673301b389d44bc03b78f198d7f3c63108b66d4513797cdd65b57d06e1 + checksum: 0215ba5bec0f70822f4dabee48a29bf6830d640c1315d10c31cf4a86a1f4c10706af4dd57c9590123c7dc3224020d736beaf3e5795ea1c77dcf0febd01d7a71a languageName: node linkType: hard -"cspell-glob@npm:8.0.0": - version: 8.0.0 - resolution: "cspell-glob@npm:8.0.0" +"cspell-glob@npm:8.1.0": + version: 8.1.0 + resolution: "cspell-glob@npm:8.1.0" dependencies: micromatch: "npm:^4.0.5" - checksum: 7aad52d1075cf04bf04923d1cf03e373a92bb1fbbc8a72e9f2e1264fd7b51ff0ef59da6f96ab860c910392b953a432822265fd46a3ad342f6076a39dfe1644b7 + checksum: 130e6fcee73416a60072e14058fe4c30f72c17af538a75e3dbb8047676927575d7a1bb404638894398dd5912d30bddeb195416d8ab18e61eee7e196350ed1ff5 languageName: node linkType: hard -"cspell-grammar@npm:8.0.0": - version: 8.0.0 - resolution: "cspell-grammar@npm:8.0.0" +"cspell-grammar@npm:8.1.0": + version: 8.1.0 + resolution: "cspell-grammar@npm:8.1.0" dependencies: - "@cspell/cspell-pipe": "npm:8.0.0" - "@cspell/cspell-types": "npm:8.0.0" + "@cspell/cspell-pipe": "npm:8.1.0" + "@cspell/cspell-types": "npm:8.1.0" bin: cspell-grammar: bin.mjs - checksum: 76e5a06cfc6f43f99798b628699c8cd60febd98328aa20cd525a1e2d1050676f82534360f86251aca6de44c4fb9c7f84d50d6afad05d3828f5f707fea2f8fc7a + checksum: fa3fca4355c2244898dc262d2dad5eafc287efa7dba461bd1249daa9fac9d5c3f7f52db33bb6e79637bd754fe96e19d5b22c28d20fae111165efbf36cdfd7d4e languageName: node linkType: hard -"cspell-io@npm:8.0.0": - version: 8.0.0 - resolution: "cspell-io@npm:8.0.0" +"cspell-io@npm:8.1.0": + version: 8.1.0 + resolution: "cspell-io@npm:8.1.0" dependencies: - "@cspell/cspell-service-bus": "npm:8.0.0" - checksum: 1f66a50223bcbc77aba740c30b82251960f77e332c73359daa49be9a3c00db07363d8909862af59c07135f116a27eb0a14205b01a7331acbf7c0fb8c642ea4c1 + "@cspell/cspell-service-bus": "npm:8.1.0" + checksum: abfeda196d8a88dc67a4041edf9445466c41d536ecdb5fc4a863be3de8acb4c9d86eb88031c594114ecb9822673c2a6c91e5ad132163eeb9b82c0c3e9eec6469 languageName: node linkType: hard -"cspell-lib@npm:8.0.0": - version: 8.0.0 - resolution: "cspell-lib@npm:8.0.0" - dependencies: - "@cspell/cspell-bundled-dicts": "npm:8.0.0" - "@cspell/cspell-pipe": "npm:8.0.0" - "@cspell/cspell-resolver": "npm:8.0.0" - "@cspell/cspell-types": "npm:8.0.0" - "@cspell/dynamic-import": "npm:8.0.0" - "@cspell/strong-weak-map": "npm:8.0.0" +"cspell-lib@npm:8.1.0": + version: 8.1.0 + resolution: "cspell-lib@npm:8.1.0" + dependencies: + "@cspell/cspell-bundled-dicts": "npm:8.1.0" + "@cspell/cspell-pipe": "npm:8.1.0" + "@cspell/cspell-resolver": "npm:8.1.0" + "@cspell/cspell-types": "npm:8.1.0" + "@cspell/dynamic-import": "npm:8.1.0" + "@cspell/strong-weak-map": "npm:8.1.0" clear-module: "npm:^4.1.2" comment-json: "npm:^4.2.3" configstore: "npm:^6.0.0" - cosmiconfig: "npm:8.0.0" - cspell-dictionary: "npm:8.0.0" - cspell-glob: "npm:8.0.0" - cspell-grammar: "npm:8.0.0" - cspell-io: "npm:8.0.0" - cspell-trie-lib: "npm:8.0.0" + cspell-config-lib: "npm:8.1.0" + cspell-dictionary: "npm:8.1.0" + cspell-glob: "npm:8.1.0" + cspell-grammar: "npm:8.1.0" + cspell-io: "npm:8.1.0" + cspell-trie-lib: "npm:8.1.0" fast-equals: "npm:^5.0.1" - find-up: "npm:^6.3.0" gensequence: "npm:^6.0.0" import-fresh: "npm:^3.3.0" resolve-from: "npm:^5.0.0" vscode-languageserver-textdocument: "npm:^1.0.11" vscode-uri: "npm:^3.0.8" - checksum: 9c7333f67861613b4101eed32971f7f106ff109a0fd9abc61a0c0f4a5776377edaa04bb7f319f9c92245e478e4662809c81e339d2ec11e9c81e7f544e12f4cfd + checksum: 5a923343f4e584b7183796dd29380fd9725f4be387013f6d91ca66b1648282f0f2527927848e832c6a2479729f084d680b9f3e12e86db490ce4d1861acf233d3 languageName: node linkType: hard -"cspell-trie-lib@npm:8.0.0": - version: 8.0.0 - resolution: "cspell-trie-lib@npm:8.0.0" +"cspell-trie-lib@npm:8.1.0": + version: 8.1.0 + resolution: "cspell-trie-lib@npm:8.1.0" dependencies: - "@cspell/cspell-pipe": "npm:8.0.0" - "@cspell/cspell-types": "npm:8.0.0" + "@cspell/cspell-pipe": "npm:8.1.0" + "@cspell/cspell-types": "npm:8.1.0" gensequence: "npm:^6.0.0" - checksum: 447d8e64061ea400af23811db4882bd05f644492b4b9723c232e282176b6f9e6b11427262f11f07307ce695b335dd7fa64e5a98e941b0063a8264836e67aec84 + checksum: 20fdd373247f2172fabfea013d43885e7a1f2916f154aff76cca9ce4529af521171948e2f7636716f9b0ef7037a8776bbb28085e3c8bee6b045b1681797d2f64 languageName: node linkType: hard -"cspell@npm:^8.0.0": - version: 8.0.0 - resolution: "cspell@npm:8.0.0" +"cspell@npm:^8.1.0": + version: 8.1.0 + resolution: "cspell@npm:8.1.0" dependencies: - "@cspell/cspell-json-reporter": "npm:8.0.0" - "@cspell/cspell-pipe": "npm:8.0.0" - "@cspell/cspell-types": "npm:8.0.0" - "@cspell/dynamic-import": "npm:8.0.0" + "@cspell/cspell-json-reporter": "npm:8.1.0" + "@cspell/cspell-pipe": "npm:8.1.0" + "@cspell/cspell-types": "npm:8.1.0" + "@cspell/dynamic-import": "npm:8.1.0" chalk: "npm:^5.3.0" chalk-template: "npm:^1.1.0" commander: "npm:^11.1.0" - cspell-gitignore: "npm:8.0.0" - cspell-glob: "npm:8.0.0" - cspell-io: "npm:8.0.0" - cspell-lib: "npm:8.0.0" + cspell-gitignore: "npm:8.1.0" + cspell-glob: "npm:8.1.0" + cspell-io: "npm:8.1.0" + cspell-lib: "npm:8.1.0" fast-glob: "npm:^3.3.2" fast-json-stable-stringify: "npm:^2.1.0" - file-entry-cache: "npm:^7.0.1" + file-entry-cache: "npm:^7.0.2" get-stdin: "npm:^9.0.0" semver: "npm:^7.5.4" strip-ansi: "npm:^7.1.0" @@ -2649,7 +2663,7 @@ __metadata: bin: cspell: bin.mjs cspell-esm: bin.mjs - checksum: dd3373c888f1d70ebc050c5cc04cab4d88c71e03ae418acfa919c97bfc1e0509355e10ab0d989b2b2f55e2edabe919e4ad05eb04f463b1851e0691aa2d3ca38c + checksum: eba4972a4ea9d2caad935e9a8eadaf93375bd5da234c715ba360dd504c863d184d39992cdfddcf9d4e76d7135aa0709f686160b39e168f79219c054a5267cff6 languageName: node linkType: hard @@ -2784,7 +2798,7 @@ __metadata: languageName: node linkType: hard -"define-properties@npm:^1.1.3, define-properties@npm:^1.1.4, define-properties@npm:^1.2.0, define-properties@npm:^1.2.1": +"define-properties@npm:^1.1.3, define-properties@npm:^1.2.0, define-properties@npm:^1.2.1": version: 1.2.1 resolution: "define-properties@npm:1.2.1" dependencies: @@ -3138,14 +3152,14 @@ __metadata: languageName: node linkType: hard -"eslint-config-prettier@npm:^9.0.0": - version: 9.0.0 - resolution: "eslint-config-prettier@npm:9.0.0" +"eslint-config-prettier@npm:^9.1.0": + version: 9.1.0 + resolution: "eslint-config-prettier@npm:9.1.0" peerDependencies: eslint: ">=7.0.0" bin: eslint-config-prettier: bin/cli.js - checksum: 276b0b5b5b19066962a9ff3a16a553bdad28e1c0a2ea33a1d75d65c0428bb7b37f6e85ac111ebefcc9bdefb544385856dbe6eaeda5279c639e5549c113d27dda + checksum: 411e3b3b1c7aa04e3e0f20d561271b3b909014956c4dba51c878bf1a23dbb8c800a3be235c46c4732c70827276e540b6eed4636d9b09b444fd0a8e07f0fcd830 languageName: node linkType: hard @@ -3445,14 +3459,14 @@ __metadata: languageName: node linkType: hard -"eslint@npm:^8.40.0, eslint@npm:^8.53.0": - version: 8.53.0 - resolution: "eslint@npm:8.53.0" +"eslint@npm:^8.40.0, eslint@npm:^8.55.0": + version: 8.55.0 + resolution: "eslint@npm:8.55.0" dependencies: "@eslint-community/eslint-utils": "npm:^4.2.0" "@eslint-community/regexpp": "npm:^4.6.1" - "@eslint/eslintrc": "npm:^2.1.3" - "@eslint/js": "npm:8.53.0" + "@eslint/eslintrc": "npm:^2.1.4" + "@eslint/js": "npm:8.55.0" "@humanwhocodes/config-array": "npm:^0.11.13" "@humanwhocodes/module-importer": "npm:^1.0.1" "@nodelib/fs.walk": "npm:^1.2.8" @@ -3489,7 +3503,7 @@ __metadata: text-table: "npm:^0.2.0" bin: eslint: bin/eslint.js - checksum: e305a71ce2b9a8631b293266fe53e346c76f28bc8d004af33f10e537cf133db1fb87af3599376e70ed6e0f89a78be10c4f08ddd0c1c9c0c497cd143b4a270420 + checksum: afd016cfbe9e9d667b3f98c14c681a7e518808f6c30856e56cbb02248900eac5bf6dc5e577a7eaec259539486db48ef7d16ef58fb14b1585ba7c84b35490c53c languageName: node linkType: hard @@ -3634,13 +3648,6 @@ __metadata: languageName: node linkType: hard -"fast-equals@npm:^4.0.3": - version: 4.0.3 - resolution: "fast-equals@npm:4.0.3" - checksum: 04c1ff47b79923314e9b63ec6c81beeaa5e3b9588ec230ee6aff7ece725ff834a72abf627055055127bd0f53ae8a92cc04c3a6e187783fd932dbef743f9b13bf - languageName: node - linkType: hard - "fast-equals@npm:^5.0.1": version: 5.0.1 resolution: "fast-equals@npm:5.0.1" @@ -3693,12 +3700,12 @@ __metadata: languageName: node linkType: hard -"file-entry-cache@npm:^7.0.1": - version: 7.0.1 - resolution: "file-entry-cache@npm:7.0.1" +"file-entry-cache@npm:^7.0.2": + version: 7.0.2 + resolution: "file-entry-cache@npm:7.0.2" dependencies: - flat-cache: "npm:^3.1.1" - checksum: 52f83f8b880b1d69c0943645a8bf124a129f0381980cfbd9b4606f8f99f4798e7fdc4f470b69d95ca87187da51de908249a205ea61614ee2eeb10ea090c8eba6 + flat-cache: "npm:^3.2.0" + checksum: e03e99beb9809a5679699ebd7146f3b93870b57775705f4b61bda4a1d8454dfd261b48e770a601f6c36a4789b4c0750f262e4d5fb2c7eeceb75e16439b07211a languageName: node linkType: hard @@ -3711,6 +3718,13 @@ __metadata: languageName: node linkType: hard +"find-up-simple@npm:^1.0.0": + version: 1.0.0 + resolution: "find-up-simple@npm:1.0.0" + checksum: 91c3d51c1111b5eb4e6e6d71d21438f6571a37a69dc288d4222b98996756e2f472fa5393a4dddb5e1a84929405d87e86f4bdce798ba84ee513b79854960ec140 + languageName: node + linkType: hard + "find-up@npm:^4.1.0": version: 4.1.0 resolution: "find-up@npm:4.1.0" @@ -3731,24 +3745,14 @@ __metadata: languageName: node linkType: hard -"find-up@npm:^6.3.0": - version: 6.3.0 - resolution: "find-up@npm:6.3.0" - dependencies: - locate-path: "npm:^7.1.0" - path-exists: "npm:^5.0.0" - checksum: 4f3bdc30d41778c647e53f4923e72de5e5fb055157031f34501c5b36c2eb59f77b997edf9cb00165c6060cda7eaa2e3da82cb6be2e61d68ad3e07c4bc4cce67e - languageName: node - linkType: hard - -"flat-cache@npm:^3.0.4, flat-cache@npm:^3.1.1": - version: 3.1.1 - resolution: "flat-cache@npm:3.1.1" +"flat-cache@npm:^3.0.4, flat-cache@npm:^3.2.0": + version: 3.2.0 + resolution: "flat-cache@npm:3.2.0" dependencies: flatted: "npm:^3.2.9" keyv: "npm:^4.5.3" rimraf: "npm:^3.0.2" - checksum: 04b57c7cb4bd54f1e80a335f037bff467cc7b2479ecc015ff7e78fd41aa12777757d55836e99c7e5faca2271eb204a96bf109b4d98c36c20c3b98cf1372b5592 + checksum: 02381c6ece5e9fa5b826c9bbea481d7fd77645d96e4b0b1395238124d581d10e56f17f723d897b6d133970f7a57f0fab9148cbbb67237a0a0ffe794ba60c0c70 languageName: node linkType: hard @@ -3779,13 +3783,13 @@ __metadata: linkType: hard "fs-extra@npm:^11.0.0": - version: 11.1.1 - resolution: "fs-extra@npm:11.1.1" + version: 11.2.0 + resolution: "fs-extra@npm:11.2.0" dependencies: graceful-fs: "npm:^4.2.0" jsonfile: "npm:^6.0.1" universalify: "npm:^2.0.0" - checksum: c4e9fabf9762a70d1403316b7faa899f3d3303c8afa765b891c2210fdeba368461e04ae1203920b64ef6a7d066a39ab8cef2160b5ce8d1011bb4368688cd9bb7 + checksum: 0579bf6726a4cd054d4aa308f10b483f52478bb16284f32cf60b4ce0542063d551fca1a08a2af365e35db21a3fa5a06cf2a6ed614004b4368982bc754cb816b3 languageName: node linkType: hard @@ -3968,6 +3972,15 @@ __metadata: languageName: node linkType: hard +"global-directory@npm:^4.0.1": + version: 4.0.1 + resolution: "global-directory@npm:4.0.1" + dependencies: + ini: "npm:4.1.1" + checksum: 5b4df24438a4e5f21e43fbdd9e54f5e12bb48dce01a0a83b415d8052ce91be2d3a97e0c8f98a535e69649b2190036155e9f0f7d3c62f9318f31bdc3fd4f235f5 + languageName: node + linkType: hard + "global-dirs@npm:^0.1.1": version: 0.1.1 resolution: "global-dirs@npm:0.1.1" @@ -3977,15 +3990,6 @@ __metadata: languageName: node linkType: hard -"global-dirs@npm:^3.0.1": - version: 3.0.1 - resolution: "global-dirs@npm:3.0.1" - dependencies: - ini: "npm:2.0.0" - checksum: 70147b80261601fd40ac02a104581432325c1c47329706acd773f3a6ce99bb36d1d996038c85ccacd482ad22258ec233c586b6a91535b1a116b89663d49d6438 - languageName: node - linkType: hard - "globals@npm:^13.19.0": version: 13.23.0 resolution: "globals@npm:13.23.0" @@ -4233,9 +4237,9 @@ __metadata: linkType: hard "ignore@npm:^5.1.1, ignore@npm:^5.2.0, ignore@npm:^5.2.4": - version: 5.2.4 - resolution: "ignore@npm:5.2.4" - checksum: 4f7caf5d2005da21a382d4bd1d2aa741a3bed51de185c8562dd7f899a81a620ac4fd0619b06f7029a38ae79e4e4c134399db3bd0192c703c3ef54bb82df3086c + version: 5.3.0 + resolution: "ignore@npm:5.3.0" + checksum: 51594355cea4c6ad6b28b3b85eb81afa7b988a1871feefd7062baf136c95aa06760ee934fa9590e43d967bd377ce84a4cf6135fbeb6063e063f1182a0e9a3bcd languageName: node linkType: hard @@ -4249,10 +4253,10 @@ __metadata: languageName: node linkType: hard -"import-meta-resolve@npm:^3.1.1": - version: 3.1.1 - resolution: "import-meta-resolve@npm:3.1.1" - checksum: ae1bd4910eba2a6e15d373a934b5200e8145d63eb7f83639dde1dc1da0c9ad9d960a17c0f09d45118df5c8f63b64492d3bf7039bc3da81544700fb2dad78b84b +"import-meta-resolve@npm:^4.0.0": + version: 4.0.0 + resolution: "import-meta-resolve@npm:4.0.0" + checksum: 73f0f1d68f7280cb4415e3a212a6e5d57fbfe61ab6f467df3dad5361529fbd89ac7d8ea2b694412b74985a4226d218ad3fb22fd8f06f5429beda521dc9f0229c languageName: node linkType: hard @@ -4294,10 +4298,10 @@ __metadata: languageName: node linkType: hard -"ini@npm:2.0.0": - version: 2.0.0 - resolution: "ini@npm:2.0.0" - checksum: 04e24ba05c4f6947e15560824e153b4610bceea2f5a3ab68651d221a4aab3c77d4e3e90a917ebc8bf5ad71a30a8575de56c39d6b4c4b1375a28016b9f3625f9d +"ini@npm:4.1.1": + version: 4.1.1 + resolution: "ini@npm:4.1.1" + checksum: 64c7102301742a7527bb17257d18451410eacf63b4b5648a20e108816c355c21c4e8a1761bbcbf3fe8c4ded3297f1b832b885d5e3e485d781e293ebfaf56fea6 languageName: node linkType: hard @@ -4993,15 +4997,6 @@ __metadata: languageName: node linkType: hard -"locate-path@npm:^7.1.0": - version: 7.2.0 - resolution: "locate-path@npm:7.2.0" - dependencies: - p-locate: "npm:^6.0.0" - checksum: 1c6d269d4efec555937081be964e8a9b4a136319c79ca1d45ac6382212a8466113c75bd89e44521ca8ecd1c47fb08523b56eee5c0712bc7d14fec5f729deeb42 - languageName: node - linkType: hard - "lodash.camelcase@npm:^4.3.0": version: 4.3.0 resolution: "lodash.camelcase@npm:4.3.0" @@ -5120,11 +5115,9 @@ __metadata: linkType: hard "lru-cache@npm:^9.1.1 || ^10.0.0": - version: 10.0.2 - resolution: "lru-cache@npm:10.0.2" - dependencies: - semver: "npm:^7.3.5" - checksum: a675b71a19f4b23186549e343792c3eb6196a5fca2a96b59e31a44289459b7e166b3c6cb08952f45ac29d8cfe561cabee88d906fdd5c98fb7cbda8f5d47431a3 + version: 10.1.0 + resolution: "lru-cache@npm:10.1.0" + checksum: 207278d6fa711fb1f94a0835d4d4737441d2475302482a14785b10515e4c906a57ebf9f35bf060740c9560e91c7c1ad5a04fd7ed030972a9ba18bce2a228e95b languageName: node linkType: hard @@ -5452,14 +5445,14 @@ __metadata: linkType: hard "object.assign@npm:^4.1.2, object.assign@npm:^4.1.4": - version: 4.1.4 - resolution: "object.assign@npm:4.1.4" + version: 4.1.5 + resolution: "object.assign@npm:4.1.5" dependencies: - call-bind: "npm:^1.0.2" - define-properties: "npm:^1.1.4" + call-bind: "npm:^1.0.5" + define-properties: "npm:^1.2.1" has-symbols: "npm:^1.0.3" object-keys: "npm:^1.1.1" - checksum: fd82d45289df0a952d772817622ecbaeb4ec933d3abb53267aede083ee38f6a395af8fadfbc569ee575115b0b7c9b286e7cfb2b7a2557b1055f7acbce513bc29 + checksum: dbb22da4cda82e1658349ea62b80815f587b47131b3dd7a4ab7f84190ab31d206bbd8fe7e26ae3220c55b65725ac4529825f6142154211220302aa6b1518045d languageName: node linkType: hard @@ -5614,15 +5607,6 @@ __metadata: languageName: node linkType: hard -"p-limit@npm:^4.0.0": - version: 4.0.0 - resolution: "p-limit@npm:4.0.0" - dependencies: - yocto-queue: "npm:^1.0.0" - checksum: 01d9d70695187788f984226e16c903475ec6a947ee7b21948d6f597bed788e3112cc7ec2e171c1d37125057a5f45f3da21d8653e04a3a793589e12e9e80e756b - languageName: node - linkType: hard - "p-locate@npm:^4.1.0": version: 4.1.0 resolution: "p-locate@npm:4.1.0" @@ -5641,15 +5625,6 @@ __metadata: languageName: node linkType: hard -"p-locate@npm:^6.0.0": - version: 6.0.0 - resolution: "p-locate@npm:6.0.0" - dependencies: - p-limit: "npm:^4.0.0" - checksum: 2bfe5234efa5e7a4e74b30a5479a193fdd9236f8f6b4d2f3f69e3d286d9a7d7ab0c118a2a50142efcf4e41625def635bd9332d6cbf9cc65d85eb0718c579ab38 - languageName: node - linkType: hard - "p-map@npm:^5.1.0": version: 5.5.0 resolution: "p-map@npm:5.5.0" @@ -5731,13 +5706,6 @@ __metadata: languageName: node linkType: hard -"path-exists@npm:^5.0.0": - version: 5.0.0 - resolution: "path-exists@npm:5.0.0" - checksum: 8ca842868cab09423994596eb2c5ec2a971c17d1a3cb36dbf060592c730c725cd524b9067d7d2a1e031fef9ba7bd2ac6dc5ec9fb92aa693265f7be3987045254 - languageName: node - linkType: hard - "path-is-absolute@npm:^1.0.0": version: 1.0.1 resolution: "path-is-absolute@npm:1.0.1" @@ -5813,12 +5781,12 @@ __metadata: languageName: node linkType: hard -"prettier@npm:^3.0.3": - version: 3.0.3 - resolution: "prettier@npm:3.0.3" +"prettier@npm:^3.1.0": + version: 3.1.0 + resolution: "prettier@npm:3.1.0" bin: prettier: bin/prettier.cjs - checksum: ccf1ead9794b017be6b42d0873f459070beef2069eb393c8b4c0d11aa3430acefc54f6d5f44a5b7ce9af05ad8daf694b912f0aa2808d1c22dfa86e61e9d563f8 + checksum: e95e8f93c6b9aea2ac1e86bebe329bee90c8c50d9a23d1f593eba8d7f39b33b3641eb28785001505b6723c47895a5322ad12a2fb855b289cb7bae450ffc34425 languageName: node linkType: hard @@ -6211,7 +6179,7 @@ __metadata: languageName: node linkType: hard -"semver@npm:7.5.4, semver@npm:^7.1.2, semver@npm:^7.3.4, semver@npm:^7.3.5, semver@npm:^7.3.7, semver@npm:^7.5.3, semver@npm:^7.5.4": +"semver@npm:7.5.4, semver@npm:^7.1.2, semver@npm:^7.3.4, semver@npm:^7.3.7, semver@npm:^7.5.3, semver@npm:^7.5.4": version: 7.5.4 resolution: "semver@npm:7.5.4" dependencies: @@ -6584,12 +6552,12 @@ __metadata: linkType: hard "synckit@npm:^0.8.5": - version: 0.8.5 - resolution: "synckit@npm:0.8.5" + version: 0.8.6 + resolution: "synckit@npm:0.8.6" dependencies: - "@pkgr/utils": "npm:^2.3.1" - tslib: "npm:^2.5.0" - checksum: fb6798a2db2650ca3a2435ad32d4fc14842da807993a1a350b64d267e0e770aa7f26492b119aa7500892d3d07a5af1eec7bfbd6e23a619451558be0f226a6094 + "@pkgr/utils": "npm:^2.4.2" + tslib: "npm:^2.6.2" + checksum: 565c659b5c935905e3774f8a53b013aeb1db03b69cb26cfea742021a274fba792e6ec22f1f918bfb6a7fe16dc9ab6e32a94b4289a8d5d9039b695cd9d524953d languageName: node linkType: hard @@ -6725,7 +6693,7 @@ __metadata: languageName: node linkType: hard -"tslib@npm:^2.1.0, tslib@npm:^2.4.0, tslib@npm:^2.5.0, tslib@npm:^2.6.0": +"tslib@npm:^2.1.0, tslib@npm:^2.4.0, tslib@npm:^2.6.0, tslib@npm:^2.6.2": version: 2.6.2 resolution: "tslib@npm:2.6.2" checksum: bd26c22d36736513980091a1e356378e8b662ded04204453d353a7f34a4c21ed0afc59b5f90719d4ba756e581a162ecbf93118dc9c6be5acf70aa309188166ca @@ -6868,23 +6836,23 @@ __metadata: languageName: node linkType: hard -"typescript@npm:~5.2.2": - version: 5.2.2 - resolution: "typescript@npm:5.2.2" +"typescript@npm:~5.3.2": + version: 5.3.2 + resolution: "typescript@npm:5.3.2" bin: tsc: bin/tsc tsserver: bin/tsserver - checksum: d65e50eb849bd21ff8677e5b9447f9c6e74777e346afd67754934264dcbf4bd59e7d2473f6062d9a015d66bd573311166357e3eb07fea0b52859cf9bb2b58555 + checksum: 415e5fb6611f5713e460bad48039f00bcfdbde53a2f911727862d5aa9c5d5edd250059a419df382d8f031709e15a169c41eb62b6a401da5eec7ac0f4e359d6ac languageName: node linkType: hard -"typescript@patch:typescript@npm%3A~5.2.2#optional!builtin": - version: 5.2.2 - resolution: "typescript@patch:typescript@npm%3A5.2.2#optional!builtin::version=5.2.2&hash=f3b441" +"typescript@patch:typescript@npm%3A~5.3.2#optional!builtin": + version: 5.3.2 + resolution: "typescript@patch:typescript@npm%3A5.3.2#optional!builtin::version=5.3.2&hash=e012d7" bin: tsc: bin/tsc tsserver: bin/tsserver - checksum: f79cc2ba802c94c2b78dbb00d767a10adb67368ae764709737dc277273ec148aa4558033a03ce901406b35fddf4eac46dabc94a1e1d12d2587e2b9cfe5707b4a + checksum: 1b45cdfb577a78ae7a9a9d0b77a7b772142cb98ba05e4e5aefba7044a028ded885bcecef63166407a5986645cea816fe4986894336aacd5e791796ea79a6a7ed languageName: node linkType: hard @@ -7137,7 +7105,7 @@ __metadata: languageName: node linkType: hard -"yaml@npm:2.3.4": +"yaml@npm:2.3.4, yaml@npm:^2.3.4": version: 2.3.4 resolution: "yaml@npm:2.3.4" checksum: f8207ce43065a22268a2806ea6a0fa3974c6fde92b4b2fa0082357e487bc333e85dc518910007e7ac001b532c7c84bd3eccb6c7757e94182b564028b0008f44b @@ -7179,10 +7147,3 @@ __metadata: checksum: f77b3d8d00310def622123df93d4ee654fc6a0096182af8bd60679ddcdfb3474c56c6c7190817c84a2785648cdee9d721c0154eb45698c62176c322fb46fc700 languageName: node linkType: hard - -"yocto-queue@npm:^1.0.0": - version: 1.0.0 - resolution: "yocto-queue@npm:1.0.0" - checksum: 2cac84540f65c64ccc1683c267edce396b26b1e931aa429660aefac8fbe0188167b7aee815a3c22fa59a28a58d898d1a2b1825048f834d8d629f4c2a5d443801 - languageName: node - linkType: hard