Update detsys-ts

This commit is contained in:
Luc Perkins 2024-05-29 15:16:45 -03:00
parent c3983e7949
commit 23e5c435a9
No known key found for this signature in database
GPG key ID: 16DB1108FB591835
3 changed files with 203 additions and 151 deletions

97
dist/index.js generated vendored
View file

@ -50738,7 +50738,7 @@ module.exports = (options = {}, connect = tls.connect) => new Promise((resolve,
/***/ }), /***/ }),
/***/ 1538: /***/ 4438:
/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { /***/ ((__unused_webpack_module, exports, __nccwpck_require__) => {
;(function (sax) { // wrapper for non-node envs ;(function (sax) { // wrapper for non-node envs
@ -50814,6 +50814,12 @@ module.exports = (options = {}, connect = tls.connect) => new Promise((resolve,
parser.ns = Object.create(rootNS) parser.ns = Object.create(rootNS)
} }
// disallow unquoted attribute values if not otherwise configured
// and strict mode is true
if (parser.opt.unquotedAttributeValues === undefined) {
parser.opt.unquotedAttributeValues = !strict;
}
// mostly just for error reporting // mostly just for error reporting
parser.trackPosition = parser.opt.position !== false parser.trackPosition = parser.opt.position !== false
if (parser.trackPosition) { if (parser.trackPosition) {
@ -51833,15 +51839,22 @@ module.exports = (options = {}, connect = tls.connect) => new Promise((resolve,
continue continue
case S.SGML_DECL: case S.SGML_DECL:
if ((parser.sgmlDecl + c).toUpperCase() === CDATA) { if (parser.sgmlDecl + c === '--') {
parser.state = S.COMMENT
parser.comment = ''
parser.sgmlDecl = ''
continue;
}
if (parser.doctype && parser.doctype !== true && parser.sgmlDecl) {
parser.state = S.DOCTYPE_DTD
parser.doctype += '<!' + parser.sgmlDecl + c
parser.sgmlDecl = ''
} else if ((parser.sgmlDecl + c).toUpperCase() === CDATA) {
emitNode(parser, 'onopencdata') emitNode(parser, 'onopencdata')
parser.state = S.CDATA parser.state = S.CDATA
parser.sgmlDecl = '' parser.sgmlDecl = ''
parser.cdata = '' parser.cdata = ''
} else if (parser.sgmlDecl + c === '--') {
parser.state = S.COMMENT
parser.comment = ''
parser.sgmlDecl = ''
} else if ((parser.sgmlDecl + c).toUpperCase() === DOCTYPE) { } else if ((parser.sgmlDecl + c).toUpperCase() === DOCTYPE) {
parser.state = S.DOCTYPE parser.state = S.DOCTYPE
if (parser.doctype || parser.sawRoot) { if (parser.doctype || parser.sawRoot) {
@ -51895,12 +51908,18 @@ module.exports = (options = {}, connect = tls.connect) => new Promise((resolve,
continue continue
case S.DOCTYPE_DTD: case S.DOCTYPE_DTD:
parser.doctype += c
if (c === ']') { if (c === ']') {
parser.doctype += c
parser.state = S.DOCTYPE parser.state = S.DOCTYPE
} else if (c === '<') {
parser.state = S.OPEN_WAKA
parser.startTagPosition = parser.position
} else if (isQuote(c)) { } else if (isQuote(c)) {
parser.doctype += c
parser.state = S.DOCTYPE_DTD_QUOTED parser.state = S.DOCTYPE_DTD_QUOTED
parser.q = c parser.q = c
} else {
parser.doctype += c
} }
continue continue
@ -51941,6 +51960,8 @@ module.exports = (options = {}, connect = tls.connect) => new Promise((resolve,
// which is a comment of " blah -- bloo " // which is a comment of " blah -- bloo "
parser.comment += '--' + c parser.comment += '--' + c
parser.state = S.COMMENT parser.state = S.COMMENT
} else if (parser.doctype && parser.doctype !== true) {
parser.state = S.DOCTYPE_DTD
} else { } else {
parser.state = S.TEXT parser.state = S.TEXT
} }
@ -52108,7 +52129,9 @@ module.exports = (options = {}, connect = tls.connect) => new Promise((resolve,
parser.q = c parser.q = c
parser.state = S.ATTRIB_VALUE_QUOTED parser.state = S.ATTRIB_VALUE_QUOTED
} else { } else {
strictFail(parser, 'Unquoted attribute value') if (!parser.opt.unquotedAttributeValues) {
error(parser, 'Unquoted attribute value')
}
parser.state = S.ATTRIB_VALUE_UNQUOTED parser.state = S.ATTRIB_VALUE_UNQUOTED
parser.attribValue = c parser.attribValue = c
} }
@ -52226,13 +52249,13 @@ module.exports = (options = {}, connect = tls.connect) => new Promise((resolve,
} }
if (c === ';') { if (c === ';') {
if (parser.opt.unparsedEntities) { var parsedEntity = parseEntity(parser)
var parsedEntity = parseEntity(parser) if (parser.opt.unparsedEntities && !Object.values(sax.XML_ENTITIES).includes(parsedEntity)) {
parser.entity = '' parser.entity = ''
parser.state = returnState parser.state = returnState
parser.write(parsedEntity) parser.write(parsedEntity)
} else { } else {
parser[buffer] += parseEntity(parser) parser[buffer] += parsedEntity
parser.entity = '' parser.entity = ''
parser.state = returnState parser.state = returnState
} }
@ -80073,7 +80096,7 @@ function wrappy (fn, cb) {
extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; }, extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; },
hasProp = {}.hasOwnProperty; hasProp = {}.hasOwnProperty;
sax = __nccwpck_require__(1538); sax = __nccwpck_require__(4438);
events = __nccwpck_require__(2361); events = __nccwpck_require__(2361);
@ -96694,7 +96717,7 @@ const external_node_child_process_namespaceObject = __WEBPACK_EXTERNAL_createReq
const external_node_stream_promises_namespaceObject = __WEBPACK_EXTERNAL_createRequire(import.meta.url)("node:stream/promises"); const external_node_stream_promises_namespaceObject = __WEBPACK_EXTERNAL_createRequire(import.meta.url)("node:stream/promises");
;// CONCATENATED MODULE: external "node:zlib" ;// CONCATENATED MODULE: external "node:zlib"
const external_node_zlib_namespaceObject = __WEBPACK_EXTERNAL_createRequire(import.meta.url)("node:zlib"); const external_node_zlib_namespaceObject = __WEBPACK_EXTERNAL_createRequire(import.meta.url)("node:zlib");
;// CONCATENATED MODULE: ./node_modules/.pnpm/github.com+DeterminateSystems+detsys-ts@848cedfa44c31ae5ed7995350bb2707b9422840e_heluh4h342h2muwandvhzbsvpi/node_modules/detsys-ts/dist/index.js ;// CONCATENATED MODULE: ./node_modules/.pnpm/github.com+DeterminateSystems+detsys-ts@5fcb0532d85556ebc2de286e483885976531339d_uqngfub4ls4loys67iy653x57e/node_modules/detsys-ts/dist/index.js
var __defProp = Object.defineProperty; var __defProp = Object.defineProperty;
var __export = (target, all) => { var __export = (target, all) => {
for (var name in all) for (var name in all)
@ -97002,6 +97025,7 @@ function hashEnvironmentVariables(prefix, variables) {
var inputs_exports = {}; var inputs_exports = {};
__export(inputs_exports, { __export(inputs_exports, {
getArrayOfStrings: () => getArrayOfStrings, getArrayOfStrings: () => getArrayOfStrings,
getArrayOfStringsOrNull: () => getArrayOfStringsOrNull,
getBool: () => getBool, getBool: () => getBool,
getMultilineStringOrNull: () => getMultilineStringOrNull, getMultilineStringOrNull: () => getMultilineStringOrNull,
getNumberOrNull: () => getNumberOrNull, getNumberOrNull: () => getNumberOrNull,
@ -97018,6 +97042,14 @@ var getArrayOfStrings = (name, separator) => {
const original = getString(name); const original = getString(name);
return handleString(original, separator); return handleString(original, separator);
}; };
var getArrayOfStringsOrNull = (name, separator) => {
const original = getStringOrNull(name);
if (original === null) {
return null;
} else {
return handleString(original, separator);
}
};
var handleString = (input, separator) => { var handleString = (input, separator) => {
const sepChar = separator === "comma" ? "," : /\s+/; const sepChar = separator === "comma" ? "," : /\s+/;
const trimmed = input.trim(); const trimmed = input.trim();
@ -97149,6 +97181,19 @@ function noisilyGetInput(suffix, legacyPrefix) {
// src/errors.ts
function stringifyError(e) {
if (e instanceof Error) {
return e.message;
} else if (typeof e === "string") {
return e;
} else {
return JSON.stringify(e);
}
}
// src/index.ts
var DEFAULT_IDS_HOST = "https://install.determinate.systems"; var DEFAULT_IDS_HOST = "https://install.determinate.systems";
var IDS_HOST = process.env["IDS_HOST"] ?? DEFAULT_IDS_HOST; var IDS_HOST = process.env["IDS_HOST"] ?? DEFAULT_IDS_HOST;
var EVENT_EXCEPTION = "exception"; var EVENT_EXCEPTION = "exception";
@ -97171,6 +97216,7 @@ var FACT_NIX_STORE_CHECK_ERROR = "nix_store_check_error";
var STATE_KEY_EXECUTION_PHASE = "detsys_action_execution_phase"; var STATE_KEY_EXECUTION_PHASE = "detsys_action_execution_phase";
var STATE_KEY_NIX_NOT_FOUND = "detsys_action_nix_not_found"; var STATE_KEY_NIX_NOT_FOUND = "detsys_action_nix_not_found";
var STATE_NOT_FOUND = "not-found"; var STATE_NOT_FOUND = "not-found";
var DIAGNOSTIC_ENDPOINT_TIMEOUT_MS = 3e4;
var DetSysAction = class { var DetSysAction = class {
determineExecutionPhase() { determineExecutionPhase() {
const currentPhase = core.getState(STATE_KEY_EXECUTION_PHASE); const currentPhase = core.getState(STATE_KEY_EXECUTION_PHASE);
@ -97236,7 +97282,7 @@ var DetSysAction = class {
} }
}).catch((e) => { }).catch((e) => {
core.debug( core.debug(
`Failure getting platform details: ${stringifyError(e)}` `Failure getting platform details: ${stringifyError2(e)}`
); );
}); });
} }
@ -97353,7 +97399,7 @@ var DetSysAction = class {
this.addFact(FACT_ENDED_WITH_EXCEPTION, false); this.addFact(FACT_ENDED_WITH_EXCEPTION, false);
} catch (e) { } catch (e) {
this.addFact(FACT_ENDED_WITH_EXCEPTION, true); this.addFact(FACT_ENDED_WITH_EXCEPTION, true);
const reportable = stringifyError(e); const reportable = stringifyError2(e);
this.addFact(FACT_FINAL_EXCEPTION, reportable); this.addFact(FACT_FINAL_EXCEPTION, reportable);
if (this.isPost) { if (this.isPost) {
core.warning(reportable); core.warning(reportable);
@ -97373,7 +97419,7 @@ var DetSysAction = class {
} catch (innerError) { } catch (innerError) {
exceptionContext.set( exceptionContext.set(
`staple_failure_${attachmentLabel}`, `staple_failure_${attachmentLabel}`,
stringifyError(innerError) stringifyError2(innerError)
); );
} }
} }
@ -97438,7 +97484,7 @@ var DetSysAction = class {
try { try {
await this.saveCachedVersion(v, destFile); await this.saveCachedVersion(v, destFile);
} catch (e) { } catch (e) {
core.debug(`Error caching the artifact: ${stringifyError(e)}`); core.debug(`Error caching the artifact: ${stringifyError2(e)}`);
} }
} }
return destFile; return destFile;
@ -97617,7 +97663,7 @@ var DetSysAction = class {
} }
this.addFact(FACT_NIX_STORE_VERSION, JSON.stringify(parsed.version)); this.addFact(FACT_NIX_STORE_VERSION, JSON.stringify(parsed.version));
} catch (e) { } catch (e) {
this.addFact(FACT_NIX_STORE_CHECK_ERROR, stringifyError(e)); this.addFact(FACT_NIX_STORE_CHECK_ERROR, stringifyError2(e));
} }
} }
async submitEvents() { async submitEvents() {
@ -97635,17 +97681,20 @@ var DetSysAction = class {
}; };
try { try {
await this.client.post(this.actionOptions.diagnosticsUrl, { await this.client.post(this.actionOptions.diagnosticsUrl, {
json: batch json: batch,
timeout: {
request: DIAGNOSTIC_ENDPOINT_TIMEOUT_MS
}
}); });
} catch (e) { } catch (e) {
core.debug( core.debug(
`Error submitting diagnostics event: ${stringifyError(e)}` `Error submitting diagnostics event: ${stringifyError2(e)}`
); );
} }
this.events = []; this.events = [];
} }
}; };
function stringifyError(error2) { function stringifyError2(error2) {
return error2 instanceof Error || typeof error2 == "string" ? error2.toString() : JSON.stringify(error2); return error2 instanceof Error || typeof error2 == "string" ? error2.toString() : JSON.stringify(error2);
} }
function makeOptionsConfident(actionOptions) { function makeOptionsConfident(actionOptions) {
@ -97683,7 +97732,7 @@ function determineDiagnosticsUrl(idsProjectName, urlOption) {
return mungeDiagnosticEndpoint(new URL(providedDiagnosticEndpoint)); return mungeDiagnosticEndpoint(new URL(providedDiagnosticEndpoint));
} catch (e) { } catch (e) {
core.info( core.info(
`User-provided diagnostic endpoint ignored: not a valid URL: ${stringifyError(e)}` `User-provided diagnostic endpoint ignored: not a valid URL: ${stringifyError2(e)}`
); );
} }
} }
@ -97695,7 +97744,7 @@ function determineDiagnosticsUrl(idsProjectName, urlOption) {
return diagnosticUrl; return diagnosticUrl;
} catch (e) { } catch (e) {
core.info( core.info(
`Generated diagnostic endpoint ignored: not a valid URL: ${stringifyError(e)}` `Generated diagnostic endpoint ignored: not a valid URL: ${stringifyError2(e)}`
); );
} }
return void 0; return void 0;
@ -97717,7 +97766,7 @@ function mungeDiagnosticEndpoint(inputUrl) {
return inputUrl; return inputUrl;
} catch (e) { } catch (e) {
core.info( core.info(
`Default or overridden IDS host isn't a valid URL: ${stringifyError(e)}` `Default or overridden IDS host isn't a valid URL: ${stringifyError2(e)}`
); );
} }
return inputUrl; return inputUrl;

View file

@ -33,9 +33,9 @@
}, },
"devDependencies": { "devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0", "@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/node": "^20.12.12", "@types/node": "^20.12.13",
"@types/uuid": "^9.0.8", "@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^7.10.0", "@typescript-eslint/eslint-plugin": "^7.11.0",
"@vercel/ncc": "^0.38.1", "@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0", "eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1", "eslint-import-resolver-typescript": "^3.6.1",

View file

@ -16,7 +16,7 @@ dependencies:
version: 5.1.1 version: 5.1.1
detsys-ts: detsys-ts:
specifier: github:DeterminateSystems/detsys-ts specifier: github:DeterminateSystems/detsys-ts
version: github.com/DeterminateSystems/detsys-ts/848cedfa44c31ae5ed7995350bb2707b9422840e version: github.com/DeterminateSystems/detsys-ts/5fcb0532d85556ebc2de286e483885976531339d
string-argv: string-argv:
specifier: ^0.3.2 specifier: ^0.3.2
version: 0.3.2 version: 0.3.2
@ -26,14 +26,14 @@ devDependencies:
specifier: ^4.3.0 specifier: ^4.3.0
version: 4.3.0(prettier@3.2.5) version: 4.3.0(prettier@3.2.5)
"@types/node": "@types/node":
specifier: ^20.12.12 specifier: ^20.12.13
version: 20.12.12 version: 20.12.13
"@types/uuid": "@types/uuid":
specifier: ^9.0.8 specifier: ^9.0.8
version: 9.0.8 version: 9.0.8
"@typescript-eslint/eslint-plugin": "@typescript-eslint/eslint-plugin":
specifier: ^7.10.0 specifier: ^7.11.0
version: 7.10.0(@typescript-eslint/parser@7.10.0)(eslint@8.57.0)(typescript@5.4.5) version: 7.11.0(@typescript-eslint/parser@7.11.0)(eslint@8.57.0)(typescript@5.4.5)
"@vercel/ncc": "@vercel/ncc":
specifier: ^0.38.1 specifier: ^0.38.1
version: 0.38.1 version: 0.38.1
@ -42,13 +42,13 @@ devDependencies:
version: 8.57.0 version: 8.57.0
eslint-import-resolver-typescript: eslint-import-resolver-typescript:
specifier: ^3.6.1 specifier: ^3.6.1
version: 3.6.1(@typescript-eslint/parser@7.10.0)(eslint-plugin-import@2.29.1)(eslint@8.57.0) version: 3.6.1(@typescript-eslint/parser@7.11.0)(eslint-plugin-import@2.29.1)(eslint@8.57.0)
eslint-plugin-github: eslint-plugin-github:
specifier: ^4.10.2 specifier: ^4.10.2
version: 4.10.2(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0)(typescript@5.4.5) version: 4.10.2(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0)(typescript@5.4.5)
eslint-plugin-import: eslint-plugin-import:
specifier: ^2.29.1 specifier: ^2.29.1
version: 2.29.1(@typescript-eslint/parser@7.10.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) version: 2.29.1(@typescript-eslint/parser@7.11.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0)
eslint-plugin-prettier: eslint-plugin-prettier:
specifier: ^5.1.3 specifier: ^5.1.3
version: 5.1.3(eslint-config-prettier@9.1.0)(eslint@8.57.0)(prettier@3.2.5) version: 5.1.3(eslint-config-prettier@9.1.0)(eslint@8.57.0)(prettier@3.2.5)
@ -292,14 +292,14 @@ packages:
- encoding - encoding
dev: false dev: false
/@babel/code-frame@7.24.2: /@babel/code-frame@7.24.6:
resolution: resolution:
{ {
integrity: sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==, integrity: sha512-ZJhac6FkEd1yhG2AHOmfcXG4ceoLltoCVJjN5XsWN9BifBQr+cHJbWi0h68HZuSORq+3WtJ2z0hwF2NG1b5kcA==,
} }
engines: { node: ">=6.9.0" } engines: { node: ">=6.9.0" }
dependencies: dependencies:
"@babel/highlight": 7.24.5 "@babel/highlight": 7.24.6
picocolors: 1.0.1 picocolors: 1.0.1
dev: true dev: true
@ -315,91 +315,91 @@ packages:
source-map: 0.5.7 source-map: 0.5.7
dev: true dev: true
/@babel/generator@7.24.5: /@babel/generator@7.24.6:
resolution: resolution:
{ {
integrity: sha512-x32i4hEXvr+iI0NEoEfDKzlemF8AmtOP8CcrRaEcpzysWuoEb1KknpcvMsHKPONoKZiDuItklgWhB18xEhr9PA==, integrity: sha512-S7m4eNa6YAPJRHmKsLHIDJhNAGNKoWNiWefz1MBbpnt8g9lvMDl1hir4P9bo/57bQEmuwEhnRU/AMWsD0G/Fbg==,
} }
engines: { node: ">=6.9.0" } engines: { node: ">=6.9.0" }
dependencies: dependencies:
"@babel/types": 7.24.5 "@babel/types": 7.24.6
"@jridgewell/gen-mapping": 0.3.5 "@jridgewell/gen-mapping": 0.3.5
"@jridgewell/trace-mapping": 0.3.25 "@jridgewell/trace-mapping": 0.3.25
jsesc: 2.5.2 jsesc: 2.5.2
dev: true dev: true
/@babel/helper-environment-visitor@7.22.20: /@babel/helper-environment-visitor@7.24.6:
resolution: resolution:
{ {
integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==, integrity: sha512-Y50Cg3k0LKLMjxdPjIl40SdJgMB85iXn27Vk/qbHZCFx/o5XO3PSnpi675h1KEmmDb6OFArfd5SCQEQ5Q4H88g==,
} }
engines: { node: ">=6.9.0" } engines: { node: ">=6.9.0" }
dev: true dev: true
/@babel/helper-function-name@7.23.0: /@babel/helper-function-name@7.24.6:
resolution: resolution:
{ {
integrity: sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==, integrity: sha512-xpeLqeeRkbxhnYimfr2PC+iA0Q7ljX/d1eZ9/inYbmfG2jpl8Lu3DyXvpOAnrS5kxkfOWJjioIMQsaMBXFI05w==,
} }
engines: { node: ">=6.9.0" } engines: { node: ">=6.9.0" }
dependencies: dependencies:
"@babel/template": 7.24.0 "@babel/template": 7.24.6
"@babel/types": 7.24.5 "@babel/types": 7.24.6
dev: true dev: true
/@babel/helper-hoist-variables@7.22.5: /@babel/helper-hoist-variables@7.24.6:
resolution: resolution:
{ {
integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==, integrity: sha512-SF/EMrC3OD7dSta1bLJIlrsVxwtd0UpjRJqLno6125epQMJ/kyFmpTT4pbvPbdQHzCHg+biQ7Syo8lnDtbR+uA==,
} }
engines: { node: ">=6.9.0" } engines: { node: ">=6.9.0" }
dependencies: dependencies:
"@babel/types": 7.24.5 "@babel/types": 7.24.6
dev: true dev: true
/@babel/helper-split-export-declaration@7.24.5: /@babel/helper-split-export-declaration@7.24.6:
resolution: resolution:
{ {
integrity: sha512-5CHncttXohrHk8GWOFCcCl4oRD9fKosWlIRgWm4ql9VYioKm52Mk2xsmoohvm7f3JoiLSM5ZgJuRaf5QZZYd3Q==, integrity: sha512-CvLSkwXGWnYlF9+J3iZUvwgAxKiYzK3BWuo+mLzD/MDGOZDj7Gq8+hqaOkMxmJwmlv0iu86uH5fdADd9Hxkymw==,
} }
engines: { node: ">=6.9.0" } engines: { node: ">=6.9.0" }
dependencies: dependencies:
"@babel/types": 7.24.5 "@babel/types": 7.24.6
dev: true dev: true
/@babel/helper-string-parser@7.24.1: /@babel/helper-string-parser@7.24.6:
resolution: resolution:
{ {
integrity: sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==, integrity: sha512-WdJjwMEkmBicq5T9fm/cHND3+UlFa2Yj8ALLgmoSQAJZysYbBjw+azChSGPN4DSPLXOcooGRvDwZWMcF/mLO2Q==,
} }
engines: { node: ">=6.9.0" } engines: { node: ">=6.9.0" }
dev: true dev: true
/@babel/helper-validator-identifier@7.24.5: /@babel/helper-validator-identifier@7.24.6:
resolution: resolution:
{ {
integrity: sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA==, integrity: sha512-4yA7s865JHaqUdRbnaxarZREuPTHrjpDT+pXoAZ1yhyo6uFnIEpS8VMu16siFOHDpZNKYv5BObhsB//ycbICyw==,
} }
engines: { node: ">=6.9.0" } engines: { node: ">=6.9.0" }
dev: true dev: true
/@babel/highlight@7.24.5: /@babel/highlight@7.24.6:
resolution: resolution:
{ {
integrity: sha512-8lLmua6AVh/8SLJRRVD6V8p73Hir9w5mJrhE+IPpILG31KKlI9iz5zmBYKcWPS59qSfgP9RaSBQSHHE81WKuEw==, integrity: sha512-2YnuOp4HAk2BsBrJJvYCbItHx0zWscI1C3zgWkz+wDyD9I7GIVrfnLyrR4Y1VR+7p+chAEcrgRQYZAGIKMV7vQ==,
} }
engines: { node: ">=6.9.0" } engines: { node: ">=6.9.0" }
dependencies: dependencies:
"@babel/helper-validator-identifier": 7.24.5 "@babel/helper-validator-identifier": 7.24.6
chalk: 2.4.2 chalk: 2.4.2
js-tokens: 4.0.0 js-tokens: 4.0.0
picocolors: 1.0.1 picocolors: 1.0.1
dev: true dev: true
/@babel/parser@7.24.5: /@babel/parser@7.24.6:
resolution: resolution:
{ {
integrity: sha512-EOv5IK8arwh3LI47dz1b0tKUb/1uhHAnHJOrjgtQMIpu1uXd9mlFrJg9IUgGUgZ41Ch0K8REPTYpO7B76b4vJg==, integrity: sha512-eNZXdfU35nJC2h24RznROuOpO94h6x8sg9ju0tT9biNtLZ2vuP8SduLqqV+/8+cebSLV9SJEAN5Z3zQbJG/M+Q==,
} }
engines: { node: ">=6.0.0" } engines: { node: ">=6.0.0" }
hasBin: true hasBin: true
@ -407,26 +407,26 @@ packages:
"@babel/types": 7.17.0 "@babel/types": 7.17.0
dev: true dev: true
/@babel/runtime@7.24.5: /@babel/runtime@7.24.6:
resolution: resolution:
{ {
integrity: sha512-Nms86NXrsaeU9vbBJKni6gXiEXZ4CVpYVzEjDH9Sb8vmZ3UljyA1GSOJl/6LGPO8EHLuSF9H+IxNXHPX8QHJ4g==, integrity: sha512-Ja18XcETdEl5mzzACGd+DKgaGJzPTCow7EglgwTmHdwokzDFYh/MHua6lU6DV/hjF2IaOJ4oX2nqnjG7RElKOw==,
} }
engines: { node: ">=6.9.0" } engines: { node: ">=6.9.0" }
dependencies: dependencies:
regenerator-runtime: 0.14.1 regenerator-runtime: 0.14.1
dev: true dev: true
/@babel/template@7.24.0: /@babel/template@7.24.6:
resolution: resolution:
{ {
integrity: sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==, integrity: sha512-3vgazJlLwNXi9jhrR1ef8qiB65L1RK90+lEQwv4OxveHnqC3BfmnHdgySwRLzf6akhlOYenT+b7AfWq+a//AHw==,
} }
engines: { node: ">=6.9.0" } engines: { node: ">=6.9.0" }
dependencies: dependencies:
"@babel/code-frame": 7.24.2 "@babel/code-frame": 7.24.6
"@babel/parser": 7.24.5 "@babel/parser": 7.24.6
"@babel/types": 7.24.5 "@babel/types": 7.24.6
dev: true dev: true
/@babel/traverse@7.23.2: /@babel/traverse@7.23.2:
@ -436,14 +436,14 @@ packages:
} }
engines: { node: ">=6.9.0" } engines: { node: ">=6.9.0" }
dependencies: dependencies:
"@babel/code-frame": 7.24.2 "@babel/code-frame": 7.24.6
"@babel/generator": 7.24.5 "@babel/generator": 7.24.6
"@babel/helper-environment-visitor": 7.22.20 "@babel/helper-environment-visitor": 7.24.6
"@babel/helper-function-name": 7.23.0 "@babel/helper-function-name": 7.24.6
"@babel/helper-hoist-variables": 7.22.5 "@babel/helper-hoist-variables": 7.24.6
"@babel/helper-split-export-declaration": 7.24.5 "@babel/helper-split-export-declaration": 7.24.6
"@babel/parser": 7.24.5 "@babel/parser": 7.24.6
"@babel/types": 7.24.5 "@babel/types": 7.24.6
debug: 4.3.4 debug: 4.3.4
globals: 11.12.0 globals: 11.12.0
transitivePeerDependencies: transitivePeerDependencies:
@ -457,19 +457,19 @@ packages:
} }
engines: { node: ">=6.9.0" } engines: { node: ">=6.9.0" }
dependencies: dependencies:
"@babel/helper-validator-identifier": 7.24.5 "@babel/helper-validator-identifier": 7.24.6
to-fast-properties: 2.0.0 to-fast-properties: 2.0.0
dev: true dev: true
/@babel/types@7.24.5: /@babel/types@7.24.6:
resolution: resolution:
{ {
integrity: sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ==, integrity: sha512-WaMsgi6Q8zMgMth93GvWPXkhAIEobfsIkLTacoVZoK1J0CevIPGYY2Vo5YvJGqyHqXM6P4ppOYGsIRU8MM9pFQ==,
} }
engines: { node: ">=6.9.0" } engines: { node: ">=6.9.0" }
dependencies: dependencies:
"@babel/helper-string-parser": 7.24.1 "@babel/helper-string-parser": 7.24.6
"@babel/helper-validator-identifier": 7.24.5 "@babel/helper-validator-identifier": 7.24.6
to-fast-properties: 2.0.0 to-fast-properties: 2.0.0
dev: true dev: true
@ -1290,7 +1290,7 @@ packages:
optional: true optional: true
dependencies: dependencies:
"@babel/generator": 7.17.7 "@babel/generator": 7.17.7
"@babel/parser": 7.24.5 "@babel/parser": 7.24.6
"@babel/traverse": 7.23.2 "@babel/traverse": 7.23.2
"@babel/types": 7.17.0 "@babel/types": 7.17.0
javascript-natural-sort: 0.7.1 javascript-natural-sort: 0.7.1
@ -1327,14 +1327,14 @@ packages:
integrity: sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==, integrity: sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==,
} }
dependencies: dependencies:
"@types/node": 20.12.12 "@types/node": 20.12.13
form-data: 4.0.0 form-data: 4.0.0
dev: false dev: false
/@types/node@20.12.12: /@types/node@20.12.13:
resolution: resolution:
{ {
integrity: sha512-eWLDGF/FOSPtAvEqeRAQ4C8LSA7M1I7i0ky1I8U7kD1J5ITyW3AsRhQrKVoWf5pFKZ2kILsEGJhsI9r93PYnOw==, integrity: sha512-gBGeanV41c1L171rR7wjbMiEpEI/l5XFQdLLfhr/REwpgDy/4U8y89+i8kRiLzDyZdOkXh+cRaTetUnCYutoXA==,
} }
dependencies: dependencies:
undici-types: 5.26.5 undici-types: 5.26.5
@ -1345,7 +1345,7 @@ packages:
integrity: sha512-sOUTGn6h1SfQ+gbgqC364jLFBw2lnFqkgF3q0WovEHRLMrVD1sd5aufqi/aJObLekJO+Aq5z646U4Oxy6shXMA==, integrity: sha512-sOUTGn6h1SfQ+gbgqC364jLFBw2lnFqkgF3q0WovEHRLMrVD1sd5aufqi/aJObLekJO+Aq5z646U4Oxy6shXMA==,
} }
dependencies: dependencies:
"@types/node": 20.12.12 "@types/node": 20.12.13
dev: false dev: false
/@types/uuid@9.0.8: /@types/uuid@9.0.8:
@ -1355,10 +1355,10 @@ packages:
} }
dev: true dev: true
/@typescript-eslint/eslint-plugin@7.10.0(@typescript-eslint/parser@7.10.0)(eslint@8.57.0)(typescript@5.4.5): /@typescript-eslint/eslint-plugin@7.11.0(@typescript-eslint/parser@7.11.0)(eslint@8.57.0)(typescript@5.4.5):
resolution: resolution:
{ {
integrity: sha512-PzCr+a/KAef5ZawX7nbyNwBDtM1HdLIT53aSA2DDlxmxMngZ43O8SIePOeX8H5S+FHXeI6t97mTt/dDdzY4Fyw==, integrity: sha512-P+qEahbgeHW4JQ/87FuItjBj8O3MYv5gELDzr8QaQ7fsll1gSMTYb6j87MYyxwf3DtD7uGFB9ShwgmCJB5KmaQ==,
} }
engines: { node: ^18.18.0 || >=20.0.0 } engines: { node: ^18.18.0 || >=20.0.0 }
peerDependencies: peerDependencies:
@ -1370,11 +1370,11 @@ packages:
optional: true optional: true
dependencies: dependencies:
"@eslint-community/regexpp": 4.10.0 "@eslint-community/regexpp": 4.10.0
"@typescript-eslint/parser": 7.10.0(eslint@8.57.0)(typescript@5.4.5) "@typescript-eslint/parser": 7.11.0(eslint@8.57.0)(typescript@5.4.5)
"@typescript-eslint/scope-manager": 7.10.0 "@typescript-eslint/scope-manager": 7.11.0
"@typescript-eslint/type-utils": 7.10.0(eslint@8.57.0)(typescript@5.4.5) "@typescript-eslint/type-utils": 7.11.0(eslint@8.57.0)(typescript@5.4.5)
"@typescript-eslint/utils": 7.10.0(eslint@8.57.0)(typescript@5.4.5) "@typescript-eslint/utils": 7.11.0(eslint@8.57.0)(typescript@5.4.5)
"@typescript-eslint/visitor-keys": 7.10.0 "@typescript-eslint/visitor-keys": 7.11.0
eslint: 8.57.0 eslint: 8.57.0
graphemer: 1.4.0 graphemer: 1.4.0
ignore: 5.3.1 ignore: 5.3.1
@ -1385,10 +1385,10 @@ packages:
- supports-color - supports-color
dev: true dev: true
/@typescript-eslint/parser@7.10.0(eslint@8.57.0)(typescript@5.4.5): /@typescript-eslint/parser@7.11.0(eslint@8.57.0)(typescript@5.4.5):
resolution: resolution:
{ {
integrity: sha512-2EjZMA0LUW5V5tGQiaa2Gys+nKdfrn2xiTIBLR4fxmPmVSvgPcKNW+AE/ln9k0A4zDUti0J/GZXMDupQoI+e1w==, integrity: sha512-yimw99teuaXVWsBcPO1Ais02kwJ1jmNA1KxE7ng0aT7ndr1pT1wqj0OJnsYVGKKlc4QJai86l/025L6z8CljOg==,
} }
engines: { node: ^18.18.0 || >=20.0.0 } engines: { node: ^18.18.0 || >=20.0.0 }
peerDependencies: peerDependencies:
@ -1398,10 +1398,10 @@ packages:
typescript: typescript:
optional: true optional: true
dependencies: dependencies:
"@typescript-eslint/scope-manager": 7.10.0 "@typescript-eslint/scope-manager": 7.11.0
"@typescript-eslint/types": 7.10.0 "@typescript-eslint/types": 7.11.0
"@typescript-eslint/typescript-estree": 7.10.0(typescript@5.4.5) "@typescript-eslint/typescript-estree": 7.11.0(typescript@5.4.5)
"@typescript-eslint/visitor-keys": 7.10.0 "@typescript-eslint/visitor-keys": 7.11.0
debug: 4.3.4 debug: 4.3.4
eslint: 8.57.0 eslint: 8.57.0
typescript: 5.4.5 typescript: 5.4.5
@ -1409,21 +1409,21 @@ packages:
- supports-color - supports-color
dev: true dev: true
/@typescript-eslint/scope-manager@7.10.0: /@typescript-eslint/scope-manager@7.11.0:
resolution: resolution:
{ {
integrity: sha512-7L01/K8W/VGl7noe2mgH0K7BE29Sq6KAbVmxurj8GGaPDZXPr8EEQ2seOeAS+mEV9DnzxBQB6ax6qQQ5C6P4xg==, integrity: sha512-27tGdVEiutD4POirLZX4YzT180vevUURJl4wJGmm6TrQoiYwuxTIY98PBp6L2oN+JQxzE0URvYlzJaBHIekXAw==,
} }
engines: { node: ^18.18.0 || >=20.0.0 } engines: { node: ^18.18.0 || >=20.0.0 }
dependencies: dependencies:
"@typescript-eslint/types": 7.10.0 "@typescript-eslint/types": 7.11.0
"@typescript-eslint/visitor-keys": 7.10.0 "@typescript-eslint/visitor-keys": 7.11.0
dev: true dev: true
/@typescript-eslint/type-utils@7.10.0(eslint@8.57.0)(typescript@5.4.5): /@typescript-eslint/type-utils@7.11.0(eslint@8.57.0)(typescript@5.4.5):
resolution: resolution:
{ {
integrity: sha512-D7tS4WDkJWrVkuzgm90qYw9RdgBcrWmbbRkrLA4d7Pg3w0ttVGDsvYGV19SH8gPR5L7OtcN5J1hTtyenO9xE9g==, integrity: sha512-WmppUEgYy+y1NTseNMJ6mCFxt03/7jTOy08bcg7bxJJdsM4nuhnchyBbE8vryveaJUf62noH7LodPSo5Z0WUCg==,
} }
engines: { node: ^18.18.0 || >=20.0.0 } engines: { node: ^18.18.0 || >=20.0.0 }
peerDependencies: peerDependencies:
@ -1433,8 +1433,8 @@ packages:
typescript: typescript:
optional: true optional: true
dependencies: dependencies:
"@typescript-eslint/typescript-estree": 7.10.0(typescript@5.4.5) "@typescript-eslint/typescript-estree": 7.11.0(typescript@5.4.5)
"@typescript-eslint/utils": 7.10.0(eslint@8.57.0)(typescript@5.4.5) "@typescript-eslint/utils": 7.11.0(eslint@8.57.0)(typescript@5.4.5)
debug: 4.3.4 debug: 4.3.4
eslint: 8.57.0 eslint: 8.57.0
ts-api-utils: 1.3.0(typescript@5.4.5) ts-api-utils: 1.3.0(typescript@5.4.5)
@ -1443,18 +1443,18 @@ packages:
- supports-color - supports-color
dev: true dev: true
/@typescript-eslint/types@7.10.0: /@typescript-eslint/types@7.11.0:
resolution: resolution:
{ {
integrity: sha512-7fNj+Ya35aNyhuqrA1E/VayQX9Elwr8NKZ4WueClR3KwJ7Xx9jcCdOrLW04h51de/+gNbyFMs+IDxh5xIwfbNg==, integrity: sha512-MPEsDRZTyCiXkD4vd3zywDCifi7tatc4K37KqTprCvaXptP7Xlpdw0NR2hRJTetG5TxbWDB79Ys4kLmHliEo/w==,
} }
engines: { node: ^18.18.0 || >=20.0.0 } engines: { node: ^18.18.0 || >=20.0.0 }
dev: true dev: true
/@typescript-eslint/typescript-estree@7.10.0(typescript@5.4.5): /@typescript-eslint/typescript-estree@7.11.0(typescript@5.4.5):
resolution: resolution:
{ {
integrity: sha512-LXFnQJjL9XIcxeVfqmNj60YhatpRLt6UhdlFwAkjNc6jSUlK8zQOl1oktAP8PlWFzPQC1jny/8Bai3/HPuvN5g==, integrity: sha512-cxkhZ2C/iyi3/6U9EPc5y+a6csqHItndvN/CzbNXTNrsC3/ASoYQZEt9uMaEp+xFNjasqQyszp5TumAVKKvJeQ==,
} }
engines: { node: ^18.18.0 || >=20.0.0 } engines: { node: ^18.18.0 || >=20.0.0 }
peerDependencies: peerDependencies:
@ -1463,8 +1463,8 @@ packages:
typescript: typescript:
optional: true optional: true
dependencies: dependencies:
"@typescript-eslint/types": 7.10.0 "@typescript-eslint/types": 7.11.0
"@typescript-eslint/visitor-keys": 7.10.0 "@typescript-eslint/visitor-keys": 7.11.0
debug: 4.3.4 debug: 4.3.4
globby: 11.1.0 globby: 11.1.0
is-glob: 4.0.3 is-glob: 4.0.3
@ -1476,33 +1476,33 @@ packages:
- supports-color - supports-color
dev: true dev: true
/@typescript-eslint/utils@7.10.0(eslint@8.57.0)(typescript@5.4.5): /@typescript-eslint/utils@7.11.0(eslint@8.57.0)(typescript@5.4.5):
resolution: resolution:
{ {
integrity: sha512-olzif1Fuo8R8m/qKkzJqT7qwy16CzPRWBvERS0uvyc+DHd8AKbO4Jb7kpAvVzMmZm8TrHnI7hvjN4I05zow+tg==, integrity: sha512-xlAWwPleNRHwF37AhrZurOxA1wyXowW4PqVXZVUNCLjB48CqdPJoJWkrpH2nij9Q3Lb7rtWindtoXwxjxlKKCA==,
} }
engines: { node: ^18.18.0 || >=20.0.0 } engines: { node: ^18.18.0 || >=20.0.0 }
peerDependencies: peerDependencies:
eslint: ^8.56.0 eslint: ^8.56.0
dependencies: dependencies:
"@eslint-community/eslint-utils": 4.4.0(eslint@8.57.0) "@eslint-community/eslint-utils": 4.4.0(eslint@8.57.0)
"@typescript-eslint/scope-manager": 7.10.0 "@typescript-eslint/scope-manager": 7.11.0
"@typescript-eslint/types": 7.10.0 "@typescript-eslint/types": 7.11.0
"@typescript-eslint/typescript-estree": 7.10.0(typescript@5.4.5) "@typescript-eslint/typescript-estree": 7.11.0(typescript@5.4.5)
eslint: 8.57.0 eslint: 8.57.0
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
- typescript - typescript
dev: true dev: true
/@typescript-eslint/visitor-keys@7.10.0: /@typescript-eslint/visitor-keys@7.11.0:
resolution: resolution:
{ {
integrity: sha512-9ntIVgsi6gg6FIq9xjEO4VQJvwOqA3jaBFQJ/6TK5AvEup2+cECI6Fh7QiBxmfMHXU0V0J4RyPeOU1VDNzl9cg==, integrity: sha512-7syYk4MzjxTEk0g/w3iqtgxnFQspDJfn6QKD36xMuuhTzjcxY7F8EmBLnALjVyaOF1/bVocu3bS/2/F7rXrveQ==,
} }
engines: { node: ^18.18.0 || >=20.0.0 } engines: { node: ^18.18.0 || >=20.0.0 }
dependencies: dependencies:
"@typescript-eslint/types": 7.10.0 "@typescript-eslint/types": 7.11.0
eslint-visitor-keys: 3.4.3 eslint-visitor-keys: 3.4.3
dev: true dev: true
@ -1831,8 +1831,8 @@ packages:
engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 }
hasBin: true hasBin: true
dependencies: dependencies:
caniuse-lite: 1.0.30001621 caniuse-lite: 1.0.30001625
electron-to-chromium: 1.4.777 electron-to-chromium: 1.4.784
node-releases: 2.0.14 node-releases: 2.0.14
update-browserslist-db: 1.0.16(browserslist@4.23.0) update-browserslist-db: 1.0.16(browserslist@4.23.0)
dev: true dev: true
@ -1904,10 +1904,10 @@ packages:
engines: { node: ">=6" } engines: { node: ">=6" }
dev: true dev: true
/caniuse-lite@1.0.30001621: /caniuse-lite@1.0.30001625:
resolution: resolution:
{ {
integrity: sha512-+NLXZiviFFKX0fk8Piwv3PfLPGtRqJeq2TiNoUff/qB5KJgwecJTvCXDpmlyP/eCI/GUEmp/h/y5j0yckiiZrA==, integrity: sha512-4KE9N2gcRH+HQhpeiRZXd+1niLB/XNLAhSy4z7fI8EzcbcPoAqjNInxVHTiTwWfTIV4w096XG8OtCOCQQKPv3w==,
} }
dev: true dev: true
@ -2202,10 +2202,10 @@ packages:
} }
dev: true dev: true
/electron-to-chromium@1.4.777: /electron-to-chromium@1.4.784:
resolution: resolution:
{ {
integrity: sha512-n02NCwLJ3wexLfK/yQeqfywCblZqLcXphzmid5e8yVPdtEcida7li0A5WQKghHNG0FeOMCzeFOzEbtAh5riXFw==, integrity: sha512-9CZwh+sDrhDAeOEFh8s3PqwduzTyYIeYwZolc1b9ENAUt3ePu7R1sJSCWr/820ISssRxCJUyHI9Wb7j+0Uo1AA==,
} }
dev: true dev: true
@ -2456,7 +2456,7 @@ packages:
- supports-color - supports-color
dev: true dev: true
/eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.10.0)(eslint-plugin-import@2.29.1)(eslint@8.57.0): /eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@7.11.0)(eslint-plugin-import@2.29.1)(eslint@8.57.0):
resolution: resolution:
{ {
integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==, integrity: sha512-xgdptdoi5W3niYeuQxKmzVDTATvLYqhpwmykwsh7f6HIOStGWEIL9iqZgQDF9u9OEzrRwR8no5q2VT+bjAujTg==,
@ -2469,8 +2469,8 @@ packages:
debug: 4.3.4 debug: 4.3.4
enhanced-resolve: 5.16.1 enhanced-resolve: 5.16.1
eslint: 8.57.0 eslint: 8.57.0
eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.10.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.11.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0)
eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.10.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.11.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0)
fast-glob: 3.3.2 fast-glob: 3.3.2
get-tsconfig: 4.7.5 get-tsconfig: 4.7.5
is-core-module: 2.13.1 is-core-module: 2.13.1
@ -2482,7 +2482,7 @@ packages:
- supports-color - supports-color
dev: true dev: true
/eslint-module-utils@2.8.1(@typescript-eslint/parser@7.10.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0): /eslint-module-utils@2.8.1(@typescript-eslint/parser@7.11.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0):
resolution: resolution:
{ {
integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==, integrity: sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q==,
@ -2506,11 +2506,11 @@ packages:
eslint-import-resolver-webpack: eslint-import-resolver-webpack:
optional: true optional: true
dependencies: dependencies:
"@typescript-eslint/parser": 7.10.0(eslint@8.57.0)(typescript@5.4.5) "@typescript-eslint/parser": 7.11.0(eslint@8.57.0)(typescript@5.4.5)
debug: 3.2.7 debug: 3.2.7
eslint: 8.57.0 eslint: 8.57.0
eslint-import-resolver-node: 0.3.9 eslint-import-resolver-node: 0.3.9
eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.10.0)(eslint-plugin-import@2.29.1)(eslint@8.57.0) eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@7.11.0)(eslint-plugin-import@2.29.1)(eslint@8.57.0)
transitivePeerDependencies: transitivePeerDependencies:
- supports-color - supports-color
dev: true dev: true
@ -2566,8 +2566,8 @@ packages:
eslint: ^8.0.1 eslint: ^8.0.1
dependencies: dependencies:
"@github/browserslist-config": 1.0.0 "@github/browserslist-config": 1.0.0
"@typescript-eslint/eslint-plugin": 7.10.0(@typescript-eslint/parser@7.10.0)(eslint@8.57.0)(typescript@5.4.5) "@typescript-eslint/eslint-plugin": 7.11.0(@typescript-eslint/parser@7.11.0)(eslint@8.57.0)(typescript@5.4.5)
"@typescript-eslint/parser": 7.10.0(eslint@8.57.0)(typescript@5.4.5) "@typescript-eslint/parser": 7.11.0(eslint@8.57.0)(typescript@5.4.5)
aria-query: 5.3.0 aria-query: 5.3.0
eslint: 8.57.0 eslint: 8.57.0
eslint-config-prettier: 9.1.0(eslint@8.57.0) eslint-config-prettier: 9.1.0(eslint@8.57.0)
@ -2575,7 +2575,7 @@ packages:
eslint-plugin-eslint-comments: 3.2.0(eslint@8.57.0) eslint-plugin-eslint-comments: 3.2.0(eslint@8.57.0)
eslint-plugin-filenames: 1.3.2(eslint@8.57.0) eslint-plugin-filenames: 1.3.2(eslint@8.57.0)
eslint-plugin-i18n-text: 1.0.1(eslint@8.57.0) eslint-plugin-i18n-text: 1.0.1(eslint@8.57.0)
eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.10.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) eslint-plugin-import: 2.29.1(@typescript-eslint/parser@7.11.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0)
eslint-plugin-jsx-a11y: 6.8.0(eslint@8.57.0) eslint-plugin-jsx-a11y: 6.8.0(eslint@8.57.0)
eslint-plugin-no-only-tests: 3.1.0 eslint-plugin-no-only-tests: 3.1.0
eslint-plugin-prettier: 5.1.3(eslint-config-prettier@9.1.0)(eslint@8.57.0)(prettier@3.2.5) eslint-plugin-prettier: 5.1.3(eslint-config-prettier@9.1.0)(eslint@8.57.0)(prettier@3.2.5)
@ -2602,7 +2602,7 @@ packages:
eslint: 8.57.0 eslint: 8.57.0
dev: true dev: true
/eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.10.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0): /eslint-plugin-import@2.29.1(@typescript-eslint/parser@7.11.0)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0):
resolution: resolution:
{ {
integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==, integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==,
@ -2615,7 +2615,7 @@ packages:
"@typescript-eslint/parser": "@typescript-eslint/parser":
optional: true optional: true
dependencies: dependencies:
"@typescript-eslint/parser": 7.10.0(eslint@8.57.0)(typescript@5.4.5) "@typescript-eslint/parser": 7.11.0(eslint@8.57.0)(typescript@5.4.5)
array-includes: 3.1.8 array-includes: 3.1.8
array.prototype.findlastindex: 1.2.5 array.prototype.findlastindex: 1.2.5
array.prototype.flat: 1.3.2 array.prototype.flat: 1.3.2
@ -2624,7 +2624,7 @@ packages:
doctrine: 2.1.0 doctrine: 2.1.0
eslint: 8.57.0 eslint: 8.57.0
eslint-import-resolver-node: 0.3.9 eslint-import-resolver-node: 0.3.9
eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.10.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0) eslint-module-utils: 2.8.1(@typescript-eslint/parser@7.11.0)(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@8.57.0)
hasown: 2.0.2 hasown: 2.0.2
is-core-module: 2.13.1 is-core-module: 2.13.1
is-glob: 4.0.3 is-glob: 4.0.3
@ -2649,7 +2649,7 @@ packages:
peerDependencies: peerDependencies:
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
dependencies: dependencies:
"@babel/runtime": 7.24.5 "@babel/runtime": 7.24.6
aria-query: 5.3.0 aria-query: 5.3.0
array-includes: 3.1.8 array-includes: 3.1.8
array.prototype.flatmap: 1.3.2 array.prototype.flatmap: 1.3.2
@ -3139,10 +3139,10 @@ packages:
is-glob: 4.0.3 is-glob: 4.0.3
dev: true dev: true
/glob@10.3.16: /glob@10.4.1:
resolution: resolution:
{ {
integrity: sha512-JDKXl1DiuuHJ6fVS2FXjownaavciiHNUU4mOvV/B793RLh05vZL1rcPnCSaOgv1hDT6RDlY7AB7ZUvFYAtPgAw==, integrity: sha512-2jelhlq3E4ho74ZyVLN03oKdAZVUa6UDZzFLVH1H7dnoax+y9qyaq8zBkfDIggjniU19z0wU18y16jMB2eyVIw==,
} }
engines: { node: ">=16 || 14 >=14.18" } engines: { node: ">=16 || 14 >=14.18" }
hasBin: true hasBin: true
@ -3150,7 +3150,7 @@ packages:
foreground-child: 3.1.1 foreground-child: 3.1.1
jackspeak: 3.1.2 jackspeak: 3.1.2
minimatch: 9.0.4 minimatch: 9.0.4
minipass: 7.1.1 minipass: 7.1.2
path-scurry: 1.11.1 path-scurry: 1.11.1
dev: true dev: true
@ -3159,6 +3159,7 @@ packages:
{ {
integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==, integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==,
} }
deprecated: Glob versions prior to v9 are no longer supported
dependencies: dependencies:
fs.realpath: 1.0.0 fs.realpath: 1.0.0
inflight: 1.0.6 inflight: 1.0.6
@ -3381,6 +3382,7 @@ packages:
{ {
integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==, integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==,
} }
deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
dependencies: dependencies:
once: 1.4.0 once: 1.4.0
wrappy: 1.0.2 wrappy: 1.0.2
@ -4041,10 +4043,10 @@ packages:
} }
dev: true dev: true
/minipass@7.1.1: /minipass@7.1.2:
resolution: resolution:
{ {
integrity: sha512-UZ7eQ+h8ywIRAW1hIEl2AqdwzJucU/Kp59+8kkZeSvafXhZjul247BvIJjEVFVeON6d7lM46XX1HXCduKAS8VA==, integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==,
} }
engines: { node: ">=16 || 14 >=14.17" } engines: { node: ">=16 || 14 >=14.17" }
dev: true dev: true
@ -4324,7 +4326,7 @@ packages:
engines: { node: ">=16 || 14 >=14.18" } engines: { node: ">=16 || 14 >=14.18" }
dependencies: dependencies:
lru-cache: 10.2.2 lru-cache: 10.2.2
minipass: 7.1.1 minipass: 7.1.2
dev: true dev: true
/path-type@4.0.0: /path-type@4.0.0:
@ -4554,6 +4556,7 @@ packages:
{ {
integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==, integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==,
} }
deprecated: Rimraf versions prior to v4 are no longer supported
hasBin: true hasBin: true
dependencies: dependencies:
glob: 7.2.3 glob: 7.2.3
@ -4622,10 +4625,10 @@ packages:
is-regex: 1.1.4 is-regex: 1.1.4
dev: true dev: true
/sax@1.3.0: /sax@1.4.1:
resolution: resolution:
{ {
integrity: sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==, integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==,
} }
dev: false dev: false
@ -4867,7 +4870,7 @@ packages:
dependencies: dependencies:
"@jridgewell/gen-mapping": 0.3.5 "@jridgewell/gen-mapping": 0.3.5
commander: 4.1.1 commander: 4.1.1
glob: 10.3.16 glob: 10.4.1
lines-and-columns: 1.2.4 lines-and-columns: 1.2.4
mz: 2.7.0 mz: 2.7.0
pirates: 4.0.6 pirates: 4.0.6
@ -5400,7 +5403,7 @@ packages:
} }
engines: { node: ">=4.0.0" } engines: { node: ">=4.0.0" }
dependencies: dependencies:
sax: 1.3.0 sax: 1.4.1
xmlbuilder: 11.0.1 xmlbuilder: 11.0.1
dev: false dev: false
@ -5429,10 +5432,10 @@ packages:
engines: { node: ">=10" } engines: { node: ">=10" }
dev: true dev: true
github.com/DeterminateSystems/detsys-ts/848cedfa44c31ae5ed7995350bb2707b9422840e: github.com/DeterminateSystems/detsys-ts/5fcb0532d85556ebc2de286e483885976531339d:
resolution: resolution:
{ {
tarball: https://codeload.github.com/DeterminateSystems/detsys-ts/tar.gz/848cedfa44c31ae5ed7995350bb2707b9422840e, tarball: https://codeload.github.com/DeterminateSystems/detsys-ts/tar.gz/5fcb0532d85556ebc2de286e483885976531339d,
} }
name: detsys-ts name: detsys-ts
version: 1.0.0 version: 1.0.0