forked from adeyahya/prisma-typebox-generator
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.15 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.15 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
44
45
46
47
48
49
50
{
"name": "@hyoretsu/prismabox",
"version": "1.2.2",
"license": "MIT",
"description": "Typebox generator for prisma schema",
"author": {
"name": "Ade Yahya Prasetyo, m1212e, Aran Leite"
},
"keywords": [
"prisma2",
"prisma",
"prisma-generator",
"prisma-schema",
"code-generation",
"typebox",
"typebox-generator",
"prismabox"
],
"homepage": "https://github.com/hyoretsu/prismabox",
"repository": {
"url": "git+https://github.com/hyoretsu/prismabox.git"
},
"bin": {
"prismabox": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "bun run build && bunx prisma generate",
"build": "bun run typecheck && bun build.ts",
"lint": "biome check --write .",
"format": "bun run lint",
"prepublishOnly": "bun run build",
"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"
}
}