forked from broisnischal/prisma-type-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.56 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
{
"name": "prisma-enums-generator",
"version": "1.1.1",
"description": "Generates enums from your Prisma schema to typescript or graphql files.",
"main": "dist/bin.js",
"types": "./dist/bin.d.ts",
"module": "./dist/bin.mjs",
"exports": {
"require": "./dist/bin.js",
"import": "./dist/bin.mjs",
"default": "./dist/bin.mjs"
},
"private": false,
"files": [
"dist"
],
"bin": {
"prisma-enums-generator": "dist/bin.js"
},
"scripts": {
"build:clear": "rimraf dist",
"build": "npm run build:clear && npm run build:cjs && npm run build:esm && npm run build:dts",
"build:cjs": "esbuild src/**/*.ts --bundle --outdir=dist --platform=node --format=cjs",
"build:esm": "esbuild src/**/*.ts --bundle --out-extension:.js=.mjs --outdir=dist --platform=node --format=esm",
"build:dts": "tsc --declaration --emitDeclarationOnly",
"lint": "tsc"
},
"peerDependencies": {
"@prisma/client": ">=5.8.1 || >=6.1.0"
},
"devDependencies": {
"@prisma/client": "^6.1.0",
"@prisma/generator-helper": "^6.1.0",
"@types/node": "^22.10.3",
"changesets": "^1.0.2",
"esbuild": "^0.24.2",
"prisma": "^6.1.0",
"rimraf": "^6.0.1",
"typescript": "^5.7.2"
},
"keywords": [
"prisma",
"typescript",
"prisma-enums",
"enums",
"enum",
"graphql"
],
"author": {
"name": "Umakant Patil",
"url": "https://github.com/umakantp/prisma-enums-generator",
"email": "umakantpatil7@gmail.com"
},
"license": "MIT",
"homepage": "https://github.com/umakantp/prisma-enums-generator#readme"
}