Yarn 4.9.2 and TypeScript 5.8 upgrade (#1671)

* Upgrade yarn to 4.9.2

* Re-run yarn install

* Upgrade typescript to 5.8

* Upgrade typedoc
This commit is contained in:
Simon Warta 2025-06-16 14:34:53 +02:00 committed by GitHub
parent 3f0ba9accb
commit 6a8b686e5f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
52 changed files with 2577 additions and 2049 deletions

2288
.pnp.cjs generated

File diff suppressed because it is too large Load Diff

26
.pnp.loader.mjs generated
View File

@ -131,7 +131,7 @@ async function copyImpl(prelayout, postlayout, destinationFs, destination, sourc
async function maybeLStat(baseFs, p) {
try {
return await baseFs.lstatPromise(p);
} catch (e) {
} catch {
return null;
}
}
@ -482,7 +482,7 @@ class FakeFS {
let current = Buffer.alloc(0);
try {
current = await this.readFilePromise(p);
} catch (error) {
} catch {
}
if (Buffer.compare(current, content) === 0)
return;
@ -492,7 +492,7 @@ class FakeFS {
let current = ``;
try {
current = await this.readFilePromise(p, `utf8`);
} catch (error) {
} catch {
}
const normalizedContent = automaticNewlines ? normalizeLineEndings(current, content) : content;
if (current === normalizedContent)
@ -510,7 +510,7 @@ class FakeFS {
let current = Buffer.alloc(0);
try {
current = this.readFileSync(p);
} catch (error) {
} catch {
}
if (Buffer.compare(current, content) === 0)
return;
@ -520,7 +520,7 @@ class FakeFS {
let current = ``;
try {
current = this.readFileSync(p, `utf8`);
} catch (error) {
} catch {
}
const normalizedContent = automaticNewlines ? normalizeLineEndings(current, content) : content;
if (current === normalizedContent)
@ -560,13 +560,13 @@ class FakeFS {
let pid;
try {
[pid] = await this.readJsonPromise(lockPath);
} catch (error) {
} catch {
return Date.now() - startTime < 500;
}
try {
process.kill(pid, 0);
return true;
} catch (error) {
} catch {
return false;
}
};
@ -579,7 +579,7 @@ class FakeFS {
try {
await this.unlinkPromise(lockPath);
continue;
} catch (error2) {
} catch {
}
}
if (Date.now() - startTime < 60 * 1e3) {
@ -599,7 +599,7 @@ class FakeFS {
try {
await this.closePromise(fd);
await this.unlinkPromise(lockPath);
} catch (error) {
} catch {
}
}
}
@ -895,7 +895,7 @@ class ProxiedFS extends FakeFS {
watch(p, a, b) {
return this.baseFs.watch(
this.mapToBase(p),
// @ts-expect-error
// @ts-expect-error - reason TBS
a,
b
);
@ -903,7 +903,7 @@ class ProxiedFS extends FakeFS {
watchFile(p, a, b) {
return this.baseFs.watchFile(
this.mapToBase(p),
// @ts-expect-error
// @ts-expect-error - reason TBS
a,
b
);
@ -1323,7 +1323,7 @@ class NodeFS extends BasePortableFakeFS {
watch(p, a, b) {
return this.realFs.watch(
npath.fromPortablePath(p),
// @ts-expect-error
// @ts-expect-error - reason TBS
a,
b
);
@ -1331,7 +1331,7 @@ class NodeFS extends BasePortableFakeFS {
watchFile(p, a, b) {
return this.realFs.watchFile(
npath.fromPortablePath(p),
// @ts-expect-error
// @ts-expect-error - reason TBS
a,
b
);

BIN
.yarn/cache/@gerrit0-mini-shiki-npm-3.6.0-64428faaa0-347456c9da.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

BIN
.yarn/cache/@shikijs-engine-oniguruma-npm-3.6.0-2a2a8bbf52-2e3a1fb02d.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

BIN
.yarn/cache/@shikijs-langs-npm-3.6.0-a4a029d6ac-b904e230c5.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

BIN
.yarn/cache/@shikijs-themes-npm-3.6.0-4af1f8a308-33be969bc5.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

BIN
.yarn/cache/@shikijs-types-npm-3.6.0-14e4f96d37-5ea6246541.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

BIN
.yarn/cache/@shikijs-vscode-textmate-npm-10.0.2-c80a8c15da-36b682d691.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

BIN
.yarn/cache/@types-hast-npm-3.0.4-640776a343-3249781a51.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

BIN
.yarn/cache/@types-unist-npm-3.0.3-1c20461f2e-2b1e4adcab.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

Binary file not shown.

BIN
.yarn/cache/entities-npm-4.5.0-7cdb83b832-5b039739f7.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

BIN
.yarn/cache/fsevents-patch-19706e7e35-10c0.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

Binary file not shown.

BIN
.yarn/cache/linkify-it-npm-5.0.0-adb5f9c96f-ff4abbcdfa.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

BIN
.yarn/cache/markdown-it-npm-14.1.0-e337d75bfe-9a6bb44418.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

BIN
.yarn/cache/marked-npm-4.3.0-e7ef9e874f-0013463855.zip (Stored with Git LFS) vendored

Binary file not shown.

BIN
.yarn/cache/mdurl-npm-2.0.0-3259713daf-633db52227.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

Binary file not shown.

BIN
.yarn/cache/punycode.js-npm-2.3.1-9084ecbbf5-1d12c1c0e0.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

BIN
.yarn/cache/shiki-npm-0.14.1-f41a21e5be-ebf642c96d.zip (Stored with Git LFS) vendored

Binary file not shown.

Binary file not shown.

BIN
.yarn/cache/typedoc-npm-0.28.5-bfbced5c2a-fc8235dbe8.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

Binary file not shown.

BIN
.yarn/cache/typescript-npm-5.8.3-fbd7aef456-5f8bb01196.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

BIN
.yarn/cache/typescript-patch-32ada147aa-e3333f887c.zip (Stored with Git LFS) vendored

Binary file not shown.

BIN
.yarn/cache/typescript-patch-f64146f279-39117e346f.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

BIN
.yarn/cache/uc.micro-npm-2.1.0-c45282c865-8862eddb41.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
.yarn/cache/yaml-npm-2.8.0-01747dd315-f6f7310cf7.zip (Stored with Git LFS) vendored Normal file

Binary file not shown.

File diff suppressed because one or more lines are too long

942
.yarn/releases/yarn-4.9.2.cjs vendored Executable file

File diff suppressed because one or more lines are too long

View File

@ -9,4 +9,4 @@ enableTelemetry: false
pnpMode: loose
yarnPath: .yarn/releases/yarn-4.6.0.cjs
yarnPath: .yarn/releases/yarn-4.9.2.cjs

View File

@ -48,7 +48,7 @@
"@cosmjs/stargate": "workspace:^",
"eslint": "^8.57.1",
"prettier": "^2.8.8",
"typescript": "~4.9"
"typescript": "~5.8"
},
"packageManager": "yarn@4.6.0"
"packageManager": "yarn@4.9.2"
}

View File

@ -74,8 +74,8 @@
"ses": "^0.11.0",
"source-map-support": "^0.5.19",
"ts-node": "^8",
"typedoc": "^0.23",
"typescript": "~4.9",
"typedoc": "^0.28",
"typescript": "~5.8",
"webpack": "^5.76.0",
"webpack-cli": "^4.6.0"
}

View File

@ -58,7 +58,7 @@
"diff": "^4",
"recast": "^0.20",
"ts-node": "^8",
"typescript": "~4.9",
"typescript": "~5.8",
"yargs": "^15.3.1"
},
"devDependencies": {

View File

@ -82,8 +82,8 @@
"ses": "^0.11.0",
"source-map-support": "^0.5.19",
"ts-node": "^8",
"typedoc": "^0.23",
"typescript": "~4.9",
"typedoc": "^0.28",
"typescript": "~5.8",
"webpack": "^5.76.0",
"webpack-cli": "^4.6.0"
}

View File

@ -83,8 +83,8 @@
"ses": "^0.11.0",
"source-map-support": "^0.5.19",
"ts-node": "^8",
"typedoc": "^0.23",
"typescript": "~4.9",
"typedoc": "^0.28",
"typescript": "~5.8",
"webpack": "^5.76.0",
"webpack-cli": "^4.6.0"
}

View File

@ -75,8 +75,8 @@
"ses": "^0.11.0",
"source-map-support": "^0.5.19",
"ts-node": "^8",
"typedoc": "^0.23",
"typescript": "~4.9",
"typedoc": "^0.28",
"typescript": "~5.8",
"webpack": "^5.76.0",
"webpack-cli": "^4.6.0"
}

View File

@ -72,8 +72,8 @@
"ses": "^0.11.0",
"source-map-support": "^0.5.19",
"ts-node": "^8",
"typedoc": "^0.23",
"typescript": "~4.9",
"typedoc": "^0.28",
"typescript": "~5.8",
"webpack": "^5.76.0",
"webpack-cli": "^4.6.0"
}

View File

@ -74,7 +74,7 @@
"ses": "^0.11.0",
"source-map-support": "^0.5.19",
"ts-node": "^8",
"typescript": "~4.9",
"typescript": "~5.8",
"webpack": "^5.76.0",
"webpack-cli": "^4.6.0"
}

View File

@ -74,8 +74,8 @@
"ses": "^0.11.0",
"source-map-support": "^0.5.19",
"ts-node": "^8",
"typedoc": "^0.23",
"typescript": "~4.9",
"typedoc": "^0.28",
"typescript": "~5.8",
"webpack": "^5.76.0",
"webpack-cli": "^4.6.0"
}

View File

@ -74,8 +74,8 @@
"ses": "^0.11.0",
"source-map-support": "^0.5.19",
"ts-node": "^8",
"typedoc": "^0.23",
"typescript": "~4.9",
"typedoc": "^0.28",
"typescript": "~5.8",
"webpack": "^5.76.0",
"webpack-cli": "^4.6.0"
}

View File

@ -73,8 +73,8 @@
"ses": "^0.11.0",
"source-map-support": "^0.5.19",
"ts-node": "^8",
"typedoc": "^0.23",
"typescript": "~4.9",
"typedoc": "^0.28",
"typescript": "~5.8",
"webpack": "^5.76.0",
"webpack-cli": "^4.6.0"
}

View File

@ -78,8 +78,8 @@
"ses": "^0.11.0",
"source-map-support": "^0.5.19",
"ts-node": "^8",
"typedoc": "^0.23",
"typescript": "~4.9",
"typedoc": "^0.28",
"typescript": "~5.8",
"webpack": "^5.76.0",
"webpack-cli": "^4.6.0"
}

View File

@ -77,8 +77,8 @@
"ses": "^0.11.0",
"source-map-support": "^0.5.19",
"ts-node": "^8",
"typedoc": "^0.23",
"typescript": "~4.9",
"typedoc": "^0.28",
"typescript": "~5.8",
"webpack": "^5.76.0",
"webpack-cli": "^4.6.0"
}

View File

@ -80,8 +80,8 @@
"ses": "^0.11.0",
"source-map-support": "^0.5.19",
"ts-node": "^8",
"typedoc": "^0.23",
"typescript": "~4.9",
"typedoc": "^0.28",
"typescript": "~5.8",
"webpack": "^5.76.0",
"webpack-cli": "^4.6.0"
}

View File

@ -74,8 +74,8 @@
"ses": "^0.11.0",
"source-map-support": "^0.5.19",
"ts-node": "^8",
"typedoc": "^0.23",
"typescript": "~4.9",
"typedoc": "^0.28",
"typescript": "~5.8",
"webpack": "^5.76.0",
"webpack-cli": "^4.6.0"
}

View File

@ -83,8 +83,8 @@
"ses": "^0.11.0",
"source-map-support": "^0.5.19",
"ts-node": "^8",
"typedoc": "^0.23",
"typescript": "~4.9",
"typedoc": "^0.28",
"typescript": "~5.8",
"webpack": "^5.76.0",
"webpack-cli": "^4.6.0"
}

View File

@ -70,8 +70,8 @@
"ses": "^0.11.0",
"source-map-support": "^0.5.19",
"ts-node": "^8",
"typedoc": "^0.23",
"typescript": "~4.9",
"typedoc": "^0.28",
"typescript": "~5.8",
"webpack": "^5.76.0",
"webpack-cli": "^4.6.0"
}

283
yarn.lock
View File

@ -306,8 +306,8 @@ __metadata:
ses: "npm:^0.11.0"
source-map-support: "npm:^0.5.19"
ts-node: "npm:^8"
typedoc: "npm:^0.23"
typescript: "npm:~4.9"
typedoc: "npm:^0.28"
typescript: "npm:~5.8"
webpack: "npm:^5.76.0"
webpack-cli: "npm:^4.6.0"
languageName: unknown
@ -355,7 +355,7 @@ __metadata:
recast: "npm:^0.20"
source-map-support: "npm:^0.5.19"
ts-node: "npm:^8"
typescript: "npm:~4.9"
typescript: "npm:~5.8"
yargs: "npm:^15.3.1"
bin:
cosmjs-cli: bin/cosmjs-cli
@ -408,8 +408,8 @@ __metadata:
ses: "npm:^0.11.0"
source-map-support: "npm:^0.5.19"
ts-node: "npm:^8"
typedoc: "npm:^0.23"
typescript: "npm:~4.9"
typedoc: "npm:^0.28"
typescript: "npm:~5.8"
webpack: "npm:^5.76.0"
webpack-cli: "npm:^4.6.0"
languageName: unknown
@ -459,8 +459,8 @@ __metadata:
ses: "npm:^0.11.0"
source-map-support: "npm:^0.5.19"
ts-node: "npm:^8"
typedoc: "npm:^0.23"
typescript: "npm:~4.9"
typedoc: "npm:^0.28"
typescript: "npm:~5.8"
webpack: "npm:^5.76.0"
webpack-cli: "npm:^4.6.0"
languageName: unknown
@ -503,8 +503,8 @@ __metadata:
ses: "npm:^0.11.0"
source-map-support: "npm:^0.5.19"
ts-node: "npm:^8"
typedoc: "npm:^0.23"
typescript: "npm:~4.9"
typedoc: "npm:^0.28"
typescript: "npm:~5.8"
webpack: "npm:^5.76.0"
webpack-cli: "npm:^4.6.0"
languageName: unknown
@ -544,8 +544,8 @@ __metadata:
ses: "npm:^0.11.0"
source-map-support: "npm:^0.5.19"
ts-node: "npm:^8"
typedoc: "npm:^0.23"
typescript: "npm:~4.9"
typedoc: "npm:^0.28"
typescript: "npm:~5.8"
webpack: "npm:^5.76.0"
webpack-cli: "npm:^4.6.0"
languageName: unknown
@ -586,7 +586,7 @@ __metadata:
ses: "npm:^0.11.0"
source-map-support: "npm:^0.5.19"
ts-node: "npm:^8"
typescript: "npm:~4.9"
typescript: "npm:~5.8"
webpack: "npm:^5.76.0"
webpack-cli: "npm:^4.6.0"
bin:
@ -627,8 +627,8 @@ __metadata:
ses: "npm:^0.11.0"
source-map-support: "npm:^0.5.19"
ts-node: "npm:^8"
typedoc: "npm:^0.23"
typescript: "npm:~4.9"
typedoc: "npm:^0.28"
typescript: "npm:~5.8"
webpack: "npm:^5.76.0"
webpack-cli: "npm:^4.6.0"
xstream: "npm:^11.14.0"
@ -674,8 +674,8 @@ __metadata:
ses: "npm:^0.11.0"
source-map-support: "npm:^0.5.19"
ts-node: "npm:^8"
typedoc: "npm:^0.23"
typescript: "npm:~4.9"
typedoc: "npm:^0.28"
typescript: "npm:~5.8"
webpack: "npm:^5.76.0"
webpack-cli: "npm:^4.6.0"
languageName: unknown
@ -716,8 +716,8 @@ __metadata:
ses: "npm:^0.11.0"
source-map-support: "npm:^0.5.19"
ts-node: "npm:^8"
typedoc: "npm:^0.23"
typescript: "npm:~4.9"
typedoc: "npm:^0.28"
typescript: "npm:~5.8"
webpack: "npm:^5.76.0"
webpack-cli: "npm:^4.6.0"
languageName: unknown
@ -764,8 +764,8 @@ __metadata:
ses: "npm:^0.11.0"
source-map-support: "npm:^0.5.19"
ts-node: "npm:^8"
typedoc: "npm:^0.23"
typescript: "npm:~4.9"
typedoc: "npm:^0.28"
typescript: "npm:~5.8"
webpack: "npm:^5.76.0"
webpack-cli: "npm:^4.6.0"
languageName: unknown
@ -806,8 +806,8 @@ __metadata:
ses: "npm:^0.11.0"
source-map-support: "npm:^0.5.19"
ts-node: "npm:^8"
typedoc: "npm:^0.23"
typescript: "npm:~4.9"
typedoc: "npm:^0.28"
typescript: "npm:~5.8"
webpack: "npm:^5.76.0"
webpack-cli: "npm:^4.6.0"
ws: "npm:^7"
@ -859,8 +859,8 @@ __metadata:
ses: "npm:^0.11.0"
source-map-support: "npm:^0.5.19"
ts-node: "npm:^8"
typedoc: "npm:^0.23"
typescript: "npm:~4.9"
typedoc: "npm:^0.28"
typescript: "npm:~5.8"
webpack: "npm:^5.76.0"
webpack-cli: "npm:^4.6.0"
languageName: unknown
@ -899,8 +899,8 @@ __metadata:
ses: "npm:^0.11.0"
source-map-support: "npm:^0.5.19"
ts-node: "npm:^8"
typedoc: "npm:^0.23"
typescript: "npm:~4.9"
typedoc: "npm:^0.28"
typescript: "npm:~5.8"
webpack: "npm:^5.76.0"
webpack-cli: "npm:^4.6.0"
xstream: "npm:^11.14.0"
@ -949,8 +949,8 @@ __metadata:
ses: "npm:^0.11.0"
source-map-support: "npm:^0.5.19"
ts-node: "npm:^8"
typedoc: "npm:^0.23"
typescript: "npm:~4.9"
typedoc: "npm:^0.28"
typescript: "npm:~5.8"
webpack: "npm:^5.76.0"
webpack-cli: "npm:^4.6.0"
xstream: "npm:^11.14.0"
@ -991,8 +991,8 @@ __metadata:
ses: "npm:^0.11.0"
source-map-support: "npm:^0.5.19"
ts-node: "npm:^8"
typedoc: "npm:^0.23"
typescript: "npm:~4.9"
typedoc: "npm:^0.28"
typescript: "npm:~5.8"
webpack: "npm:^5.76.0"
webpack-cli: "npm:^4.6.0"
languageName: unknown
@ -1047,6 +1047,19 @@ __metadata:
languageName: node
linkType: hard
"@gerrit0/mini-shiki@npm:^3.2.2":
version: 3.6.0
resolution: "@gerrit0/mini-shiki@npm:3.6.0"
dependencies:
"@shikijs/engine-oniguruma": "npm:^3.6.0"
"@shikijs/langs": "npm:^3.6.0"
"@shikijs/themes": "npm:^3.6.0"
"@shikijs/types": "npm:^3.6.0"
"@shikijs/vscode-textmate": "npm:^10.0.2"
checksum: 10c0/347456c9da8a1fadd3c1f63097da459a5f930ef4bca6431cce913a379012c551e061d0a94ff7a0f307215b87f2418b7c198a55fba888fc97fb02ab36247adf6b
languageName: node
linkType: hard
"@humanwhocodes/config-array@npm:^0.13.0":
version: 0.13.0
resolution: "@humanwhocodes/config-array@npm:0.13.0"
@ -1402,6 +1415,51 @@ __metadata:
languageName: node
linkType: hard
"@shikijs/engine-oniguruma@npm:^3.6.0":
version: 3.6.0
resolution: "@shikijs/engine-oniguruma@npm:3.6.0"
dependencies:
"@shikijs/types": "npm:3.6.0"
"@shikijs/vscode-textmate": "npm:^10.0.2"
checksum: 10c0/2e3a1fb02d823be5d998a310fa2e5e34e92a7498996bed2ec52eb9368dbba99e10571619a364c406d79f3047b966fecc7afb29635a8fdfa6a25c9ee5cd8f2f34
languageName: node
linkType: hard
"@shikijs/langs@npm:^3.6.0":
version: 3.6.0
resolution: "@shikijs/langs@npm:3.6.0"
dependencies:
"@shikijs/types": "npm:3.6.0"
checksum: 10c0/b904e230c5b4e1cd0c1c09d36b3704ac961b8b27802581ee375c2c1f92f5df5e93dc88ddf882be094fe42c3bd374c67e10f2f14d4974d0cb8e04efc8ba3492f0
languageName: node
linkType: hard
"@shikijs/themes@npm:^3.6.0":
version: 3.6.0
resolution: "@shikijs/themes@npm:3.6.0"
dependencies:
"@shikijs/types": "npm:3.6.0"
checksum: 10c0/33be969bc56ea86590d63042a24ab715527f30f9488cca6fe17dfff67894ca1e75e83ddca9c9b5d449a8e8586ad014ace8b92b389e73be2c35280d6f805b87a3
languageName: node
linkType: hard
"@shikijs/types@npm:3.6.0, @shikijs/types@npm:^3.6.0":
version: 3.6.0
resolution: "@shikijs/types@npm:3.6.0"
dependencies:
"@shikijs/vscode-textmate": "npm:^10.0.2"
"@types/hast": "npm:^3.0.4"
checksum: 10c0/5ea6246541b18e67bde854c4b72fb3aecde4a7da080be827645e4728945b782df9dc6498115085afbcf180e21e06e949bc3b8c3162233a2bdf4313979f49a6f7
languageName: node
linkType: hard
"@shikijs/vscode-textmate@npm:^10.0.2":
version: 10.0.2
resolution: "@shikijs/vscode-textmate@npm:10.0.2"
checksum: 10c0/36b682d691088ec244de292dc8f91b808f95c89466af421cf84cbab92230f03c8348649c14b3251991b10ce632b0c715e416e992dd5f28ff3221dc2693fd9462
languageName: node
linkType: hard
"@socket.io/component-emitter@npm:~3.1.0":
version: 3.1.0
resolution: "@socket.io/component-emitter@npm:3.1.0"
@ -1591,6 +1649,15 @@ __metadata:
languageName: node
linkType: hard
"@types/hast@npm:^3.0.4":
version: 3.0.4
resolution: "@types/hast@npm:3.0.4"
dependencies:
"@types/unist": "npm:*"
checksum: 10c0/3249781a511b38f1d330fd1e3344eed3c4e7ea8eff82e835d35da78e637480d36fad37a78be5a7aed8465d237ad0446abc1150859d0fde395354ea634decf9f7
languageName: node
linkType: hard
"@types/http-assert@npm:*":
version: 1.5.1
resolution: "@types/http-assert@npm:1.5.1"
@ -1837,6 +1904,13 @@ __metadata:
languageName: node
linkType: hard
"@types/unist@npm:*":
version: 3.0.3
resolution: "@types/unist@npm:3.0.3"
checksum: 10c0/2b1e4adcab78388e088fcc3c0ae8700f76619dbcb4741d7d201f87e2cb346bfc29a89003cfea2d76c996e1061452e14fcd737e8b25aacf949c1f2d6b2bc3dd60
languageName: node
linkType: hard
"@types/ws@npm:^6.0.1":
version: 6.0.4
resolution: "@types/ws@npm:6.0.4"
@ -2327,13 +2401,6 @@ __metadata:
languageName: node
linkType: hard
"ansi-sequence-parser@npm:^1.1.0":
version: 1.1.0
resolution: "ansi-sequence-parser@npm:1.1.0"
checksum: 10c0/87810a794a7eea0ec947e6a576017c52a8d95494956c74769cc65582338de2a368525d25bc9fde68f78451d420e334b8b7dd22c3c00be4ac880f0a4ac1dd1a4b
languageName: node
linkType: hard
"ansi-styles@npm:^3.2.1":
version: 3.2.1
resolution: "ansi-styles@npm:3.2.1"
@ -3146,7 +3213,7 @@ __metadata:
"@cosmjs/stargate": "workspace:^"
eslint: "npm:^8.57.1"
prettier: "npm:^2.8.8"
typescript: "npm:~4.9"
typescript: "npm:~5.8"
languageName: unknown
linkType: soft
@ -3578,6 +3645,13 @@ __metadata:
languageName: node
linkType: hard
"entities@npm:^4.4.0":
version: 4.5.0
resolution: "entities@npm:4.5.0"
checksum: 10c0/5b039739f7621f5d1ad996715e53d964035f75ad3b9a4d38c6b3804bb226e282ffeae2443624d8fdd9c47d8e926ae9ac009c54671243f0c3294c26af7cc85250
languageName: node
linkType: hard
"env-paths@npm:^2.2.0":
version: 2.2.1
resolution: "env-paths@npm:2.2.1"
@ -5509,13 +5583,6 @@ __metadata:
languageName: node
linkType: hard
"jsonc-parser@npm:^3.2.0":
version: 3.2.0
resolution: "jsonc-parser@npm:3.2.0"
checksum: 10c0/5a12d4d04dad381852476872a29dcee03a57439574e4181d91dca71904fcdcc5e8e4706c0a68a2c61ad9810e1e1c5806b5100d52d3e727b78f5cdc595401045b
languageName: node
linkType: hard
"jsonfile@npm:^6.0.1":
version: 6.1.0
resolution: "jsonfile@npm:6.1.0"
@ -5716,6 +5783,15 @@ __metadata:
languageName: node
linkType: hard
"linkify-it@npm:^5.0.0":
version: 5.0.0
resolution: "linkify-it@npm:5.0.0"
dependencies:
uc.micro: "npm:^2.0.0"
checksum: 10c0/ff4abbcdfa2003472fc3eb4b8e60905ec97718e11e33cca52059919a4c80cc0e0c2a14d23e23d8c00e5402bc5a885cdba8ca053a11483ab3cc8b3c7a52f88e2d
languageName: node
linkType: hard
"loader-runner@npm:^4.2.0":
version: 4.2.0
resolution: "loader-runner@npm:4.2.0"
@ -5860,12 +5936,19 @@ __metadata:
languageName: node
linkType: hard
"marked@npm:^4.2.12":
version: 4.3.0
resolution: "marked@npm:4.3.0"
"markdown-it@npm:^14.1.0":
version: 14.1.0
resolution: "markdown-it@npm:14.1.0"
dependencies:
argparse: "npm:^2.0.1"
entities: "npm:^4.4.0"
linkify-it: "npm:^5.0.0"
mdurl: "npm:^2.0.0"
punycode.js: "npm:^2.3.1"
uc.micro: "npm:^2.1.0"
bin:
marked: bin/marked.js
checksum: 10c0/0013463855e31b9c88d8bb2891a611d10ef1dc79f2e3cbff1bf71ba389e04c5971298c886af0be799d7fa9aa4593b086a136062d59f1210b0480b026a8c5dc47
markdown-it: bin/markdown-it.mjs
checksum: 10c0/9a6bb444181d2db7016a4173ae56a95a62c84d4cbfb6916a399b11d3e6581bf1cc2e4e1d07a2f022ae72c25f56db90fbe1e529fca16fbf9541659dc53480d4b4
languageName: node
linkType: hard
@ -5876,6 +5959,13 @@ __metadata:
languageName: node
linkType: hard
"mdurl@npm:^2.0.0":
version: 2.0.0
resolution: "mdurl@npm:2.0.0"
checksum: 10c0/633db522272f75ce4788440669137c77540d74a83e9015666a9557a152c02e245b192edc20bc90ae953bbab727503994a53b236b4d9c99bdaee594d0e7dd2ce0
languageName: node
linkType: hard
"media-typer@npm:0.3.0":
version: 0.3.0
resolution: "media-typer@npm:0.3.0"
@ -5969,16 +6059,7 @@ __metadata:
languageName: node
linkType: hard
"minimatch@npm:^7.1.3":
version: 7.4.4
resolution: "minimatch@npm:7.4.4"
dependencies:
brace-expansion: "npm:^2.0.1"
checksum: 10c0/33c1bb37f4792c02a99ce76168b51426848d5e3f003555d8ae2dc46e1d9c897d6c4d219cc31155ca2472a726704c61be822739ba1e3d1072c71dbc72c3d02942
languageName: node
linkType: hard
"minimatch@npm:^9.0.4":
"minimatch@npm:^9.0.4, minimatch@npm:^9.0.5":
version: 9.0.5
resolution: "minimatch@npm:9.0.5"
dependencies:
@ -6785,6 +6866,13 @@ __metadata:
languageName: node
linkType: hard
"punycode.js@npm:^2.3.1":
version: 2.3.1
resolution: "punycode.js@npm:2.3.1"
checksum: 10c0/1d12c1c0e06127fa5db56bd7fdf698daf9a78104456a6b67326877afc21feaa821257b171539caedd2f0524027fa38e67b13dd094159c8d70b6d26d2bea4dfdb
languageName: node
linkType: hard
"punycode@npm:^2.1.0":
version: 2.1.1
resolution: "punycode@npm:2.1.1"
@ -7322,18 +7410,6 @@ __metadata:
languageName: node
linkType: hard
"shiki@npm:^0.14.1":
version: 0.14.1
resolution: "shiki@npm:0.14.1"
dependencies:
ansi-sequence-parser: "npm:^1.1.0"
jsonc-parser: "npm:^3.2.0"
vscode-oniguruma: "npm:^1.7.0"
vscode-textmate: "npm:^8.0.0"
checksum: 10c0/ebf642c96dcd2ad267080dff21739c7ecb1c539e4f6f18f1b68dceed314783d8b274c956af42941395057fff21270c0962a158b08fdb049e841a761ddde53795
languageName: node
linkType: hard
"side-channel-list@npm:^1.0.0":
version: 1.0.0
resolution: "side-channel-list@npm:1.0.0"
@ -8117,39 +8193,40 @@ __metadata:
languageName: node
linkType: hard
"typedoc@npm:^0.23":
version: 0.23.28
resolution: "typedoc@npm:0.23.28"
"typedoc@npm:^0.28":
version: 0.28.5
resolution: "typedoc@npm:0.28.5"
dependencies:
"@gerrit0/mini-shiki": "npm:^3.2.2"
lunr: "npm:^2.3.9"
marked: "npm:^4.2.12"
minimatch: "npm:^7.1.3"
shiki: "npm:^0.14.1"
markdown-it: "npm:^14.1.0"
minimatch: "npm:^9.0.5"
yaml: "npm:^2.7.1"
peerDependencies:
typescript: 4.6.x || 4.7.x || 4.8.x || 4.9.x || 5.0.x
typescript: 5.0.x || 5.1.x || 5.2.x || 5.3.x || 5.4.x || 5.5.x || 5.6.x || 5.7.x || 5.8.x
bin:
typedoc: bin/typedoc
checksum: 10c0/d54171221e9303fbd38e5e69a53fdbe5a0c47e578df5d9698eb94b92115f6243194a613c3e4cd58c9d370634dd813224c219ec04dcff7782e6878c387e32ddab
checksum: 10c0/fc8235dbe8f14da24fdb088467b01887b3f1375b27d5caf0276ae405f03aa1f523e94aea52fe8ce1a3d477ae9e3f4f69fdc28614275445a828a77db88784e6ce
languageName: node
linkType: hard
"typescript@npm:~4.9":
version: 4.9.5
resolution: "typescript@npm:4.9.5"
"typescript@npm:~5.8":
version: 5.8.3
resolution: "typescript@npm:5.8.3"
bin:
tsc: bin/tsc
tsserver: bin/tsserver
checksum: 10c0/5f6cad2e728a8a063521328e612d7876e12f0d8a8390d3b3aaa452a6a65e24e9ac8ea22beb72a924fd96ea0a49ea63bb4e251fb922b12eedfb7f7a26475e5c56
checksum: 10c0/5f8bb01196e542e64d44db3d16ee0e4063ce4f3e3966df6005f2588e86d91c03e1fb131c2581baf0fb65ee79669eea6e161cd448178986587e9f6844446dbb48
languageName: node
linkType: hard
"typescript@patch:typescript@npm%3A~4.9#optional!builtin<compat/typescript>":
version: 4.9.5
resolution: "typescript@patch:typescript@npm%3A4.9.5#optional!builtin<compat/typescript>::version=4.9.5&hash=289587"
"typescript@patch:typescript@npm%3A~5.8#optional!builtin<compat/typescript>":
version: 5.8.3
resolution: "typescript@patch:typescript@npm%3A5.8.3#optional!builtin<compat/typescript>::version=5.8.3&hash=5786d5"
bin:
tsc: bin/tsc
tsserver: bin/tsserver
checksum: 10c0/e3333f887c6829dfe0ab6c1dbe0dd1e3e2aeb56c66460cb85c5440c566f900c833d370ca34eb47558c0c69e78ced4bfe09b8f4f98b6de7afed9b84b8d1dd06a1
checksum: 10c0/39117e346ff8ebd87ae1510b3a77d5d92dae5a89bde588c747d25da5c146603a99c8ee588c7ef80faaf123d89ed46f6dbd918d534d641083177d5fac38b8a1cb
languageName: node
linkType: hard
@ -8160,6 +8237,13 @@ __metadata:
languageName: node
linkType: hard
"uc.micro@npm:^2.0.0, uc.micro@npm:^2.1.0":
version: 2.1.0
resolution: "uc.micro@npm:2.1.0"
checksum: 10c0/8862eddb412dda76f15db8ad1c640ccc2f47cdf8252a4a30be908d535602c8d33f9855dfcccb8b8837855c1ce1eaa563f7fa7ebe3c98fd0794351aab9b9c55fa
languageName: node
linkType: hard
"unbox-primitive@npm:^1.1.0":
version: 1.1.0
resolution: "unbox-primitive@npm:1.1.0"
@ -8289,20 +8373,6 @@ __metadata:
languageName: node
linkType: hard
"vscode-oniguruma@npm:^1.7.0":
version: 1.7.0
resolution: "vscode-oniguruma@npm:1.7.0"
checksum: 10c0/bef0073c665ddf8c86e51da94529c905856559e9aba97a9882f951acd572da560384775941ab6e7e8db94d9c578b25fefb951e4b73c37e8712e16b0231de2689
languageName: node
linkType: hard
"vscode-textmate@npm:^8.0.0":
version: 8.0.0
resolution: "vscode-textmate@npm:8.0.0"
checksum: 10c0/836f7fe73fc94998a38ca193df48173a2b6eab08b4943d83c8cac9a2a0c3546cfdab4cf1b10b890ec4a4374c5bee03a885ef0e83e7fd2bd618cf00781c017c04
languageName: node
linkType: hard
"watchpack@npm:^2.4.0":
version: 2.4.0
resolution: "watchpack@npm:2.4.0"
@ -8660,6 +8730,15 @@ __metadata:
languageName: node
linkType: hard
"yaml@npm:^2.7.1":
version: 2.8.0
resolution: "yaml@npm:2.8.0"
bin:
yaml: bin.mjs
checksum: 10c0/f6f7310cf7264a8107e72c1376f4de37389945d2fb4656f8060eca83f01d2d703f9d1b925dd8f39852a57034fafefde6225409ddd9f22aebfda16c6141b71858
languageName: node
linkType: hard
"yargs-parser@npm:^18.1.2":
version: 18.1.3
resolution: "yargs-parser@npm:18.1.3"