From e31f7140c8bb7c34086540912eb595dd04adaef5 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 30 Oct 2022 15:53:14 +0100 Subject: [PATCH] fix(deps): update all non-major dependencies (#387) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Jeroen Claassens --- package.json | 10 +- packages/api/package.json | 2 +- packages/editable-commands/package.json | 2 +- packages/hmr/package.json | 2 +- packages/i18next/package.json | 4 +- .../src/lib/InternationalizationHandler.ts | 2 +- packages/i18next/src/lib/types.ts | 4 +- packages/logger/package.json | 2 +- packages/pattern-commands/package.json | 2 +- packages/scheduled-tasks/package.json | 2 +- packages/subcommands/package.json | 2 +- yarn.lock | 250 +++++++++++++----- 12 files changed, 197 insertions(+), 87 deletions(-) diff --git a/package.json b/package.json index 6a1134c7a..0348ea086 100644 --- a/package.json +++ b/package.json @@ -28,11 +28,11 @@ "@sapphire/stopwatch": "^1.5.0", "@sapphire/ts-config": "^3.3.4", "@sapphire/utilities": "^3.11.0", - "@types/node": "^18.11.3", + "@types/node": "^18.11.7", "@types/node-fetch": "^2.6.2", "@types/ws": "^8.5.3", - "@typescript-eslint/eslint-plugin": "^5.40.1", - "@typescript-eslint/parser": "^5.40.1", + "@typescript-eslint/eslint-plugin": "^5.41.0", + "@typescript-eslint/parser": "^5.41.0", "@vitest/coverage-c8": "^0.24.3", "cz-conventional-changelog": "^3.3.0", "discord-api-types": "^0.33.5", @@ -46,7 +46,7 @@ "prettier": "^2.7.1", "pretty-quick": "^3.1.3", "rimraf": "^3.0.2", - "turbo": "^1.6.1", + "turbo": "^1.6.2", "typescript": "^4.8.4", "vitest": "^0.24.3" }, @@ -73,7 +73,7 @@ }, "resolutions": { "@sapphire/shapeshift": "^3.7.0", - "acorn": "^8.8.0", + "acorn": "^8.8.1", "ansi-regex": "^5.0.1", "minimist": "^1.2.7" }, diff --git a/packages/api/package.json b/packages/api/package.json index 3a1d2cc86..b2b608d37 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -78,7 +78,7 @@ "devDependencies": { "@favware/cliff-jumper": "^1.8.8", "gen-esm-wrapper": "^1.1.3", - "typedoc": "^0.23.17", + "typedoc": "^0.23.19", "typedoc-json-parser": "^7.0.1", "typescript": "^4.8.4" } diff --git a/packages/editable-commands/package.json b/packages/editable-commands/package.json index 334b45750..38da6e987 100644 --- a/packages/editable-commands/package.json +++ b/packages/editable-commands/package.json @@ -73,7 +73,7 @@ "devDependencies": { "@favware/cliff-jumper": "^1.8.8", "gen-esm-wrapper": "^1.1.3", - "typedoc": "^0.23.17", + "typedoc": "^0.23.19", "typedoc-json-parser": "^7.0.1", "typescript": "^4.8.4" } diff --git a/packages/hmr/package.json b/packages/hmr/package.json index 36162d7d8..942cf0c2b 100644 --- a/packages/hmr/package.json +++ b/packages/hmr/package.json @@ -73,7 +73,7 @@ "devDependencies": { "@favware/cliff-jumper": "^1.8.8", "gen-esm-wrapper": "^1.1.3", - "typedoc": "^0.23.17", + "typedoc": "^0.23.19", "typedoc-json-parser": "^7.0.1", "typescript": "^4.8.4" } diff --git a/packages/i18next/package.json b/packages/i18next/package.json index 2dad09be8..c0f2e2a87 100644 --- a/packages/i18next/package.json +++ b/packages/i18next/package.json @@ -41,7 +41,7 @@ "@sapphire/utilities": "^3.11.0", "@skyra/i18next-backend": "^2.0.0", "chokidar": "^3.5.3", - "i18next": "^22.0.2", + "i18next": "^22.0.4", "tslib": "^2.4.0" }, "repository": { @@ -80,7 +80,7 @@ "devDependencies": { "@favware/cliff-jumper": "^1.8.8", "gen-esm-wrapper": "^1.1.3", - "typedoc": "^0.23.17", + "typedoc": "^0.23.19", "typedoc-json-parser": "^7.0.1", "typescript": "^4.8.4" } diff --git a/packages/i18next/src/lib/InternationalizationHandler.ts b/packages/i18next/src/lib/InternationalizationHandler.ts index 2451f9d57..4b7e2af33 100644 --- a/packages/i18next/src/lib/InternationalizationHandler.ts +++ b/packages/i18next/src/lib/InternationalizationHandler.ts @@ -192,7 +192,7 @@ export class InternationalizationHandler { ? { defaultValue: language(this.options.defaultMissingKey, { replace: { key } }) } : undefined; - return language(key, { ...missingHandlers, ...options }); + return language(key, { ...missingHandlers, ...options }) as TResult; } /** diff --git a/packages/i18next/src/lib/types.ts b/packages/i18next/src/lib/types.ts index 82366397a..c0e18e7b9 100644 --- a/packages/i18next/src/lib/types.ts +++ b/packages/i18next/src/lib/types.ts @@ -13,7 +13,7 @@ import type { User, VoiceChannel } from 'discord.js'; -import type { DefaultTFuncReturn, InitOptions, Namespace, TFuncKey, TFuncReturn, TypeOptions } from 'i18next'; +import type { DefaultTFuncReturnWithObject, InitOptions, Namespace, TFuncKey, TFuncReturn, TypeOptions } from 'i18next'; export interface StringMap { [key: string]: any; @@ -23,7 +23,7 @@ export type TFunctionKeys = TFuncKey | TemplateStringsArray extends infer A ? A export type TFunctionResult = TFuncReturn< N, TFunctionKeys, - DefaultTFuncReturn, + DefaultTFuncReturnWithObject, TKPrefix >; diff --git a/packages/logger/package.json b/packages/logger/package.json index c2171eb77..3159675bd 100644 --- a/packages/logger/package.json +++ b/packages/logger/package.json @@ -75,7 +75,7 @@ "devDependencies": { "@favware/cliff-jumper": "^1.8.8", "gen-esm-wrapper": "^1.1.3", - "typedoc": "^0.23.17", + "typedoc": "^0.23.19", "typedoc-json-parser": "^7.0.1", "typescript": "^4.8.4" } diff --git a/packages/pattern-commands/package.json b/packages/pattern-commands/package.json index 7513d74b8..c9537940e 100644 --- a/packages/pattern-commands/package.json +++ b/packages/pattern-commands/package.json @@ -73,7 +73,7 @@ "devDependencies": { "@favware/cliff-jumper": "^1.8.8", "gen-esm-wrapper": "^1.1.3", - "typedoc": "^0.23.17", + "typedoc": "^0.23.19", "typedoc-json-parser": "^7.0.1", "typescript": "^4.8.4" } diff --git a/packages/scheduled-tasks/package.json b/packages/scheduled-tasks/package.json index f7787d25a..ec83d62e2 100644 --- a/packages/scheduled-tasks/package.json +++ b/packages/scheduled-tasks/package.json @@ -74,7 +74,7 @@ "gen-esm-wrapper": "^1.1.3", "sqs-consumer": "^5.7.0", "sqs-producer": "^2.1.0", - "typedoc": "^0.23.17", + "typedoc": "^0.23.19", "typedoc-json-parser": "^7.0.1", "typescript": "^4.8.4" }, diff --git a/packages/subcommands/package.json b/packages/subcommands/package.json index 1ffb564c1..bb88ffab5 100644 --- a/packages/subcommands/package.json +++ b/packages/subcommands/package.json @@ -74,7 +74,7 @@ "devDependencies": { "@favware/cliff-jumper": "^1.8.8", "gen-esm-wrapper": "^1.1.3", - "typedoc": "^0.23.17", + "typedoc": "^0.23.19", "typedoc-json-parser": "^7.0.1", "typescript": "^4.8.4" } diff --git a/yarn.lock b/yarn.lock index 94776d9c9..ea0331436 100644 --- a/yarn.lock +++ b/yarn.lock @@ -656,7 +656,7 @@ __metadata: node-fetch: 2.6.7 psl: ^1.9.0 tslib: ^2.4.0 - typedoc: ^0.23.17 + typedoc: ^0.23.19 typedoc-json-parser: ^7.0.1 typescript: ^4.8.4 languageName: unknown @@ -670,7 +670,7 @@ __metadata: "@skyra/editable-commands": ^2.1.4 gen-esm-wrapper: ^1.1.3 tslib: ^2.4.0 - typedoc: ^0.23.17 + typedoc: ^0.23.19 typedoc-json-parser: ^7.0.1 typescript: ^4.8.4 languageName: unknown @@ -684,7 +684,7 @@ __metadata: chokidar: ^3.5.3 gen-esm-wrapper: ^1.1.3 tslib: 2.x - typedoc: ^0.23.17 + typedoc: ^0.23.19 typedoc-json-parser: ^7.0.1 typescript: ^4.8.4 languageName: unknown @@ -699,9 +699,9 @@ __metadata: "@skyra/i18next-backend": ^2.0.0 chokidar: ^3.5.3 gen-esm-wrapper: ^1.1.3 - i18next: ^22.0.2 + i18next: ^22.0.4 tslib: ^2.4.0 - typedoc: ^0.23.17 + typedoc: ^0.23.19 typedoc-json-parser: ^7.0.1 typescript: ^4.8.4 languageName: unknown @@ -716,7 +716,7 @@ __metadata: colorette: ^2.0.19 gen-esm-wrapper: ^1.1.3 tslib: ^2.4.0 - typedoc: ^0.23.17 + typedoc: ^0.23.19 typedoc-json-parser: ^7.0.1 typescript: ^4.8.4 languageName: unknown @@ -729,7 +729,7 @@ __metadata: "@favware/cliff-jumper": ^1.8.8 gen-esm-wrapper: ^1.1.3 tslib: ^2.4.0 - typedoc: ^0.23.17 + typedoc: ^0.23.19 typedoc-json-parser: ^7.0.1 typescript: ^4.8.4 languageName: unknown @@ -747,7 +747,7 @@ __metadata: sqs-consumer: ^5.7.0 sqs-producer: ^2.1.0 tslib: ^2.4.0 - typedoc: ^0.23.17 + typedoc: ^0.23.19 typedoc-json-parser: ^7.0.1 typescript: ^4.8.4 languageName: unknown @@ -761,7 +761,7 @@ __metadata: "@sapphire/utilities": ^3.11.0 gen-esm-wrapper: ^1.1.3 tslib: ^2.4.0 - typedoc: ^0.23.17 + typedoc: ^0.23.19 typedoc-json-parser: ^7.0.1 typescript: ^4.8.4 languageName: unknown @@ -947,7 +947,7 @@ __metadata: languageName: node linkType: hard -"@types/node@npm:*, @types/node@npm:^18.11.3": +"@types/node@npm:*": version: 18.11.3 resolution: "@types/node@npm:18.11.3" checksum: 3a2a9142d891a90a195c296149bf64a69cc0abcc42f543be911ab22b2e0ead85ff077f90af92f0f13f6e3e5e72501469200fd753dfd1101825d4646a89d3ee47 @@ -961,6 +961,13 @@ __metadata: languageName: node linkType: hard +"@types/node@npm:^18.11.7": + version: 18.11.7 + resolution: "@types/node@npm:18.11.7" + checksum: 69d630825cf6fbf580d08d76a4d4836ef8c34ed4fe0842221ade87d275f517099cbfabe8e22397208e564bd24926db97699ab9db5c091383269a432b336665e2 + languageName: node + linkType: hard + "@types/normalize-package-data@npm:^2.4.0": version: 2.4.1 resolution: "@types/normalize-package-data@npm:2.4.1" @@ -998,7 +1005,7 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/eslint-plugin@npm:^5.33.1, @typescript-eslint/eslint-plugin@npm:^5.40.1": +"@typescript-eslint/eslint-plugin@npm:^5.33.1": version: 5.40.1 resolution: "@typescript-eslint/eslint-plugin@npm:5.40.1" dependencies: @@ -1020,7 +1027,29 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/parser@npm:^5.33.1, @typescript-eslint/parser@npm:^5.40.1": +"@typescript-eslint/eslint-plugin@npm:^5.41.0": + version: 5.41.0 + resolution: "@typescript-eslint/eslint-plugin@npm:5.41.0" + dependencies: + "@typescript-eslint/scope-manager": 5.41.0 + "@typescript-eslint/type-utils": 5.41.0 + "@typescript-eslint/utils": 5.41.0 + debug: ^4.3.4 + ignore: ^5.2.0 + regexpp: ^3.2.0 + semver: ^7.3.7 + tsutils: ^3.21.0 + peerDependencies: + "@typescript-eslint/parser": ^5.0.0 + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + peerDependenciesMeta: + typescript: + optional: true + checksum: b6f08244059a8e02dbb305e914e6455a2b6bfabe6c0fd355bd3a0a732ed44a503ad47d4beb5f617e29274b5a8b8249d80cf4600babf05d8e35958ff64a546da4 + languageName: node + linkType: hard + +"@typescript-eslint/parser@npm:^5.33.1": version: 5.40.1 resolution: "@typescript-eslint/parser@npm:5.40.1" dependencies: @@ -1037,6 +1066,23 @@ __metadata: languageName: node linkType: hard +"@typescript-eslint/parser@npm:^5.41.0": + version: 5.41.0 + resolution: "@typescript-eslint/parser@npm:5.41.0" + dependencies: + "@typescript-eslint/scope-manager": 5.41.0 + "@typescript-eslint/types": 5.41.0 + "@typescript-eslint/typescript-estree": 5.41.0 + debug: ^4.3.4 + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + peerDependenciesMeta: + typescript: + optional: true + checksum: ae005b603218d540dd1c3fd1f84d7f956bfca8b15d2c42115b9fc44437cb73e8284fda62153612a20809449d563edbde968d245b6c9d27b482ad0ebc2a95947f + languageName: node + linkType: hard + "@typescript-eslint/scope-manager@npm:5.40.1": version: 5.40.1 resolution: "@typescript-eslint/scope-manager@npm:5.40.1" @@ -1047,6 +1093,16 @@ __metadata: languageName: node linkType: hard +"@typescript-eslint/scope-manager@npm:5.41.0": + version: 5.41.0 + resolution: "@typescript-eslint/scope-manager@npm:5.41.0" + dependencies: + "@typescript-eslint/types": 5.41.0 + "@typescript-eslint/visitor-keys": 5.41.0 + checksum: f588e7e7e953dfa19632b676f1287a7a4f5e9390282b103b3cf46cc28bb597c1229df2489eb687ab9285674076eb2569b821eac9b3110572d70fd230bdc5d703 + languageName: node + linkType: hard + "@typescript-eslint/type-utils@npm:5.40.1": version: 5.40.1 resolution: "@typescript-eslint/type-utils@npm:5.40.1" @@ -1064,6 +1120,23 @@ __metadata: languageName: node linkType: hard +"@typescript-eslint/type-utils@npm:5.41.0": + version: 5.41.0 + resolution: "@typescript-eslint/type-utils@npm:5.41.0" + dependencies: + "@typescript-eslint/typescript-estree": 5.41.0 + "@typescript-eslint/utils": 5.41.0 + debug: ^4.3.4 + tsutils: ^3.21.0 + peerDependencies: + eslint: "*" + peerDependenciesMeta: + typescript: + optional: true + checksum: c438d4a47f1bbd031245db31c75748a5eac9b7e5d6d3805a914a9b891b03d3d18c7509d2273b1718dcc9c239506a3627e5da34c363d2c22acca2ea64050b5bc4 + languageName: node + linkType: hard + "@typescript-eslint/types@npm:5.40.1": version: 5.40.1 resolution: "@typescript-eslint/types@npm:5.40.1" @@ -1071,6 +1144,13 @@ __metadata: languageName: node linkType: hard +"@typescript-eslint/types@npm:5.41.0": + version: 5.41.0 + resolution: "@typescript-eslint/types@npm:5.41.0" + checksum: d7500bcc67b68032ccf19d983a69efa2750f4d82f5cc027090d2686d4e662b3a7b0b5fa55ed90710eca2528867d39964d76c207ac3c6f734505efbe21dccac7d + languageName: node + linkType: hard + "@typescript-eslint/typescript-estree@npm:5.40.1": version: 5.40.1 resolution: "@typescript-eslint/typescript-estree@npm:5.40.1" @@ -1089,6 +1169,24 @@ __metadata: languageName: node linkType: hard +"@typescript-eslint/typescript-estree@npm:5.41.0": + version: 5.41.0 + resolution: "@typescript-eslint/typescript-estree@npm:5.41.0" + dependencies: + "@typescript-eslint/types": 5.41.0 + "@typescript-eslint/visitor-keys": 5.41.0 + debug: ^4.3.4 + globby: ^11.1.0 + is-glob: ^4.0.3 + semver: ^7.3.7 + tsutils: ^3.21.0 + peerDependenciesMeta: + typescript: + optional: true + checksum: cfb61b5971108807ad4b1e26e71455a0451e8b5ee06e9ae7d2e45caa8e978f0a3bb58bb877eff42a134d3ab21ad23bf138d2b829c407607e3d1fc616f0f87cc9 + languageName: node + linkType: hard + "@typescript-eslint/utils@npm:5.40.1": version: 5.40.1 resolution: "@typescript-eslint/utils@npm:5.40.1" @@ -1107,6 +1205,24 @@ __metadata: languageName: node linkType: hard +"@typescript-eslint/utils@npm:5.41.0": + version: 5.41.0 + resolution: "@typescript-eslint/utils@npm:5.41.0" + dependencies: + "@types/json-schema": ^7.0.9 + "@types/semver": ^7.3.12 + "@typescript-eslint/scope-manager": 5.41.0 + "@typescript-eslint/types": 5.41.0 + "@typescript-eslint/typescript-estree": 5.41.0 + eslint-scope: ^5.1.1 + eslint-utils: ^3.0.0 + semver: ^7.3.7 + peerDependencies: + eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + checksum: 293a0de39639983048b7fe203a4191b97cfc3c868866c1e485ec63c6eab9013002e58f0ac23ec7584f71d28390bf2d6c23ee10d6863ea067567e572cd9d75dae + languageName: node + linkType: hard + "@typescript-eslint/visitor-keys@npm:5.40.1": version: 5.40.1 resolution: "@typescript-eslint/visitor-keys@npm:5.40.1" @@ -1117,6 +1233,16 @@ __metadata: languageName: node linkType: hard +"@typescript-eslint/visitor-keys@npm:5.41.0": + version: 5.41.0 + resolution: "@typescript-eslint/visitor-keys@npm:5.41.0" + dependencies: + "@typescript-eslint/types": 5.41.0 + eslint-visitor-keys: ^3.3.0 + checksum: ff76694170d77c96d6166a1973ca11b4a6de2051e396fc3581534b3d6f574440e0a3af71f0690dfb2368bb5300a412b363c1795ac1ba1f363b1bc115550808cd + languageName: node + linkType: hard + "@vitest/coverage-c8@npm:^0.24.3": version: 0.24.3 resolution: "@vitest/coverage-c8@npm:0.24.3" @@ -1162,12 +1288,12 @@ __metadata: languageName: node linkType: hard -"acorn@npm:^8.8.0": - version: 8.8.0 - resolution: "acorn@npm:8.8.0" +"acorn@npm:^8.8.1": + version: 8.8.1 + resolution: "acorn@npm:8.8.1" bin: acorn: bin/acorn - checksum: 7270ca82b242eafe5687a11fea6e088c960af712683756abf0791b68855ea9cace3057bd5e998ffcef50c944810c1e0ca1da526d02b32110e13c722aa959afdc + checksum: 4079b67283b94935157698831967642f24a075c52ce3feaaaafe095776dfbe15d86a1b33b1e53860fc0d062ed6c83f4284a5c87c85b9ad51853a01173da6097f languageName: node linkType: hard @@ -3502,12 +3628,12 @@ __metadata: languageName: node linkType: hard -"i18next@npm:^22.0.2": - version: 22.0.2 - resolution: "i18next@npm:22.0.2" +"i18next@npm:^22.0.4": + version: 22.0.4 + resolution: "i18next@npm:22.0.4" dependencies: "@babel/runtime": ^7.17.2 - checksum: d779ea7f8e35ad8fd9d38521b670dab9440c6f51eab4347800058ee311a5e55abacac7e55cb1ff9f6898b4222a5f2aac72175f0dc1faeffbf3b4b37800f8f924 + checksum: aa49e6e48583833ee673c0dd9568081a5e15fde9549aa3e47a99ad91d3fdb7469f8a315864fc45ec466b1e60caa00d5fc8371e47840068048b4ab79a69dc2b19 languageName: node linkType: hard @@ -5454,11 +5580,11 @@ __metadata: "@sapphire/stopwatch": ^1.5.0 "@sapphire/ts-config": ^3.3.4 "@sapphire/utilities": ^3.11.0 - "@types/node": ^18.11.3 + "@types/node": ^18.11.7 "@types/node-fetch": ^2.6.2 "@types/ws": ^8.5.3 - "@typescript-eslint/eslint-plugin": ^5.40.1 - "@typescript-eslint/parser": ^5.40.1 + "@typescript-eslint/eslint-plugin": ^5.41.0 + "@typescript-eslint/parser": ^5.41.0 "@vitest/coverage-c8": ^0.24.3 cz-conventional-changelog: ^3.3.0 discord-api-types: ^0.33.5 @@ -5472,7 +5598,7 @@ __metadata: prettier: ^2.7.1 pretty-quick: ^3.1.3 rimraf: ^3.0.2 - turbo: ^1.6.1 + turbo: ^1.6.2 typescript: ^4.8.4 vitest: ^0.24.3 languageName: unknown @@ -6106,58 +6232,58 @@ __metadata: languageName: node linkType: hard -"turbo-darwin-64@npm:1.6.1": - version: 1.6.1 - resolution: "turbo-darwin-64@npm:1.6.1" +"turbo-darwin-64@npm:1.6.2": + version: 1.6.2 + resolution: "turbo-darwin-64@npm:1.6.2" conditions: os=darwin & cpu=x64 languageName: node linkType: hard -"turbo-darwin-arm64@npm:1.6.1": - version: 1.6.1 - resolution: "turbo-darwin-arm64@npm:1.6.1" +"turbo-darwin-arm64@npm:1.6.2": + version: 1.6.2 + resolution: "turbo-darwin-arm64@npm:1.6.2" conditions: os=darwin & cpu=arm64 languageName: node linkType: hard -"turbo-linux-64@npm:1.6.1": - version: 1.6.1 - resolution: "turbo-linux-64@npm:1.6.1" +"turbo-linux-64@npm:1.6.2": + version: 1.6.2 + resolution: "turbo-linux-64@npm:1.6.2" conditions: os=linux & cpu=x64 languageName: node linkType: hard -"turbo-linux-arm64@npm:1.6.1": - version: 1.6.1 - resolution: "turbo-linux-arm64@npm:1.6.1" +"turbo-linux-arm64@npm:1.6.2": + version: 1.6.2 + resolution: "turbo-linux-arm64@npm:1.6.2" conditions: os=linux & cpu=arm64 languageName: node linkType: hard -"turbo-windows-64@npm:1.6.1": - version: 1.6.1 - resolution: "turbo-windows-64@npm:1.6.1" +"turbo-windows-64@npm:1.6.2": + version: 1.6.2 + resolution: "turbo-windows-64@npm:1.6.2" conditions: os=win32 & cpu=x64 languageName: node linkType: hard -"turbo-windows-arm64@npm:1.6.1": - version: 1.6.1 - resolution: "turbo-windows-arm64@npm:1.6.1" +"turbo-windows-arm64@npm:1.6.2": + version: 1.6.2 + resolution: "turbo-windows-arm64@npm:1.6.2" conditions: os=win32 & cpu=arm64 languageName: node linkType: hard -"turbo@npm:^1.6.1": - version: 1.6.1 - resolution: "turbo@npm:1.6.1" - dependencies: - turbo-darwin-64: 1.6.1 - turbo-darwin-arm64: 1.6.1 - turbo-linux-64: 1.6.1 - turbo-linux-arm64: 1.6.1 - turbo-windows-64: 1.6.1 - turbo-windows-arm64: 1.6.1 +"turbo@npm:^1.6.2": + version: 1.6.2 + resolution: "turbo@npm:1.6.2" + dependencies: + turbo-darwin-64: 1.6.2 + turbo-darwin-arm64: 1.6.2 + turbo-linux-64: 1.6.2 + turbo-linux-arm64: 1.6.2 + turbo-windows-64: 1.6.2 + turbo-windows-arm64: 1.6.2 dependenciesMeta: turbo-darwin-64: optional: true @@ -6173,7 +6299,7 @@ __metadata: optional: true bin: turbo: bin/turbo - checksum: 45e89ff34d877c28181e4b61e0f7bca792c88b0446eb2fbdfe433119cf70a4d4897c8c62744f687aea597161387de80a3fed606eb8b8857cb6c6ab3ad563681e + checksum: d32365bdd617d4ef4edbc332784ac303d77627aeb9107a6616f5d1ab7082f84da04905609c0daa39dd3a6841b2b52e46326135e98e29dab4b7f5464758d11513 languageName: node linkType: hard @@ -6252,23 +6378,7 @@ __metadata: languageName: node linkType: hard -"typedoc@npm:^0.23.17": - version: 0.23.17 - resolution: "typedoc@npm:0.23.17" - dependencies: - lunr: ^2.3.9 - marked: ^4.0.19 - minimatch: ^5.1.0 - shiki: ^0.11.1 - peerDependencies: - typescript: 4.6.x || 4.7.x || 4.8.x - bin: - typedoc: bin/typedoc - checksum: 9bfcfa762205f42645a5c545cf75399346663209e1f91f3e630880a6f48a5676a2efab23305df7aca69c6fe19bd4b1c42470bf39b95a369811f6eb4d5a8549e8 - languageName: node - linkType: hard - -"typedoc@npm:^0.23.18": +"typedoc@npm:^0.23.18, typedoc@npm:^0.23.19": version: 0.23.19 resolution: "typedoc@npm:0.23.19" dependencies: