-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.1 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
{
"name": "queryden",
"version": "1.0.23",
"type": "module",
"description": "A modern multi-database manager built with Tauri, React, and TypeScript",
"repository": {
"type": "git",
"url": "https://github.com/openidle-dev/queryden"
},
"bugs": {
"url": "https://github.com/openidle-dev/queryden/issues"
},
"homepage": "https://github.com/openidle-dev/queryden#readme",
"license": "MIT",
"keywords": [
"database",
"sql",
"postgresql",
"mysql",
"sqlite",
"tauri",
"database-manager"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"tauri": "tauri",
"build:linux": "tauri build",
"build:windows": "command -v sccache >/dev/null 2>&1 && export RUSTC_WRAPPER=sccache; tauri build --target x86_64-pc-windows-msvc --runner cargo-xwin"
},
"dependencies": {
"@glideapps/glide-data-grid": "^6.0.0",
"@monaco-editor/react": "^4.7.0",
"@radix-ui/react-select": "^2.2.6",
"@tanstack/react-query": "^5.0.0",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2",
"@tauri-apps/plugin-fs": "^2.5.1",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-process": "^2",
"@tauri-apps/plugin-sql": "^2",
"@tauri-apps/plugin-updater": "^2",
"@xyflow/react": "^12.10.2",
"clsx": "^2.1.1",
"dagre": "^0.8.5",
"lucide-react": "^0.469.0",
"monaco-editor": "^0.55.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.6.0",
"react-markdown": "^10.1.0",
"react-resizable-panels": "^2.1.0",
"remark-gfm": "^4.0.1",
"sql-formatter": "^15.7.3",
"tailwind-merge": "^2.5.0",
"zustand": "^5.0.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.0.0",
"@tauri-apps/cli": "^2",
"@types/dagre": "^0.7.54",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.0",
"tailwindcss": "^4.0.0",
"typescript": "~5.8.3",
"vite": "^6.0.0",
"vitest": "^3.2.4"
},
"overrides": {
"dompurify": "^3.4.3"
}
}