create-daloy 0.8.0 → 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 +2 -2
- package/templates/bun-basic/package.json +1 -1
- package/templates/cloudflare-worker/package.json +1 -1
- package/templates/deno-basic/deno.json +2 -2
- package/templates/node-basic/AGENTS.md +1 -1
- package/templates/node-basic/package.json +2 -2
- package/templates/vercel-edge/package.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-daloy",
|
|
3
|
-
"version": "0.8.
|
|
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.
|
|
30
|
+
"node": ">=24.0.0"
|
|
31
31
|
},
|
|
32
32
|
"bin": {
|
|
33
33
|
"create-daloy": "bin/create-daloy.mjs"
|
|
@@ -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.
|
|
12
|
-
"@daloyjs/core/": "npm:@daloyjs/core@^0.14.
|
|
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.
|
|
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.
|
|
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.
|
|
21
|
+
"@daloyjs/core": "^0.14.2",
|
|
22
22
|
"zod": "^4.4.3"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|