prisma-to-zod-v4 0.5.5

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/package.json ADDED
@@ -0,0 +1,87 @@
1
+ {
2
+ "name": "prisma-to-zod-v4",
3
+ "version": "0.5.5",
4
+ "description": "A Prisma generator that creates Zod schemas for all of your models",
5
+ "license": "MIT",
6
+ "author": "yassinrais",
7
+ "homepage": "https://github.com/yassinrais/prisma-to-zod-v4#readme",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/yassinrais/prisma-to-zod-v4.git"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/yassinrais/prisma-to-zod-v4/issues"
14
+ },
15
+ "main": "dist/index.js",
16
+ "typings": "dist/index.d.ts",
17
+ "bin": {
18
+ "prisma-to-zod-v4": "bin/cli.js"
19
+ },
20
+ "keywords": [
21
+ "zod",
22
+ "prisma",
23
+ "generator"
24
+ ],
25
+ "files": [
26
+ "bin",
27
+ "dist"
28
+ ],
29
+ "scripts": {
30
+ "build": "tsup src/index.ts --format cjs --dts --clean --out-dir dist --target node14",
31
+ "lint": "tsc --noEmit",
32
+ "prepublish": "tsup src/index.ts --format cjs --dts --clean --out-dir dist --target node14",
33
+ "test": "bun test --timeout 10000",
34
+ "postinstall": "lefthook install"
35
+ },
36
+ "prettier": {
37
+ "printWidth": 100,
38
+ "semi": false,
39
+ "singleQuote": true,
40
+ "tabWidth": 4,
41
+ "trailingComma": "es5",
42
+ "useTabs": true
43
+ },
44
+ "eslintConfig": {
45
+ "rules": {
46
+ "react-hooks/rules-of-hooks": "off"
47
+ }
48
+ },
49
+ "dependencies": {
50
+ "@prisma/generator-helper": "~7.2.0",
51
+ "parenthesis": "^3.1.8",
52
+ "ts-morph": "^27.0.2"
53
+ },
54
+ "devDependencies": {
55
+ "@biomejs/biome": "^2.3.10",
56
+ "@prisma/client": "~7.2.0",
57
+ "@prisma/sdk": "~4.0.0",
58
+ "@tsconfig/recommended": "^1.0.13",
59
+ "@types/bun": "^1.3.4",
60
+ "@types/fs-extra": "^11.0.4",
61
+ "@types/node": "^25.0.3",
62
+ "dts-cli": "^2.0.5",
63
+ "execa": "^9.6.1",
64
+ "fast-glob": "^3.3.3",
65
+ "fs-extra": "^11.3.2",
66
+ "lefthook": "^2.0.12",
67
+ "minimatch": "^10.1.1",
68
+ "prisma": "^7.2.0",
69
+ "tslib": "^2.8.1",
70
+ "tsup": "^8.5.1",
71
+ "typescript": "^5.9.3",
72
+ "zod": "^4.2.1"
73
+ },
74
+ "peerDependencies": {
75
+ "decimal.js": "^10.6.0",
76
+ "prisma": "^7.2.0",
77
+ "zod": "^4.0.0"
78
+ },
79
+ "peerDependenciesMeta": {
80
+ "decimal.js": {
81
+ "optional": true
82
+ }
83
+ },
84
+ "engines": {
85
+ "node": ">=14"
86
+ }
87
+ }