@vidavidorra/create-project 3.0.261 → 4.0.0

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.
@@ -40,7 +40,7 @@ declare const schema: z.ZodObject<{
40
40
  dependencies: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
41
41
  devDependencies: z.ZodRecord<z.ZodString, z.ZodString>;
42
42
  engines: z.ZodObject<{
43
- node: z.ZodLiteral<">=20">;
43
+ node: z.ZodLiteral<">=22">;
44
44
  }, z.core.$strict>;
45
45
  publishConfig: z.ZodOptional<z.ZodObject<{
46
46
  access: z.ZodLiteral<"public">;
@@ -83,7 +83,7 @@ declare class Package extends File {
83
83
  release: Record<string, unknown>;
84
84
  devDependencies: Record<string, string>;
85
85
  engines: {
86
- node: ">=20";
86
+ node: ">=22";
87
87
  };
88
88
  keywords?: string[] | undefined;
89
89
  private?: boolean | undefined;
@@ -39,7 +39,7 @@ const schema = z.strictObject({
39
39
  c8: z.record(z.string(), z.unknown()).optional(),
40
40
  dependencies: z.record(z.string(), z.string()).optional(),
41
41
  devDependencies: z.record(z.string(), z.string()),
42
- engines: z.strictObject({ node: z.literal('>=20') }),
42
+ engines: z.strictObject({ node: z.literal('>=22') }),
43
43
  publishConfig: z.strictObject({ access: z.literal('public') }).optional(),
44
44
  overrides: z.record(z.string(), z.unknown()).optional(),
45
45
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vidavidorra/create-project",
3
- "version": "3.0.261",
3
+ "version": "4.0.0",
4
4
  "private": false,
5
5
  "description": "Interactively create a GitHub project",
6
6
  "keywords": [
@@ -226,7 +226,7 @@
226
226
  "xo": "1.2.2"
227
227
  },
228
228
  "engines": {
229
- "node": ">=20"
229
+ "node": ">=22"
230
230
  },
231
231
  "publishConfig": {
232
232
  "access": "public"
package/tsconfig.json CHANGED
@@ -2,14 +2,14 @@
2
2
  "compilerOptions": {
3
3
  "allowJs": true,
4
4
  "declaration": true,
5
- "module": "Node16",
5
+ "module": "node20",
6
6
  "esModuleInterop": true,
7
- "moduleResolution": "Node16",
7
+ "moduleResolution": "node16",
8
8
  "outDir": "dist",
9
9
  "skipLibCheck": true,
10
10
  "sourceMap": true,
11
11
  "strict": true,
12
- "target": "ES2022"
12
+ "target": "es2024"
13
13
  },
14
14
  "include": ["src/**/*.ts"]
15
15
  }