prisma-query-formatter
Version:
Small utility for Prisma query formatting and param substitution in logs
38 lines (37 loc) • 897 B
JSON
{
"name": "prisma-query-formatter",
"version": "1.0.1",
"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"
}
}