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