From aef2b5884c01e86ca4e4d4e3928cce16b8b75cfe Mon Sep 17 00:00:00 2001 From: Sora Morimoto Date: Thu, 16 Jan 2025 10:48:16 +0900 Subject: [PATCH] Update npm deps Signed-off-by: Sora Morimoto --- dist/LICENSE.txt | 25 ----- dist/index.js | 158 ++++++++---------------------- dist/post/index.js | 2 +- packages/analysis/package.json | 2 +- packages/lint-doc/package.json | 2 +- packages/lint-fmt/package.json | 2 +- packages/lint-opam/package.json | 2 +- packages/setup-ocaml/package.json | 6 +- yarn.lock | 50 ++++------ 9 files changed, 68 insertions(+), 181 deletions(-) diff --git a/dist/LICENSE.txt b/dist/LICENSE.txt index 00ad9230..a9909564 100644 --- a/dist/LICENSE.txt +++ b/dist/LICENSE.txt @@ -1901,31 +1901,6 @@ Permission to use, copy, modify, and/or distribute this software for any purpose THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -uuid -MIT -The MIT License (MIT) - -Copyright (c) 2010-2016 Robert Kieffer and other contributors - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. - - whatwg-encoding MIT Copyright © Domenic Denicola diff --git a/dist/index.js b/dist/index.js index cab43ec8..53fddba7 100644 --- a/dist/index.js +++ b/dist/index.js @@ -11733,7 +11733,11 @@ function copyFile(srcFile, destFile, force) { var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; @@ -11746,7 +11750,7 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? ( var __importStar = (this && this.__importStar) || function (mod) { if (mod && mod.__esModule) return mod; var result = {}; - if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); + if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); __setModuleDefault(result, mod); return result; }; @@ -11776,11 +11780,11 @@ function _findMatch(versionSpec, stable, candidates, archFilter) { let file; for (const candidate of candidates) { const version = candidate.version; - core_1.debug(`check ${version} satisfies ${versionSpec}`); + (0, core_1.debug)(`check ${version} satisfies ${versionSpec}`); if (semver.satisfies(version, versionSpec) && (!stable || candidate.stable === stable)) { file = candidate.files.find(item => { - core_1.debug(`${item.arch}===${archFilter} && ${item.platform}===${platFilter}`); + (0, core_1.debug)(`${item.arch}===${archFilter} && ${item.platform}===${platFilter}`); let chk = item.arch === archFilter && item.platform === platFilter; if (chk && item.platform_version) { const osVersion = module.exports._getOsVersion(); @@ -11794,7 +11798,7 @@ function _findMatch(versionSpec, stable, candidates, archFilter) { return chk; }); if (file) { - core_1.debug(`matched ${candidate.version}`); + (0, core_1.debug)(`matched ${candidate.version}`); match = candidate; break; } @@ -11832,10 +11836,7 @@ function _getOsVersion() { if (parts.length === 2 && (parts[0].trim() === 'VERSION_ID' || parts[0].trim() === 'DISTRIB_RELEASE')) { - version = parts[1] - .trim() - .replace(/^"/, '') - .replace(/"$/, ''); + version = parts[1].trim().replace(/^"/, '').replace(/"$/, ''); break; } } @@ -11867,7 +11868,11 @@ exports._readLinuxVersionFile = _readLinuxVersionFile; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; @@ -11880,7 +11885,7 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? ( var __importStar = (this && this.__importStar) || function (mod) { if (mod && mod.__esModule) return mod; var result = {}; - if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); + if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); __setModuleDefault(result, mod); return result; }; @@ -11956,7 +11961,11 @@ exports.RetryHelper = RetryHelper; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; - Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; @@ -11969,7 +11978,7 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? ( var __importStar = (this && this.__importStar) || function (mod) { if (mod && mod.__esModule) return mod; var result = {}; - if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); + if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); __setModuleDefault(result, mod); return result; }; @@ -11982,13 +11991,11 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; Object.defineProperty(exports, "__esModule", ({ value: true })); exports.evaluateVersions = exports.isExplicitVersion = exports.findFromManifest = exports.getManifestFromRepo = exports.findAllVersions = exports.find = exports.cacheFile = exports.cacheDir = exports.extractZip = exports.extractXar = exports.extractTar = exports.extract7z = exports.downloadTool = exports.HTTPError = void 0; const core = __importStar(__nccwpck_require__(7184)); const io = __importStar(__nccwpck_require__(4502)); +const crypto = __importStar(__nccwpck_require__(76982)); const fs = __importStar(__nccwpck_require__(79896)); const mm = __importStar(__nccwpck_require__(36432)); const os = __importStar(__nccwpck_require__(70857)); @@ -11998,7 +12005,6 @@ const semver = __importStar(__nccwpck_require__(64221)); const stream = __importStar(__nccwpck_require__(2203)); const util = __importStar(__nccwpck_require__(39023)); const assert_1 = __nccwpck_require__(42613); -const v4_1 = __importDefault(__nccwpck_require__(15274)); const exec_1 = __nccwpck_require__(19192); const retry_helper_1 = __nccwpck_require__(68216); class HTTPError extends Error { @@ -12023,7 +12029,7 @@ const userAgent = 'actions/tool-cache'; */ function downloadTool(url, dest, auth, headers) { return __awaiter(this, void 0, void 0, function* () { - dest = dest || path.join(_getTempDirectory(), v4_1.default()); + dest = dest || path.join(_getTempDirectory(), crypto.randomUUID()); yield io.mkdirP(path.dirname(dest)); core.debug(`Downloading ${url}`); core.debug(`Destination ${dest}`); @@ -12112,8 +12118,8 @@ function downloadToolAttempt(url, dest, auth, headers) { */ function extract7z(file, dest, _7zPath) { return __awaiter(this, void 0, void 0, function* () { - assert_1.ok(IS_WINDOWS, 'extract7z() not supported on current OS'); - assert_1.ok(file, 'parameter "file" is required'); + (0, assert_1.ok)(IS_WINDOWS, 'extract7z() not supported on current OS'); + (0, assert_1.ok)(file, 'parameter "file" is required'); dest = yield _createExtractFolder(dest); const originalCwd = process.cwd(); process.chdir(dest); @@ -12130,7 +12136,7 @@ function extract7z(file, dest, _7zPath) { const options = { silent: true }; - yield exec_1.exec(`"${_7zPath}"`, args, options); + yield (0, exec_1.exec)(`"${_7zPath}"`, args, options); } finally { process.chdir(originalCwd); @@ -12159,7 +12165,7 @@ function extract7z(file, dest, _7zPath) { }; try { const powershellPath = yield io.which('powershell', true); - yield exec_1.exec(`"${powershellPath}"`, args, options); + yield (0, exec_1.exec)(`"${powershellPath}"`, args, options); } finally { process.chdir(originalCwd); @@ -12187,7 +12193,7 @@ function extractTar(file, dest, flags = 'xz') { // Determine whether GNU tar core.debug('Checking tar --version'); let versionOutput = ''; - yield exec_1.exec('tar --version', [], { + yield (0, exec_1.exec)('tar --version', [], { ignoreReturnCode: true, silent: true, listeners: { @@ -12223,7 +12229,7 @@ function extractTar(file, dest, flags = 'xz') { args.push('--overwrite'); } args.push('-C', destArg, '-f', fileArg); - yield exec_1.exec(`tar`, args); + yield (0, exec_1.exec)(`tar`, args); return dest; }); } @@ -12238,8 +12244,8 @@ exports.extractTar = extractTar; */ function extractXar(file, dest, flags = []) { return __awaiter(this, void 0, void 0, function* () { - assert_1.ok(IS_MAC, 'extractXar() not supported on current OS'); - assert_1.ok(file, 'parameter "file" is required'); + (0, assert_1.ok)(IS_MAC, 'extractXar() not supported on current OS'); + (0, assert_1.ok)(file, 'parameter "file" is required'); dest = yield _createExtractFolder(dest); let args; if (flags instanceof Array) { @@ -12253,7 +12259,7 @@ function extractXar(file, dest, flags = []) { args.push('-v'); } const xarPath = yield io.which('xar', true); - yield exec_1.exec(`"${xarPath}"`, _unique(args)); + yield (0, exec_1.exec)(`"${xarPath}"`, _unique(args)); return dest; }); } @@ -12307,7 +12313,7 @@ function extractZipWin(file, dest) { pwshCommand ]; core.debug(`Using pwsh at path: ${pwshPath}`); - yield exec_1.exec(`"${pwshPath}"`, args); + yield (0, exec_1.exec)(`"${pwshPath}"`, args); } else { const powershellCommand = [ @@ -12328,7 +12334,7 @@ function extractZipWin(file, dest) { ]; const powershellPath = yield io.which('powershell', true); core.debug(`Using powershell at path: ${powershellPath}`); - yield exec_1.exec(`"${powershellPath}"`, args); + yield (0, exec_1.exec)(`"${powershellPath}"`, args); } }); } @@ -12340,7 +12346,7 @@ function extractZipNix(file, dest) { args.unshift('-q'); } args.unshift('-o'); //overwrite with -o, otherwise a prompt is shown which freezes the run - yield exec_1.exec(`"${unzipPath}"`, args, { cwd: dest }); + yield (0, exec_1.exec)(`"${unzipPath}"`, args, { cwd: dest }); }); } /** @@ -12517,7 +12523,7 @@ function _createExtractFolder(dest) { return __awaiter(this, void 0, void 0, function* () { if (!dest) { // create a temp dir - dest = path.join(_getTempDirectory(), v4_1.default()); + dest = path.join(_getTempDirectory(), crypto.randomUUID()); } yield io.mkdirP(dest); return dest; @@ -12590,7 +12596,7 @@ exports.evaluateVersions = evaluateVersions; */ function _getCacheDirectory() { const cacheDirectory = process.env['RUNNER_TOOL_CACHE'] || ''; - assert_1.ok(cacheDirectory, 'Expected RUNNER_TOOL_CACHE to be defined'); + (0, assert_1.ok)(cacheDirectory, 'Expected RUNNER_TOOL_CACHE to be defined'); return cacheDirectory; } /** @@ -12598,7 +12604,7 @@ function _getCacheDirectory() { */ function _getTempDirectory() { const tempDirectory = process.env['RUNNER_TEMP'] || ''; - assert_1.ok(tempDirectory, 'Expected RUNNER_TEMP to be defined'); + (0, assert_1.ok)(tempDirectory, 'Expected RUNNER_TEMP to be defined'); return tempDirectory; } /** @@ -14269,90 +14275,6 @@ function coerce (version, options) { } -/***/ }), - -/***/ 77371: -/***/ ((module) => { - -/** - * Convert array of 16 byte values to UUID string format of the form: - * XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX - */ -var byteToHex = []; -for (var i = 0; i < 256; ++i) { - byteToHex[i] = (i + 0x100).toString(16).substr(1); -} - -function bytesToUuid(buf, offset) { - var i = offset || 0; - var bth = byteToHex; - // join used to fix memory issue caused by concatenation: https://bugs.chromium.org/p/v8/issues/detail?id=3175#c4 - return ([ - bth[buf[i++]], bth[buf[i++]], - bth[buf[i++]], bth[buf[i++]], '-', - bth[buf[i++]], bth[buf[i++]], '-', - bth[buf[i++]], bth[buf[i++]], '-', - bth[buf[i++]], bth[buf[i++]], '-', - bth[buf[i++]], bth[buf[i++]], - bth[buf[i++]], bth[buf[i++]], - bth[buf[i++]], bth[buf[i++]] - ]).join(''); -} - -module.exports = bytesToUuid; - - -/***/ }), - -/***/ 92323: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - -// Unique ID creation requires a high quality random # generator. In node.js -// this is pretty straight-forward - we use the crypto API. - -var crypto = __nccwpck_require__(76982); - -module.exports = function nodeRNG() { - return crypto.randomBytes(16); -}; - - -/***/ }), - -/***/ 15274: -/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { - -var rng = __nccwpck_require__(92323); -var bytesToUuid = __nccwpck_require__(77371); - -function v4(options, buf, offset) { - var i = buf && offset || 0; - - if (typeof(options) == 'string') { - buf = options === 'binary' ? new Array(16) : null; - options = null; - } - options = options || {}; - - var rnds = options.random || (options.rng || rng)(); - - // Per 4.4, set bits for version and `clock_seq_hi_and_reserved` - rnds[6] = (rnds[6] & 0x0f) | 0x40; - rnds[8] = (rnds[8] & 0x3f) | 0x80; - - // Copy bytes to buffer, if provided - if (buf) { - for (var ii = 0; ii < 16; ++ii) { - buf[i + ii] = rnds[ii]; - } - } - - return buf || bytesToUuid(rnds); -} - -module.exports = v4; - - /***/ }), /***/ 77224: @@ -149429,7 +149351,7 @@ module.exports = /*#__PURE__*/JSON.parse('[["0","\\u0000",128],["a1","。",62],[ /***/ 15460: /***/ ((module) => { -module.exports = {"rE":"5.25.10"}; +module.exports = {"rE":"5.25.11"}; /***/ }), diff --git a/dist/post/index.js b/dist/post/index.js index 6fce7c03..254b475c 100644 --- a/dist/post/index.js +++ b/dist/post/index.js @@ -114617,7 +114617,7 @@ module.exports = /*#__PURE__*/JSON.parse('{"name":"@actions/cache","version":"4. /***/ 15460: /***/ ((module) => { -module.exports = {"rE":"5.25.10"}; +module.exports = {"rE":"5.25.11"}; /***/ }) diff --git a/packages/analysis/package.json b/packages/analysis/package.json index 4db5f0a5..5dcc2aaa 100644 --- a/packages/analysis/package.json +++ b/packages/analysis/package.json @@ -19,7 +19,7 @@ "devDependencies": { "@tsconfig/node20": "20.1.4", "@tsconfig/strictest": "2.0.5", - "@types/node": "22.10.5", + "@types/node": "22.10.7", "@vercel/ncc": "0.38.3", "typescript": "5.7.3" } diff --git a/packages/lint-doc/package.json b/packages/lint-doc/package.json index 0b86b1aa..838695f0 100644 --- a/packages/lint-doc/package.json +++ b/packages/lint-doc/package.json @@ -14,7 +14,7 @@ "devDependencies": { "@tsconfig/node20": "20.1.4", "@tsconfig/strictest": "2.0.5", - "@types/node": "22.10.5", + "@types/node": "22.10.7", "@vercel/ncc": "0.38.3", "typescript": "5.7.3" } diff --git a/packages/lint-fmt/package.json b/packages/lint-fmt/package.json index 149e3a96..6b1d32a8 100644 --- a/packages/lint-fmt/package.json +++ b/packages/lint-fmt/package.json @@ -14,7 +14,7 @@ "devDependencies": { "@tsconfig/node20": "20.1.4", "@tsconfig/strictest": "2.0.5", - "@types/node": "22.10.5", + "@types/node": "22.10.7", "@vercel/ncc": "0.38.3", "typescript": "5.7.3" } diff --git a/packages/lint-opam/package.json b/packages/lint-opam/package.json index f5b91e11..0b9a3496 100644 --- a/packages/lint-opam/package.json +++ b/packages/lint-opam/package.json @@ -14,7 +14,7 @@ "devDependencies": { "@tsconfig/node20": "20.1.4", "@tsconfig/strictest": "2.0.5", - "@types/node": "22.10.5", + "@types/node": "22.10.7", "@vercel/ncc": "0.38.3", "typescript": "5.7.3" } diff --git a/packages/setup-ocaml/package.json b/packages/setup-ocaml/package.json index bcc4188e..8d5f4f5b 100644 --- a/packages/setup-ocaml/package.json +++ b/packages/setup-ocaml/package.json @@ -16,16 +16,16 @@ "@actions/glob": "0.5.0", "@actions/http-client": "2.2.3", "@actions/io": "1.1.3", - "@actions/tool-cache": "2.0.1", + "@actions/tool-cache": "2.0.2", "cheerio": "1.0.0", "semver": "7.6.3", - "systeminformation": "5.25.10", + "systeminformation": "5.25.11", "yaml": "2.7.0" }, "devDependencies": { "@tsconfig/node20": "20.1.4", "@tsconfig/strictest": "2.0.5", - "@types/node": "22.10.5", + "@types/node": "22.10.7", "@types/semver": "7.5.8", "@vercel/ncc": "0.38.3", "typescript": "5.7.3" diff --git a/yarn.lock b/yarn.lock index d1ab1529..2f4b71ab 100644 --- a/yarn.lock +++ b/yarn.lock @@ -92,17 +92,16 @@ __metadata: languageName: node linkType: hard -"@actions/tool-cache@npm:2.0.1": - version: 2.0.1 - resolution: "@actions/tool-cache@npm:2.0.1" +"@actions/tool-cache@npm:2.0.2": + version: 2.0.2 + resolution: "@actions/tool-cache@npm:2.0.2" dependencies: - "@actions/core": "npm:^1.2.6" + "@actions/core": "npm:^1.11.1" "@actions/exec": "npm:^1.0.0" "@actions/http-client": "npm:^2.0.1" "@actions/io": "npm:^1.1.1" semver: "npm:^6.1.0" - uuid: "npm:^3.3.2" - checksum: 10c0/8b3e438842ea7b26a826efe46a0eb839f4e9d9f12c7be10d75fe56826004bd24cb643955332b7e011de5da223cfca1628672aa4ccde5a0df126ebf8329eda044 + checksum: 10c0/bc04870b59b969717bdc4966fa1fca8263d5e968bfb73e5dfac02018e6180ae5752d6d209a2a1e483219325389aaf62e9f8ebb80f04d77686e386a630481adfd languageName: node linkType: hard @@ -440,7 +439,7 @@ __metadata: "@github/dependency-submission-toolkit": "npm:2.0.4" "@tsconfig/node20": "npm:20.1.4" "@tsconfig/strictest": "npm:2.0.5" - "@types/node": "npm:22.10.5" + "@types/node": "npm:22.10.7" "@vercel/ncc": "npm:0.38.3" packageurl-js: "npm:2.0.1" strip-ansi: "npm:7.1.0" @@ -456,7 +455,7 @@ __metadata: "@actions/exec": "npm:1.1.1" "@tsconfig/node20": "npm:20.1.4" "@tsconfig/strictest": "npm:2.0.5" - "@types/node": "npm:22.10.5" + "@types/node": "npm:22.10.7" "@vercel/ncc": "npm:0.38.3" typescript: "npm:5.7.3" languageName: unknown @@ -470,7 +469,7 @@ __metadata: "@actions/exec": "npm:1.1.1" "@tsconfig/node20": "npm:20.1.4" "@tsconfig/strictest": "npm:2.0.5" - "@types/node": "npm:22.10.5" + "@types/node": "npm:22.10.7" "@vercel/ncc": "npm:0.38.3" typescript: "npm:5.7.3" languageName: unknown @@ -484,7 +483,7 @@ __metadata: "@actions/exec": "npm:1.1.1" "@tsconfig/node20": "npm:20.1.4" "@tsconfig/strictest": "npm:2.0.5" - "@types/node": "npm:22.10.5" + "@types/node": "npm:22.10.7" "@vercel/ncc": "npm:0.38.3" typescript: "npm:5.7.3" languageName: unknown @@ -501,15 +500,15 @@ __metadata: "@actions/glob": "npm:0.5.0" "@actions/http-client": "npm:2.2.3" "@actions/io": "npm:1.1.3" - "@actions/tool-cache": "npm:2.0.1" + "@actions/tool-cache": "npm:2.0.2" "@tsconfig/node20": "npm:20.1.4" "@tsconfig/strictest": "npm:2.0.5" - "@types/node": "npm:22.10.5" + "@types/node": "npm:22.10.7" "@types/semver": "npm:7.5.8" "@vercel/ncc": "npm:0.38.3" cheerio: "npm:1.0.0" semver: "npm:7.6.3" - systeminformation: "npm:5.25.10" + systeminformation: "npm:5.25.11" typescript: "npm:5.7.3" yaml: "npm:2.7.0" languageName: unknown @@ -714,12 +713,12 @@ __metadata: languageName: node linkType: hard -"@types/node@npm:22.10.5": - version: 22.10.5 - resolution: "@types/node@npm:22.10.5" +"@types/node@npm:22.10.7": + version: 22.10.7 + resolution: "@types/node@npm:22.10.7" dependencies: undici-types: "npm:~6.20.0" - checksum: 10c0/6a0e7d1fe6a86ef6ee19c3c6af4c15542e61aea2f4cee655b6252efb356795f1f228bc8299921e82924e80ff8eca29b74d9dd0dd5cc1a90983f892f740b480df + checksum: 10c0/c941b4689dfc4044b64a5f601306cbcb0c7210be853ba378a5dd44137898c45accedd796ee002ad9407024cac7ecaf5049304951cb1d80ce3d7cebbbae56f20e languageName: node linkType: hard @@ -1900,12 +1899,12 @@ __metadata: languageName: node linkType: hard -"systeminformation@npm:5.25.10": - version: 5.25.10 - resolution: "systeminformation@npm:5.25.10" +"systeminformation@npm:5.25.11": + version: 5.25.11 + resolution: "systeminformation@npm:5.25.11" bin: systeminformation: lib/cli.js - checksum: 10c0/1477b7cf4eec96bd91c55666e4147e720cfab4385a4dc1ac482f269158f5175f1de24cf0d61fb39ba5b17727168619d95dcfb06f42be9858438db08e9d647189 + checksum: 10c0/c4d3ed2836dec306d017df66dded9bc0fea40bd5a277e29e9800f6272992cb084e08b8d2a9159ffdc823e75338c2dc9202b697d86504098fb063c1d8830d34d7 conditions: (os=darwin | os=linux | os=win32 | os=freebsd | os=openbsd | os=netbsd | os=sunos | os=android) languageName: node linkType: hard @@ -2145,15 +2144,6 @@ __metadata: languageName: node linkType: hard -"uuid@npm:^3.3.2": - version: 3.4.0 - resolution: "uuid@npm:3.4.0" - bin: - uuid: ./bin/uuid - checksum: 10c0/1c13950df865c4f506ebfe0a24023571fa80edf2e62364297a537c80af09c618299797bbf2dbac6b1f8ae5ad182ba474b89db61e0e85839683991f7e08795347 - languageName: node - linkType: hard - "uuid@npm:^8.3.2": version: 8.3.2 resolution: "uuid@npm:8.3.2"