-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.36 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
53
54
55
{
"name": "prisma-nitro-patcher",
"version": "0.0.11",
"description": "Applies a patch on the prisma client to improve the performance of extensions",
"files": [ "dist" ],
"bin": {
"prisma-nitro-patcher": "dist/index.js",
"prisma-nitro-patcher-cli": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"test": "jest",
"coverage": "jest --coverage",
"prettier": "prettier -w src/**/*.ts",
"lint": "eslint src/**/*.ts",
"prepare": "husky"
},
"keywords": [
"prisma",
"extend",
"extension",
"speed",
"patch"
],
"author": "Tamás Török",
"license": "ISC",
"homepage": "https://github.com/HRM/prisma-nitro-patcher#readme",
"dependencies": {
"@prisma/generator-helper": "5.19.1",
"@prisma/internals": "5.19.1",
"tslib": "^2.7.0"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/eslint__js": "^8.42.3",
"@types/jest": "29.5.12",
"@types/node": "18.18.9",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"jest": "29.7.0",
"prettier": "3.3.3",
"prisma": "5.19.1",
"ts-jest": "29.2.5",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0",
"husky":"9.1.5"
},
"repository": {"url": "https://github.com/HRM/prisma-nitro-patcher"},
"lint-staged": {
"src/**/*.ts": [
"eslint --cache --fix",
"prettier --write"
]
}
}