-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
47 lines (47 loc) · 1.3 KB
/
package.json
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
{
"name": "prisma-zod-generator",
"version": "0.8.13",
"description": "Prisma 2+ generator to emit Zod schemas from your Prisma schema",
"repository": "https://github.com/omar-dulaimi/prisma-zod-generator",
"bin": {
"prisma-zod-generator": "lib/generator.js"
},
"scripts": {
"gen-example": "tsc && npx prisma generate",
"check-uncommitted": "git diff-index --quiet HEAD --",
"package:publish": "npm update && npm run check-uncommitted && ./package.sh && cd package && npm publish"
},
"author": {
"name": "Omar Dulaimi",
"url": "https://github.com/omar-dulaimi"
},
"keywords": [
"prisma",
"prisma-client",
"prisma-schema",
"zod",
"prisma-generator",
"prisma-zod-generator"
],
"license": "MIT",
"dependencies": {
"@prisma/client": "^4.8.0",
"@prisma/generator-helper": "^4.8.0",
"@prisma/internals": "^4.8.0",
"prettier": "^2.8.1",
"tslib": "^2.4.1",
"zod": "^3.20.2"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@types/prettier": "^2.7.2",
"prisma": "^4.8.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"bugs": {
"url": "https://github.com/omar-dulaimi/prisma-zod-generator/issues"
},
"homepage": "https://github.com/omar-dulaimi/prisma-zod-generator#readme",
"private": true
}