openapi-contract-kit 0.0.3 → 0.0.4

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/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [0.0.4] - 2026-09-12
6
+
7
+ - Lowered the supported Node.js baseline to Node 24 and added CI coverage for Node 24 and 26.
8
+
5
9
  ## [0.0.3] - 2026-09-12
6
10
 
7
11
  - Fixed GitHub Release publishing from detached tag checkouts by disabling pnpm branch checks in the publish workflow.
package/README.md CHANGED
@@ -19,7 +19,7 @@ JSON-first OpenAPI 3.1 contract generation and runtime validation for TypeScript
19
19
  pnpm add -D openapi-contract-kit
20
20
  ```
21
21
 
22
- Requires Node.js 26 and pnpm 12.3.4.
22
+ Requires Node.js 24 or newer and pnpm 12.3.4.
23
23
 
24
24
  ## Quick start
25
25
 
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "openapi-contract-kit",
3
- "version": "0.0.3",
3
+ "version": "0.0.4",
4
4
  "description": "Generate type-safe TypeScript contracts and runtime validators from JSON OpenAPI 3.1 documents.",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "engines": {
8
- "node": ">=26"
8
+ "node": ">=24.0.0"
9
9
  },
10
10
  "main": "./dist/src/index.js",
11
11
  "types": "./dist/src/index.d.ts",
@@ -32,7 +32,7 @@
32
32
  ],
33
33
  "devDependencies": {
34
34
  "@eslint/js": "^10.0.1",
35
- "@types/node": "^26.5.1",
35
+ "@types/node": "^24.0.0",
36
36
  "eslint": "^10.10.0",
37
37
  "prettier": "^3.9.6",
38
38
  "typescript": "^5.9.3",