@kitschpatrol/create-project 1.2.2 → 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 +90 -90
- package/license.txt +1 -1
- package/package.json +7 -7
- package/templates/cli/.vscode/settings.json +4 -2
- package/templates/cli/package.json +7 -7
- package/templates/cli+library/.vscode/settings.json +4 -2
- package/templates/cli+library/package.json +7 -7
- package/templates/electron/.vscode/settings.json +4 -2
- package/templates/electron/package.json +8 -8
- package/templates/library/.vscode/settings.json +4 -2
- package/templates/library/package.json +6 -6
- package/templates/minimal/.vscode/settings.json +4 -2
- package/templates/minimal/package.json +4 -4
- package/templates/unplugin/.vscode/settings.json +4 -2
- package/templates/unplugin/package.json +5 -5
- package/templates/web/.vscode/settings.json +4 -2
- package/templates/web/package.json +4 -4
- /package/templates/cli/{cspell.config.js → cspell.config.ts} +0 -0
- /package/templates/cli/{prettier.config.js → prettier.config.ts} +0 -0
- /package/templates/cli+library/{cspell.config.js → cspell.config.ts} +0 -0
- /package/templates/cli+library/{prettier.config.js → prettier.config.ts} +0 -0
- /package/templates/electron/{cspell.config.js → cspell.config.ts} +0 -0
- /package/templates/electron/{prettier.config.js → prettier.config.ts} +0 -0
- /package/templates/library/{cspell.config.js → cspell.config.ts} +0 -0
- /package/templates/library/{prettier.config.js → prettier.config.ts} +0 -0
- /package/templates/minimal/{cspell.config.js → cspell.config.ts} +0 -0
- /package/templates/minimal/{prettier.config.js → prettier.config.ts} +0 -0
- /package/templates/unplugin/{cspell.config.js → cspell.config.ts} +0 -0
- /package/templates/unplugin/{prettier.config.js → prettier.config.ts} +0 -0
- /package/templates/web/{cspell.config.js → cspell.config.ts} +0 -0
- /package/templates/web/{prettier.config.js → prettier.config.ts} +0 -0
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
|
|
10
|
-
util
|
|
9
|
+
(function(util) {
|
|
10
|
+
util.assertEqual = (_) => {};
|
|
11
11
|
function assertIs(_arg) {}
|
|
12
|
-
util
|
|
12
|
+
util.assertIs = assertIs;
|
|
13
13
|
function assertNever(_x) {
|
|
14
14
|
throw new Error();
|
|
15
15
|
}
|
|
16
|
-
util
|
|
17
|
-
util
|
|
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
|
|
23
|
-
const validKeys = util
|
|
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
|
|
26
|
+
return util.objectValues(filtered);
|
|
27
27
|
};
|
|
28
|
-
util
|
|
29
|
-
return util
|
|
28
|
+
util.objectValues = (obj) => {
|
|
29
|
+
return util.objectKeys(obj).map(function(e) {
|
|
30
30
|
return obj[e];
|
|
31
31
|
});
|
|
32
32
|
};
|
|
33
|
-
util
|
|
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
|
|
38
|
+
util.find = (arr, checker) => {
|
|
39
39
|
for (const item of arr) if (checker(item)) return item;
|
|
40
40
|
};
|
|
41
|
-
util
|
|
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
|
|
46
|
-
util
|
|
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
|
|
53
|
-
objectUtil
|
|
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
|
|
293
|
-
const fullPath = [...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
|
|
398
|
-
errorUtil
|
|
399
|
-
errorUtil
|
|
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
|
|
405
|
+
constructor(parent, value, path, key) {
|
|
406
406
|
this._cachedPath = [];
|
|
407
407
|
this.parent = parent;
|
|
408
408
|
this.data = value;
|
|
409
|
-
this._path = path
|
|
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
|
|
438
|
-
if (errorMap
|
|
439
|
-
if (errorMap
|
|
440
|
-
errorMap
|
|
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 =
|
|
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
|
|
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
|
|
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
|
|
798
|
-
addIssueToContext(ctx
|
|
797
|
+
const ctx = this._getOrReturnCtx(input);
|
|
798
|
+
addIssueToContext(ctx, {
|
|
799
799
|
code: ZodIssueCode.invalid_type,
|
|
800
800
|
expected: ZodParsedType.string,
|
|
801
|
-
received: ctx
|
|
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
|
|
1374
|
-
addIssueToContext(ctx
|
|
1373
|
+
const ctx = this._getOrReturnCtx(input);
|
|
1374
|
+
addIssueToContext(ctx, {
|
|
1375
1375
|
code: ZodIssueCode.invalid_type,
|
|
1376
1376
|
expected: ZodParsedType.number,
|
|
1377
|
-
received: ctx
|
|
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
|
|
1757
|
-
addIssueToContext(ctx
|
|
1756
|
+
const ctx = this._getOrReturnCtx(input);
|
|
1757
|
+
addIssueToContext(ctx, {
|
|
1758
1758
|
code: ZodIssueCode.invalid_type,
|
|
1759
1759
|
expected: ZodParsedType.date,
|
|
1760
|
-
received: ctx
|
|
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
|
|
2029
|
-
return ParseStatus.mergeArray(status, result
|
|
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
|
|
2126
|
-
addIssueToContext(ctx
|
|
2125
|
+
const ctx = this._getOrReturnCtx(input);
|
|
2126
|
+
addIssueToContext(ctx, {
|
|
2127
2127
|
code: ZodIssueCode.invalid_type,
|
|
2128
2128
|
expected: ZodParsedType.object,
|
|
2129
|
-
received: ctx
|
|
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
|
|
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
|
|
2806
|
+
function finalizeSet(elements) {
|
|
2807
2807
|
const parsedSet = /* @__PURE__ */ new Set();
|
|
2808
|
-
for (const element of elements
|
|
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
|
|
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
|
|
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
|
|
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
|
|
3339
|
+
if (isAsync(result)) return result.then((result) => {
|
|
3340
3340
|
return {
|
|
3341
3341
|
status: "valid",
|
|
3342
|
-
value: result
|
|
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
|
|
3481
|
-
ZodFirstPartyTypeKind
|
|
3482
|
-
ZodFirstPartyTypeKind
|
|
3483
|
-
ZodFirstPartyTypeKind
|
|
3484
|
-
ZodFirstPartyTypeKind
|
|
3485
|
-
ZodFirstPartyTypeKind
|
|
3486
|
-
ZodFirstPartyTypeKind
|
|
3487
|
-
ZodFirstPartyTypeKind
|
|
3488
|
-
ZodFirstPartyTypeKind
|
|
3489
|
-
ZodFirstPartyTypeKind
|
|
3490
|
-
ZodFirstPartyTypeKind
|
|
3491
|
-
ZodFirstPartyTypeKind
|
|
3492
|
-
ZodFirstPartyTypeKind
|
|
3493
|
-
ZodFirstPartyTypeKind
|
|
3494
|
-
ZodFirstPartyTypeKind
|
|
3495
|
-
ZodFirstPartyTypeKind
|
|
3496
|
-
ZodFirstPartyTypeKind
|
|
3497
|
-
ZodFirstPartyTypeKind
|
|
3498
|
-
ZodFirstPartyTypeKind
|
|
3499
|
-
ZodFirstPartyTypeKind
|
|
3500
|
-
ZodFirstPartyTypeKind
|
|
3501
|
-
ZodFirstPartyTypeKind
|
|
3502
|
-
ZodFirstPartyTypeKind
|
|
3503
|
-
ZodFirstPartyTypeKind
|
|
3504
|
-
ZodFirstPartyTypeKind
|
|
3505
|
-
ZodFirstPartyTypeKind
|
|
3506
|
-
ZodFirstPartyTypeKind
|
|
3507
|
-
ZodFirstPartyTypeKind
|
|
3508
|
-
ZodFirstPartyTypeKind
|
|
3509
|
-
ZodFirstPartyTypeKind
|
|
3510
|
-
ZodFirstPartyTypeKind
|
|
3511
|
-
ZodFirstPartyTypeKind
|
|
3512
|
-
ZodFirstPartyTypeKind
|
|
3513
|
-
ZodFirstPartyTypeKind
|
|
3514
|
-
ZodFirstPartyTypeKind
|
|
3515
|
-
ZodFirstPartyTypeKind
|
|
3516
|
-
ZodFirstPartyTypeKind
|
|
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/license.txt
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kitschpatrol/create-project",
|
|
3
|
-
"version": "1.2.
|
|
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.
|
|
37
|
-
"@types/node": "~20.19.
|
|
38
|
-
"bumpp": "^10.
|
|
39
|
-
"mdat": "^1.3.
|
|
36
|
+
"@kitschpatrol/shared-config": "^5.13.0",
|
|
37
|
+
"@types/node": "~20.19.30",
|
|
38
|
+
"bumpp": "^10.4.0",
|
|
39
|
+
"mdat": "^1.3.4",
|
|
40
40
|
"taze": "^19.9.2",
|
|
41
|
-
"tsdown": "^0.
|
|
41
|
+
"tsdown": "^0.20.1",
|
|
42
42
|
"typescript": "~5.9.3",
|
|
43
|
-
"vitest": "^4.0.
|
|
43
|
+
"vitest": "^4.0.18",
|
|
44
44
|
"zod": "^3.25.76"
|
|
45
45
|
},
|
|
46
46
|
"engines": {
|
|
@@ -17,7 +17,9 @@
|
|
|
17
17
|
"cSpell.enabled": true,
|
|
18
18
|
"cSpell.workspaceRootPath": ".",
|
|
19
19
|
"editor.codeActionsOnSave": {
|
|
20
|
-
"source.fixAll": "explicit",
|
|
20
|
+
"source.fixAll.ts": "explicit",
|
|
21
|
+
"source.fixAll.eslint": "explicit",
|
|
22
|
+
"source.fixAll.stylelint": "explicit",
|
|
21
23
|
"source.organizeImports": "never"
|
|
22
24
|
},
|
|
23
25
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
@@ -48,7 +50,7 @@
|
|
|
48
50
|
".env": ".env.*, .template.env",
|
|
49
51
|
"*.js": "${basename}.ts.map, ${basename}.js.map, ${basename}.d.ts, ${basename}.d.ts.map, ${basename}.d.js.map",
|
|
50
52
|
"*.ts": "${basename}.ts.map, ${basename}.d.ts, ${basename}.d.ts.map",
|
|
51
|
-
"package.json": "
|
|
53
|
+
"package.json": ".*.cjs, .*.cts, .*.js, .*.json, .*.json5, .*.jsonc, .*.mjs, .*.mts, .*.toml, .*.ts, .*.yaml, .*.yml, .*ignore, .*rc, *config.cjs, *config.cts, *config.js, *config.json, *config.json5, *config.jsonc, *config.mjs, *config.mts, *config.toml, *config.ts, *config.yaml, *config.yml, lerna.json, netlify.toml, package-lock.json, pnpm*, turbo.json, vercel.json, workspace*, wrangler.toml, wrangler.json, wrangler.jsonc, yarn.lock, yarn*",
|
|
52
54
|
"readme.md": "authors*, backers*, changelog*, citation*, code_of_conduct*, contributing*, contributors*, copying*, credits*, governance*, history*, license*, maintainers*, release_notes*, security*, sponsors*"
|
|
53
55
|
},
|
|
54
56
|
"prettier.documentSelectors": [
|
|
@@ -34,19 +34,19 @@
|
|
|
34
34
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@types/node": "~20.19.
|
|
37
|
+
"@types/node": "~20.19.30",
|
|
38
38
|
"@types/yargs": "^17.0.35",
|
|
39
|
-
"lognow": "^0.
|
|
39
|
+
"lognow": "^0.4.1",
|
|
40
40
|
"yargs": "^18.0.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@kitschpatrol/shared-config": "^5.
|
|
44
|
-
"bumpp": "^10.
|
|
45
|
-
"mdat-plugin-cli-help": "^1.0.
|
|
46
|
-
"tsdown": "^0.
|
|
43
|
+
"@kitschpatrol/shared-config": "^5.13.0",
|
|
44
|
+
"bumpp": "^10.4.0",
|
|
45
|
+
"mdat-plugin-cli-help": "^1.0.5",
|
|
46
|
+
"tsdown": "^0.20.1",
|
|
47
47
|
"typescript": "~5.9.3"
|
|
48
48
|
},
|
|
49
|
-
"packageManager": "pnpm@10.
|
|
49
|
+
"packageManager": "pnpm@10.28.1",
|
|
50
50
|
"engines": {
|
|
51
51
|
"node": ">=20.19.0"
|
|
52
52
|
}
|
|
@@ -17,7 +17,9 @@
|
|
|
17
17
|
"cSpell.enabled": true,
|
|
18
18
|
"cSpell.workspaceRootPath": ".",
|
|
19
19
|
"editor.codeActionsOnSave": {
|
|
20
|
-
"source.fixAll": "explicit",
|
|
20
|
+
"source.fixAll.ts": "explicit",
|
|
21
|
+
"source.fixAll.eslint": "explicit",
|
|
22
|
+
"source.fixAll.stylelint": "explicit",
|
|
21
23
|
"source.organizeImports": "never"
|
|
22
24
|
},
|
|
23
25
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
@@ -48,7 +50,7 @@
|
|
|
48
50
|
".env": ".env.*, .template.env",
|
|
49
51
|
"*.js": "${basename}.ts.map, ${basename}.js.map, ${basename}.d.ts, ${basename}.d.ts.map, ${basename}.d.js.map",
|
|
50
52
|
"*.ts": "${basename}.ts.map, ${basename}.d.ts, ${basename}.d.ts.map",
|
|
51
|
-
"package.json": "
|
|
53
|
+
"package.json": ".*.cjs, .*.cts, .*.js, .*.json, .*.json5, .*.jsonc, .*.mjs, .*.mts, .*.toml, .*.ts, .*.yaml, .*.yml, .*ignore, .*rc, *config.cjs, *config.cts, *config.js, *config.json, *config.json5, *config.jsonc, *config.mjs, *config.mts, *config.toml, *config.ts, *config.yaml, *config.yml, lerna.json, netlify.toml, package-lock.json, pnpm*, turbo.json, vercel.json, workspace*, wrangler.toml, wrangler.json, wrangler.jsonc, yarn.lock, yarn*",
|
|
52
54
|
"readme.md": "authors*, backers*, changelog*, citation*, code_of_conduct*, contributing*, contributors*, copying*, credits*, governance*, history*, license*, maintainers*, release_notes*, security*, sponsors*"
|
|
53
55
|
},
|
|
54
56
|
"prettier.documentSelectors": [
|
|
@@ -42,19 +42,19 @@
|
|
|
42
42
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@types/node": "~20.19.
|
|
45
|
+
"@types/node": "~20.19.30",
|
|
46
46
|
"@types/yargs": "^17.0.35",
|
|
47
|
-
"lognow": "^0.
|
|
47
|
+
"lognow": "^0.4.1",
|
|
48
48
|
"yargs": "^18.0.0"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@kitschpatrol/shared-config": "^5.
|
|
52
|
-
"bumpp": "^10.
|
|
53
|
-
"mdat-plugin-cli-help": "^1.0.
|
|
54
|
-
"tsdown": "^0.
|
|
51
|
+
"@kitschpatrol/shared-config": "^5.13.0",
|
|
52
|
+
"bumpp": "^10.4.0",
|
|
53
|
+
"mdat-plugin-cli-help": "^1.0.5",
|
|
54
|
+
"tsdown": "^0.20.1",
|
|
55
55
|
"typescript": "~5.9.3"
|
|
56
56
|
},
|
|
57
|
-
"packageManager": "pnpm@10.
|
|
57
|
+
"packageManager": "pnpm@10.28.1",
|
|
58
58
|
"engines": {
|
|
59
59
|
"node": ">=20.19.0"
|
|
60
60
|
}
|
|
@@ -17,7 +17,9 @@
|
|
|
17
17
|
"cSpell.enabled": true,
|
|
18
18
|
"cSpell.workspaceRootPath": ".",
|
|
19
19
|
"editor.codeActionsOnSave": {
|
|
20
|
-
"source.fixAll": "explicit",
|
|
20
|
+
"source.fixAll.ts": "explicit",
|
|
21
|
+
"source.fixAll.eslint": "explicit",
|
|
22
|
+
"source.fixAll.stylelint": "explicit",
|
|
21
23
|
"source.organizeImports": "never"
|
|
22
24
|
},
|
|
23
25
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
@@ -48,7 +50,7 @@
|
|
|
48
50
|
".env": ".env.*, .template.env",
|
|
49
51
|
"*.js": "${basename}.ts.map, ${basename}.js.map, ${basename}.d.ts, ${basename}.d.ts.map, ${basename}.d.js.map",
|
|
50
52
|
"*.ts": "${basename}.ts.map, ${basename}.d.ts, ${basename}.d.ts.map",
|
|
51
|
-
"package.json": "
|
|
53
|
+
"package.json": ".*.cjs, .*.cts, .*.js, .*.json, .*.json5, .*.jsonc, .*.mjs, .*.mts, .*.toml, .*.ts, .*.yaml, .*.yml, .*ignore, .*rc, *config.cjs, *config.cts, *config.js, *config.json, *config.json5, *config.jsonc, *config.mjs, *config.mts, *config.toml, *config.ts, *config.yaml, *config.yml, lerna.json, netlify.toml, package-lock.json, pnpm*, turbo.json, vercel.json, workspace*, wrangler.toml, wrangler.json, wrangler.jsonc, yarn.lock, yarn*",
|
|
52
54
|
"readme.md": "authors*, backers*, changelog*, citation*, code_of_conduct*, contributing*, contributors*, copying*, credits*, governance*, history*, license*, maintainers*, release_notes*, security*, sponsors*"
|
|
53
55
|
},
|
|
54
56
|
"prettier.documentSelectors": [
|
|
@@ -30,19 +30,19 @@
|
|
|
30
30
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@types/node": "~22.19.
|
|
34
|
-
"lognow": "^0.
|
|
33
|
+
"@types/node": "~22.19.7",
|
|
34
|
+
"lognow": "^0.4.1"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@kitschpatrol/shared-config": "^5.
|
|
38
|
-
"bumpp": "^10.
|
|
39
|
-
"electron": "^
|
|
40
|
-
"electron-builder": "^26.0
|
|
37
|
+
"@kitschpatrol/shared-config": "^5.13.0",
|
|
38
|
+
"bumpp": "^10.4.0",
|
|
39
|
+
"electron": "^40.0.0",
|
|
40
|
+
"electron-builder": "^26.4.0",
|
|
41
41
|
"typescript": "~5.9.3",
|
|
42
|
-
"vite": "npm:rolldown-vite@7.
|
|
42
|
+
"vite": "npm:rolldown-vite@7.3.1",
|
|
43
43
|
"vite-plugin-electron": "^0.29.0"
|
|
44
44
|
},
|
|
45
|
-
"packageManager": "pnpm@10.
|
|
45
|
+
"packageManager": "pnpm@10.28.1",
|
|
46
46
|
"engines": {
|
|
47
47
|
"node": ">=22.18.0"
|
|
48
48
|
}
|
|
@@ -17,7 +17,9 @@
|
|
|
17
17
|
"cSpell.enabled": true,
|
|
18
18
|
"cSpell.workspaceRootPath": ".",
|
|
19
19
|
"editor.codeActionsOnSave": {
|
|
20
|
-
"source.fixAll": "explicit",
|
|
20
|
+
"source.fixAll.ts": "explicit",
|
|
21
|
+
"source.fixAll.eslint": "explicit",
|
|
22
|
+
"source.fixAll.stylelint": "explicit",
|
|
21
23
|
"source.organizeImports": "never"
|
|
22
24
|
},
|
|
23
25
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
@@ -48,7 +50,7 @@
|
|
|
48
50
|
".env": ".env.*, .template.env",
|
|
49
51
|
"*.js": "${basename}.ts.map, ${basename}.js.map, ${basename}.d.ts, ${basename}.d.ts.map, ${basename}.d.js.map",
|
|
50
52
|
"*.ts": "${basename}.ts.map, ${basename}.d.ts, ${basename}.d.ts.map",
|
|
51
|
-
"package.json": "
|
|
53
|
+
"package.json": ".*.cjs, .*.cts, .*.js, .*.json, .*.json5, .*.jsonc, .*.mjs, .*.mts, .*.toml, .*.ts, .*.yaml, .*.yml, .*ignore, .*rc, *config.cjs, *config.cts, *config.js, *config.json, *config.json5, *config.jsonc, *config.mjs, *config.mts, *config.toml, *config.ts, *config.yaml, *config.yml, lerna.json, netlify.toml, package-lock.json, pnpm*, turbo.json, vercel.json, workspace*, wrangler.toml, wrangler.json, wrangler.jsonc, yarn.lock, yarn*",
|
|
52
54
|
"readme.md": "authors*, backers*, changelog*, citation*, code_of_conduct*, contributing*, contributors*, copying*, credits*, governance*, history*, license*, maintainers*, release_notes*, security*, sponsors*"
|
|
53
55
|
},
|
|
54
56
|
"prettier.documentSelectors": [
|
|
@@ -38,16 +38,16 @@
|
|
|
38
38
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@types/node": "~20.19.
|
|
42
|
-
"lognow": "^0.
|
|
41
|
+
"@types/node": "~20.19.30",
|
|
42
|
+
"lognow": "^0.4.1"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@kitschpatrol/shared-config": "^5.
|
|
46
|
-
"bumpp": "^10.
|
|
47
|
-
"tsdown": "^0.
|
|
45
|
+
"@kitschpatrol/shared-config": "^5.13.0",
|
|
46
|
+
"bumpp": "^10.4.0",
|
|
47
|
+
"tsdown": "^0.20.1",
|
|
48
48
|
"typescript": "~5.9.3"
|
|
49
49
|
},
|
|
50
|
-
"packageManager": "pnpm@10.
|
|
50
|
+
"packageManager": "pnpm@10.28.1",
|
|
51
51
|
"engines": {
|
|
52
52
|
"node": ">=20.19.0"
|
|
53
53
|
}
|
|
@@ -17,7 +17,9 @@
|
|
|
17
17
|
"cSpell.enabled": true,
|
|
18
18
|
"cSpell.workspaceRootPath": ".",
|
|
19
19
|
"editor.codeActionsOnSave": {
|
|
20
|
-
"source.fixAll": "explicit",
|
|
20
|
+
"source.fixAll.ts": "explicit",
|
|
21
|
+
"source.fixAll.eslint": "explicit",
|
|
22
|
+
"source.fixAll.stylelint": "explicit",
|
|
21
23
|
"source.organizeImports": "never"
|
|
22
24
|
},
|
|
23
25
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
@@ -48,7 +50,7 @@
|
|
|
48
50
|
".env": ".env.*, .template.env",
|
|
49
51
|
"*.js": "${basename}.ts.map, ${basename}.js.map, ${basename}.d.ts, ${basename}.d.ts.map, ${basename}.d.js.map",
|
|
50
52
|
"*.ts": "${basename}.ts.map, ${basename}.d.ts, ${basename}.d.ts.map",
|
|
51
|
-
"package.json": "
|
|
53
|
+
"package.json": ".*.cjs, .*.cts, .*.js, .*.json, .*.json5, .*.jsonc, .*.mjs, .*.mts, .*.toml, .*.ts, .*.yaml, .*.yml, .*ignore, .*rc, *config.cjs, *config.cts, *config.js, *config.json, *config.json5, *config.jsonc, *config.mjs, *config.mts, *config.toml, *config.ts, *config.yaml, *config.yml, lerna.json, netlify.toml, package-lock.json, pnpm*, turbo.json, vercel.json, workspace*, wrangler.toml, wrangler.json, wrangler.jsonc, yarn.lock, yarn*",
|
|
52
54
|
"readme.md": "authors*, backers*, changelog*, citation*, code_of_conduct*, contributing*, contributors*, copying*, credits*, governance*, history*, license*, maintainers*, release_notes*, security*, sponsors*"
|
|
53
55
|
},
|
|
54
56
|
"prettier.documentSelectors": [
|
|
@@ -29,15 +29,15 @@
|
|
|
29
29
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@types/node": "~20.19.
|
|
32
|
+
"@types/node": "~20.19.30"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@kitschpatrol/shared-config": "^5.
|
|
36
|
-
"bumpp": "^10.
|
|
35
|
+
"@kitschpatrol/shared-config": "^5.13.0",
|
|
36
|
+
"bumpp": "^10.4.0",
|
|
37
37
|
"tsx": "^4.21.0",
|
|
38
38
|
"typescript": "~5.9.3"
|
|
39
39
|
},
|
|
40
|
-
"packageManager": "pnpm@10.
|
|
40
|
+
"packageManager": "pnpm@10.28.1",
|
|
41
41
|
"engines": {
|
|
42
42
|
"node": ">=20.19.0"
|
|
43
43
|
}
|
|
@@ -17,7 +17,9 @@
|
|
|
17
17
|
"cSpell.enabled": true,
|
|
18
18
|
"cSpell.workspaceRootPath": ".",
|
|
19
19
|
"editor.codeActionsOnSave": {
|
|
20
|
-
"source.fixAll": "explicit",
|
|
20
|
+
"source.fixAll.ts": "explicit",
|
|
21
|
+
"source.fixAll.eslint": "explicit",
|
|
22
|
+
"source.fixAll.stylelint": "explicit",
|
|
21
23
|
"source.organizeImports": "never"
|
|
22
24
|
},
|
|
23
25
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
@@ -48,7 +50,7 @@
|
|
|
48
50
|
".env": ".env.*, .template.env",
|
|
49
51
|
"*.js": "${basename}.ts.map, ${basename}.js.map, ${basename}.d.ts, ${basename}.d.ts.map, ${basename}.d.js.map",
|
|
50
52
|
"*.ts": "${basename}.ts.map, ${basename}.d.ts, ${basename}.d.ts.map",
|
|
51
|
-
"package.json": "
|
|
53
|
+
"package.json": ".*.cjs, .*.cts, .*.js, .*.json, .*.json5, .*.jsonc, .*.mjs, .*.mts, .*.toml, .*.ts, .*.yaml, .*.yml, .*ignore, .*rc, *config.cjs, *config.cts, *config.js, *config.json, *config.json5, *config.jsonc, *config.mjs, *config.mts, *config.toml, *config.ts, *config.yaml, *config.yml, lerna.json, netlify.toml, package-lock.json, pnpm*, turbo.json, vercel.json, workspace*, wrangler.toml, wrangler.json, wrangler.jsonc, yarn.lock, yarn*",
|
|
52
54
|
"readme.md": "authors*, backers*, changelog*, citation*, code_of_conduct*, contributing*, contributors*, copying*, credits*, governance*, history*, license*, maintainers*, release_notes*, security*, sponsors*"
|
|
53
55
|
},
|
|
54
56
|
"prettier.documentSelectors": [
|
|
@@ -68,14 +68,14 @@
|
|
|
68
68
|
"unplugin-utils": "^0.3.1"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
|
-
"@kitschpatrol/shared-config": "^5.
|
|
71
|
+
"@kitschpatrol/shared-config": "^5.13.0",
|
|
72
72
|
"@sxzz/test-utils": "^0.5.15",
|
|
73
|
-
"bumpp": "^10.
|
|
74
|
-
"tsdown": "^0.
|
|
73
|
+
"bumpp": "^10.4.0",
|
|
74
|
+
"tsdown": "^0.20.1",
|
|
75
75
|
"typescript": "~5.9.3",
|
|
76
|
-
"vitest": "^4.0.
|
|
76
|
+
"vitest": "^4.0.18"
|
|
77
77
|
},
|
|
78
|
-
"packageManager": "pnpm@10.
|
|
78
|
+
"packageManager": "pnpm@10.28.1",
|
|
79
79
|
"engines": {
|
|
80
80
|
"node": ">=22.16.0"
|
|
81
81
|
}
|
|
@@ -17,7 +17,9 @@
|
|
|
17
17
|
"cSpell.enabled": true,
|
|
18
18
|
"cSpell.workspaceRootPath": ".",
|
|
19
19
|
"editor.codeActionsOnSave": {
|
|
20
|
-
"source.fixAll": "explicit",
|
|
20
|
+
"source.fixAll.ts": "explicit",
|
|
21
|
+
"source.fixAll.eslint": "explicit",
|
|
22
|
+
"source.fixAll.stylelint": "explicit",
|
|
21
23
|
"source.organizeImports": "never"
|
|
22
24
|
},
|
|
23
25
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
@@ -48,7 +50,7 @@
|
|
|
48
50
|
".env": ".env.*, .template.env",
|
|
49
51
|
"*.js": "${basename}.ts.map, ${basename}.js.map, ${basename}.d.ts, ${basename}.d.ts.map, ${basename}.d.js.map",
|
|
50
52
|
"*.ts": "${basename}.ts.map, ${basename}.d.ts, ${basename}.d.ts.map",
|
|
51
|
-
"package.json": "
|
|
53
|
+
"package.json": ".*.cjs, .*.cts, .*.js, .*.json, .*.json5, .*.jsonc, .*.mjs, .*.mts, .*.toml, .*.ts, .*.yaml, .*.yml, .*ignore, .*rc, *config.cjs, *config.cts, *config.js, *config.json, *config.json5, *config.jsonc, *config.mjs, *config.mts, *config.toml, *config.ts, *config.yaml, *config.yml, lerna.json, netlify.toml, package-lock.json, pnpm*, turbo.json, vercel.json, workspace*, wrangler.toml, wrangler.json, wrangler.jsonc, yarn.lock, yarn*",
|
|
52
54
|
"readme.md": "authors*, backers*, changelog*, citation*, code_of_conduct*, contributing*, contributors*, copying*, credits*, governance*, history*, license*, maintainers*, release_notes*, security*, sponsors*"
|
|
53
55
|
},
|
|
54
56
|
"prettier.documentSelectors": [
|
|
@@ -30,17 +30,17 @@
|
|
|
30
30
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@types/node": "~20.19.
|
|
33
|
+
"@types/node": "~20.19.30"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@kitschpatrol/shared-config": "^5.
|
|
37
|
-
"bumpp": "^10.
|
|
36
|
+
"@kitschpatrol/shared-config": "^5.13.0",
|
|
37
|
+
"bumpp": "^10.4.0",
|
|
38
38
|
"poptab": "^1.0.4",
|
|
39
39
|
"typescript": "~5.9.3",
|
|
40
40
|
"vite": "npm:rolldown-vite@7.1.17",
|
|
41
41
|
"vite-plugin-mkcert": "^1.17.9"
|
|
42
42
|
},
|
|
43
|
-
"packageManager": "pnpm@10.
|
|
43
|
+
"packageManager": "pnpm@10.28.1",
|
|
44
44
|
"engines": {
|
|
45
45
|
"node": ">=20.19.0"
|
|
46
46
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|