forked from arthurfiorette/prisma-json-types-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.77 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.77 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "prisma-json-types-generator",
"version": "4.1.1",
"description": "Changes JsonValues to your custom typescript type",
"keywords": [
"prisma",
"types",
"prisma2",
"generator",
"json",
"typesafe",
"typescript"
],
"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 <npm@arthur.place>",
"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 .",
"prepare": "husky",
"start": "node dist/bin.js",
"test-e2e": "sh ./scripts/test.sh",
"test-unit": "pnpm tsx --test test/unit/**/*.test.ts"
},
"dependencies": {
"@prisma/generator-helper": "^7.2.0",
"semver": "^7.7.3",
"try": "^1.0.3",
"tslib": "^2.8.1"
},
"devDependencies": {
"@arthurfiorette/biomejs-config": "^2.0.1",
"@biomejs/biome": "^2.3.8",
"@prisma/dmmf": "^7.1.0",
"@prisma/generator": "^7.2.0",
"@types/node": "^24.10.4",
"@types/semver": "^7.7.1",
"husky": "^9.1.7",
"prisma": "^7.2.0",
"tsd": "^0.33.0",
"tsx": "^4.21.0"
},
"peerDependencies": {
"@prisma/client": "^7.2.0",
"prisma": "^7.2.0",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@10.27.0",
"engines": {
"node": ">=14.0"
}
}