-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 858 Bytes
/
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
{
"name": "prisma-enum-validator-generator",
"version": "1.1.2",
"description": "This will generate utility functions to validate enums in the Prisma schema file.",
"main": "./dist/index.js",
"bin": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"prepublish": "tsc",
"scripts": {
"build": "tsc",
"test": "test"
},
"keywords": [
"Enum",
"Typescript",
"Prisma",
"Generator"
],
"author": "Ofir Stiber Voronzov",
"repository": {
"type": "git",
"url": "https://github.com/ShtibsDev/prisma-enum-validator-generator"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^20.10.6",
"prisma": "^5.7.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@prisma/client": "^5.7.1",
"@prisma/generator-helper": "^5.7.1",
"dotenv": "^16.3.1"
}
}