@richie-rpc/core 0.1.0 → 1.0.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.
package/README.md CHANGED
@@ -5,7 +5,7 @@ Core package for defining type-safe API contracts with Zod schemas.
5
5
  ## Installation
6
6
 
7
7
  ```bash
8
- bun add @richie-rpc/core zod
8
+ bun add @richie-rpc/core zod@^4
9
9
  ```
10
10
 
11
11
  ## Usage
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@richie-rpc/core",
3
- "version": "0.1.0",
3
+ "version": "1.0.0",
4
4
  "type": "commonjs"
5
5
  }
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "@richie-rpc/core",
3
- "version": "0.1.0",
3
+ "version": "1.0.0",
4
4
  "type": "module"
5
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@richie-rpc/core",
3
- "version": "0.1.0",
3
+ "version": "1.0.0",
4
4
  "main": "./dist/cjs/index.cjs",
5
5
  "exports": {
6
6
  ".": {
@@ -9,21 +9,10 @@
9
9
  "import": "./dist/mjs/index.mjs"
10
10
  }
11
11
  },
12
- "dependencies": {
13
- "zod": "^3.23.8"
14
- },
15
12
  "peerDependencies": {
16
- "typescript": "^5"
13
+ "typescript": "^5",
14
+ "zod": "^4.1.12"
17
15
  },
18
- "module": "./dist/mjs/index.mjs",
19
- "types": "./dist/types/index.d.ts",
20
- "publishConfig": {
21
- "access": "public"
22
- },
23
- "files": [
24
- "dist",
25
- "README.md"
26
- ],
27
16
  "author": "Richie <oss@ricsam.dev>",
28
17
  "license": "MIT",
29
18
  "repository": {
@@ -45,5 +34,14 @@
45
34
  "openapi",
46
35
  "type-safe"
47
36
  ],
48
- "description": "Core contract definitions and type utilities for Richie RPC"
37
+ "description": "Core contract definitions and type utilities for Richie RPC",
38
+ "module": "./dist/mjs/index.mjs",
39
+ "types": "./dist/types/index.d.ts",
40
+ "publishConfig": {
41
+ "access": "public"
42
+ },
43
+ "files": [
44
+ "dist",
45
+ "README.md"
46
+ ]
49
47
  }