forked from adeyahya/prisma-typebox-generator
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.01 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.01 KB
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
{
"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 .",
"format": "bun run lint",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@prisma/generator-helper": "^6.13.0",
"@sinclair/typebox": "^0.34.3",
"prettier": "^3.6.2"
},
"devDependencies": {
"@biomejs/biome": "^2.1.3",
"@prisma/client": "6.13.0",
"@types/bun": "latest",
"esbuild": "^0.25.8",
"prisma": "6.13.0",
"typescript": "^5.9.2"
}
}