create-daloy 0.8.1 → 0.8.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-daloy",
3
- "version": "0.8.1",
3
+ "version": "0.8.2",
4
4
  "description": "Scaffold a new DaloyJS project. Run with `pnpm create daloy`, `npm create daloy@latest`, `yarn create daloy`, or `bun create daloy`.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -27,7 +27,7 @@
27
27
  "openapi"
28
28
  ],
29
29
  "engines": {
30
- "node": ">=24.15.0"
30
+ "node": ">=24.0.0"
31
31
  },
32
32
  "bin": {
33
33
  "create-daloy": "bin/create-daloy.mjs"
@@ -16,7 +16,7 @@
16
16
  "gen": "pnpm gen:openapi && pnpm gen:client"
17
17
  },
18
18
  "dependencies": {
19
- "@daloyjs/core": "^0.14.1",
19
+ "@daloyjs/core": "^0.14.2",
20
20
  "zod": "^4.4.3"
21
21
  },
22
22
  "devDependencies": {
@@ -10,7 +10,7 @@
10
10
  "test": "node --import tsx/esm --test tests/**/*.test.ts"
11
11
  },
12
12
  "dependencies": {
13
- "@daloyjs/core": "^0.14.1",
13
+ "@daloyjs/core": "^0.14.2",
14
14
  "zod": "^4.4.3"
15
15
  },
16
16
  "devDependencies": {
@@ -8,8 +8,8 @@
8
8
  "gen:openapi": "deno run --allow-net --allow-env --allow-read --allow-write scripts/dump-openapi.ts"
9
9
  },
10
10
  "imports": {
11
- "@daloyjs/core": "npm:@daloyjs/core@^0.14.1",
12
- "@daloyjs/core/": "npm:@daloyjs/core@^0.14.1/",
11
+ "@daloyjs/core": "npm:@daloyjs/core@^0.14.2",
12
+ "@daloyjs/core/": "npm:@daloyjs/core@^0.14.2/",
13
13
  "zod": "npm:zod@^4.4.3"
14
14
  },
15
15
  "compilerOptions": {
@@ -6,7 +6,7 @@ When `docs: true` is set in `new App({...})`, three routes are auto-mounted:
6
6
  `GET /openapi.json`, `GET /openapi.yaml`, and `GET /docs` (Scalar UI).
7
7
 
8
8
  - Package manager: pnpm (use `pnpm` unless the project's `package.json` was rewritten for npm/yarn/bun).
9
- - Runtime: Node.js >= 24.15 (active LTS).
9
+ - Runtime: Node.js >= 24.0.0 (active LTS).
10
10
 
11
11
  ## Commands
12
12
 
@@ -4,7 +4,7 @@
4
4
  "private": true,
5
5
  "type": "module",
6
6
  "engines": {
7
- "node": ">=24.15.0"
7
+ "node": ">=24.0.0"
8
8
  },
9
9
  "scripts": {
10
10
  "dev": "daloy dev",
@@ -18,7 +18,7 @@
18
18
  "audit": "pnpm audit --prod"
19
19
  },
20
20
  "dependencies": {
21
- "@daloyjs/core": "^0.14.1",
21
+ "@daloyjs/core": "^0.14.2",
22
22
  "zod": "^4.4.3"
23
23
  },
24
24
  "devDependencies": {
@@ -10,7 +10,7 @@
10
10
  "test": "node --import tsx/esm --test tests/**/*.test.ts"
11
11
  },
12
12
  "dependencies": {
13
- "@daloyjs/core": "^0.14.1",
13
+ "@daloyjs/core": "^0.14.2",
14
14
  "zod": "^4.4.3"
15
15
  },
16
16
  "devDependencies": {