-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.61 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
68
69
70
71
72
73
{
"name": "@adib23704/queryguard",
"version": "1.0.3",
"description": "Zero-config PostgreSQL wire-protocol proxy, N+1 query cascade detector, and automated index advisor",
"type": "module",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"author": "Adib23704",
"keywords": [
"postgresql",
"postgres",
"database",
"performance",
"n-plus-one",
"n1",
"index-advisor",
"sql",
"proxy",
"wire-protocol",
"prisma",
"drizzle-orm",
"typeorm",
"kysely",
"explain",
"ci-cd",
"github-action"
],
"repository": {
"type": "git",
"url": "https://github.com/Adib23704/QueryGuard.git"
},
"bugs": {
"url": "https://github.com/Adib23704/QueryGuard/issues"
},
"homepage": "https://github.com/Adib23704/QueryGuard#readme",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"queryguard": "./dist/bin/queryguard.js"
},
"files": [
"dist",
"bin",
"README.md"
],
"scripts": {
"build": "tsup && tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check .",
"format": "biome format --write ."
},
"dependencies": {
"cli-table3": "^0.6.5",
"commander": "^15.0.0",
"cross-spawn": "^7.0.6",
"pg": "^8.23.0",
"pg-protocol": "^1.16.0",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@biomejs/biome": "^2.5.11",
"@types/cross-spawn": "^6.0.6",
"@types/node": "^26.4.0",
"@types/pg": "^8.23.1",
"tsup": "^8.5.1",
"typescript": "^7.0.2",
"vitest": "^4.1.11"
}
}