@jokio/rpc 0.5.1 → 0.5.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 +1 -1
  2. package/package.json +4 -1
package/README.md CHANGED
@@ -20,7 +20,7 @@ A type-safe RPC framework for TypeScript with Zod validation, designed for Expre
20
20
  ## Installation
21
21
 
22
22
  ```bash
23
- npm install @jokio/rpc
23
+ npm install @jokio/rpc zod
24
24
  ```
25
25
 
26
26
  ## Usage
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jokio/rpc",
3
- "version": "0.5.1",
3
+ "version": "0.5.2",
4
4
  "description": "Type-safe RPC framework with Zod validation for Express and TypeScript",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -36,6 +36,9 @@
36
36
  ],
37
37
  "author": "",
38
38
  "license": "MIT",
39
+ "peerDependencies": {
40
+ "zod": "^4.0.0"
41
+ },
39
42
  "devDependencies": {
40
43
  "@types/express": "^4.17.21",
41
44
  "@types/node": "^20.10.0",