-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.31 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
{
"name": "sql-visual-optimizer",
"private": true,
"version": "1.1.0",
"type": "module",
"description": "A browser-based SQL optimization laboratory that visualizes query plans, costs, indexes, and performance bottlenecks.",
"author": {
"name": "Faramarz Kowsari",
"url": "https://faramarzkowsari.github.io"
},
"license": "MIT",
"homepage": "https://faramarzkowsari.github.io/sql-visual-optimizer/",
"repository": {
"type": "git",
"url": "https://github.com/FaramarzKowsari/sql-visual-optimizer.git"
},
"bugs": {
"url": "https://github.com/FaramarzKowsari/sql-visual-optimizer/issues"
},
"keywords": [
"sql",
"query-optimization",
"execution-plan",
"postgresql",
"database-performance",
"data-engineering",
"typescript"
],
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"lucide-react": "^0.468.0",
"node-sql-parser": "^5.3.8",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sql-formatter": "^15.4.10"
},
"devDependencies": {
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.4",
"typescript": "~5.7.2",
"vite": "^6.0.5",
"vitest": "^2.1.8"
}
}