rpc4next 0.6.0 → 0.6.1
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/README.md +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -35,7 +35,7 @@ This is a good fit if you want typed client calls and typed URLs from an existin
|
|
|
35
35
|
|
|
36
36
|
- Node.js `>=20.19.2`
|
|
37
37
|
- Next.js App Router
|
|
38
|
-
- Package peer dependency support in `rpc4next` and `rpc4next-cli`: Next.js `^
|
|
38
|
+
- Package peer dependency support in `rpc4next` and `rpc4next-cli`: Next.js `^15` or `^16`
|
|
39
39
|
|
|
40
40
|
## Installation
|
|
41
41
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rpc4next",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.1",
|
|
4
4
|
"description": "Inspired by Hono RPC and Pathpida, rpc4next brings a lightweight and intuitive RPC solution to Next.js, making server-client communication seamless",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"next.js",
|
|
@@ -96,13 +96,13 @@
|
|
|
96
96
|
"test:watch": "vitest --watch",
|
|
97
97
|
"lint": "biome check src",
|
|
98
98
|
"lint:fix": "biome check --write src",
|
|
99
|
-
"typecheck": "tsc -p tsconfig.
|
|
99
|
+
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
100
100
|
},
|
|
101
101
|
"dependencies": {
|
|
102
102
|
"rpc4next-shared": "^0.3.0"
|
|
103
103
|
},
|
|
104
104
|
"peerDependencies": {
|
|
105
|
-
"next": "^
|
|
105
|
+
"next": "^15.0.0 || ^16.0.0"
|
|
106
106
|
},
|
|
107
107
|
"publishConfig": {
|
|
108
108
|
"access": "public"
|