-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 897 Bytes
/
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
{
"name": "prisma-query-formatter",
"version": "0.2.2",
"description": "Small utility for Prisma query formatting and param substitution in logs",
"license": "MIT",
"keywords": [
"database",
"logging",
"prisma",
"prisma-client",
"prisma-extension",
"query"
],
"author": "s1owjke",
"homepage": "https://github.com/s1owjke/prisma-query-formatter",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && tsc",
"build:watch": "rm -rf dist && tsc --watch",
"lint": "yarn biome check",
"lint:fix": "yarn biome check --write",
"typecheck": "tsc --noEmit",
"test": "jest"
},
"devDependencies": {
"@biomejs/biome": "1.9.2",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
}
}