zod-args-parser 1.0.15 → 1.0.16

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 +3 -3
package/README.md CHANGED
@@ -12,6 +12,9 @@ A strictly typed command-line arguments parser powered by Zod.
12
12
 
13
13
  ## Installation
14
14
 
15
+ > [!IMPORTANT]
16
+ > `zod` version `4` is not supported at this time.
17
+
15
18
  ```bash
16
19
  npm install zod chalk zod-args-parser
17
20
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zod-args-parser",
3
- "version": "1.0.15",
3
+ "version": "1.0.16",
4
4
  "description": "A strictly typed command-line arguments parser powered by Zod.",
5
5
  "author": "Ahmed ALABSI <alabsi91@gmail.com>",
6
6
  "license": "MIT",
@@ -58,7 +58,7 @@
58
58
  "typescript-eslint": "^8.33.1"
59
59
  },
60
60
  "peerDependencies": {
61
- "zod": "*",
61
+ "zod": "^3.0.0",
62
62
  "chalk": "*"
63
63
  }
64
- }
64
+ }