-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 1.9 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
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
87
88
{
"name": "prisma-autozod",
"version": "2.0.0",
"description": "A Prisma generator that creates Zod schemas for all of your models",
"license": "MIT",
"author": "Anand Kumar Parhi",
"homepage": "https://github.com/akparhi/prisma-autozod",
"repository": {
"type": "git",
"url": "https://github.com/akparhi/prisma-autozod"
},
"bugs": {
"url": "https://github.com/akparhi/prisma-autozod/issues"
},
"main": "dist/index.js",
"module": "dist/prisma-autozod.esm.js",
"typings": "dist/index.d.ts",
"bin": {
"prisma-autozod": "bin/cli.js"
},
"keywords": [
"zod",
"prisma",
"generator"
],
"files": [
"bin",
"dist"
],
"scripts": {
"build": "dts build --target node --format cjs --rollupTypes",
"lint": "tsc --noEmit && dts lint src --ignore-pattern src/test/functional",
"prepare": "husky install",
"prepublish": "dts build --target node --format cjs --rollupTypes",
"start": "dts watch",
"test": "dts test --maxWorkers=4 --verbose"
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "es5",
"useTabs": true
},
"eslintConfig": {
"rules": {
"react-hooks/rules-of-hooks": "off"
}
},
"jest": {
"testEnvironment": "node"
},
"dependencies": {
"@prisma/generator-helper": "^5.2.0",
"execa": "5.1.1",
"parenthesis": "^3.1.8",
"ts-morph": "^19.0.0"
},
"devDependencies": {
"@prisma/client": "^5.2.0",
"@prisma/sdk": "^4.0.0",
"@tsconfig/recommended": "^1.0.2",
"@types/fs-extra": "^11.0.1",
"dts-cli": "^2.0.3",
"fast-glob": "^3.3.1",
"fs-extra": "^11.1.1",
"husky": "^8.0.3",
"jest-mock-extended": "^3.0.5",
"prisma": "^5.2.0",
"tslib": "^2.6.2",
"typescript": "^5.2.0",
"zod": "^3.19.1"
},
"peerDependencies": {
"decimal.js": "^10.0.0",
"prisma": "^5.0.0",
"zod": "^3.0.0"
},
"peerDependenciesMeta": {
"decimal.js": {
"optional": true
}
},
"engines": {
"node": ">=14"
}
}