@source-repo/rpc-cli 3.2.0 → 3.3.0

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 +3 -3
package/README.md CHANGED
@@ -21,7 +21,7 @@ Tooling for [Source RPC](https://www.npmjs.com/package/@source-repo/rpc): read a
21
21
  npm install --save-dev @source-repo/rpc-cli
22
22
  ```
23
23
 
24
- The command is `source-rpc`. ESM only, Node 18.17 or later. It was `msgrpc` before 3.0.
24
+ The command is `source-rpc`. ESM only, Node 22 or later. It was `msgrpc` before 3.0.
25
25
 
26
26
  ## What you would not expect
27
27
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@source-repo/rpc-cli",
3
- "version": "3.2.0",
3
+ "version": "3.3.0",
4
4
  "description": "Source RPC tooling: extract a contract from TypeScript, check it against a build or a live device, and browse, tap, fake, record and bench a live network",
5
5
  "keywords": [
6
6
  "rpc",
@@ -17,7 +17,7 @@
17
17
  "type": "module",
18
18
  "license": "MIT",
19
19
  "engines": {
20
- "node": ">=18.17"
20
+ "node": ">=22"
21
21
  },
22
22
  "bin": {
23
23
  "source-rpc": "./dist/index.js"
@@ -52,7 +52,7 @@
52
52
  "check:contract:rpc": "node dist/index.js check --project ../rpc/tsconfig.contract.json --against ../rpc/src/RPC/Introspection.types.json"
53
53
  },
54
54
  "dependencies": {
55
- "@source-repo/rpc": "^3.2.0",
55
+ "@source-repo/rpc": "^3.3.0",
56
56
  "ts-morph": "^28.0.0"
57
57
  },
58
58
  "devDependencies": {