Compare commits
21
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b15d68a617 | ||
|
|
86ba360860 | ||
|
|
1c643b69e3 | ||
|
|
cc90e94fd7 | ||
|
|
ca03cb626b | ||
|
|
0c672b9f6f | ||
|
|
9b38d34b70 | ||
|
|
bd0f0459f8 | ||
|
|
ace98b5898 | ||
|
|
79aa012b58 | ||
|
|
264bf85801 | ||
|
|
0e2da932f6 | ||
|
|
0a8934fb6a | ||
|
|
f83d7f264c | ||
|
|
d0e46c9613 | ||
|
|
22bb279ab1 | ||
|
|
d33c19c38d | ||
|
|
2ef513a94a | ||
|
|
abd8ae5da7 | ||
|
|
94145f3150 | ||
|
|
af8d39d8a3 |
+2
-2
@@ -102,8 +102,8 @@ minor/patch updates.
|
|||||||
|
|
||||||
To do this just force-create a new annotated tag and push it:
|
To do this just force-create a new annotated tag and push it:
|
||||||
```
|
```
|
||||||
git tag -fa v1 -m "Updating v1 tag"
|
git tag -fa v2 -m "Updating v2 to 2.3.4"
|
||||||
git push origin v1 --force
|
git push origin v2 --force
|
||||||
```
|
```
|
||||||
|
|
||||||
## Resources
|
## Resources
|
||||||
|
|||||||
+167
-26
@@ -10792,7 +10792,8 @@ function wrappy (fn, cb) {
|
|||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||||
exports.setErrorMap = exports.overrideErrorMap = exports.defaultErrorMap = exports.ZodError = exports.quotelessJson = exports.ZodIssueCode = void 0;
|
exports.getErrorMap = exports.setErrorMap = exports.defaultErrorMap = exports.ZodError = exports.quotelessJson = exports.ZodIssueCode = void 0;
|
||||||
|
const parseUtil_1 = __nccwpck_require__(888);
|
||||||
const util_1 = __nccwpck_require__(3985);
|
const util_1 = __nccwpck_require__(3985);
|
||||||
exports.ZodIssueCode = util_1.util.arrayToEnum([
|
exports.ZodIssueCode = util_1.util.arrayToEnum([
|
||||||
"invalid_type",
|
"invalid_type",
|
||||||
@@ -10893,7 +10894,7 @@ class ZodError extends Error {
|
|||||||
return this.message;
|
return this.message;
|
||||||
}
|
}
|
||||||
get message() {
|
get message() {
|
||||||
return JSON.stringify(this.issues, null, 2);
|
return JSON.stringify(this.issues, parseUtil_1.jsonStringifyReplacer, 2);
|
||||||
}
|
}
|
||||||
get isEmpty() {
|
get isEmpty() {
|
||||||
return this.issues.length === 0;
|
return this.issues.length === 0;
|
||||||
@@ -10933,7 +10934,7 @@ const defaultErrorMap = (issue, _ctx) => {
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case exports.ZodIssueCode.invalid_literal:
|
case exports.ZodIssueCode.invalid_literal:
|
||||||
message = `Invalid literal value, expected ${JSON.stringify(issue.expected)}`;
|
message = `Invalid literal value, expected ${JSON.stringify(issue.expected, parseUtil_1.jsonStringifyReplacer)}`;
|
||||||
break;
|
break;
|
||||||
case exports.ZodIssueCode.unrecognized_keys:
|
case exports.ZodIssueCode.unrecognized_keys:
|
||||||
message = `Unrecognized key(s) in object: ${util_1.util.joinValues(issue.keys, ", ")}`;
|
message = `Unrecognized key(s) in object: ${util_1.util.joinValues(issue.keys, ", ")}`;
|
||||||
@@ -10957,10 +10958,23 @@ const defaultErrorMap = (issue, _ctx) => {
|
|||||||
message = `Invalid date`;
|
message = `Invalid date`;
|
||||||
break;
|
break;
|
||||||
case exports.ZodIssueCode.invalid_string:
|
case exports.ZodIssueCode.invalid_string:
|
||||||
if (issue.validation !== "regex")
|
if (typeof issue.validation === "object") {
|
||||||
|
if ("startsWith" in issue.validation) {
|
||||||
|
message = `Invalid input: must start with "${issue.validation.startsWith}"`;
|
||||||
|
}
|
||||||
|
else if ("endsWith" in issue.validation) {
|
||||||
|
message = `Invalid input: must start with "${issue.validation.endsWith}"`;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
util_1.util.assertNever(issue.validation);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (issue.validation !== "regex") {
|
||||||
message = `Invalid ${issue.validation}`;
|
message = `Invalid ${issue.validation}`;
|
||||||
else
|
}
|
||||||
|
else {
|
||||||
message = "Invalid";
|
message = "Invalid";
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case exports.ZodIssueCode.too_small:
|
case exports.ZodIssueCode.too_small:
|
||||||
if (issue.type === "array")
|
if (issue.type === "array")
|
||||||
@@ -10969,6 +10983,8 @@ const defaultErrorMap = (issue, _ctx) => {
|
|||||||
message = `String must contain ${issue.inclusive ? `at least` : `over`} ${issue.minimum} character(s)`;
|
message = `String must contain ${issue.inclusive ? `at least` : `over`} ${issue.minimum} character(s)`;
|
||||||
else if (issue.type === "number")
|
else if (issue.type === "number")
|
||||||
message = `Number must be greater than ${issue.inclusive ? `or equal to ` : ``}${issue.minimum}`;
|
message = `Number must be greater than ${issue.inclusive ? `or equal to ` : ``}${issue.minimum}`;
|
||||||
|
else if (issue.type === "date")
|
||||||
|
message = `Date must be greater than ${issue.inclusive ? `or equal to ` : ``}${new Date(issue.minimum)}`;
|
||||||
else
|
else
|
||||||
message = "Invalid input";
|
message = "Invalid input";
|
||||||
break;
|
break;
|
||||||
@@ -10979,6 +10995,8 @@ const defaultErrorMap = (issue, _ctx) => {
|
|||||||
message = `String must contain ${issue.inclusive ? `at most` : `under`} ${issue.maximum} character(s)`;
|
message = `String must contain ${issue.inclusive ? `at most` : `under`} ${issue.maximum} character(s)`;
|
||||||
else if (issue.type === "number")
|
else if (issue.type === "number")
|
||||||
message = `Number must be less than ${issue.inclusive ? `or equal to ` : ``}${issue.maximum}`;
|
message = `Number must be less than ${issue.inclusive ? `or equal to ` : ``}${issue.maximum}`;
|
||||||
|
else if (issue.type === "date")
|
||||||
|
message = `Date must be smaller than ${issue.inclusive ? `or equal to ` : ``}${new Date(issue.maximum)}`;
|
||||||
else
|
else
|
||||||
message = "Invalid input";
|
message = "Invalid input";
|
||||||
break;
|
break;
|
||||||
@@ -10998,11 +11016,15 @@ const defaultErrorMap = (issue, _ctx) => {
|
|||||||
return { message };
|
return { message };
|
||||||
};
|
};
|
||||||
exports.defaultErrorMap = defaultErrorMap;
|
exports.defaultErrorMap = defaultErrorMap;
|
||||||
exports.overrideErrorMap = exports.defaultErrorMap;
|
let overrideErrorMap = exports.defaultErrorMap;
|
||||||
const setErrorMap = (map) => {
|
function setErrorMap(map) {
|
||||||
exports.overrideErrorMap = map;
|
overrideErrorMap = map;
|
||||||
};
|
}
|
||||||
exports.setErrorMap = setErrorMap;
|
exports.setErrorMap = setErrorMap;
|
||||||
|
function getErrorMap() {
|
||||||
|
return overrideErrorMap;
|
||||||
|
}
|
||||||
|
exports.getErrorMap = getErrorMap;
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
/***/ }),
|
||||||
@@ -11057,7 +11079,7 @@ var errorUtil;
|
|||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||||
exports.isAsync = exports.isValid = exports.isDirty = exports.isAborted = exports.OK = exports.DIRTY = exports.INVALID = exports.ParseStatus = exports.addIssueToContext = exports.EMPTY_PATH = exports.makeIssue = void 0;
|
exports.jsonStringifyReplacer = exports.isAsync = exports.isValid = exports.isDirty = exports.isAborted = exports.OK = exports.DIRTY = exports.INVALID = exports.ParseStatus = exports.addIssueToContext = exports.EMPTY_PATH = exports.makeIssue = void 0;
|
||||||
const ZodError_1 = __nccwpck_require__(9892);
|
const ZodError_1 = __nccwpck_require__(9892);
|
||||||
const makeIssue = (params) => {
|
const makeIssue = (params) => {
|
||||||
const { data, path, errorMaps, issueData } = params;
|
const { data, path, errorMaps, issueData } = params;
|
||||||
@@ -11090,7 +11112,7 @@ function addIssueToContext(ctx, issueData) {
|
|||||||
errorMaps: [
|
errorMaps: [
|
||||||
ctx.common.contextualErrorMap,
|
ctx.common.contextualErrorMap,
|
||||||
ctx.schemaErrorMap,
|
ctx.schemaErrorMap,
|
||||||
ZodError_1.overrideErrorMap,
|
ZodError_1.getErrorMap(),
|
||||||
ZodError_1.defaultErrorMap,
|
ZodError_1.defaultErrorMap,
|
||||||
].filter((x) => !!x),
|
].filter((x) => !!x),
|
||||||
});
|
});
|
||||||
@@ -11165,6 +11187,13 @@ const isValid = (x) => x.status === "valid";
|
|||||||
exports.isValid = isValid;
|
exports.isValid = isValid;
|
||||||
const isAsync = (x) => typeof Promise !== undefined && x instanceof Promise;
|
const isAsync = (x) => typeof Promise !== undefined && x instanceof Promise;
|
||||||
exports.isAsync = isAsync;
|
exports.isAsync = isAsync;
|
||||||
|
const jsonStringifyReplacer = (_, value) => {
|
||||||
|
if (typeof value === "bigint") {
|
||||||
|
return value.toString();
|
||||||
|
}
|
||||||
|
return value;
|
||||||
|
};
|
||||||
|
exports.jsonStringifyReplacer = jsonStringifyReplacer;
|
||||||
|
|
||||||
|
|
||||||
/***/ }),
|
/***/ }),
|
||||||
@@ -11188,6 +11217,8 @@ Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|||||||
exports.getParsedType = exports.ZodParsedType = exports.util = void 0;
|
exports.getParsedType = exports.ZodParsedType = exports.util = void 0;
|
||||||
var util;
|
var util;
|
||||||
(function (util) {
|
(function (util) {
|
||||||
|
function assertEqual(_cond) { }
|
||||||
|
util.assertEqual = assertEqual;
|
||||||
function assertNever(_x) {
|
function assertNever(_x) {
|
||||||
throw new Error();
|
throw new Error();
|
||||||
}
|
}
|
||||||
@@ -11393,11 +11424,10 @@ function processCreateParams(params) {
|
|||||||
const customMap = (iss, ctx) => {
|
const customMap = (iss, ctx) => {
|
||||||
if (iss.code !== "invalid_type")
|
if (iss.code !== "invalid_type")
|
||||||
return { message: ctx.defaultError };
|
return { message: ctx.defaultError };
|
||||||
if (typeof ctx.data === "undefined" && required_error)
|
if (typeof ctx.data === "undefined") {
|
||||||
return { message: required_error };
|
return { message: required_error !== null && required_error !== void 0 ? required_error : ctx.defaultError };
|
||||||
if (params.invalid_type_error)
|
}
|
||||||
return { message: params.invalid_type_error };
|
return { message: invalid_type_error !== null && invalid_type_error !== void 0 ? invalid_type_error : ctx.defaultError };
|
||||||
return { message: ctx.defaultError };
|
|
||||||
};
|
};
|
||||||
return { errorMap: customMap, description };
|
return { errorMap: customMap, description };
|
||||||
}
|
}
|
||||||
@@ -11757,6 +11787,28 @@ class ZodString extends ZodType {
|
|||||||
else if (check.kind === "trim") {
|
else if (check.kind === "trim") {
|
||||||
input.data = input.data.trim();
|
input.data = input.data.trim();
|
||||||
}
|
}
|
||||||
|
else if (check.kind === "startsWith") {
|
||||||
|
if (!input.data.startsWith(check.value)) {
|
||||||
|
ctx = this._getOrReturnCtx(input, ctx);
|
||||||
|
parseUtil_1.addIssueToContext(ctx, {
|
||||||
|
code: ZodError_1.ZodIssueCode.invalid_string,
|
||||||
|
validation: { startsWith: check.value },
|
||||||
|
message: check.message,
|
||||||
|
});
|
||||||
|
status.dirty();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (check.kind === "endsWith") {
|
||||||
|
if (!input.data.endsWith(check.value)) {
|
||||||
|
ctx = this._getOrReturnCtx(input, ctx);
|
||||||
|
parseUtil_1.addIssueToContext(ctx, {
|
||||||
|
code: ZodError_1.ZodIssueCode.invalid_string,
|
||||||
|
validation: { endsWith: check.value },
|
||||||
|
message: check.message,
|
||||||
|
});
|
||||||
|
status.dirty();
|
||||||
|
}
|
||||||
|
}
|
||||||
else {
|
else {
|
||||||
util_1.util.assertNever(check);
|
util_1.util.assertNever(check);
|
||||||
}
|
}
|
||||||
@@ -11788,6 +11840,20 @@ class ZodString extends ZodType {
|
|||||||
...errorUtil_1.errorUtil.errToObj(message),
|
...errorUtil_1.errorUtil.errToObj(message),
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
startsWith(value, message) {
|
||||||
|
return this._addCheck({
|
||||||
|
kind: "startsWith",
|
||||||
|
value: value,
|
||||||
|
...errorUtil_1.errorUtil.errToObj(message),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
endsWith(value, message) {
|
||||||
|
return this._addCheck({
|
||||||
|
kind: "endsWith",
|
||||||
|
value: value,
|
||||||
|
...errorUtil_1.errorUtil.errToObj(message),
|
||||||
|
});
|
||||||
|
}
|
||||||
min(minLength, message) {
|
min(minLength, message) {
|
||||||
return this._addCheck({
|
return this._addCheck({
|
||||||
kind: "min",
|
kind: "min",
|
||||||
@@ -11818,25 +11884,23 @@ class ZodString extends ZodType {
|
|||||||
return !!this._def.checks.find((ch) => ch.kind === "cuid");
|
return !!this._def.checks.find((ch) => ch.kind === "cuid");
|
||||||
}
|
}
|
||||||
get minLength() {
|
get minLength() {
|
||||||
let min = -Infinity;
|
let min = null;
|
||||||
this._def.checks.map((ch) => {
|
for (const ch of this._def.checks) {
|
||||||
if (ch.kind === "min") {
|
if (ch.kind === "min") {
|
||||||
if (min === null || ch.value > min) {
|
if (min === null || ch.value > min)
|
||||||
min = ch.value;
|
min = ch.value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
|
||||||
return min;
|
return min;
|
||||||
}
|
}
|
||||||
get maxLength() {
|
get maxLength() {
|
||||||
let max = null;
|
let max = null;
|
||||||
this._def.checks.map((ch) => {
|
for (const ch of this._def.checks) {
|
||||||
if (ch.kind === "max") {
|
if (ch.kind === "max") {
|
||||||
if (max === null || ch.value < max) {
|
if (max === null || ch.value < max)
|
||||||
max = ch.value;
|
max = ch.value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
|
||||||
return max;
|
return max;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -12111,15 +12175,89 @@ class ZodDate extends ZodType {
|
|||||||
});
|
});
|
||||||
return parseUtil_1.INVALID;
|
return parseUtil_1.INVALID;
|
||||||
}
|
}
|
||||||
|
const status = new parseUtil_1.ParseStatus();
|
||||||
|
let ctx = undefined;
|
||||||
|
for (const check of this._def.checks) {
|
||||||
|
if (check.kind === "min") {
|
||||||
|
if (input.data.getTime() < check.value) {
|
||||||
|
ctx = this._getOrReturnCtx(input, ctx);
|
||||||
|
parseUtil_1.addIssueToContext(ctx, {
|
||||||
|
code: ZodError_1.ZodIssueCode.too_small,
|
||||||
|
message: check.message,
|
||||||
|
inclusive: true,
|
||||||
|
minimum: check.value,
|
||||||
|
type: "date",
|
||||||
|
});
|
||||||
|
status.dirty();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if (check.kind === "max") {
|
||||||
|
if (input.data.getTime() > check.value) {
|
||||||
|
ctx = this._getOrReturnCtx(input, ctx);
|
||||||
|
parseUtil_1.addIssueToContext(ctx, {
|
||||||
|
code: ZodError_1.ZodIssueCode.too_big,
|
||||||
|
message: check.message,
|
||||||
|
inclusive: true,
|
||||||
|
maximum: check.value,
|
||||||
|
type: "date",
|
||||||
|
});
|
||||||
|
status.dirty();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
util_1.util.assertNever(check);
|
||||||
|
}
|
||||||
|
}
|
||||||
return {
|
return {
|
||||||
status: "valid",
|
status: status.value,
|
||||||
value: new Date(input.data.getTime()),
|
value: new Date(input.data.getTime()),
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
_addCheck(check) {
|
||||||
|
return new ZodDate({
|
||||||
|
...this._def,
|
||||||
|
checks: [...this._def.checks, check],
|
||||||
|
});
|
||||||
|
}
|
||||||
|
min(minDate, message) {
|
||||||
|
return this._addCheck({
|
||||||
|
kind: "min",
|
||||||
|
value: minDate.getTime(),
|
||||||
|
message: errorUtil_1.errorUtil.toString(message),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
max(maxDate, message) {
|
||||||
|
return this._addCheck({
|
||||||
|
kind: "max",
|
||||||
|
value: maxDate.getTime(),
|
||||||
|
message: errorUtil_1.errorUtil.toString(message),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
get minDate() {
|
||||||
|
let min = null;
|
||||||
|
for (const ch of this._def.checks) {
|
||||||
|
if (ch.kind === "min") {
|
||||||
|
if (min === null || ch.value > min)
|
||||||
|
min = ch.value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return min != null ? new Date(min) : null;
|
||||||
|
}
|
||||||
|
get maxDate() {
|
||||||
|
let max = null;
|
||||||
|
for (const ch of this._def.checks) {
|
||||||
|
if (ch.kind === "max") {
|
||||||
|
if (max === null || ch.value < max)
|
||||||
|
max = ch.value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return max != null ? new Date(max) : null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
exports.ZodDate = ZodDate;
|
exports.ZodDate = ZodDate;
|
||||||
ZodDate.create = (params) => {
|
ZodDate.create = (params) => {
|
||||||
return new ZodDate({
|
return new ZodDate({
|
||||||
|
checks: [],
|
||||||
typeName: ZodFirstPartyTypeKind.ZodDate,
|
typeName: ZodFirstPartyTypeKind.ZodDate,
|
||||||
...processCreateParams(params),
|
...processCreateParams(params),
|
||||||
});
|
});
|
||||||
@@ -12616,6 +12754,9 @@ class ZodObject extends ZodType {
|
|||||||
shape: () => newShape,
|
shape: () => newShape,
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
keyof() {
|
||||||
|
return createZodEnum(util_1.util.objectKeys(this.shape));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
exports.ZodObject = ZodObject;
|
exports.ZodObject = ZodObject;
|
||||||
ZodObject.create = (shape, params) => {
|
ZodObject.create = (shape, params) => {
|
||||||
@@ -13211,7 +13352,7 @@ class ZodFunction extends ZodType {
|
|||||||
errorMaps: [
|
errorMaps: [
|
||||||
ctx.common.contextualErrorMap,
|
ctx.common.contextualErrorMap,
|
||||||
ctx.schemaErrorMap,
|
ctx.schemaErrorMap,
|
||||||
ZodError_1.overrideErrorMap,
|
ZodError_1.getErrorMap(),
|
||||||
ZodError_1.defaultErrorMap,
|
ZodError_1.defaultErrorMap,
|
||||||
].filter((x) => !!x),
|
].filter((x) => !!x),
|
||||||
issueData: {
|
issueData: {
|
||||||
@@ -13227,7 +13368,7 @@ class ZodFunction extends ZodType {
|
|||||||
errorMaps: [
|
errorMaps: [
|
||||||
ctx.common.contextualErrorMap,
|
ctx.common.contextualErrorMap,
|
||||||
ctx.schemaErrorMap,
|
ctx.schemaErrorMap,
|
||||||
ZodError_1.overrideErrorMap,
|
ZodError_1.getErrorMap(),
|
||||||
ZodError_1.defaultErrorMap,
|
ZodError_1.defaultErrorMap,
|
||||||
].filter((x) => !!x),
|
].filter((x) => !!x),
|
||||||
issueData: {
|
issueData: {
|
||||||
|
|||||||
+1
-1
File diff suppressed because one or more lines are too long
Generated
+110
-110
@@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "dependency-review-action",
|
"name": "dependency-review-action",
|
||||||
"version": "2.0.2",
|
"version": "2.0.4",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "dependency-review-action",
|
"name": "dependency-review-action",
|
||||||
"version": "2.0.2",
|
"version": "2.0.4",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@actions/core": "^1.9.0",
|
"@actions/core": "^1.9.0",
|
||||||
@@ -17,17 +17,17 @@
|
|||||||
"got": "^12.1.0",
|
"got": "^12.1.0",
|
||||||
"nodemon": "^2.0.19",
|
"nodemon": "^2.0.19",
|
||||||
"yaml": "^2.1.1",
|
"yaml": "^2.1.1",
|
||||||
"zod": "^3.17.3"
|
"zod": "^3.17.9"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/node": "^16.11.44",
|
"@types/node": "^16.11.45",
|
||||||
"@typescript-eslint/eslint-plugin": "^5.30.6",
|
"@typescript-eslint/eslint-plugin": "^5.30.7",
|
||||||
"@typescript-eslint/parser": "^5.30.6",
|
"@typescript-eslint/parser": "^5.30.7",
|
||||||
"@vercel/ncc": "^0.34.0",
|
"@vercel/ncc": "^0.34.0",
|
||||||
"esbuild-register": "^3.3.3",
|
"esbuild-register": "^3.3.3",
|
||||||
"eslint": "^8.19.0",
|
"eslint": "^8.20.0",
|
||||||
"eslint-plugin-github": "^4.3.6",
|
"eslint-plugin-github": "^4.3.6",
|
||||||
"eslint-plugin-jest": "^26.5.3",
|
"eslint-plugin-jest": "^26.6.0",
|
||||||
"jest": "^27.5.1",
|
"jest": "^27.5.1",
|
||||||
"js-yaml": "^4.1.0",
|
"js-yaml": "^4.1.0",
|
||||||
"nodemon": "^2.0.19",
|
"nodemon": "^2.0.19",
|
||||||
@@ -1389,9 +1389,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@types/node": {
|
"node_modules/@types/node": {
|
||||||
"version": "16.11.44",
|
"version": "16.11.45",
|
||||||
"resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.44.tgz",
|
"resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.45.tgz",
|
||||||
"integrity": "sha512-gwP6+QDgL5TDBIWh1lbYh3EFPU11pa+8xcamcsA3ROkp3A9X+/3Y5cRgq93VPEEE+CGfxlQnqkg1kkWGBgh3fw=="
|
"integrity": "sha512-3rKg/L5x0rofKuuUt5zlXzOnKyIHXmIu5R8A0TuNDMF2062/AOIDBciFIjToLEJ/9F9DzkHNot+BpNsMI1OLdQ=="
|
||||||
},
|
},
|
||||||
"node_modules/@types/prettier": {
|
"node_modules/@types/prettier": {
|
||||||
"version": "2.4.4",
|
"version": "2.4.4",
|
||||||
@@ -1429,14 +1429,14 @@
|
|||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/eslint-plugin": {
|
"node_modules/@typescript-eslint/eslint-plugin": {
|
||||||
"version": "5.30.6",
|
"version": "5.30.7",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.30.6.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.30.7.tgz",
|
||||||
"integrity": "sha512-J4zYMIhgrx4MgnZrSDD7sEnQp7FmhKNOaqaOpaoQ/SfdMfRB/0yvK74hTnvH+VQxndZynqs5/Hn4t+2/j9bADg==",
|
"integrity": "sha512-l4L6Do+tfeM2OK0GJsU7TUcM/1oN/N25xHm3Jb4z3OiDU4Lj8dIuxX9LpVMS9riSXQs42D1ieX7b85/r16H9Fw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/scope-manager": "5.30.6",
|
"@typescript-eslint/scope-manager": "5.30.7",
|
||||||
"@typescript-eslint/type-utils": "5.30.6",
|
"@typescript-eslint/type-utils": "5.30.7",
|
||||||
"@typescript-eslint/utils": "5.30.6",
|
"@typescript-eslint/utils": "5.30.7",
|
||||||
"debug": "^4.3.4",
|
"debug": "^4.3.4",
|
||||||
"functional-red-black-tree": "^1.0.1",
|
"functional-red-black-tree": "^1.0.1",
|
||||||
"ignore": "^5.2.0",
|
"ignore": "^5.2.0",
|
||||||
@@ -1477,14 +1477,14 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/parser": {
|
"node_modules/@typescript-eslint/parser": {
|
||||||
"version": "5.30.6",
|
"version": "5.30.7",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.30.6.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.30.7.tgz",
|
||||||
"integrity": "sha512-gfF9lZjT0p2ZSdxO70Xbw8w9sPPJGfAdjK7WikEjB3fcUI/yr9maUVEdqigBjKincUYNKOmf7QBMiTf719kbrA==",
|
"integrity": "sha512-Rg5xwznHWWSy7v2o0cdho6n+xLhK2gntImp0rJroVVFkcYFYQ8C8UJTSuTw/3CnExBmPjycjmUJkxVmjXsld6A==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/scope-manager": "5.30.6",
|
"@typescript-eslint/scope-manager": "5.30.7",
|
||||||
"@typescript-eslint/types": "5.30.6",
|
"@typescript-eslint/types": "5.30.7",
|
||||||
"@typescript-eslint/typescript-estree": "5.30.6",
|
"@typescript-eslint/typescript-estree": "5.30.7",
|
||||||
"debug": "^4.3.4"
|
"debug": "^4.3.4"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
@@ -1504,13 +1504,13 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/scope-manager": {
|
"node_modules/@typescript-eslint/scope-manager": {
|
||||||
"version": "5.30.6",
|
"version": "5.30.7",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.30.6.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.30.7.tgz",
|
||||||
"integrity": "sha512-Hkq5PhLgtVoW1obkqYH0i4iELctEKixkhWLPTYs55doGUKCASvkjOXOd/pisVeLdO24ZX9D6yymJ/twqpJiG3g==",
|
"integrity": "sha512-7BM1bwvdF1UUvt+b9smhqdc/eniOnCKxQT/kj3oXtj3LqnTWCAM0qHRHfyzCzhEfWX0zrW7KqXXeE4DlchZBKw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/types": "5.30.6",
|
"@typescript-eslint/types": "5.30.7",
|
||||||
"@typescript-eslint/visitor-keys": "5.30.6"
|
"@typescript-eslint/visitor-keys": "5.30.7"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
||||||
@@ -1521,12 +1521,12 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/type-utils": {
|
"node_modules/@typescript-eslint/type-utils": {
|
||||||
"version": "5.30.6",
|
"version": "5.30.7",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.30.6.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.30.7.tgz",
|
||||||
"integrity": "sha512-GFVVzs2j0QPpM+NTDMXtNmJKlF842lkZKDSanIxf+ArJsGeZUIaeT4jGg+gAgHt7AcQSFwW7htzF/rbAh2jaVA==",
|
"integrity": "sha512-nD5qAE2aJX/YLyKMvOU5jvJyku4QN5XBVsoTynFrjQZaDgDV6i7QHFiYCx10wvn7hFvfuqIRNBtsgaLe0DbWhw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/utils": "5.30.6",
|
"@typescript-eslint/utils": "5.30.7",
|
||||||
"debug": "^4.3.4",
|
"debug": "^4.3.4",
|
||||||
"tsutils": "^3.21.0"
|
"tsutils": "^3.21.0"
|
||||||
},
|
},
|
||||||
@@ -1547,9 +1547,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/types": {
|
"node_modules/@typescript-eslint/types": {
|
||||||
"version": "5.30.6",
|
"version": "5.30.7",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.30.6.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.30.7.tgz",
|
||||||
"integrity": "sha512-HdnP8HioL1F7CwVmT4RaaMX57RrfqsOMclZc08wGMiDYJBsLGBM7JwXM4cZJmbWLzIR/pXg1kkrBBVpxTOwfUg==",
|
"integrity": "sha512-ocVkETUs82+U+HowkovV6uxf1AnVRKCmDRNUBUUo46/5SQv1owC/EBFkiu4MOHeZqhKz2ktZ3kvJJ1uFqQ8QPg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
|
||||||
@@ -1560,13 +1560,13 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/typescript-estree": {
|
"node_modules/@typescript-eslint/typescript-estree": {
|
||||||
"version": "5.30.6",
|
"version": "5.30.7",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.30.6.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.30.7.tgz",
|
||||||
"integrity": "sha512-Z7TgPoeYUm06smfEfYF0RBkpF8csMyVnqQbLYiGgmUSTaSXTP57bt8f0UFXstbGxKIreTwQCujtaH0LY9w9B+A==",
|
"integrity": "sha512-tNslqXI1ZdmXXrHER83TJ8OTYl4epUzJC0aj2i4DMDT4iU+UqLT3EJeGQvJ17BMbm31x5scSwo3hPM0nqQ1AEA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/types": "5.30.6",
|
"@typescript-eslint/types": "5.30.7",
|
||||||
"@typescript-eslint/visitor-keys": "5.30.6",
|
"@typescript-eslint/visitor-keys": "5.30.7",
|
||||||
"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",
|
||||||
@@ -1602,15 +1602,15 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/utils": {
|
"node_modules/@typescript-eslint/utils": {
|
||||||
"version": "5.30.6",
|
"version": "5.30.7",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.30.6.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.30.7.tgz",
|
||||||
"integrity": "sha512-xFBLc/esUbLOJLk9jKv0E9gD/OH966M40aY9jJ8GiqpSkP2xOV908cokJqqhVd85WoIvHVHYXxSFE4cCSDzVvA==",
|
"integrity": "sha512-Z3pHdbFw+ftZiGUnm1GZhkJgVqsDL5CYW2yj+TB2mfXDFOMqtbzQi2dNJIyPqPbx9mv2kUxS1gU+r2gKlKi1rQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@types/json-schema": "^7.0.9",
|
"@types/json-schema": "^7.0.9",
|
||||||
"@typescript-eslint/scope-manager": "5.30.6",
|
"@typescript-eslint/scope-manager": "5.30.7",
|
||||||
"@typescript-eslint/types": "5.30.6",
|
"@typescript-eslint/types": "5.30.7",
|
||||||
"@typescript-eslint/typescript-estree": "5.30.6",
|
"@typescript-eslint/typescript-estree": "5.30.7",
|
||||||
"eslint-scope": "^5.1.1",
|
"eslint-scope": "^5.1.1",
|
||||||
"eslint-utils": "^3.0.0"
|
"eslint-utils": "^3.0.0"
|
||||||
},
|
},
|
||||||
@@ -1626,12 +1626,12 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/@typescript-eslint/visitor-keys": {
|
"node_modules/@typescript-eslint/visitor-keys": {
|
||||||
"version": "5.30.6",
|
"version": "5.30.7",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.30.6.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.30.7.tgz",
|
||||||
"integrity": "sha512-41OiCjdL2mCaSDi2SvYbzFLlqqlm5v1ZW9Ym55wXKL/Rx6OOB1IbuFGo71Fj6Xy90gJDFTlgOS+vbmtGHPTQQA==",
|
"integrity": "sha512-KrRXf8nnjvcpxDFOKej4xkD7657+PClJs5cJVSG7NNoCNnjEdc46juNAQt7AyuWctuCgs6mVRc1xGctEqrjxWw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/types": "5.30.6",
|
"@typescript-eslint/types": "5.30.7",
|
||||||
"eslint-visitor-keys": "^3.3.0"
|
"eslint-visitor-keys": "^3.3.0"
|
||||||
},
|
},
|
||||||
"engines": {
|
"engines": {
|
||||||
@@ -2723,9 +2723,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/eslint": {
|
"node_modules/eslint": {
|
||||||
"version": "8.19.0",
|
"version": "8.20.0",
|
||||||
"resolved": "https://registry.npmjs.org/eslint/-/eslint-8.19.0.tgz",
|
"resolved": "https://registry.npmjs.org/eslint/-/eslint-8.20.0.tgz",
|
||||||
"integrity": "sha512-SXOPj3x9VKvPe81TjjUJCYlV4oJjQw68Uek+AM0X4p+33dj2HY5bpTZOgnQHcG2eAm1mtCU9uNMnJi7exU/kYw==",
|
"integrity": "sha512-d4ixhz5SKCa1D6SCPrivP7yYVi7nyD6A4vs6HIAul9ujBzcEmZVM3/0NN/yu5nKhmO1wjp5xQ46iRfmDGlOviA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@eslint/eslintrc": "^1.3.0",
|
"@eslint/eslintrc": "^1.3.0",
|
||||||
@@ -2965,9 +2965,9 @@
|
|||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"node_modules/eslint-plugin-jest": {
|
"node_modules/eslint-plugin-jest": {
|
||||||
"version": "26.5.3",
|
"version": "26.6.0",
|
||||||
"resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-26.5.3.tgz",
|
"resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-26.6.0.tgz",
|
||||||
"integrity": "sha512-sICclUqJQnR1bFRZGLN2jnSVsYOsmPYYnroGCIMVSvTS3y8XR3yjzy1EcTQmk6typ5pRgyIWzbjqxK6cZHEZuQ==",
|
"integrity": "sha512-f8n46/97ZFdU4KqeQYqO8AEVGIhHWvkpgNBWHH3jrM28/y8llnbf3IjfIKv6p2pZIMinK1PCqbbROxs9Eud02Q==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@typescript-eslint/utils": "^5.10.0"
|
"@typescript-eslint/utils": "^5.10.0"
|
||||||
@@ -6910,9 +6910,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/zod": {
|
"node_modules/zod": {
|
||||||
"version": "3.17.3",
|
"version": "3.17.9",
|
||||||
"resolved": "https://registry.npmjs.org/zod/-/zod-3.17.3.tgz",
|
"resolved": "https://registry.npmjs.org/zod/-/zod-3.17.9.tgz",
|
||||||
"integrity": "sha512-4oKP5zvG6GGbMlqBkI5FESOAweldEhSOZ6LI6cG+JzUT7ofj1ZOC0PJudpQOpT1iqOFpYYtX5Pw0+o403y4bcg==",
|
"integrity": "sha512-QF1843pYoRk1jFP+/UiEySXaTSiIyFod3KyDzoO3qHKGZdX7z7RNXI4lEsiibvpnIZQwcDVU58ZrxP4pQ7BmTQ==",
|
||||||
"funding": {
|
"funding": {
|
||||||
"url": "https://github.com/sponsors/colinhacks"
|
"url": "https://github.com/sponsors/colinhacks"
|
||||||
}
|
}
|
||||||
@@ -8017,9 +8017,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@types/node": {
|
"@types/node": {
|
||||||
"version": "16.11.44",
|
"version": "16.11.45",
|
||||||
"resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.44.tgz",
|
"resolved": "https://registry.npmjs.org/@types/node/-/node-16.11.45.tgz",
|
||||||
"integrity": "sha512-gwP6+QDgL5TDBIWh1lbYh3EFPU11pa+8xcamcsA3ROkp3A9X+/3Y5cRgq93VPEEE+CGfxlQnqkg1kkWGBgh3fw=="
|
"integrity": "sha512-3rKg/L5x0rofKuuUt5zlXzOnKyIHXmIu5R8A0TuNDMF2062/AOIDBciFIjToLEJ/9F9DzkHNot+BpNsMI1OLdQ=="
|
||||||
},
|
},
|
||||||
"@types/prettier": {
|
"@types/prettier": {
|
||||||
"version": "2.4.4",
|
"version": "2.4.4",
|
||||||
@@ -8057,14 +8057,14 @@
|
|||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"@typescript-eslint/eslint-plugin": {
|
"@typescript-eslint/eslint-plugin": {
|
||||||
"version": "5.30.6",
|
"version": "5.30.7",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.30.6.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.30.7.tgz",
|
||||||
"integrity": "sha512-J4zYMIhgrx4MgnZrSDD7sEnQp7FmhKNOaqaOpaoQ/SfdMfRB/0yvK74hTnvH+VQxndZynqs5/Hn4t+2/j9bADg==",
|
"integrity": "sha512-l4L6Do+tfeM2OK0GJsU7TUcM/1oN/N25xHm3Jb4z3OiDU4Lj8dIuxX9LpVMS9riSXQs42D1ieX7b85/r16H9Fw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"@typescript-eslint/scope-manager": "5.30.6",
|
"@typescript-eslint/scope-manager": "5.30.7",
|
||||||
"@typescript-eslint/type-utils": "5.30.6",
|
"@typescript-eslint/type-utils": "5.30.7",
|
||||||
"@typescript-eslint/utils": "5.30.6",
|
"@typescript-eslint/utils": "5.30.7",
|
||||||
"debug": "^4.3.4",
|
"debug": "^4.3.4",
|
||||||
"functional-red-black-tree": "^1.0.1",
|
"functional-red-black-tree": "^1.0.1",
|
||||||
"ignore": "^5.2.0",
|
"ignore": "^5.2.0",
|
||||||
@@ -8085,52 +8085,52 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@typescript-eslint/parser": {
|
"@typescript-eslint/parser": {
|
||||||
"version": "5.30.6",
|
"version": "5.30.7",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.30.6.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.30.7.tgz",
|
||||||
"integrity": "sha512-gfF9lZjT0p2ZSdxO70Xbw8w9sPPJGfAdjK7WikEjB3fcUI/yr9maUVEdqigBjKincUYNKOmf7QBMiTf719kbrA==",
|
"integrity": "sha512-Rg5xwznHWWSy7v2o0cdho6n+xLhK2gntImp0rJroVVFkcYFYQ8C8UJTSuTw/3CnExBmPjycjmUJkxVmjXsld6A==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"@typescript-eslint/scope-manager": "5.30.6",
|
"@typescript-eslint/scope-manager": "5.30.7",
|
||||||
"@typescript-eslint/types": "5.30.6",
|
"@typescript-eslint/types": "5.30.7",
|
||||||
"@typescript-eslint/typescript-estree": "5.30.6",
|
"@typescript-eslint/typescript-estree": "5.30.7",
|
||||||
"debug": "^4.3.4"
|
"debug": "^4.3.4"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@typescript-eslint/scope-manager": {
|
"@typescript-eslint/scope-manager": {
|
||||||
"version": "5.30.6",
|
"version": "5.30.7",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.30.6.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.30.7.tgz",
|
||||||
"integrity": "sha512-Hkq5PhLgtVoW1obkqYH0i4iELctEKixkhWLPTYs55doGUKCASvkjOXOd/pisVeLdO24ZX9D6yymJ/twqpJiG3g==",
|
"integrity": "sha512-7BM1bwvdF1UUvt+b9smhqdc/eniOnCKxQT/kj3oXtj3LqnTWCAM0qHRHfyzCzhEfWX0zrW7KqXXeE4DlchZBKw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"@typescript-eslint/types": "5.30.6",
|
"@typescript-eslint/types": "5.30.7",
|
||||||
"@typescript-eslint/visitor-keys": "5.30.6"
|
"@typescript-eslint/visitor-keys": "5.30.7"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@typescript-eslint/type-utils": {
|
"@typescript-eslint/type-utils": {
|
||||||
"version": "5.30.6",
|
"version": "5.30.7",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.30.6.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.30.7.tgz",
|
||||||
"integrity": "sha512-GFVVzs2j0QPpM+NTDMXtNmJKlF842lkZKDSanIxf+ArJsGeZUIaeT4jGg+gAgHt7AcQSFwW7htzF/rbAh2jaVA==",
|
"integrity": "sha512-nD5qAE2aJX/YLyKMvOU5jvJyku4QN5XBVsoTynFrjQZaDgDV6i7QHFiYCx10wvn7hFvfuqIRNBtsgaLe0DbWhw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"@typescript-eslint/utils": "5.30.6",
|
"@typescript-eslint/utils": "5.30.7",
|
||||||
"debug": "^4.3.4",
|
"debug": "^4.3.4",
|
||||||
"tsutils": "^3.21.0"
|
"tsutils": "^3.21.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@typescript-eslint/types": {
|
"@typescript-eslint/types": {
|
||||||
"version": "5.30.6",
|
"version": "5.30.7",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.30.6.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.30.7.tgz",
|
||||||
"integrity": "sha512-HdnP8HioL1F7CwVmT4RaaMX57RrfqsOMclZc08wGMiDYJBsLGBM7JwXM4cZJmbWLzIR/pXg1kkrBBVpxTOwfUg==",
|
"integrity": "sha512-ocVkETUs82+U+HowkovV6uxf1AnVRKCmDRNUBUUo46/5SQv1owC/EBFkiu4MOHeZqhKz2ktZ3kvJJ1uFqQ8QPg==",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"@typescript-eslint/typescript-estree": {
|
"@typescript-eslint/typescript-estree": {
|
||||||
"version": "5.30.6",
|
"version": "5.30.7",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.30.6.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.30.7.tgz",
|
||||||
"integrity": "sha512-Z7TgPoeYUm06smfEfYF0RBkpF8csMyVnqQbLYiGgmUSTaSXTP57bt8f0UFXstbGxKIreTwQCujtaH0LY9w9B+A==",
|
"integrity": "sha512-tNslqXI1ZdmXXrHER83TJ8OTYl4epUzJC0aj2i4DMDT4iU+UqLT3EJeGQvJ17BMbm31x5scSwo3hPM0nqQ1AEA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"@typescript-eslint/types": "5.30.6",
|
"@typescript-eslint/types": "5.30.7",
|
||||||
"@typescript-eslint/visitor-keys": "5.30.6",
|
"@typescript-eslint/visitor-keys": "5.30.7",
|
||||||
"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",
|
||||||
@@ -8150,26 +8150,26 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@typescript-eslint/utils": {
|
"@typescript-eslint/utils": {
|
||||||
"version": "5.30.6",
|
"version": "5.30.7",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.30.6.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.30.7.tgz",
|
||||||
"integrity": "sha512-xFBLc/esUbLOJLk9jKv0E9gD/OH966M40aY9jJ8GiqpSkP2xOV908cokJqqhVd85WoIvHVHYXxSFE4cCSDzVvA==",
|
"integrity": "sha512-Z3pHdbFw+ftZiGUnm1GZhkJgVqsDL5CYW2yj+TB2mfXDFOMqtbzQi2dNJIyPqPbx9mv2kUxS1gU+r2gKlKi1rQ==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"@types/json-schema": "^7.0.9",
|
"@types/json-schema": "^7.0.9",
|
||||||
"@typescript-eslint/scope-manager": "5.30.6",
|
"@typescript-eslint/scope-manager": "5.30.7",
|
||||||
"@typescript-eslint/types": "5.30.6",
|
"@typescript-eslint/types": "5.30.7",
|
||||||
"@typescript-eslint/typescript-estree": "5.30.6",
|
"@typescript-eslint/typescript-estree": "5.30.7",
|
||||||
"eslint-scope": "^5.1.1",
|
"eslint-scope": "^5.1.1",
|
||||||
"eslint-utils": "^3.0.0"
|
"eslint-utils": "^3.0.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"@typescript-eslint/visitor-keys": {
|
"@typescript-eslint/visitor-keys": {
|
||||||
"version": "5.30.6",
|
"version": "5.30.7",
|
||||||
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.30.6.tgz",
|
"resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.30.7.tgz",
|
||||||
"integrity": "sha512-41OiCjdL2mCaSDi2SvYbzFLlqqlm5v1ZW9Ym55wXKL/Rx6OOB1IbuFGo71Fj6Xy90gJDFTlgOS+vbmtGHPTQQA==",
|
"integrity": "sha512-KrRXf8nnjvcpxDFOKej4xkD7657+PClJs5cJVSG7NNoCNnjEdc46juNAQt7AyuWctuCgs6mVRc1xGctEqrjxWw==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"@typescript-eslint/types": "5.30.6",
|
"@typescript-eslint/types": "5.30.7",
|
||||||
"eslint-visitor-keys": "^3.3.0"
|
"eslint-visitor-keys": "^3.3.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -8987,9 +8987,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"eslint": {
|
"eslint": {
|
||||||
"version": "8.19.0",
|
"version": "8.20.0",
|
||||||
"resolved": "https://registry.npmjs.org/eslint/-/eslint-8.19.0.tgz",
|
"resolved": "https://registry.npmjs.org/eslint/-/eslint-8.20.0.tgz",
|
||||||
"integrity": "sha512-SXOPj3x9VKvPe81TjjUJCYlV4oJjQw68Uek+AM0X4p+33dj2HY5bpTZOgnQHcG2eAm1mtCU9uNMnJi7exU/kYw==",
|
"integrity": "sha512-d4ixhz5SKCa1D6SCPrivP7yYVi7nyD6A4vs6HIAul9ujBzcEmZVM3/0NN/yu5nKhmO1wjp5xQ46iRfmDGlOviA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"@eslint/eslintrc": "^1.3.0",
|
"@eslint/eslintrc": "^1.3.0",
|
||||||
@@ -9267,9 +9267,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"eslint-plugin-jest": {
|
"eslint-plugin-jest": {
|
||||||
"version": "26.5.3",
|
"version": "26.6.0",
|
||||||
"resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-26.5.3.tgz",
|
"resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-26.6.0.tgz",
|
||||||
"integrity": "sha512-sICclUqJQnR1bFRZGLN2jnSVsYOsmPYYnroGCIMVSvTS3y8XR3yjzy1EcTQmk6typ5pRgyIWzbjqxK6cZHEZuQ==",
|
"integrity": "sha512-f8n46/97ZFdU4KqeQYqO8AEVGIhHWvkpgNBWHH3jrM28/y8llnbf3IjfIKv6p2pZIMinK1PCqbbROxs9Eud02Q==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"requires": {
|
"requires": {
|
||||||
"@typescript-eslint/utils": "^5.10.0"
|
"@typescript-eslint/utils": "^5.10.0"
|
||||||
@@ -12102,9 +12102,9 @@
|
|||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"zod": {
|
"zod": {
|
||||||
"version": "3.17.3",
|
"version": "3.17.9",
|
||||||
"resolved": "https://registry.npmjs.org/zod/-/zod-3.17.3.tgz",
|
"resolved": "https://registry.npmjs.org/zod/-/zod-3.17.9.tgz",
|
||||||
"integrity": "sha512-4oKP5zvG6GGbMlqBkI5FESOAweldEhSOZ6LI6cG+JzUT7ofj1ZOC0PJudpQOpT1iqOFpYYtX5Pw0+o403y4bcg=="
|
"integrity": "sha512-QF1843pYoRk1jFP+/UiEySXaTSiIyFod3KyDzoO3qHKGZdX7z7RNXI4lEsiibvpnIZQwcDVU58ZrxP4pQ7BmTQ=="
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+7
-7
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "dependency-review-action",
|
"name": "dependency-review-action",
|
||||||
"version": "2.0.2",
|
"version": "2.0.4",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "A GitHub Action for Dependency Review",
|
"description": "A GitHub Action for Dependency Review",
|
||||||
"main": "lib/main.js",
|
"main": "lib/main.js",
|
||||||
@@ -33,17 +33,17 @@
|
|||||||
"got": "^12.1.0",
|
"got": "^12.1.0",
|
||||||
"nodemon": "^2.0.19",
|
"nodemon": "^2.0.19",
|
||||||
"yaml": "^2.1.1",
|
"yaml": "^2.1.1",
|
||||||
"zod": "^3.17.3"
|
"zod": "^3.17.9"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@types/node": "^16.11.44",
|
"@types/node": "^16.11.45",
|
||||||
"@typescript-eslint/eslint-plugin": "^5.30.6",
|
"@typescript-eslint/eslint-plugin": "^5.30.7",
|
||||||
"@typescript-eslint/parser": "^5.30.6",
|
"@typescript-eslint/parser": "^5.30.7",
|
||||||
"@vercel/ncc": "^0.34.0",
|
"@vercel/ncc": "^0.34.0",
|
||||||
"esbuild-register": "^3.3.3",
|
"esbuild-register": "^3.3.3",
|
||||||
"eslint": "^8.19.0",
|
"eslint": "^8.20.0",
|
||||||
"eslint-plugin-github": "^4.3.6",
|
"eslint-plugin-github": "^4.3.6",
|
||||||
"eslint-plugin-jest": "^26.5.3",
|
"eslint-plugin-jest": "^26.6.0",
|
||||||
"jest": "^27.5.1",
|
"jest": "^27.5.1",
|
||||||
"js-yaml": "^4.1.0",
|
"js-yaml": "^4.1.0",
|
||||||
"nodemon": "^2.0.19",
|
"nodemon": "^2.0.19",
|
||||||
|
|||||||
Reference in New Issue
Block a user