@m1kad0/esp-nvs-utils 0.2.1 → 0.2.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.
Files changed (2) hide show
  1. package/README.md +3 -0
  2. package/package.json +5 -2
package/README.md CHANGED
@@ -109,6 +109,9 @@ npm run lint
109
109
  Placeholder for the next version (at the beginning of the line):
110
110
  ### **WORK IN PROGRESS**
111
111
  -->
112
+ ### 0.2.2 (2026-06-12)
113
+ - Chore: Declare minimum supported Node.js version (`>=24`) via `engines`
114
+
112
115
  ### 0.2.1 (2026-06-11)
113
116
  - Fix: Set explicit `rootDir` for TypeScript 6 declaration build
114
117
 
package/package.json CHANGED
@@ -1,9 +1,12 @@
1
1
  {
2
2
  "name": "@m1kad0/esp-nvs-utils",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "ESP-IDF NVS partition encoder/decoder for Node.js and browsers",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
7
+ "engines": {
8
+ "node": ">=24"
9
+ },
7
10
  "main": "./dist/cjs/index.cjs",
8
11
  "module": "./dist/esm/index.js",
9
12
  "repository": {
@@ -41,7 +44,7 @@
41
44
  },
42
45
  "devDependencies": {
43
46
  "@types/jest": "30.0.0",
44
- "@types/node": "24.13.1",
47
+ "@types/node": "24.13.2",
45
48
  "jest": "30.4.2",
46
49
  "oxfmt": "0.54.0",
47
50
  "oxlint": "1.69.0",