-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
52 lines (52 loc) · 1.49 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
{
"name": "prisma-json-types-generator",
"version": "3.2.2",
"description": "Changes JsonValues to your custom typescript type",
"keywords": ["prisma", "prisma2", "generator", "json"],
"homepage": "https://arthur.run/prisma-json-types-generator",
"bugs": "https://github.com/arthurfiorette/prisma-json-types-generator/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/arthurfiorette/prisma-json-types-generator.git"
},
"funding": "https://github.com/arthurfiorette/prisma-json-types-generator?sponsor=1",
"license": "MIT",
"author": "Arthur Fiorette <[email protected]>",
"type": "commonjs",
"main": "./index.js",
"bin": {
"prisma-json-types-generator": "index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc -w",
"format": "biome format --write .",
"lint": "biome check .",
"lint:ci": "biome ci .",
"lint:fix": "biome check --write --unsafe .",
"start": "node dist/bin.js",
"test": "sh ./scripts/test.sh"
},
"dependencies": {
"@prisma/generator-helper": "6.2.1",
"tslib": "2.8.1"
},
"devDependencies": {
"@arthurfiorette/biomejs-config": "^1.0.6",
"@biomejs/biome": "1.9.4",
"@prisma/client": "6.2.1",
"@types/node": "22.10.5",
"prettier": "3.4.2",
"source-map-support": "0.5.21",
"tsd": "0.31.2",
"typescript": "5.7.3"
},
"peerDependencies": {
"prisma": "^5 || ^6",
"typescript": "^5.6.2"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=14.0"
}
}