πŸš€ Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more β†’
Socket
DemoInstallSign in
Socket

@azure-tools/codegen

Package Overview
Dependencies
Maintainers
3
Versions
101
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@azure-tools/codegen - npm Package Compare versions

Comparing version

to
2.10.1-dev.1

.rush/temp/chunked-rush-logs/codegen.build.chunks.jsonl

8

.rush/temp/package-deps_build.json

@@ -5,2 +5,3 @@ {

"packages/libs/codegen/.npmignore": "a1b60b80c640ee3ad71c88c0f2a897f47775eb1c",
"packages/libs/codegen/.rush/temp/shrinkwrap-deps.json": "4ef0c5920a8ad9cebb599df8abf22e260908e9af",
"packages/libs/codegen/CHANGELOG.json": "06dc12f3a9ad5ba5ebb23134fdb341e9eb556186",

@@ -10,3 +11,3 @@ "packages/libs/codegen/CHANGELOG.md": "9a13bd6a049aa2d4dde6dadf5c46cc056c472f8f",

"packages/libs/codegen/jest.config.js": "37a264bc912dd5e8d055d71e7719a0e4b5e66cb5",
"packages/libs/codegen/package.json": "3d572c766c815fa03cc6dd60ed2cc5023fc5aee3",
"packages/libs/codegen/package.json": "941e574d7bd852e53e872b99ee6ae78bbd6d1ab0",
"packages/libs/codegen/readme.md": "9dc9abb6c5628bc11e699f36c06047d3fa2dcda4",

@@ -32,9 +33,8 @@ "packages/libs/codegen/src/apiversion/apiversion.test.ts": "d2a5567118ca9198fa96fb7a4119c3314584ffe8",

"packages/libs/codegen/src/yaml-dump/readme.md": "202f9e422de751a3142688b3630aed827568c165",
"packages/libs/codegen/src/yaml-dump/yaml-dump.ts": "e01e8bd03330cf158086e11a6fc868c55bdfba3d",
"packages/libs/codegen/src/yaml-dump/yaml-dump.ts": "8b3758c2fdf3a8732cb6e922c9207a90f8a503d9",
"packages/libs/codegen/src/yaml.ts": "aed1ebf52ac3a40c1e54e07e18c93369cd05ea5c",
"packages/libs/codegen/tsconfig.build.json": "43a80c3ac6a595d229d18be5f7672355ac6ee616",
"packages/libs/codegen/tsconfig.json": "6c5305374e6d457d6c6e4614d99b7c8bd218eb93",
"packages/libs/codegen/.rush/temp/shrinkwrap-deps.json": "1971d2a45c01d5d340b3281d579c7c03135b95c6"
"packages/libs/codegen/tsconfig.json": "6c5305374e6d457d6c6e4614d99b7c8bd218eb93"
},
"arguments": "tsc -p tsconfig.build.json "
}

@@ -18,11 +18,27 @@ "use strict";

});
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.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
var __importStar = (this && this.__importStar) || (function () {
var ownKeys = function(o) {
ownKeys = Object.getOwnPropertyNames || function (o) {
var ar = [];
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
return ar;
};
return ownKeys(o);
};
return function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
__setModuleDefault(result, mod);
return result;
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
exports.maximum = exports.minimum = exports.highest = exports.lowest = exports.gt = exports.lt = exports.toSemver = void 0;
exports.toSemver = toSemver;
exports.lt = lt;
exports.gt = gt;
exports.lowest = lowest;
exports.highest = highest;
exports.minimum = minimum;
exports.maximum = maximum;
const semver = __importStar(require("semver"));

@@ -62,3 +78,2 @@ /*

}
exports.toSemver = toSemver;
function lt(apiVersion1, apiVersion2) {

@@ -69,3 +84,2 @@ const v1 = toSemver(apiVersion1);

}
exports.lt = lt;
function gt(apiVersion1, apiVersion2) {

@@ -76,11 +90,8 @@ const v1 = toSemver(apiVersion1);

}
exports.gt = gt;
function lowest(apiVersion1, apiVersion2) {
return lt(apiVersion1, apiVersion2) ? apiVersion1 : apiVersion2;
}
exports.lowest = lowest;
function highest(apiVersion1, apiVersion2) {
return gt(apiVersion1, apiVersion2) ? apiVersion1 : apiVersion2;
}
exports.highest = highest;
function minimum(apiversions) {

@@ -96,3 +107,2 @@ if (apiversions.length === 0) {

}
exports.minimum = minimum;
function maximum(apiversions) {

@@ -108,3 +118,2 @@ if (apiversions.length === 0) {

}
exports.maximum = maximum;
//# sourceMappingURL=apiversion.js.map

@@ -22,11 +22,23 @@ "use strict";

});
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.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
var __importStar = (this && this.__importStar) || (function () {
var ownKeys = function(o) {
ownKeys = Object.getOwnPropertyNames || function (o) {
var ar = [];
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
return ar;
};
return ownKeys(o);
};
return function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
__setModuleDefault(result, mod);
return result;
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
exports.execute = exports.resolveFullPath = exports.cmdlineToArray = void 0;
exports.cmdlineToArray = cmdlineToArray;
exports.resolveFullPath = resolveFullPath;
exports.execute = execute;
const child_process_1 = require("child_process");

@@ -42,3 +54,2 @@ const path = __importStar(require("path"));

}
exports.cmdlineToArray = cmdlineToArray;
function getPathVariableName() {

@@ -133,3 +144,2 @@ // windows calls it's path 'Path' usually, but this is not guaranteed.

}
exports.resolveFullPath = resolveFullPath;
async function execute(cwd, command, ...parameters) {

@@ -175,3 +185,2 @@ const fullCommandPath = await resolveFullPath(command);

}
exports.execute = execute;
//# sourceMappingURL=exec.js.map

@@ -7,3 +7,5 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
exports.TextWithRegions = exports.Text = exports.isTextEdit = exports.isText = void 0;
exports.TextWithRegions = exports.Text = void 0;
exports.isText = isText;
exports.isTextEdit = isTextEdit;
const initializer_1 = require("./initializer");

@@ -14,7 +16,5 @@ const text_manipulation_1 = require("./text-manipulation");

}
exports.isText = isText;
function isTextEdit(object) {
return object.edit ? true : false;
}
exports.isTextEdit = isTextEdit;
class Text extends initializer_1.Initializer {

@@ -21,0 +21,0 @@ constructor(content, objectIntializer) {

@@ -7,3 +7,3 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
exports.intersect = void 0;
exports.intersect = intersect;
/**

@@ -66,3 +66,2 @@ * Creates an intersection object from two source objects.

}
exports.intersect = intersect;
//# sourceMappingURL=intersect.js.map

@@ -7,3 +7,9 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
exports.isMediaTypeMultipartFormData = exports.isMediaTypeXml = exports.isMediaTypeJson = exports.normalizeMediaType = exports.knownMediaType = exports.parseMediaType = exports.FormatType = exports.KnownMediaType = void 0;
exports.FormatType = exports.KnownMediaType = void 0;
exports.parseMediaType = parseMediaType;
exports.knownMediaType = knownMediaType;
exports.normalizeMediaType = normalizeMediaType;
exports.isMediaTypeJson = isMediaTypeJson;
exports.isMediaTypeXml = isMediaTypeXml;
exports.isMediaTypeMultipartFormData = isMediaTypeMultipartFormData;
// Media Type is: type "/" [tree "."] subtype ["+" suffix] * [";" parameter]

@@ -48,3 +54,2 @@ const json = "json";

}
exports.parseMediaType = parseMediaType;
function knownMediaType(mediaType) {

@@ -89,3 +94,2 @@ const mt = parseMediaType(mediaType);

}
exports.knownMediaType = knownMediaType;
function normalizeMediaType(contentType) {

@@ -100,3 +104,2 @@ if (contentType) {

}
exports.normalizeMediaType = normalizeMediaType;
function isMediaTypeJson(mediaType) {

@@ -106,3 +109,2 @@ const mt = parseMediaType(mediaType);

}
exports.isMediaTypeJson = isMediaTypeJson;
function isMediaTypeXml(mediaType) {

@@ -112,3 +114,2 @@ const mt = parseMediaType(mediaType);

}
exports.isMediaTypeXml = isMediaTypeXml;
function isMediaTypeMultipartFormData(mediaType) {

@@ -118,3 +119,2 @@ const mt = parseMediaType(mediaType);

}
exports.isMediaTypeMultipartFormData = isMediaTypeMultipartFormData;
//# sourceMappingURL=media-types.js.map

@@ -18,11 +18,22 @@ "use strict";

});
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.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
var __importStar = (this && this.__importStar) || (function () {
var ownKeys = function(o) {
ownKeys = Object.getOwnPropertyNames || function (o) {
var ar = [];
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
return ar;
};
return ownKeys(o);
};
return function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
__setModuleDefault(result, mod);
return result;
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
exports.createSandbox = exports.safeEval = void 0;
exports.safeEval = void 0;
exports.createSandbox = createSandbox;
/*---------------------------------------------------------------------------------------------

@@ -62,3 +73,2 @@ * Copyright (c) Microsoft Corporation. All rights reserved.

}
exports.createSandbox = createSandbox;
//# sourceMappingURL=safe-eval.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.shadowPosition = exports.ShadowedNodePath = exports.enableSourceTracking = exports.getMappings = void 0;
exports.ShadowedNodePath = void 0;
exports.getMappings = getMappings;
exports.enableSourceTracking = enableSourceTracking;
exports.shadowPosition = shadowPosition;
const type_1 = require("./type");

@@ -11,3 +14,2 @@ const getMap = "_#get-map#_";

}
exports.getMappings = getMappings;
function enableSourceTracking(instance, enforce = true, path = "$", map = {}, cache = new Map()) {

@@ -80,3 +82,2 @@ let proxy = cache.get(path);

}
exports.enableSourceTracking = enableSourceTracking;
exports.ShadowedNodePath = Symbol("ObjectPosition");

@@ -116,3 +117,2 @@ function shadowPosition(source, cache = new WeakMap(), path = []) {

}
exports.shadowPosition = shadowPosition;
function getKey(p) {

@@ -119,0 +119,0 @@ switch (typeof p) {

@@ -7,3 +7,36 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
exports.selectName = exports._setRegion = exports.setRegion = exports.getRegions = exports.nameof = exports.escapeString = exports.getPascalIdentifier = exports.camelCase = exports.pascalCase = exports.removeSequentialDuplicates = exports.isEqual = exports.removeProhibitedPrefix = exports.fixLeadingNumber = exports.convert = exports.isCapitalized = exports.deconstruct = exports.pall = exports.__selectMany = exports.ToMap = exports.map = exports.dotCombine = exports.docComment = exports.comment = exports.indent = exports.fixEOL = exports.toMap = exports.trimDots = exports.setIndentation = exports.sortByName = exports.joinComma = exports.join = exports.uncapitalize = exports.capitalize = exports.CommaChar = exports.EOL = exports.docCommentPrefix = exports.lineCommentPrefix = void 0;
exports.CommaChar = exports.EOL = exports.docCommentPrefix = exports.lineCommentPrefix = void 0;
exports.capitalize = capitalize;
exports.uncapitalize = uncapitalize;
exports.join = join;
exports.joinComma = joinComma;
exports.sortByName = sortByName;
exports.setIndentation = setIndentation;
exports.trimDots = trimDots;
exports.toMap = toMap;
exports.fixEOL = fixEOL;
exports.indent = indent;
exports.comment = comment;
exports.docComment = docComment;
exports.dotCombine = dotCombine;
exports.map = map;
exports.ToMap = ToMap;
exports.__selectMany = __selectMany;
exports.pall = pall;
exports.deconstruct = deconstruct;
exports.isCapitalized = isCapitalized;
exports.convert = convert;
exports.fixLeadingNumber = fixLeadingNumber;
exports.removeProhibitedPrefix = removeProhibitedPrefix;
exports.isEqual = isEqual;
exports.removeSequentialDuplicates = removeSequentialDuplicates;
exports.pascalCase = pascalCase;
exports.camelCase = camelCase;
exports.getPascalIdentifier = getPascalIdentifier;
exports.escapeString = escapeString;
exports.nameof = nameof;
exports.getRegions = getRegions;
exports.setRegion = setRegion;
exports._setRegion = _setRegion;
exports.selectName = selectName;
const file_generator_1 = require("./file-generator");

@@ -27,27 +60,20 @@ let indentation = " ";

}
exports.capitalize = capitalize;
function uncapitalize(str) {
return str ? `${str.charAt(0).toLowerCase()}${str.slice(1)}` : str;
}
exports.uncapitalize = uncapitalize;
function join(items, separator) {
return items.filter((v) => (v ? true : false)).join(separator);
}
exports.join = join;
function joinComma(items, mapFn) {
return join(items.map(mapFn), exports.CommaChar);
}
exports.joinComma = joinComma;
function sortByName(a, b) {
return a.name < b.name ? -1 : a.name > b.name ? 1 : 0;
}
exports.sortByName = sortByName;
function setIndentation(spaces) {
indentation = " ".repeat(spaces);
}
exports.setIndentation = setIndentation;
function trimDots(content) {
return content.replace(/^[.\s]*(.*?)[.\s]*$/g, "$1");
}
exports.trimDots = trimDots;
function toMap(source, eachFn) {

@@ -66,7 +92,5 @@ const result = new Map();

}
exports.toMap = toMap;
function fixEOL(content) {
return content.replace(/\r\n/g, exports.EOL);
}
exports.fixEOL = fixEOL;
function indent(content, factor = 1) {

@@ -77,3 +101,2 @@ const i = indentation.repeat(factor);

}
exports.indent = indent;
function comment(content, prefix = exports.lineCommentPrefix, factor = 0, maxLength = 120) {

@@ -107,15 +130,11 @@ const result = new Array();

}
exports.comment = comment;
function docComment(content, prefix = exports.docCommentPrefix, factor = 0, maxLength = 120) {
return comment(content, prefix, factor, maxLength);
}
exports.docComment = docComment;
function dotCombine(prefix, content) {
return trimDots([trimDots(prefix), trimDots(content)].join("."));
}
exports.dotCombine = dotCombine;
function map(dictionary, callbackfn, thisArg) {
return Object.getOwnPropertyNames(dictionary).map((key) => callbackfn(key, dictionary[key]));
}
exports.map = map;
function ToMap(dictionary) {

@@ -126,3 +145,2 @@ const result = new Map();

}
exports.ToMap = ToMap;
function __selectMany(multiArray) {

@@ -133,7 +151,5 @@ const result = new Array();

}
exports.__selectMany = __selectMany;
function pall(array, callbackfn, thisArg) {
return Promise.all(array.map(callbackfn));
}
exports.pall = pall;
function deconstruct(identifier) {

@@ -150,7 +166,5 @@ if (Array.isArray(identifier)) {

}
exports.deconstruct = deconstruct;
function isCapitalized(identifier) {
return /^[A-Z]/.test(identifier);
}
exports.isCapitalized = isCapitalized;
const ones = [

@@ -234,3 +248,2 @@ "",

}
exports.convert = convert;
function fixLeadingNumber(identifier) {

@@ -242,3 +255,2 @@ if (identifier.length > 0 && /^\d+/.exec(identifier[0])) {

}
exports.fixLeadingNumber = fixLeadingNumber;
function removeProhibitedPrefix(identifier, prohibitedPrefix, skipIdentifiers) {

@@ -262,3 +274,2 @@ if (identifier.toLowerCase().startsWith(prohibitedPrefix.toLowerCase())) {

}
exports.removeProhibitedPrefix = removeProhibitedPrefix;
function isEqual(s1, s2) {

@@ -269,3 +280,2 @@ // when s2 is undefined and s1 is the string 'undefined', it returns 0, making this true.

}
exports.isEqual = isEqual;
function removeSequentialDuplicates(identifier) {

@@ -283,3 +293,2 @@ const ids = [...identifier].filter((each) => !!each);

}
exports.removeSequentialDuplicates = removeSequentialDuplicates;
function pascalCase(identifier, removeDuplicates = true) {

@@ -294,3 +303,2 @@ return identifier === undefined

}
exports.pascalCase = pascalCase;
function camelCase(identifier) {

@@ -308,7 +316,5 @@ if (typeof identifier === "string") {

}
exports.camelCase = camelCase;
function getPascalIdentifier(name) {
return pascalCase(fixLeadingNumber(deconstruct(name)));
}
exports.getPascalIdentifier = getPascalIdentifier;
function escapeString(text) {

@@ -321,3 +327,2 @@ if (text) {

}
exports.escapeString = escapeString;
/** emits c# to get the name of a property - uses nameof when it can, and uses a literal when it's an array value. */

@@ -330,3 +335,2 @@ function nameof(text) {

}
exports.nameof = nameof;
function* getRegions(source, prefix = "#", postfix = "") {

@@ -367,3 +371,2 @@ source = source.replace(/\r?\n|\r/g, "Β«");

}
exports.getRegions = getRegions;
function setRegion(source, region, content, prepend = true, prefix = "#", postfix = "") {

@@ -406,3 +409,2 @@ const result = new Array();

}
exports.setRegion = setRegion;
// Note: Where is this used?

@@ -433,3 +435,2 @@ function _setRegion(source, region, content, prepend = true, prefix = "#", postfix = "") {

}
exports._setRegion = _setRegion;
function selectName(nameOptions, reservedNames) {

@@ -458,3 +459,2 @@ // we're here because the original name is in conflict.

}
exports.selectName = selectName;
//# sourceMappingURL=text-manipulation.js.map
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.typeOf = exports.isPrimitive = void 0;
exports.isPrimitive = isPrimitive;
exports.typeOf = typeOf;
function isPrimitive(instance) {

@@ -16,3 +17,2 @@ switch (typeof instance) {

}
exports.isPrimitive = isPrimitive;
function typeOf(obj) {

@@ -42,3 +42,2 @@ if (obj === null) {

}
exports.typeOf = typeOf;
//# sourceMappingURL=type.js.map

@@ -22,11 +22,25 @@ "use strict";

});
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.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
var __importStar = (this && this.__importStar) || (function () {
var ownKeys = function(o) {
ownKeys = Object.getOwnPropertyNames || function (o) {
var ar = [];
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
return ar;
};
return ownKeys(o);
};
return function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
__setModuleDefault(result, mod);
return result;
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
exports.guid = exports.copyBinaryResources = exports.copyResources = exports.applyOverrides = exports.fail = void 0;
exports.fail = fail;
exports.applyOverrides = applyOverrides;
exports.copyResources = copyResources;
exports.copyBinaryResources = copyBinaryResources;
exports.guid = guid;
const path_1 = require("path");

@@ -49,3 +63,2 @@ const aio = __importStar(require("@azure-tools/async-io"));

}
exports.fail = fail;
function applyOverrides(content, overrides) {

@@ -57,3 +70,2 @@ for (const [from, to] of Object.entries(overrides)) {

}
exports.applyOverrides = applyOverrides;
async function copyResources(sourceFolder, fileWriter, overrides = {}, contentManipulator = async (i) => {

@@ -84,3 +96,2 @@ return i;

}
exports.copyResources = copyResources;
async function copyBinaryResources(sourceFolder, fileWriter) {

@@ -106,3 +117,2 @@ const done = new Array();

}
exports.copyBinaryResources = copyBinaryResources;
function quartet() {

@@ -125,3 +135,2 @@ return (((1 + Math.random()) * 0x10000) | 0).toString(16).substring(1);

}
exports.guid = guid;
//# sourceMappingURL=utility.js.map

@@ -12,3 +12,3 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
exports.dump = void 0;
exports.dump = dump;
/* eslint-disable prefer-const */

@@ -19,2 +19,3 @@ // eslint-disable-next-line @typescript-eslint/ban-ts-comment

const common_1 = __importDefault(require("./common"));
// eslint-disable-next-line @typescript-eslint/no-require-imports
const { DEFAULT_SCHEMA, YAMLException } = require("js-yaml");

@@ -829,3 +830,2 @@ const _toString = Object.prototype.toString;

}
exports.dump = dump;
//# sourceMappingURL=yaml-dump.js.map

@@ -7,3 +7,4 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
exports.serialize = exports.deserialize = void 0;
exports.deserialize = deserialize;
exports.serialize = serialize;
const js_yaml_1 = require("js-yaml");

@@ -89,3 +90,2 @@ const yaml_dump_1 = require("./yaml-dump");

}
exports.deserialize = deserialize;
function serialize(model, schemaOrOptions = js_yaml_1.DEFAULT_SCHEMA) {

@@ -109,3 +109,2 @@ const options = schemaOrOptions instanceof js_yaml_1.Schema

}
exports.serialize = serialize;
//# sourceMappingURL=yaml.js.map
{
"name": "@azure-tools/codegen",
"version": "2.10.0",
"version": "2.10.1-dev.1",
"description": "Autorest Code generator common and base classes",

@@ -29,19 +29,19 @@ "directories": {

"devDependencies": {
"@types/jest": "^29.2.3",
"@types/jest": "^29.5.14",
"@types/js-yaml": "~4.0.0",
"@types/node": "~20.9.0",
"@types/semver": "5.5.0",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint-plugin-jest": "~27.6.0",
"@types/node": "~22.15.19",
"@types/semver": "7.7.0",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"eslint-plugin-jest": "~28.11.0",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-prettier": "~5.0.1",
"eslint-plugin-prettier": "~5.4.0",
"eslint-plugin-unicorn": "~49.0.0",
"eslint-plugin-import": "~2.29.0",
"eslint-plugin-import": "~2.31.0",
"eslint": "^8.28.0",
"jest": "^29.3.1",
"rimraf": "^5.0.5",
"rimraf": "^6.0.1",
"source-map-support": "^0.5.19",
"ts-jest": "^29.0.3",
"typescript": "~5.2.2"
"ts-jest": "^29.3.4",
"typescript": "~5.8.3"
},

@@ -51,3 +51,3 @@ "dependencies": {

"js-yaml": "~4.1.0",
"semver": "^7.3.5"
"semver": "^7.7.2"
},

@@ -54,0 +54,0 @@ "scripts": {

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet