@kitschpatrol/create-project 1.2.3 → 1.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -6,51 +6,51 @@ import path from "node:path";
6
6
 
7
7
  //#region node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/util.js
8
8
  var util;
9
- (function(util$1) {
10
- util$1.assertEqual = (_) => {};
9
+ (function(util) {
10
+ util.assertEqual = (_) => {};
11
11
  function assertIs(_arg) {}
12
- util$1.assertIs = assertIs;
12
+ util.assertIs = assertIs;
13
13
  function assertNever(_x) {
14
14
  throw new Error();
15
15
  }
16
- util$1.assertNever = assertNever;
17
- util$1.arrayToEnum = (items) => {
16
+ util.assertNever = assertNever;
17
+ util.arrayToEnum = (items) => {
18
18
  const obj = {};
19
19
  for (const item of items) obj[item] = item;
20
20
  return obj;
21
21
  };
22
- util$1.getValidEnumValues = (obj) => {
23
- const validKeys = util$1.objectKeys(obj).filter((k) => typeof obj[obj[k]] !== "number");
22
+ util.getValidEnumValues = (obj) => {
23
+ const validKeys = util.objectKeys(obj).filter((k) => typeof obj[obj[k]] !== "number");
24
24
  const filtered = {};
25
25
  for (const k of validKeys) filtered[k] = obj[k];
26
- return util$1.objectValues(filtered);
26
+ return util.objectValues(filtered);
27
27
  };
28
- util$1.objectValues = (obj) => {
29
- return util$1.objectKeys(obj).map(function(e) {
28
+ util.objectValues = (obj) => {
29
+ return util.objectKeys(obj).map(function(e) {
30
30
  return obj[e];
31
31
  });
32
32
  };
33
- util$1.objectKeys = typeof Object.keys === "function" ? (obj) => Object.keys(obj) : (object) => {
33
+ util.objectKeys = typeof Object.keys === "function" ? (obj) => Object.keys(obj) : (object) => {
34
34
  const keys = [];
35
35
  for (const key in object) if (Object.prototype.hasOwnProperty.call(object, key)) keys.push(key);
36
36
  return keys;
37
37
  };
38
- util$1.find = (arr, checker) => {
38
+ util.find = (arr, checker) => {
39
39
  for (const item of arr) if (checker(item)) return item;
40
40
  };
41
- util$1.isInteger = typeof Number.isInteger === "function" ? (val) => Number.isInteger(val) : (val) => typeof val === "number" && Number.isFinite(val) && Math.floor(val) === val;
41
+ util.isInteger = typeof Number.isInteger === "function" ? (val) => Number.isInteger(val) : (val) => typeof val === "number" && Number.isFinite(val) && Math.floor(val) === val;
42
42
  function joinValues(array, separator = " | ") {
43
43
  return array.map((val) => typeof val === "string" ? `'${val}'` : val).join(separator);
44
44
  }
45
- util$1.joinValues = joinValues;
46
- util$1.jsonStringifyReplacer = (_, value) => {
45
+ util.joinValues = joinValues;
46
+ util.jsonStringifyReplacer = (_, value) => {
47
47
  if (typeof value === "bigint") return value.toString();
48
48
  return value;
49
49
  };
50
50
  })(util || (util = {}));
51
51
  var objectUtil;
52
- (function(objectUtil$1) {
53
- objectUtil$1.mergeShapes = (first, second) => {
52
+ (function(objectUtil) {
53
+ objectUtil.mergeShapes = (first, second) => {
54
54
  return {
55
55
  ...first,
56
56
  ...second
@@ -289,8 +289,8 @@ function getErrorMap() {
289
289
  //#endregion
290
290
  //#region node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/parseUtil.js
291
291
  const makeIssue = (params) => {
292
- const { data, path: path$1, errorMaps, issueData } = params;
293
- const fullPath = [...path$1, ...issueData.path || []];
292
+ const { data, path, errorMaps, issueData } = params;
293
+ const fullPath = [...path, ...issueData.path || []];
294
294
  const fullIssue = {
295
295
  ...issueData,
296
296
  path: fullPath
@@ -394,19 +394,19 @@ const isAsync = (x) => typeof Promise !== "undefined" && x instanceof Promise;
394
394
  //#endregion
395
395
  //#region node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/helpers/errorUtil.js
396
396
  var errorUtil;
397
- (function(errorUtil$1) {
398
- errorUtil$1.errToObj = (message) => typeof message === "string" ? { message } : message || {};
399
- errorUtil$1.toString = (message) => typeof message === "string" ? message : message?.message;
397
+ (function(errorUtil) {
398
+ errorUtil.errToObj = (message) => typeof message === "string" ? { message } : message || {};
399
+ errorUtil.toString = (message) => typeof message === "string" ? message : message?.message;
400
400
  })(errorUtil || (errorUtil = {}));
401
401
 
402
402
  //#endregion
403
403
  //#region node_modules/.pnpm/zod@3.25.76/node_modules/zod/v3/types.js
404
404
  var ParseInputLazyPath = class {
405
- constructor(parent, value, path$1, key) {
405
+ constructor(parent, value, path, key) {
406
406
  this._cachedPath = [];
407
407
  this.parent = parent;
408
408
  this.data = value;
409
- this._path = path$1;
409
+ this._path = path;
410
410
  this._key = key;
411
411
  }
412
412
  get path() {
@@ -434,10 +434,10 @@ const handleResult = (ctx, result) => {
434
434
  };
435
435
  function processCreateParams(params) {
436
436
  if (!params) return {};
437
- const { errorMap: errorMap$1, invalid_type_error, required_error, description } = params;
438
- if (errorMap$1 && (invalid_type_error || required_error)) throw new Error(`Can't use "invalid_type_error" or "required_error" in conjunction with custom error map.`);
439
- if (errorMap$1) return {
440
- errorMap: errorMap$1,
437
+ const { errorMap, invalid_type_error, required_error, description } = params;
438
+ if (errorMap && (invalid_type_error || required_error)) throw new Error(`Can't use "invalid_type_error" or "required_error" in conjunction with custom error map.`);
439
+ if (errorMap) return {
440
+ errorMap,
441
441
  description
442
442
  };
443
443
  const customMap = (iss, ctx) => {
@@ -745,7 +745,7 @@ const ipv6CidrRegex = /^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1
745
745
  const base64Regex = /^([0-9a-zA-Z+/]{4})*(([0-9a-zA-Z+/]{2}==)|([0-9a-zA-Z+/]{3}=))?$/;
746
746
  const base64urlRegex = /^([0-9a-zA-Z-_]{4})*(([0-9a-zA-Z-_]{2}(==)?)|([0-9a-zA-Z-_]{3}(=)?))?$/;
747
747
  const dateRegexSource = `((\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-((0[13578]|1[02])-(0[1-9]|[12]\\d|3[01])|(0[469]|11)-(0[1-9]|[12]\\d|30)|(02)-(0[1-9]|1\\d|2[0-8])))`;
748
- const dateRegex = /* @__PURE__ */ new RegExp(`^${dateRegexSource}$`);
748
+ const dateRegex = new RegExp(`^${dateRegexSource}$`);
749
749
  function timeRegexSource(args) {
750
750
  let secondsRegexSource = `[0-5]\\d`;
751
751
  if (args.precision) secondsRegexSource = `${secondsRegexSource}\\.\\d{${args.precision}}`;
@@ -754,7 +754,7 @@ function timeRegexSource(args) {
754
754
  return `([01]\\d|2[0-3]):[0-5]\\d(:${secondsRegexSource})${secondsQuantifier}`;
755
755
  }
756
756
  function timeRegex(args) {
757
- return /* @__PURE__ */ new RegExp(`^${timeRegexSource(args)}$`);
757
+ return new RegExp(`^${timeRegexSource(args)}$`);
758
758
  }
759
759
  function datetimeRegex(args) {
760
760
  let regex = `${dateRegexSource}T${timeRegexSource(args)}`;
@@ -762,7 +762,7 @@ function datetimeRegex(args) {
762
762
  opts.push(args.local ? `Z?` : `Z`);
763
763
  if (args.offset) opts.push(`([+-]\\d{2}:?\\d{2})`);
764
764
  regex = `${regex}(${opts.join("|")})`;
765
- return /* @__PURE__ */ new RegExp(`^${regex}$`);
765
+ return new RegExp(`^${regex}$`);
766
766
  }
767
767
  function isValidIP(ip, version) {
768
768
  if ((version === "v4" || !version) && ipv4Regex.test(ip)) return true;
@@ -794,11 +794,11 @@ var ZodString = class ZodString extends ZodType {
794
794
  _parse(input) {
795
795
  if (this._def.coerce) input.data = String(input.data);
796
796
  if (this._getType(input) !== ZodParsedType.string) {
797
- const ctx$1 = this._getOrReturnCtx(input);
798
- addIssueToContext(ctx$1, {
797
+ const ctx = this._getOrReturnCtx(input);
798
+ addIssueToContext(ctx, {
799
799
  code: ZodIssueCode.invalid_type,
800
800
  expected: ZodParsedType.string,
801
- received: ctx$1.parsedType
801
+ received: ctx.parsedType
802
802
  });
803
803
  return INVALID;
804
804
  }
@@ -1370,11 +1370,11 @@ var ZodNumber = class ZodNumber extends ZodType {
1370
1370
  _parse(input) {
1371
1371
  if (this._def.coerce) input.data = Number(input.data);
1372
1372
  if (this._getType(input) !== ZodParsedType.number) {
1373
- const ctx$1 = this._getOrReturnCtx(input);
1374
- addIssueToContext(ctx$1, {
1373
+ const ctx = this._getOrReturnCtx(input);
1374
+ addIssueToContext(ctx, {
1375
1375
  code: ZodIssueCode.invalid_type,
1376
1376
  expected: ZodParsedType.number,
1377
- received: ctx$1.parsedType
1377
+ received: ctx.parsedType
1378
1378
  });
1379
1379
  return INVALID;
1380
1380
  }
@@ -1753,11 +1753,11 @@ var ZodDate = class ZodDate extends ZodType {
1753
1753
  _parse(input) {
1754
1754
  if (this._def.coerce) input.data = new Date(input.data);
1755
1755
  if (this._getType(input) !== ZodParsedType.date) {
1756
- const ctx$1 = this._getOrReturnCtx(input);
1757
- addIssueToContext(ctx$1, {
1756
+ const ctx = this._getOrReturnCtx(input);
1757
+ addIssueToContext(ctx, {
1758
1758
  code: ZodIssueCode.invalid_type,
1759
1759
  expected: ZodParsedType.date,
1760
- received: ctx$1.parsedType
1760
+ received: ctx.parsedType
1761
1761
  });
1762
1762
  return INVALID;
1763
1763
  }
@@ -2025,8 +2025,8 @@ var ZodArray = class ZodArray extends ZodType {
2025
2025
  }
2026
2026
  if (ctx.common.async) return Promise.all([...ctx.data].map((item, i) => {
2027
2027
  return def.type._parseAsync(new ParseInputLazyPath(ctx, item, ctx.path, i));
2028
- })).then((result$1) => {
2029
- return ParseStatus.mergeArray(status, result$1);
2028
+ })).then((result) => {
2029
+ return ParseStatus.mergeArray(status, result);
2030
2030
  });
2031
2031
  const result = [...ctx.data].map((item, i) => {
2032
2032
  return def.type._parseSync(new ParseInputLazyPath(ctx, item, ctx.path, i));
@@ -2122,11 +2122,11 @@ var ZodObject = class ZodObject extends ZodType {
2122
2122
  }
2123
2123
  _parse(input) {
2124
2124
  if (this._getType(input) !== ZodParsedType.object) {
2125
- const ctx$1 = this._getOrReturnCtx(input);
2126
- addIssueToContext(ctx$1, {
2125
+ const ctx = this._getOrReturnCtx(input);
2126
+ addIssueToContext(ctx, {
2127
2127
  code: ZodIssueCode.invalid_type,
2128
2128
  expected: ZodParsedType.object,
2129
- received: ctx$1.parsedType
2129
+ received: ctx.parsedType
2130
2130
  });
2131
2131
  return INVALID;
2132
2132
  }
@@ -2403,7 +2403,7 @@ var ZodUnion = class extends ZodType {
2403
2403
  ctx.common.issues.push(...dirty.ctx.common.issues);
2404
2404
  return dirty.result;
2405
2405
  }
2406
- const unionErrors = issues.map((issues$1) => new ZodError(issues$1));
2406
+ const unionErrors = issues.map((issues) => new ZodError(issues));
2407
2407
  addIssueToContext(ctx, {
2408
2408
  code: ZodIssueCode.invalid_union,
2409
2409
  unionErrors
@@ -2803,9 +2803,9 @@ var ZodSet = class ZodSet extends ZodType {
2803
2803
  }
2804
2804
  }
2805
2805
  const valueType = this._def.valueType;
2806
- function finalizeSet(elements$1) {
2806
+ function finalizeSet(elements) {
2807
2807
  const parsedSet = /* @__PURE__ */ new Set();
2808
- for (const element of elements$1) {
2808
+ for (const element of elements) {
2809
2809
  if (element.status === "aborted") return INVALID;
2810
2810
  if (element.status === "dirty") status.dirty();
2811
2811
  parsedSet.add(element.value);
@@ -2816,7 +2816,7 @@ var ZodSet = class ZodSet extends ZodType {
2816
2816
  };
2817
2817
  }
2818
2818
  const elements = [...ctx.data.values()].map((item, i) => valueType._parse(new ParseInputLazyPath(ctx, item, ctx.path, i)));
2819
- if (ctx.common.async) return Promise.all(elements).then((elements$1) => finalizeSet(elements$1));
2819
+ if (ctx.common.async) return Promise.all(elements).then((elements) => finalizeSet(elements));
2820
2820
  else return finalizeSet(elements);
2821
2821
  }
2822
2822
  min(minSize, message) {
@@ -3160,10 +3160,10 @@ var ZodEffects = class extends ZodType {
3160
3160
  checkCtx.addIssue = checkCtx.addIssue.bind(checkCtx);
3161
3161
  if (effect.type === "preprocess") {
3162
3162
  const processed = effect.transform(ctx.data, checkCtx);
3163
- if (ctx.common.async) return Promise.resolve(processed).then(async (processed$1) => {
3163
+ if (ctx.common.async) return Promise.resolve(processed).then(async (processed) => {
3164
3164
  if (status.value === "aborted") return INVALID;
3165
3165
  const result = await this._def.schema._parseAsync({
3166
- data: processed$1,
3166
+ data: processed,
3167
3167
  path: ctx.path,
3168
3168
  parent: ctx
3169
3169
  });
@@ -3336,10 +3336,10 @@ var ZodCatch = class extends ZodType {
3336
3336
  path: newCtx.path,
3337
3337
  parent: { ...newCtx }
3338
3338
  });
3339
- if (isAsync(result)) return result.then((result$1) => {
3339
+ if (isAsync(result)) return result.then((result) => {
3340
3340
  return {
3341
3341
  status: "valid",
3342
- value: result$1.status === "valid" ? result$1.value : this._def.catchValue({
3342
+ value: result.status === "valid" ? result.value : this._def.catchValue({
3343
3343
  get error() {
3344
3344
  return new ZodError(newCtx.common.issues);
3345
3345
  },
@@ -3477,43 +3477,43 @@ ZodReadonly.create = (type, params) => {
3477
3477
  };
3478
3478
  const late = { object: ZodObject.lazycreate };
3479
3479
  var ZodFirstPartyTypeKind;
3480
- (function(ZodFirstPartyTypeKind$1) {
3481
- ZodFirstPartyTypeKind$1["ZodString"] = "ZodString";
3482
- ZodFirstPartyTypeKind$1["ZodNumber"] = "ZodNumber";
3483
- ZodFirstPartyTypeKind$1["ZodNaN"] = "ZodNaN";
3484
- ZodFirstPartyTypeKind$1["ZodBigInt"] = "ZodBigInt";
3485
- ZodFirstPartyTypeKind$1["ZodBoolean"] = "ZodBoolean";
3486
- ZodFirstPartyTypeKind$1["ZodDate"] = "ZodDate";
3487
- ZodFirstPartyTypeKind$1["ZodSymbol"] = "ZodSymbol";
3488
- ZodFirstPartyTypeKind$1["ZodUndefined"] = "ZodUndefined";
3489
- ZodFirstPartyTypeKind$1["ZodNull"] = "ZodNull";
3490
- ZodFirstPartyTypeKind$1["ZodAny"] = "ZodAny";
3491
- ZodFirstPartyTypeKind$1["ZodUnknown"] = "ZodUnknown";
3492
- ZodFirstPartyTypeKind$1["ZodNever"] = "ZodNever";
3493
- ZodFirstPartyTypeKind$1["ZodVoid"] = "ZodVoid";
3494
- ZodFirstPartyTypeKind$1["ZodArray"] = "ZodArray";
3495
- ZodFirstPartyTypeKind$1["ZodObject"] = "ZodObject";
3496
- ZodFirstPartyTypeKind$1["ZodUnion"] = "ZodUnion";
3497
- ZodFirstPartyTypeKind$1["ZodDiscriminatedUnion"] = "ZodDiscriminatedUnion";
3498
- ZodFirstPartyTypeKind$1["ZodIntersection"] = "ZodIntersection";
3499
- ZodFirstPartyTypeKind$1["ZodTuple"] = "ZodTuple";
3500
- ZodFirstPartyTypeKind$1["ZodRecord"] = "ZodRecord";
3501
- ZodFirstPartyTypeKind$1["ZodMap"] = "ZodMap";
3502
- ZodFirstPartyTypeKind$1["ZodSet"] = "ZodSet";
3503
- ZodFirstPartyTypeKind$1["ZodFunction"] = "ZodFunction";
3504
- ZodFirstPartyTypeKind$1["ZodLazy"] = "ZodLazy";
3505
- ZodFirstPartyTypeKind$1["ZodLiteral"] = "ZodLiteral";
3506
- ZodFirstPartyTypeKind$1["ZodEnum"] = "ZodEnum";
3507
- ZodFirstPartyTypeKind$1["ZodEffects"] = "ZodEffects";
3508
- ZodFirstPartyTypeKind$1["ZodNativeEnum"] = "ZodNativeEnum";
3509
- ZodFirstPartyTypeKind$1["ZodOptional"] = "ZodOptional";
3510
- ZodFirstPartyTypeKind$1["ZodNullable"] = "ZodNullable";
3511
- ZodFirstPartyTypeKind$1["ZodDefault"] = "ZodDefault";
3512
- ZodFirstPartyTypeKind$1["ZodCatch"] = "ZodCatch";
3513
- ZodFirstPartyTypeKind$1["ZodPromise"] = "ZodPromise";
3514
- ZodFirstPartyTypeKind$1["ZodBranded"] = "ZodBranded";
3515
- ZodFirstPartyTypeKind$1["ZodPipeline"] = "ZodPipeline";
3516
- ZodFirstPartyTypeKind$1["ZodReadonly"] = "ZodReadonly";
3480
+ (function(ZodFirstPartyTypeKind) {
3481
+ ZodFirstPartyTypeKind["ZodString"] = "ZodString";
3482
+ ZodFirstPartyTypeKind["ZodNumber"] = "ZodNumber";
3483
+ ZodFirstPartyTypeKind["ZodNaN"] = "ZodNaN";
3484
+ ZodFirstPartyTypeKind["ZodBigInt"] = "ZodBigInt";
3485
+ ZodFirstPartyTypeKind["ZodBoolean"] = "ZodBoolean";
3486
+ ZodFirstPartyTypeKind["ZodDate"] = "ZodDate";
3487
+ ZodFirstPartyTypeKind["ZodSymbol"] = "ZodSymbol";
3488
+ ZodFirstPartyTypeKind["ZodUndefined"] = "ZodUndefined";
3489
+ ZodFirstPartyTypeKind["ZodNull"] = "ZodNull";
3490
+ ZodFirstPartyTypeKind["ZodAny"] = "ZodAny";
3491
+ ZodFirstPartyTypeKind["ZodUnknown"] = "ZodUnknown";
3492
+ ZodFirstPartyTypeKind["ZodNever"] = "ZodNever";
3493
+ ZodFirstPartyTypeKind["ZodVoid"] = "ZodVoid";
3494
+ ZodFirstPartyTypeKind["ZodArray"] = "ZodArray";
3495
+ ZodFirstPartyTypeKind["ZodObject"] = "ZodObject";
3496
+ ZodFirstPartyTypeKind["ZodUnion"] = "ZodUnion";
3497
+ ZodFirstPartyTypeKind["ZodDiscriminatedUnion"] = "ZodDiscriminatedUnion";
3498
+ ZodFirstPartyTypeKind["ZodIntersection"] = "ZodIntersection";
3499
+ ZodFirstPartyTypeKind["ZodTuple"] = "ZodTuple";
3500
+ ZodFirstPartyTypeKind["ZodRecord"] = "ZodRecord";
3501
+ ZodFirstPartyTypeKind["ZodMap"] = "ZodMap";
3502
+ ZodFirstPartyTypeKind["ZodSet"] = "ZodSet";
3503
+ ZodFirstPartyTypeKind["ZodFunction"] = "ZodFunction";
3504
+ ZodFirstPartyTypeKind["ZodLazy"] = "ZodLazy";
3505
+ ZodFirstPartyTypeKind["ZodLiteral"] = "ZodLiteral";
3506
+ ZodFirstPartyTypeKind["ZodEnum"] = "ZodEnum";
3507
+ ZodFirstPartyTypeKind["ZodEffects"] = "ZodEffects";
3508
+ ZodFirstPartyTypeKind["ZodNativeEnum"] = "ZodNativeEnum";
3509
+ ZodFirstPartyTypeKind["ZodOptional"] = "ZodOptional";
3510
+ ZodFirstPartyTypeKind["ZodNullable"] = "ZodNullable";
3511
+ ZodFirstPartyTypeKind["ZodDefault"] = "ZodDefault";
3512
+ ZodFirstPartyTypeKind["ZodCatch"] = "ZodCatch";
3513
+ ZodFirstPartyTypeKind["ZodPromise"] = "ZodPromise";
3514
+ ZodFirstPartyTypeKind["ZodBranded"] = "ZodBranded";
3515
+ ZodFirstPartyTypeKind["ZodPipeline"] = "ZodPipeline";
3516
+ ZodFirstPartyTypeKind["ZodReadonly"] = "ZodReadonly";
3517
3517
  })(ZodFirstPartyTypeKind || (ZodFirstPartyTypeKind = {}));
3518
3518
  const stringType = ZodString.create;
3519
3519
  const numberType = ZodNumber.create;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kitschpatrol/create-project",
3
- "version": "1.2.3",
3
+ "version": "1.2.4",
4
4
  "description": "Kitschpatrol's TypeScript project templates.",
5
5
  "keywords": [
6
6
  "cli",
@@ -33,14 +33,14 @@
33
33
  "bingo-handlebars": "^0.1.0"
34
34
  },
35
35
  "devDependencies": {
36
- "@kitschpatrol/shared-config": "^5.12.0",
36
+ "@kitschpatrol/shared-config": "^5.13.0",
37
37
  "@types/node": "~20.19.30",
38
38
  "bumpp": "^10.4.0",
39
39
  "mdat": "^1.3.4",
40
40
  "taze": "^19.9.2",
41
- "tsdown": "^0.19.0",
41
+ "tsdown": "^0.20.1",
42
42
  "typescript": "~5.9.3",
43
- "vitest": "^4.0.17",
43
+ "vitest": "^4.0.18",
44
44
  "zod": "^3.25.76"
45
45
  },
46
46
  "engines": {
@@ -36,14 +36,14 @@
36
36
  "dependencies": {
37
37
  "@types/node": "~20.19.30",
38
38
  "@types/yargs": "^17.0.35",
39
- "lognow": "^0.3.2",
39
+ "lognow": "^0.4.1",
40
40
  "yargs": "^18.0.0"
41
41
  },
42
42
  "devDependencies": {
43
- "@kitschpatrol/shared-config": "^5.12.0",
43
+ "@kitschpatrol/shared-config": "^5.13.0",
44
44
  "bumpp": "^10.4.0",
45
45
  "mdat-plugin-cli-help": "^1.0.5",
46
- "tsdown": "^0.19.0",
46
+ "tsdown": "^0.20.1",
47
47
  "typescript": "~5.9.3"
48
48
  },
49
49
  "packageManager": "pnpm@10.28.1",
@@ -44,14 +44,14 @@
44
44
  "dependencies": {
45
45
  "@types/node": "~20.19.30",
46
46
  "@types/yargs": "^17.0.35",
47
- "lognow": "^0.3.2",
47
+ "lognow": "^0.4.1",
48
48
  "yargs": "^18.0.0"
49
49
  },
50
50
  "devDependencies": {
51
- "@kitschpatrol/shared-config": "^5.12.0",
51
+ "@kitschpatrol/shared-config": "^5.13.0",
52
52
  "bumpp": "^10.4.0",
53
53
  "mdat-plugin-cli-help": "^1.0.5",
54
- "tsdown": "^0.19.0",
54
+ "tsdown": "^0.20.1",
55
55
  "typescript": "~5.9.3"
56
56
  },
57
57
  "packageManager": "pnpm@10.28.1",
@@ -31,15 +31,15 @@
31
31
  },
32
32
  "dependencies": {
33
33
  "@types/node": "~22.19.7",
34
- "lognow": "^0.3.2"
34
+ "lognow": "^0.4.1"
35
35
  },
36
36
  "devDependencies": {
37
- "@kitschpatrol/shared-config": "^5.12.0",
37
+ "@kitschpatrol/shared-config": "^5.13.0",
38
38
  "bumpp": "^10.4.0",
39
- "electron": "^39.2.7",
39
+ "electron": "^40.0.0",
40
40
  "electron-builder": "^26.4.0",
41
41
  "typescript": "~5.9.3",
42
- "vite": "npm:rolldown-vite@7.2.2",
42
+ "vite": "npm:rolldown-vite@7.3.1",
43
43
  "vite-plugin-electron": "^0.29.0"
44
44
  },
45
45
  "packageManager": "pnpm@10.28.1",
@@ -39,12 +39,12 @@
39
39
  },
40
40
  "dependencies": {
41
41
  "@types/node": "~20.19.30",
42
- "lognow": "^0.2.2"
42
+ "lognow": "^0.4.1"
43
43
  },
44
44
  "devDependencies": {
45
- "@kitschpatrol/shared-config": "^5.12.0",
45
+ "@kitschpatrol/shared-config": "^5.13.0",
46
46
  "bumpp": "^10.4.0",
47
- "tsdown": "^0.19.0",
47
+ "tsdown": "^0.20.1",
48
48
  "typescript": "~5.9.3"
49
49
  },
50
50
  "packageManager": "pnpm@10.28.1",
@@ -32,7 +32,7 @@
32
32
  "@types/node": "~20.19.30"
33
33
  },
34
34
  "devDependencies": {
35
- "@kitschpatrol/shared-config": "^5.12.0",
35
+ "@kitschpatrol/shared-config": "^5.13.0",
36
36
  "bumpp": "^10.4.0",
37
37
  "tsx": "^4.21.0",
38
38
  "typescript": "~5.9.3"
@@ -68,12 +68,12 @@
68
68
  "unplugin-utils": "^0.3.1"
69
69
  },
70
70
  "devDependencies": {
71
- "@kitschpatrol/shared-config": "^5.12.0",
71
+ "@kitschpatrol/shared-config": "^5.13.0",
72
72
  "@sxzz/test-utils": "^0.5.15",
73
73
  "bumpp": "^10.4.0",
74
- "tsdown": "^0.19.0",
74
+ "tsdown": "^0.20.1",
75
75
  "typescript": "~5.9.3",
76
- "vitest": "^4.0.17"
76
+ "vitest": "^4.0.18"
77
77
  },
78
78
  "packageManager": "pnpm@10.28.1",
79
79
  "engines": {
@@ -33,7 +33,7 @@
33
33
  "@types/node": "~20.19.30"
34
34
  },
35
35
  "devDependencies": {
36
- "@kitschpatrol/shared-config": "^5.12.0",
36
+ "@kitschpatrol/shared-config": "^5.13.0",
37
37
  "bumpp": "^10.4.0",
38
38
  "poptab": "^1.0.4",
39
39
  "typescript": "~5.9.3",