-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.98 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 2.98 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "pgexplain",
"version": "0.4.0",
"description": "Turn PostgreSQL EXPLAIN (ANALYZE) output into human-readable reports and detect plan anti-patterns — every finding tells you exactly how to fix it.",
"keywords": [
"postgres",
"postgresql",
"explain",
"explain-analyze",
"query-plan",
"performance",
"advisor",
"linter",
"cli",
"database"
],
"license": "MIT",
"author": "",
"repository": {
"type": "git",
"url": "git+https://github.com/losefor/pg-explain"
},
"bugs": {
"url": "https://github.com/losefor/pg-explain/issues"
},
"homepage": "https://github.com/losefor/pg-explain#readme",
"type": "module",
"engines": {
"node": ">=22"
},
"bin": {
"pg-explain": "./dist/cli.js",
"pgexplain": "./dist/cli.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"dist/web",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"sideEffects": false,
"scripts": {
"build": "tsup",
"build:web": "pnpm --filter @pgexplain/web run build",
"build:all": "pnpm run build && pnpm run build:web",
"dev": "tsup --watch",
"dev:web": "pnpm --filter @pgexplain/web run dev",
"dev:studio": "pnpm run build && concurrently -n core,api,web -c blue,magenta,green \"tsup --watch\" \"node --watch dist/cli.js studio --no-open\" \"pnpm run dev:web\"",
"studio": "pnpm run build:all && node dist/cli.js studio --open",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"test": "vitest run --project unit --project web",
"test:watch": "vitest",
"test:e2e": "pnpm run build && vitest run --project e2e",
"test:integration": "vitest run --project integration",
"test:cov": "vitest run --project unit --coverage",
"smoke": "node dist/cli.js --version",
"prepublishOnly": "pnpm run build:all && pnpm run typecheck && pnpm run lint && pnpm run test",
"release": "changeset publish",
"version": "changeset version",
"changeset": "changeset"
},
"dependencies": {
"@hono/node-server": "^1.13.7",
"better-sqlite3": "^11.8.1",
"citty": "^0.2.2",
"hono": "^4.6.14",
"picocolors": "^1.1.1",
"zod": "^4.4.3"
},
"optionalDependencies": {
"@napi-rs/keyring": "^1.3.0",
"pg": "^8.22.0"
},
"devDependencies": {
"@biomejs/biome": "^2.5.1",
"@changesets/cli": "^2.31.0",
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.10.0",
"@types/pg": "^8.15.0",
"@vitest/coverage-v8": "^4.1.9",
"concurrently": "^10.0.3",
"execa": "^9.5.0",
"testcontainers": "^12.0.4",
"tsup": "^8.5.1",
"typescript": "^6.0.3",
"vitest": "^4.1.9"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"packageManager": "pnpm@11.9.0"
}