-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.44 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.44 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
{
"name": "catyas",
"version": "1.0.0",
"description": "A modern database connection manager like Navicat",
"main": "dist-electron/main.js",
"type": "module",
"scripts": {
"dev": "vite",
"dev:web": "vite --mode web",
"dev:electron": "concurrently \"vite\" \"wait-on http://localhost:5173 && electron .\"",
"build": "tsc && vite build && electron-builder",
"build:web": "vite build --mode web",
"preview": "vite preview",
"electron:dev": "concurrently \"vite\" \"wait-on http://localhost:5173 && electron .\"",
"electron:build": "vite build && electron-builder",
"clean": "rm -rf dist dist-electron release"
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"@radix-ui/react-context-menu": "^2.2.1",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-menubar": "^1.1.16",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.2",
"better-sqlite3": "^11.3.0",
"i18next": "^25.5.2",
"i18next-browser-languagedetector": "^8.2.0",
"lucide-react": "^0.441.0",
"mariadb": "^3.3.1",
"monaco-editor": "^0.55.1",
"mongodb": "^6.8.0",
"mysql2": "^3.15.1",
"oracledb": "^6.5.1",
"pg": "^8.12.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^16.0.0",
"redis": "^4.7.0",
"tedious": "^18.3.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^22.5.4",
"@types/pg": "^8.15.5",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.20",
"concurrently": "^9.0.1",
"cross-env": "^10.1.0",
"electron": "^32.0.1",
"electron-builder": "^24.6.3",
"postcss": "^8.4.45",
"tailwindcss": "^3.4.10",
"typescript": "^5.5.4",
"vite": "^5.4.3",
"vite-plugin-electron": "^0.28.7",
"vite-plugin-electron-renderer": "^0.14.5",
"wait-on": "^8.0.1"
},
"build": {
"appId": "com.catyas.app",
"productName": "Catyas",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"dist-electron/**/*"
],
"mac": {
"category": "public.app-category.developer-tools"
},
"win": {
"target": "nsis"
},
"linux": {
"target": "AppImage"
}
}
}