@alevnyacow/nzmt 0.7.2 → 0.7.3
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 -8
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
<img src='https://raw.githubusercontent.com/alevnyacow/nzmt/refs/heads/main/logo.svg?sanitize=true'></img>
|
|
2
2
|
|
|
3
3
|
[](https://badge.fury.io/js/@alevnyacow%2Fnzmt)
|
|
4
4
|

|
|
@@ -60,13 +60,6 @@ There are also two building blocks shared across server and client: Entities and
|
|
|
60
60
|
|
|
61
61
|
## Setup
|
|
62
62
|
|
|
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
63
|
```
|
|
71
64
|
npx nzmt init prismaClientPath:@prisma/client
|
|
72
65
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alevnyacow/nzmt",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.3",
|
|
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
|
}
|