forked from adeyahya/prisma-typebox-generator
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
42 lines (42 loc) · 1005 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
39
40
41
42
{
"name": "prismabox",
"version": "2.2.0",
"license": "MIT",
"description": "Typebox generator for prisma schema",
"author": {
"name": "Ade Yahya Prasetyo, m1212e"
},
"keywords": [
"prisma2",
"prisma",
"prisma-generator",
"prisma-schema",
"code-generation",
"typebox",
"typebox-generator",
"prismabox"
],
"homepage": "https://github.com/m1212e/prismabox",
"repository": {
"url": "https://github.com/m1212e/prismabox.git"
},
"scripts": {
"dev": "bun run build && bunx prisma generate",
"build": "bun run typecheck && bun build.ts",
"lint": "biome check --write .",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@prisma/generator-helper": "^5.19.1",
"@sinclair/typebox": "^0.33.11",
"prettier": "^3.3.3"
},
"devDependencies": {
"@biomejs/biome": "^1.9.1",
"@prisma/client": "5.19.1",
"@types/bun": "latest",
"esbuild": "^0.23.1",
"prisma": "5.19.1",
"typescript": "^5.6.2"
}
}