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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. 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 `^14`, `^15`, or `^16`
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.0",
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.build.json --noEmit"
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": "^14.0.0 || ^15.0.0 || ^16.0.0"
105
+ "next": "^15.0.0 || ^16.0.0"
106
106
  },
107
107
  "publishConfig": {
108
108
  "access": "public"