create-daloy 0.1.8 → 0.1.10

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/README.md CHANGED
@@ -52,7 +52,7 @@ A production-ready Node.js HTTP server using `@daloyjs/core` with:
52
52
 
53
53
  - Strict TypeScript and `tsx` for instant dev runs.
54
54
  - Hardened `.npmrc` for safer installs.
55
- - `secureHeaders`, `requestId`, and `rateLimit` enabled by default.
55
+ - `secureHeaders`, `requestId`, and `rateLimit` enabled by default (`rateLimit` is global until you configure `keyGenerator` or trusted proxy headers).
56
56
  - A sample `GET /healthz` and contract-first `GET /books/:id` route with Zod validation.
57
57
  - `pnpm gen` wired to emit OpenAPI 3.1 + a typed Hey API client.
58
58
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-daloy",
3
- "version": "0.1.8",
3
+ "version": "0.1.10",
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",
@@ -43,4 +43,4 @@
43
43
  "scripts": {
44
44
  "test": "node --test test/**/*.test.mjs"
45
45
  }
46
- }
46
+ }
@@ -10,7 +10,7 @@
10
10
  "test": "node --import tsx --test tests/**/*.test.ts"
11
11
  },
12
12
  "dependencies": {
13
- "@daloyjs/core": "^0.1.0",
13
+ "@daloyjs/core": "^0.2.0",
14
14
  "zod": "^4.4.3"
15
15
  },
16
16
  "devDependencies": {
@@ -18,7 +18,7 @@
18
18
  "audit": "pnpm audit --prod"
19
19
  },
20
20
  "dependencies": {
21
- "@daloyjs/core": "^0.1.0",
21
+ "@daloyjs/core": "^0.2.0",
22
22
  "zod": "^4.4.3"
23
23
  },
24
24
  "devDependencies": {
@@ -10,7 +10,7 @@
10
10
  "test": "node --import tsx --test tests/**/*.test.ts"
11
11
  },
12
12
  "dependencies": {
13
- "@daloyjs/core": "^0.1.1",
13
+ "@daloyjs/core": "^0.2.0",
14
14
  "zod": "^4.4.3"
15
15
  },
16
16
  "devDependencies": {