Merge pull request #1196 from cosmos/upgrade-ts
Upgrade TypeScript to 4.6
This commit is contained in:
commit
7624c0bd12
46
.pnp.loader.mjs
generated
46
.pnp.loader.mjs
generated
@ -38,7 +38,7 @@ npath.toPortablePath = toPortablePath;
|
||||
npath.contains = (from, to) => contains(npath, from, to);
|
||||
ppath.contains = (from, to) => contains(ppath, from, to);
|
||||
const WINDOWS_PATH_REGEXP = /^([a-zA-Z]:.*)$/;
|
||||
const UNC_WINDOWS_PATH_REGEXP = /^\\\\(\.\\)?(.*)$/;
|
||||
const UNC_WINDOWS_PATH_REGEXP = /^\/\/(\.\/)?(.*)$/;
|
||||
const PORTABLE_PATH_REGEXP = /^\/([a-zA-Z]:.*)$/;
|
||||
const UNC_PORTABLE_PATH_REGEXP = /^\/unc\/(\.dot\/)?(.*)$/;
|
||||
function fromPortablePath(p) {
|
||||
@ -56,12 +56,13 @@ function fromPortablePath(p) {
|
||||
function toPortablePath(p) {
|
||||
if (process.platform !== `win32`)
|
||||
return p;
|
||||
p = p.replace(/\\/g, `/`);
|
||||
let windowsPathMatch, uncWindowsPathMatch;
|
||||
if (windowsPathMatch = p.match(WINDOWS_PATH_REGEXP))
|
||||
p = `/${windowsPathMatch[1]}`;
|
||||
else if (uncWindowsPathMatch = p.match(UNC_WINDOWS_PATH_REGEXP))
|
||||
p = `/unc/${uncWindowsPathMatch[1] ? `.dot/` : ``}${uncWindowsPathMatch[2]}`;
|
||||
return p.replace(/\\/g, `/`);
|
||||
return p;
|
||||
}
|
||||
|
||||
const builtinModules = new Set(Module.builtinModules || Object.keys(process.binding(`natives`)));
|
||||
@ -100,15 +101,19 @@ async function tryReadFile(path2) {
|
||||
throw error;
|
||||
}
|
||||
}
|
||||
function tryParseURL(str) {
|
||||
function tryParseURL(str, base) {
|
||||
try {
|
||||
return new URL(str);
|
||||
return new URL(str, base);
|
||||
} catch {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
let entrypointPath = null;
|
||||
function setEntrypointPath(file) {
|
||||
entrypointPath = file;
|
||||
}
|
||||
function getFileFormat(filepath) {
|
||||
var _a;
|
||||
var _a, _b;
|
||||
const ext = path.extname(filepath);
|
||||
switch (ext) {
|
||||
case `.mjs`: {
|
||||
@ -125,12 +130,21 @@ function getFileFormat(filepath) {
|
||||
}
|
||||
case `.js`: {
|
||||
const pkg = readPackageScope(filepath);
|
||||
if (pkg) {
|
||||
return (_a = pkg.data.type) != null ? _a : `commonjs`;
|
||||
}
|
||||
if (!pkg)
|
||||
return `commonjs`;
|
||||
return (_a = pkg.data.type) != null ? _a : `commonjs`;
|
||||
}
|
||||
default: {
|
||||
if (entrypointPath !== filepath)
|
||||
return null;
|
||||
const pkg = readPackageScope(filepath);
|
||||
if (!pkg)
|
||||
return `commonjs`;
|
||||
if (pkg.data.type === `module`)
|
||||
return null;
|
||||
return (_b = pkg.data.type) != null ? _b : `commonjs`;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
async function getFormat$1(resolved, context, defaultGetFormat) {
|
||||
@ -170,17 +184,18 @@ async function load$1(urlString, context, defaultLoad) {
|
||||
}
|
||||
|
||||
const pathRegExp = /^(?![a-zA-Z]:[\\/]|\\\\|\.{0,2}(?:\/|$))((?:node:)?(?:@[^/]+\/)?[^/]+)\/*(.*|)$/;
|
||||
const isRelativeRegexp = /^\.{0,2}\//;
|
||||
async function resolve$1(originalSpecifier, context, defaultResolver) {
|
||||
var _a;
|
||||
const {findPnpApi} = moduleExports;
|
||||
if (!findPnpApi || isBuiltinModule(originalSpecifier))
|
||||
return defaultResolver(originalSpecifier, context, defaultResolver);
|
||||
let specifier = originalSpecifier;
|
||||
const url = tryParseURL(specifier);
|
||||
const url = tryParseURL(specifier, isRelativeRegexp.test(specifier) ? context.parentURL : void 0);
|
||||
if (url) {
|
||||
if (url.protocol !== `file:`)
|
||||
return defaultResolver(originalSpecifier, context, defaultResolver);
|
||||
specifier = fileURLToPath(specifier);
|
||||
specifier = fileURLToPath(url);
|
||||
}
|
||||
const {parentURL, conditions = []} = context;
|
||||
const issuer = parentURL ? fileURLToPath(parentURL) : process.cwd();
|
||||
@ -208,8 +223,15 @@ async function resolve$1(originalSpecifier, context, defaultResolver) {
|
||||
});
|
||||
if (!result)
|
||||
throw new Error(`Resolving '${specifier}' from '${issuer}' failed`);
|
||||
const resultURL = pathToFileURL(result);
|
||||
if (url) {
|
||||
resultURL.search = url.search;
|
||||
resultURL.hash = url.hash;
|
||||
}
|
||||
if (!parentURL)
|
||||
setEntrypointPath(fileURLToPath(resultURL));
|
||||
return {
|
||||
url: pathToFileURL(result).href
|
||||
url: resultURL.href
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
BIN
.yarn/cache/@koa-cors-npm-3.1.0-77098c22e6-b6f18de404.zip
(Stored with Git LFS)
vendored
BIN
.yarn/cache/@koa-cors-npm-3.1.0-77098c22e6-b6f18de404.zip
(Stored with Git LFS)
vendored
Binary file not shown.
BIN
.yarn/cache/@koa-cors-npm-3.3.0-0564248a2f-bb49c680e0.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@koa-cors-npm-3.3.0-0564248a2f-bb49c680e0.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@types-koa-bodyparser-npm-4.3.0-dbbe458791-b124fc80f7.zip
(Stored with Git LFS)
vendored
BIN
.yarn/cache/@types-koa-bodyparser-npm-4.3.0-dbbe458791-b124fc80f7.zip
(Stored with Git LFS)
vendored
Binary file not shown.
BIN
.yarn/cache/@types-koa-bodyparser-npm-4.3.7-ff2df015ea-3a2cac14cb.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@types-koa-bodyparser-npm-4.3.7-ff2df015ea-3a2cac14cb.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@types-koa-npm-2.13.4-e10e6e7742-35a54e6894.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@types-koa-npm-2.13.4-e10e6e7742-35a54e6894.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/@types-koa__cors-npm-3.0.2-025aaf3a31-6286f04c7a.zip
(Stored with Git LFS)
vendored
BIN
.yarn/cache/@types-koa__cors-npm-3.0.2-025aaf3a31-6286f04c7a.zip
(Stored with Git LFS)
vendored
Binary file not shown.
BIN
.yarn/cache/@types-koa__cors-npm-3.3.0-d247b76272-c1aeb10b07.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/@types-koa__cors-npm-3.3.0-d247b76272-c1aeb10b07.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/acorn-npm-8.7.1-7c7a019990-aca0aabf98.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/acorn-npm-8.7.1-7c7a019990-aca0aabf98.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/any-promise-npm-1.3.0-f34eeaa7e7-0ee8a9bdbe.zip
(Stored with Git LFS)
vendored
BIN
.yarn/cache/any-promise-npm-1.3.0-f34eeaa7e7-0ee8a9bdbe.zip
(Stored with Git LFS)
vendored
Binary file not shown.
BIN
.yarn/cache/brace-expansion-npm-2.0.1-17aa2616f9-a61e7cd2e8.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/brace-expansion-npm-2.0.1-17aa2616f9-a61e7cd2e8.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/debug-npm-3.1.0-9f0accb99b-0b52718ab9.zip
(Stored with Git LFS)
vendored
BIN
.yarn/cache/debug-npm-3.1.0-9f0accb99b-0b52718ab9.zip
(Stored with Git LFS)
vendored
Binary file not shown.
BIN
.yarn/cache/glob-npm-8.0.3-750f909025-50bcdea19d.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/glob-npm-8.0.3-750f909025-50bcdea19d.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/koa-compose-npm-3.2.1-0020b997fa-ff8e5fc034.zip
(Stored with Git LFS)
vendored
BIN
.yarn/cache/koa-compose-npm-3.2.1-0020b997fa-ff8e5fc034.zip
(Stored with Git LFS)
vendored
Binary file not shown.
BIN
.yarn/cache/koa-convert-npm-1.2.0-5a09e15433-a33944dbda.zip
(Stored with Git LFS)
vendored
BIN
.yarn/cache/koa-convert-npm-1.2.0-5a09e15433-a33944dbda.zip
(Stored with Git LFS)
vendored
Binary file not shown.
BIN
.yarn/cache/koa-convert-npm-2.0.0-d709eca55c-7385b33919.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/koa-convert-npm-2.0.0-d709eca55c-7385b33919.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/koa-npm-2.13.1-71ea540872-c09c64eb32.zip
(Stored with Git LFS)
vendored
BIN
.yarn/cache/koa-npm-2.13.1-71ea540872-c09c64eb32.zip
(Stored with Git LFS)
vendored
Binary file not shown.
BIN
.yarn/cache/koa-npm-2.13.4-8aee05a69e-c9a6f9c803.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/koa-npm-2.13.4-8aee05a69e-c9a6f9c803.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/marked-npm-4.0.10-7e4da27560-46cd8ef1a7.zip
(Stored with Git LFS)
vendored
BIN
.yarn/cache/marked-npm-4.0.10-7e4da27560-46cd8ef1a7.zip
(Stored with Git LFS)
vendored
Binary file not shown.
BIN
.yarn/cache/marked-npm-4.0.17-d85fa63152-33a3c43a20.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/marked-npm-4.0.17-d85fa63152-33a3c43a20.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/minimatch-npm-5.1.0-34f6240621-15ce53d31a.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/minimatch-npm-5.1.0-34f6240621-15ce53d31a.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/shiki-npm-0.10.0-fc0b9f8d84-b72630a56c.zip
(Stored with Git LFS)
vendored
BIN
.yarn/cache/shiki-npm-0.10.0-fc0b9f8d84-b72630a56c.zip
(Stored with Git LFS)
vendored
Binary file not shown.
BIN
.yarn/cache/shiki-npm-0.10.1-2c9519a6d0-fb746f3cb3.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/shiki-npm-0.10.1-2c9519a6d0-fb746f3cb3.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/typedoc-npm-0.22.11-aa5ea7b88b-7d29f4b771.zip
(Stored with Git LFS)
vendored
BIN
.yarn/cache/typedoc-npm-0.22.11-aa5ea7b88b-7d29f4b771.zip
(Stored with Git LFS)
vendored
Binary file not shown.
BIN
.yarn/cache/typedoc-npm-0.22.18-bac06a3e09-b813d81296.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/typedoc-npm-0.22.18-bac06a3e09-b813d81296.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/typescript-npm-4.4.4-3fedcc07a3-89ecb8436b.zip
(Stored with Git LFS)
vendored
BIN
.yarn/cache/typescript-npm-4.4.4-3fedcc07a3-89ecb8436b.zip
(Stored with Git LFS)
vendored
Binary file not shown.
BIN
.yarn/cache/typescript-npm-4.6.4-114dfa5f7e-e7bfcc39cd.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/typescript-npm-4.6.4-114dfa5f7e-e7bfcc39cd.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
BIN
.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip
(Stored with Git LFS)
vendored
BIN
.yarn/cache/typescript-patch-d95d140154-bd629ad0da.zip
(Stored with Git LFS)
vendored
Binary file not shown.
BIN
.yarn/cache/typescript-patch-e50fdcf519-1cb434fbc6.zip
(Stored with Git LFS)
vendored
Normal file
BIN
.yarn/cache/typescript-patch-e50fdcf519-1cb434fbc6.zip
(Stored with Git LFS)
vendored
Normal file
Binary file not shown.
768
.yarn/releases/yarn-3.1.0.cjs
vendored
768
.yarn/releases/yarn-3.1.0.cjs
vendored
File diff suppressed because one or more lines are too long
786
.yarn/releases/yarn-3.2.1.cjs
vendored
Executable file
786
.yarn/releases/yarn-3.2.1.cjs
vendored
Executable file
File diff suppressed because one or more lines are too long
2
.yarn/sdks/typescript/package.json
vendored
2
.yarn/sdks/typescript/package.json
vendored
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "typescript",
|
||||
"version": "4.4.4-sdk",
|
||||
"version": "4.6.4-sdk",
|
||||
"main": "./lib/typescript.js",
|
||||
"type": "commonjs"
|
||||
}
|
||||
|
||||
@ -13,4 +13,4 @@ plugins:
|
||||
|
||||
pnpMode: loose
|
||||
|
||||
yarnPath: .yarn/releases/yarn-3.1.0.cjs
|
||||
yarnPath: .yarn/releases/yarn-3.2.1.cjs
|
||||
|
||||
@ -48,6 +48,7 @@
|
||||
"@cosmjs/stargate": "workspace:packages/stargate",
|
||||
"eslint": "^7.5",
|
||||
"prettier": "^2.4.1",
|
||||
"typescript": "~4.4"
|
||||
}
|
||||
"typescript": "~4.6"
|
||||
},
|
||||
"packageManager": "yarn@3.2.1"
|
||||
}
|
||||
|
||||
@ -75,7 +75,7 @@
|
||||
"source-map-support": "^0.5.19",
|
||||
"ts-node": "^8",
|
||||
"typedoc": "^0.22",
|
||||
"typescript": "~4.4",
|
||||
"typescript": "~4.6",
|
||||
"webpack": "^5.32.0",
|
||||
"webpack-cli": "^4.6.0"
|
||||
}
|
||||
|
||||
@ -57,7 +57,7 @@
|
||||
"diff": "^4",
|
||||
"recast": "^0.20",
|
||||
"ts-node": "^8",
|
||||
"typescript": "~4.4",
|
||||
"typescript": "~4.6",
|
||||
"yargs": "^15.3.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
||||
@ -85,7 +85,7 @@
|
||||
"source-map-support": "^0.5.19",
|
||||
"ts-node": "^8",
|
||||
"typedoc": "^0.22",
|
||||
"typescript": "~4.4",
|
||||
"typescript": "~4.6",
|
||||
"webpack": "^5.32.0",
|
||||
"webpack-cli": "^4.6.0"
|
||||
}
|
||||
|
||||
@ -84,7 +84,7 @@
|
||||
"source-map-support": "^0.5.19",
|
||||
"ts-node": "^8",
|
||||
"typedoc": "^0.22",
|
||||
"typescript": "~4.4",
|
||||
"typescript": "~4.6",
|
||||
"webpack": "^5.32.0",
|
||||
"webpack-cli": "^4.6.0"
|
||||
}
|
||||
|
||||
@ -76,7 +76,7 @@
|
||||
"source-map-support": "^0.5.19",
|
||||
"ts-node": "^8",
|
||||
"typedoc": "^0.22",
|
||||
"typescript": "~4.4",
|
||||
"typescript": "~4.6",
|
||||
"webpack": "^5.32.0",
|
||||
"webpack-cli": "^4.6.0"
|
||||
}
|
||||
|
||||
@ -73,7 +73,7 @@
|
||||
"source-map-support": "^0.5.19",
|
||||
"ts-node": "^8",
|
||||
"typedoc": "^0.22",
|
||||
"typescript": "~4.4",
|
||||
"typescript": "~4.6",
|
||||
"webpack": "^5.32.0",
|
||||
"webpack-cli": "^4.6.0"
|
||||
}
|
||||
|
||||
@ -46,17 +46,17 @@
|
||||
"@cosmjs/proto-signing": "workspace:packages/proto-signing",
|
||||
"@cosmjs/stargate": "workspace:packages/stargate",
|
||||
"@cosmjs/utils": "workspace:packages/utils",
|
||||
"@koa/cors": "^3.0.0",
|
||||
"koa": "^2.11.0",
|
||||
"koa-bodyparser": "^4.2.1"
|
||||
"@koa/cors": "^3.3",
|
||||
"koa": "^2.13",
|
||||
"koa-bodyparser": "^4.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@istanbuljs/nyc-config-typescript": "^1.0.1",
|
||||
"@types/eslint-plugin-prettier": "^3",
|
||||
"@types/jasmine": "^4",
|
||||
"@types/koa": "^2.11.0",
|
||||
"@types/koa-bodyparser": "^4.3.0",
|
||||
"@types/koa__cors": "^3.0.1",
|
||||
"@types/koa": "^2.13",
|
||||
"@types/koa-bodyparser": "^4.3",
|
||||
"@types/koa__cors": "^3.3",
|
||||
"@typescript-eslint/eslint-plugin": "^5.13.0",
|
||||
"@typescript-eslint/parser": "^5.13.0",
|
||||
"eslint": "^7.5",
|
||||
@ -73,7 +73,7 @@
|
||||
"ses": "^0.11.0",
|
||||
"source-map-support": "^0.5.19",
|
||||
"ts-node": "^8",
|
||||
"typescript": "~4.4",
|
||||
"typescript": "~4.6",
|
||||
"webpack": "^5.32.0",
|
||||
"webpack-cli": "^4.6.0"
|
||||
}
|
||||
|
||||
@ -57,7 +57,7 @@ export class Webserver {
|
||||
}
|
||||
|
||||
// context.request.body is set by the bodyParser() plugin
|
||||
const requestBody = context.request.body;
|
||||
const requestBody = (context.request as any).body;
|
||||
const creditBody = RequestParser.parseCreditBody(requestBody);
|
||||
const { address, denom } = creditBody;
|
||||
|
||||
|
||||
@ -75,7 +75,7 @@
|
||||
"source-map-support": "^0.5.19",
|
||||
"ts-node": "^8",
|
||||
"typedoc": "^0.22",
|
||||
"typescript": "~4.4",
|
||||
"typescript": "~4.6",
|
||||
"webpack": "^5.32.0",
|
||||
"webpack-cli": "^4.6.0"
|
||||
}
|
||||
|
||||
@ -75,7 +75,7 @@
|
||||
"source-map-support": "^0.5.19",
|
||||
"ts-node": "^8",
|
||||
"typedoc": "^0.22",
|
||||
"typescript": "~4.4",
|
||||
"typescript": "~4.6",
|
||||
"webpack": "^5.32.0",
|
||||
"webpack-cli": "^4.6.0"
|
||||
}
|
||||
|
||||
@ -74,7 +74,7 @@
|
||||
"source-map-support": "^0.5.19",
|
||||
"ts-node": "^8",
|
||||
"typedoc": "^0.22",
|
||||
"typescript": "~4.4",
|
||||
"typescript": "~4.6",
|
||||
"webpack": "^5.32.0",
|
||||
"webpack-cli": "^4.6.0"
|
||||
}
|
||||
|
||||
@ -80,7 +80,7 @@
|
||||
"source-map-support": "^0.5.19",
|
||||
"ts-node": "^8",
|
||||
"typedoc": "^0.22",
|
||||
"typescript": "~4.4",
|
||||
"typescript": "~4.6",
|
||||
"webpack": "^5.32.0",
|
||||
"webpack-cli": "^4.6.0"
|
||||
}
|
||||
|
||||
@ -78,7 +78,7 @@
|
||||
"source-map-support": "^0.5.19",
|
||||
"ts-node": "^8",
|
||||
"typedoc": "^0.22",
|
||||
"typescript": "~4.4",
|
||||
"typescript": "~4.6",
|
||||
"webpack": "^5.32.0",
|
||||
"webpack-cli": "^4.6.0"
|
||||
}
|
||||
|
||||
@ -85,7 +85,7 @@
|
||||
"source-map-support": "^0.5.19",
|
||||
"ts-node": "^8",
|
||||
"typedoc": "^0.22",
|
||||
"typescript": "~4.4",
|
||||
"typescript": "~4.6",
|
||||
"webpack": "^5.32.0",
|
||||
"webpack-cli": "^4.6.0"
|
||||
}
|
||||
|
||||
@ -75,7 +75,7 @@
|
||||
"source-map-support": "^0.5.19",
|
||||
"ts-node": "^8",
|
||||
"typedoc": "^0.22",
|
||||
"typescript": "~4.4",
|
||||
"typescript": "~4.6",
|
||||
"webpack": "^5.32.0",
|
||||
"webpack-cli": "^4.6.0"
|
||||
}
|
||||
|
||||
@ -84,7 +84,7 @@
|
||||
"source-map-support": "^0.5.19",
|
||||
"ts-node": "^8",
|
||||
"typedoc": "^0.22",
|
||||
"typescript": "~4.4",
|
||||
"typescript": "~4.6",
|
||||
"webpack": "^5.32.0",
|
||||
"webpack-cli": "^4.6.0"
|
||||
}
|
||||
|
||||
@ -71,7 +71,7 @@
|
||||
"source-map-support": "^0.5.19",
|
||||
"ts-node": "^8",
|
||||
"typedoc": "^0.22",
|
||||
"typescript": "~4.4",
|
||||
"typescript": "~4.6",
|
||||
"webpack": "^5.32.0",
|
||||
"webpack-cli": "^4.6.0"
|
||||
}
|
||||
|
||||
229
yarn.lock
229
yarn.lock
@ -2,7 +2,7 @@
|
||||
# Manual changes might be lost - proceed with caution!
|
||||
|
||||
__metadata:
|
||||
version: 5
|
||||
version: 6
|
||||
cacheKey: 8
|
||||
|
||||
"@agoric/babel-standalone@npm:^7.9.5":
|
||||
@ -330,7 +330,7 @@ __metadata:
|
||||
source-map-support: ^0.5.19
|
||||
ts-node: ^8
|
||||
typedoc: ^0.22
|
||||
typescript: ~4.4
|
||||
typescript: ~4.6
|
||||
webpack: ^5.32.0
|
||||
webpack-cli: ^4.6.0
|
||||
languageName: unknown
|
||||
@ -378,7 +378,7 @@ __metadata:
|
||||
recast: ^0.20
|
||||
source-map-support: ^0.5.19
|
||||
ts-node: ^8
|
||||
typescript: ~4.4
|
||||
typescript: ~4.6
|
||||
yargs: ^15.3.1
|
||||
bin:
|
||||
cosmjs-cli: bin/cosmjs-cli
|
||||
@ -434,7 +434,7 @@ __metadata:
|
||||
source-map-support: ^0.5.19
|
||||
ts-node: ^8
|
||||
typedoc: ^0.22
|
||||
typescript: ~4.4
|
||||
typescript: ~4.6
|
||||
webpack: ^5.32.0
|
||||
webpack-cli: ^4.6.0
|
||||
languageName: unknown
|
||||
@ -485,7 +485,7 @@ __metadata:
|
||||
source-map-support: ^0.5.19
|
||||
ts-node: ^8
|
||||
typedoc: ^0.22
|
||||
typescript: ~4.4
|
||||
typescript: ~4.6
|
||||
webpack: ^5.32.0
|
||||
webpack-cli: ^4.6.0
|
||||
languageName: unknown
|
||||
@ -529,7 +529,7 @@ __metadata:
|
||||
source-map-support: ^0.5.19
|
||||
ts-node: ^8
|
||||
typedoc: ^0.22
|
||||
typescript: ~4.4
|
||||
typescript: ~4.6
|
||||
webpack: ^5.32.0
|
||||
webpack-cli: ^4.6.0
|
||||
languageName: unknown
|
||||
@ -570,7 +570,7 @@ __metadata:
|
||||
source-map-support: ^0.5.19
|
||||
ts-node: ^8
|
||||
typedoc: ^0.22
|
||||
typescript: ~4.4
|
||||
typescript: ~4.6
|
||||
webpack: ^5.32.0
|
||||
webpack-cli: ^4.6.0
|
||||
languageName: unknown
|
||||
@ -587,12 +587,12 @@ __metadata:
|
||||
"@cosmjs/stargate": "workspace:packages/stargate"
|
||||
"@cosmjs/utils": "workspace:packages/utils"
|
||||
"@istanbuljs/nyc-config-typescript": ^1.0.1
|
||||
"@koa/cors": ^3.0.0
|
||||
"@koa/cors": ^3.3
|
||||
"@types/eslint-plugin-prettier": ^3
|
||||
"@types/jasmine": ^4
|
||||
"@types/koa": ^2.11.0
|
||||
"@types/koa-bodyparser": ^4.3.0
|
||||
"@types/koa__cors": ^3.0.1
|
||||
"@types/koa": ^2.13
|
||||
"@types/koa-bodyparser": ^4.3
|
||||
"@types/koa__cors": ^3.3
|
||||
"@typescript-eslint/eslint-plugin": ^5.13.0
|
||||
"@typescript-eslint/parser": ^5.13.0
|
||||
eslint: ^7.5
|
||||
@ -604,14 +604,14 @@ __metadata:
|
||||
esm: ^3.2.25
|
||||
jasmine: ^4
|
||||
jasmine-spec-reporter: ^6
|
||||
koa: ^2.11.0
|
||||
koa-bodyparser: ^4.2.1
|
||||
koa: ^2.13
|
||||
koa-bodyparser: ^4.3
|
||||
nyc: ^15.1.0
|
||||
prettier: ^2.4.1
|
||||
ses: ^0.11.0
|
||||
source-map-support: ^0.5.19
|
||||
ts-node: ^8
|
||||
typescript: ~4.4
|
||||
typescript: ~4.6
|
||||
webpack: ^5.32.0
|
||||
webpack-cli: ^4.6.0
|
||||
bin:
|
||||
@ -653,7 +653,7 @@ __metadata:
|
||||
source-map-support: ^0.5.19
|
||||
ts-node: ^8
|
||||
typedoc: ^0.22
|
||||
typescript: ~4.4
|
||||
typescript: ~4.6
|
||||
webpack: ^5.32.0
|
||||
webpack-cli: ^4.6.0
|
||||
xstream: ^11.14.0
|
||||
@ -700,7 +700,7 @@ __metadata:
|
||||
source-map-support: ^0.5.19
|
||||
ts-node: ^8
|
||||
typedoc: ^0.22
|
||||
typescript: ~4.4
|
||||
typescript: ~4.6
|
||||
webpack: ^5.32.0
|
||||
webpack-cli: ^4.6.0
|
||||
languageName: unknown
|
||||
@ -742,7 +742,7 @@ __metadata:
|
||||
source-map-support: ^0.5.19
|
||||
ts-node: ^8
|
||||
typedoc: ^0.22
|
||||
typescript: ~4.4
|
||||
typescript: ~4.6
|
||||
webpack: ^5.32.0
|
||||
webpack-cli: ^4.6.0
|
||||
languageName: unknown
|
||||
@ -791,7 +791,7 @@ __metadata:
|
||||
source-map-support: ^0.5.19
|
||||
ts-node: ^8
|
||||
typedoc: ^0.22
|
||||
typescript: ~4.4
|
||||
typescript: ~4.6
|
||||
webpack: ^5.32.0
|
||||
webpack-cli: ^4.6.0
|
||||
languageName: unknown
|
||||
@ -833,7 +833,7 @@ __metadata:
|
||||
source-map-support: ^0.5.19
|
||||
ts-node: ^8
|
||||
typedoc: ^0.22
|
||||
typescript: ~4.4
|
||||
typescript: ~4.6
|
||||
webpack: ^5.32.0
|
||||
webpack-cli: ^4.6.0
|
||||
ws: ^7
|
||||
@ -889,7 +889,7 @@ __metadata:
|
||||
source-map-support: ^0.5.19
|
||||
ts-node: ^8
|
||||
typedoc: ^0.22
|
||||
typescript: ~4.4
|
||||
typescript: ~4.6
|
||||
webpack: ^5.32.0
|
||||
webpack-cli: ^4.6.0
|
||||
xstream: ^11.14.0
|
||||
@ -930,7 +930,7 @@ __metadata:
|
||||
source-map-support: ^0.5.19
|
||||
ts-node: ^8
|
||||
typedoc: ^0.22
|
||||
typescript: ~4.4
|
||||
typescript: ~4.6
|
||||
webpack: ^5.32.0
|
||||
webpack-cli: ^4.6.0
|
||||
xstream: ^11.14.0
|
||||
@ -980,7 +980,7 @@ __metadata:
|
||||
source-map-support: ^0.5.19
|
||||
ts-node: ^8
|
||||
typedoc: ^0.22
|
||||
typescript: ~4.4
|
||||
typescript: ~4.6
|
||||
webpack: ^5.32.0
|
||||
webpack-cli: ^4.6.0
|
||||
xstream: ^11.14.0
|
||||
@ -1022,7 +1022,7 @@ __metadata:
|
||||
source-map-support: ^0.5.19
|
||||
ts-node: ^8
|
||||
typedoc: ^0.22
|
||||
typescript: ~4.4
|
||||
typescript: ~4.6
|
||||
webpack: ^5.32.0
|
||||
webpack-cli: ^4.6.0
|
||||
languageName: unknown
|
||||
@ -1085,12 +1085,12 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@koa/cors@npm:^3.0.0":
|
||||
version: 3.1.0
|
||||
resolution: "@koa/cors@npm:3.1.0"
|
||||
"@koa/cors@npm:^3.3":
|
||||
version: 3.3.0
|
||||
resolution: "@koa/cors@npm:3.3.0"
|
||||
dependencies:
|
||||
vary: ^1.1.2
|
||||
checksum: b6f18de404a967696fe19c9a8d35816e2a845be51f9aa49f1a8d31bbea095eaa20c35eceafe1b764a7e3a912052ca6eaf1965ac34b00020b1ec2823cb60a9b5d
|
||||
checksum: bb49c680e0d151aec1b19c24c14d61b65f430eb379e63d83789602cc7d8e52706ebcd74867cdb60b1d50ddb6f3d59be04e1c46328fae5721aeaf50e0d4fc2d28
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@ -1565,12 +1565,12 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@types/koa-bodyparser@npm:^4.3.0":
|
||||
version: 4.3.0
|
||||
resolution: "@types/koa-bodyparser@npm:4.3.0"
|
||||
"@types/koa-bodyparser@npm:^4.3":
|
||||
version: 4.3.7
|
||||
resolution: "@types/koa-bodyparser@npm:4.3.7"
|
||||
dependencies:
|
||||
"@types/koa": "*"
|
||||
checksum: b124fc80f738462e5303737b00889be10bdddbfc47e15121b48a09653b1b512aed0ea99a38cd427c9b62decfc6bec0c4ffd8786568ca6cec6fba5a98c678801e
|
||||
checksum: 3a2cac14cb4a720d017d7708fbe9e8a310b5ecebbe62703a2606bb48c775fbeaf9fd601ba9cb7add03c7059f90327d8bcad3d70443eaea383b117b5c020054ec
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@ -1583,7 +1583,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@types/koa@npm:*, @types/koa@npm:^2.11.0":
|
||||
"@types/koa@npm:*":
|
||||
version: 2.13.1
|
||||
resolution: "@types/koa@npm:2.13.1"
|
||||
dependencies:
|
||||
@ -1599,12 +1599,28 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@types/koa__cors@npm:^3.0.1":
|
||||
version: 3.0.2
|
||||
resolution: "@types/koa__cors@npm:3.0.2"
|
||||
"@types/koa@npm:^2.13":
|
||||
version: 2.13.4
|
||||
resolution: "@types/koa@npm:2.13.4"
|
||||
dependencies:
|
||||
"@types/accepts": "*"
|
||||
"@types/content-disposition": "*"
|
||||
"@types/cookies": "*"
|
||||
"@types/http-assert": "*"
|
||||
"@types/http-errors": "*"
|
||||
"@types/keygrip": "*"
|
||||
"@types/koa-compose": "*"
|
||||
"@types/node": "*"
|
||||
checksum: 35a54e68944f74d6763537d55d01f8ed870d0ef816b5f27fce97a317b237540b7c249dc4a54abab44ad0afd0ce010b335122c9efb490b9589affe7929201d707
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@types/koa__cors@npm:^3.3":
|
||||
version: 3.3.0
|
||||
resolution: "@types/koa__cors@npm:3.3.0"
|
||||
dependencies:
|
||||
"@types/koa": "*"
|
||||
checksum: 6286f04c7aa67e273136e111d2c01b6230b7aedf5d78916af1e0313df8da40e26a07b488f2838bd4c1e45001790e1e2098d40f5a1adcb8d74933602a7c608770
|
||||
checksum: c1aeb10b070e72b6c01a2f6abb4b0a936017794ef4eab3469697a4e24ef2054bc371519afa90c8e6c5ea9dbeda58395a64400bd499c3fda207cb593b751b44ca
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@ -2104,6 +2120,15 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"acorn@npm:^8.5.0":
|
||||
version: 8.7.1
|
||||
resolution: "acorn@npm:8.7.1"
|
||||
bin:
|
||||
acorn: bin/acorn
|
||||
checksum: aca0aabf98826717920ac2583fdcad0a6fbe4e583fdb6e843af2594e907455aeafe30b1e14f1757cd83ce1776773cf8296ffc3a4acf13f0bd3dfebcf1db6ae80
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"agent-base@npm:6":
|
||||
version: 6.0.2
|
||||
resolution: "agent-base@npm:6.0.2"
|
||||
@ -2213,13 +2238,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"any-promise@npm:^1.1.0":
|
||||
version: 1.3.0
|
||||
resolution: "any-promise@npm:1.3.0"
|
||||
checksum: 0ee8a9bdbe882c90464d75d1f55cf027f5458650c4bd1f0467e65aec38ccccda07ca5844969ee77ed46d04e7dded3eaceb027e8d32f385688523fe305fa7e1de
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"anymatch@npm:~3.1.2":
|
||||
version: 3.1.2
|
||||
resolution: "anymatch@npm:3.1.2"
|
||||
@ -2441,6 +2459,15 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"brace-expansion@npm:^2.0.1":
|
||||
version: 2.0.1
|
||||
resolution: "brace-expansion@npm:2.0.1"
|
||||
dependencies:
|
||||
balanced-match: ^1.0.0
|
||||
checksum: a61e7cd2e8a8505e9f0036b3b6108ba5e926b4b55089eeb5550cd04a471fe216c96d4fe7e4c7f995c728c554ae20ddfc4244cad10aef255e72b62930afd233d1
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"braces@npm:^3.0.1, braces@npm:^3.0.2, braces@npm:~3.0.2":
|
||||
version: 3.0.2
|
||||
resolution: "braces@npm:3.0.2"
|
||||
@ -2899,7 +2926,7 @@ __metadata:
|
||||
"@cosmjs/stargate": "workspace:packages/stargate"
|
||||
eslint: ^7.5
|
||||
prettier: ^2.4.1
|
||||
typescript: ~4.4
|
||||
typescript: ~4.6
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
@ -2968,15 +2995,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"debug@npm:~3.1.0":
|
||||
version: 3.1.0
|
||||
resolution: "debug@npm:3.1.0"
|
||||
dependencies:
|
||||
ms: 2.0.0
|
||||
checksum: 0b52718ab957254a5b3ca07fc34543bc778f358620c206a08452251eb7fc193c3ea3505072acbf4350219c14e2d71ceb7bdaa0d3370aa630b50da790458d08b3
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"decamelize@npm:^1.2.0":
|
||||
version: 1.2.0
|
||||
resolution: "decamelize@npm:1.2.0"
|
||||
@ -3966,7 +3984,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"glob@npm:^7.1.7, glob@npm:^7.2.0":
|
||||
"glob@npm:^7.1.7":
|
||||
version: 7.2.0
|
||||
resolution: "glob@npm:7.2.0"
|
||||
dependencies:
|
||||
@ -3980,6 +3998,19 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"glob@npm:^8.0.3":
|
||||
version: 8.0.3
|
||||
resolution: "glob@npm:8.0.3"
|
||||
dependencies:
|
||||
fs.realpath: ^1.0.0
|
||||
inflight: ^1.0.4
|
||||
inherits: 2
|
||||
minimatch: ^5.0.1
|
||||
once: ^1.3.0
|
||||
checksum: 50bcdea19d8e79d8de5f460b1939ffc2b3299eac28deb502093fdca22a78efebc03e66bf54f0abc3d3d07d8134d19a32850288b7440d77e072aa55f9d33b18c5
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"globals@npm:^11.1.0":
|
||||
version: 11.12.0
|
||||
resolution: "globals@npm:11.12.0"
|
||||
@ -4925,7 +4956,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"koa-bodyparser@npm:^4.2.1":
|
||||
"koa-bodyparser@npm:^4.3":
|
||||
version: 4.3.0
|
||||
resolution: "koa-bodyparser@npm:4.3.0"
|
||||
dependencies:
|
||||
@ -4935,15 +4966,6 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"koa-compose@npm:^3.0.0":
|
||||
version: 3.2.1
|
||||
resolution: "koa-compose@npm:3.2.1"
|
||||
dependencies:
|
||||
any-promise: ^1.1.0
|
||||
checksum: ff8e5fc0348455acf751179c6c613eb030a5fac6406d3b49ae9e00460b7ee8770db3ef62633fd3db0306cd4a6d2a0b5152399ebd5bb5e684418f9eeeb251c2de
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"koa-compose@npm:^4.1.0":
|
||||
version: 4.1.0
|
||||
resolution: "koa-compose@npm:4.1.0"
|
||||
@ -4951,26 +4973,26 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"koa-convert@npm:^1.2.0":
|
||||
version: 1.2.0
|
||||
resolution: "koa-convert@npm:1.2.0"
|
||||
"koa-convert@npm:^2.0.0":
|
||||
version: 2.0.0
|
||||
resolution: "koa-convert@npm:2.0.0"
|
||||
dependencies:
|
||||
co: ^4.6.0
|
||||
koa-compose: ^3.0.0
|
||||
checksum: a33944dbda4ed87565985f5b37ba1122a012db872724b216b6fd8f9176d4bba42c4a9bf3c129330e45f6474d28f50ca0ed28d41b9bccd2ab5d36d6436cf0d676
|
||||
koa-compose: ^4.1.0
|
||||
checksum: 7385b3391995f59c1312142e110d5dff677f9850dbfbcf387cd36a7b0af03b5d26e82b811eb9bb008b4f3e661cdab1f8817596e46b1929da2cf6e97a2f7456ed
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"koa@npm:^2.11.0":
|
||||
version: 2.13.1
|
||||
resolution: "koa@npm:2.13.1"
|
||||
"koa@npm:^2.13":
|
||||
version: 2.13.4
|
||||
resolution: "koa@npm:2.13.4"
|
||||
dependencies:
|
||||
accepts: ^1.3.5
|
||||
cache-content-type: ^1.0.0
|
||||
content-disposition: ~0.5.2
|
||||
content-type: ^1.0.4
|
||||
cookies: ~0.8.0
|
||||
debug: ~3.1.0
|
||||
debug: ^4.3.2
|
||||
delegates: ^1.0.0
|
||||
depd: ^2.0.0
|
||||
destroy: ^1.0.4
|
||||
@ -4981,14 +5003,14 @@ __metadata:
|
||||
http-errors: ^1.6.3
|
||||
is-generator-function: ^1.0.7
|
||||
koa-compose: ^4.1.0
|
||||
koa-convert: ^1.2.0
|
||||
koa-convert: ^2.0.0
|
||||
on-finished: ^2.3.0
|
||||
only: ~0.0.2
|
||||
parseurl: ^1.3.2
|
||||
statuses: ^1.5.0
|
||||
type-is: ^1.6.16
|
||||
vary: ^1.1.2
|
||||
checksum: c09c64eb32c6ab887527d3677a1b945bb7432f50d88de8b03d1d091baf51c827dafe3055763dd605b57c193b696414b1d597f58c829fb7bc47b2c6c5509670b4
|
||||
checksum: c9a6f9c803433b2d143a0788308048c1432a71c5febcfea2af7f2e8bd732b9bfd75c2c220d553752ee9ab9a3f52490f006cfd521db97cd01d8461d67cc1ccc1f
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@ -5171,12 +5193,12 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"marked@npm:^4.0.10":
|
||||
version: 4.0.10
|
||||
resolution: "marked@npm:4.0.10"
|
||||
"marked@npm:^4.0.16":
|
||||
version: 4.0.17
|
||||
resolution: "marked@npm:4.0.17"
|
||||
bin:
|
||||
marked: bin/marked.js
|
||||
checksum: 46cd8ef1a7cfcf5e461727c7f3e16dd4244369ef58f60485e75d3f5df9d53a8249b9609e96a336521eaa5c88d9531cbd296509a148718056e9375e69609f4442
|
||||
checksum: 33a3c43a20b47bddaf045a59bfc7c3d41cc321931cc663ed231ca3b5b3b195fb2ac2973e687c2afd65b79539c14619baa07d19793f70130160f0af80c06d9b3a
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@ -5273,6 +5295,15 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"minimatch@npm:^5.0.1, minimatch@npm:^5.1.0":
|
||||
version: 5.1.0
|
||||
resolution: "minimatch@npm:5.1.0"
|
||||
dependencies:
|
||||
brace-expansion: ^2.0.1
|
||||
checksum: 15ce53d31a06361e8b7a629501b5c75491bc2b59712d53e802b1987121d91b433d73fcc5be92974fde66b2b51d8fb28d75a9ae900d249feb792bb1ba2a4f0a90
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"minimist@npm:^1.2.0, minimist@npm:^1.2.3, minimist@npm:^1.2.5":
|
||||
version: 1.2.6
|
||||
resolution: "minimist@npm:1.2.6"
|
||||
@ -6548,14 +6579,14 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"shiki@npm:^0.10.0":
|
||||
version: 0.10.0
|
||||
resolution: "shiki@npm:0.10.0"
|
||||
"shiki@npm:^0.10.1":
|
||||
version: 0.10.1
|
||||
resolution: "shiki@npm:0.10.1"
|
||||
dependencies:
|
||||
jsonc-parser: ^3.0.0
|
||||
vscode-oniguruma: ^1.6.1
|
||||
vscode-textmate: 5.2.0
|
||||
checksum: b72630a56c5e4384128a57443fc188ca8f6cf239c16defb6624b2aa500c0c953d41fb53e49f9d583cf093ddc522ff07e1b19fab8f0ae40a03304805c4fd5894b
|
||||
checksum: fb746f3cb3de7e545e3b10a6cb658d3938f840e4ccc9a3c90ceb7e69a8f89dbb432171faac1e9f02a03f103684dad88ee5e54b5c4964fa6b579fca6e8e26424d
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
@ -7205,39 +7236,39 @@ __metadata:
|
||||
linkType: hard
|
||||
|
||||
"typedoc@npm:^0.22":
|
||||
version: 0.22.11
|
||||
resolution: "typedoc@npm:0.22.11"
|
||||
version: 0.22.18
|
||||
resolution: "typedoc@npm:0.22.18"
|
||||
dependencies:
|
||||
glob: ^7.2.0
|
||||
glob: ^8.0.3
|
||||
lunr: ^2.3.9
|
||||
marked: ^4.0.10
|
||||
minimatch: ^3.0.4
|
||||
shiki: ^0.10.0
|
||||
marked: ^4.0.16
|
||||
minimatch: ^5.1.0
|
||||
shiki: ^0.10.1
|
||||
peerDependencies:
|
||||
typescript: 4.0.x || 4.1.x || 4.2.x || 4.3.x || 4.4.x || 4.5.x
|
||||
typescript: 4.0.x || 4.1.x || 4.2.x || 4.3.x || 4.4.x || 4.5.x || 4.6.x || 4.7.x
|
||||
bin:
|
||||
typedoc: bin/typedoc
|
||||
checksum: 7d29f4b771d3eadc612d0b35509ee88c153d7310b7adb57faf0740132765613d6ceceb94877148d674cfc8242ca3c2e22e3ae2060768b2d96842bf14659d1b1c
|
||||
checksum: b813d8129682f6ed5a4e96bacaf019e4da1d2744ca89fef850d6bb4c034616567ce67e6a7f5cfc5f00aac573f0b45d44b1427aafa262ab88dce6b460cb9e744c
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"typescript@npm:~4.4":
|
||||
version: 4.4.4
|
||||
resolution: "typescript@npm:4.4.4"
|
||||
"typescript@npm:~4.6":
|
||||
version: 4.6.4
|
||||
resolution: "typescript@npm:4.6.4"
|
||||
bin:
|
||||
tsc: bin/tsc
|
||||
tsserver: bin/tsserver
|
||||
checksum: 89ecb8436bb48ef5594d49289f5f89103071716b6e4844278f4fb3362856e31203e187a9c76d205c3f0b674d221a058fd28310dbcbcf5d95e9a57229bb5203f1
|
||||
checksum: e7bfcc39cd4571a63a54e5ea21f16b8445268b9900bf55aee0e02ad981be576acc140eba24f1af5e3c1457767c96cea6d12861768fb386cf3ffb34013718631a
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"typescript@patch:typescript@~4.4#~builtin<compat/typescript>":
|
||||
version: 4.4.4
|
||||
resolution: "typescript@patch:typescript@npm%3A4.4.4#~builtin<compat/typescript>::version=4.4.4&hash=ddd1e8"
|
||||
"typescript@patch:typescript@~4.6#~builtin<compat/typescript>":
|
||||
version: 4.6.4
|
||||
resolution: "typescript@patch:typescript@npm%3A4.6.4#~builtin<compat/typescript>::version=4.6.4&hash=7ad353"
|
||||
bin:
|
||||
tsc: bin/tsc
|
||||
tsserver: bin/tsserver
|
||||
checksum: bd629ad0da4a15d79aaad56baf3ee7d96f6a181760d430ae77f8c5325df7bffd9edee57544a3970e3651e8b796fe03a5838a7eb39c6d46cc3866c0b23d36a0dd
|
||||
checksum: 1cb434fbc637d347be90e3a0c6cd05e33c38f941713c8786d3031faf1842c2c148ba91d2fac01e7276b0ae3249b8633f1660e32686cc7a8c6a8fd5361dc52c66
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user