@alevnyacow/nzmt 0.7.2 → 0.7.4

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 +2 -8
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -1,7 +1,8 @@
1
- # Next Zod Modules Toolkit
1
+ <img src='https://raw.githubusercontent.com/alevnyacow/nzmt/refs/heads/main/logo.svg?sanitize=true'></img>
2
2
 
3
3
  [![npm version](https://badge.fury.io/js/@alevnyacow%2Fnzmt.svg)](https://badge.fury.io/js/@alevnyacow%2Fnzmt)
4
4
  ![NPM License](https://img.shields.io/npm/l/%40alevnyacow%2Fnzmt)
5
+ ![npm bundle size (scoped)](https://img.shields.io/bundlephobia/minzip/%40alevnyacow/nzmt)
5
6
 
6
7
  # About
7
8
 
@@ -60,13 +61,6 @@ There are also two building blocks shared across server and client: Entities and
60
61
 
61
62
  ## Setup
62
63
 
63
- 1. Install required dependencies:
64
- ```bash
65
- npm i inversify zod
66
- ```
67
- These are not peer dependencies, so you can use NZMT with only required features.
68
-
69
- 2. Initialize scaffolding:
70
64
  ```
71
65
  npx nzmt init prismaClientPath:@prisma/client
72
66
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alevnyacow/nzmt",
3
- "version": "0.7.2",
3
+ "version": "0.7.4",
4
4
  "description": "Next Zod Modules Toolkit",
5
5
  "repository": {
6
6
  "type": "git",
@@ -38,13 +38,13 @@
38
38
  "@rstest/core": "^0.9.0",
39
39
  "@types/node": "^24.12.0",
40
40
  "next": "^16.1.6",
41
+ "zod": "^4.3.6",
41
42
  "typescript": "^5.9.3"
42
43
  },
43
44
  "peerDependencies": {
44
- "next": ">=13 <17"
45
+ "next": ">=13 <17",
46
+ "zod": ">=4 <5",
47
+ "inversify": ">=7 <9"
45
48
  },
46
- "private": false,
47
- "dependencies": {
48
- "zod": "^4.3.6"
49
- }
49
+ "private": false
50
50
  }