@vidavidorra/create-project 3.0.261 → 4.0.1
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/content/package.d.ts +2 -2
- package/dist/content/package.js +1 -1
- package/package.json +3 -3
- package/tsconfig.json +3 -3
|
@@ -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<">=
|
|
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: ">=
|
|
86
|
+
node: ">=22";
|
|
87
87
|
};
|
|
88
88
|
keywords?: string[] | undefined;
|
|
89
89
|
private?: boolean | undefined;
|
package/dist/content/package.js
CHANGED
|
@@ -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('>=
|
|
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
|
+
"version": "4.0.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Interactively create a GitHub project",
|
|
6
6
|
"keywords": [
|
|
@@ -199,7 +199,7 @@
|
|
|
199
199
|
]
|
|
200
200
|
},
|
|
201
201
|
"dependencies": {
|
|
202
|
-
"@inquirer/prompts": "7.8.
|
|
202
|
+
"@inquirer/prompts": "7.8.3",
|
|
203
203
|
"prettier": "3.6.2",
|
|
204
204
|
"sort-package-json": "3.4.0",
|
|
205
205
|
"typescript": "5.9.2",
|
|
@@ -226,7 +226,7 @@
|
|
|
226
226
|
"xo": "1.2.2"
|
|
227
227
|
},
|
|
228
228
|
"engines": {
|
|
229
|
-
"node": ">=
|
|
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": "
|
|
5
|
+
"module": "node20",
|
|
6
6
|
"esModuleInterop": true,
|
|
7
|
-
"moduleResolution": "
|
|
7
|
+
"moduleResolution": "node16",
|
|
8
8
|
"outDir": "dist",
|
|
9
9
|
"skipLibCheck": true,
|
|
10
10
|
"sourceMap": true,
|
|
11
11
|
"strict": true,
|
|
12
|
-
"target": "
|
|
12
|
+
"target": "es2024"
|
|
13
13
|
},
|
|
14
14
|
"include": ["src/**/*.ts"]
|
|
15
15
|
}
|