-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.2 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 3.2 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
{
"name": "fordb",
"version": "0.10.0",
"description": "Lean, keyboard-first, multi-engine database client",
"license": "MIT",
"private": true,
"main": "out/main/index.js",
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"dev": "electron-vite dev",
"dev:sandboxless": "ELECTRON_DISABLE_SANDBOX=1 electron-vite dev",
"build": "pnpm typecheck && electron-vite build",
"website:dev": "pnpm --filter @fordb/website dev",
"website:build": "pnpm --filter @fordb/website build",
"package": "pnpm build && electron-builder --linux",
"package:win": "pnpm build && electron-builder --win",
"package:all": "pnpm build && electron-builder -lw",
"typecheck": "tsc --noEmit -p tsconfig.node.json && tsc --noEmit -p tsconfig.web.json",
"lint": "eslint . && prettier --check .",
"format": "prettier --write .",
"test": "vitest run",
"db:up": "docker compose -f docker-compose.test.yml up -d --wait",
"db:down": "docker compose -f docker-compose.test.yml down -v",
"test:contract": "vitest run -c vitest.contract.config.ts --passWithNoTests",
"e2e": "playwright test"
},
"devDependencies": {
"@iconify-json/lucide": "^1.2.116",
"@playwright/test": "^1.61.1",
"@svgr/core": "^8.1.0",
"@svgr/plugin-jsx": "^8.1.0",
"@tailwindcss/vite": "^4.3.2",
"@types/node": "^22.20.1",
"@types/pg": "^8.20.0",
"@types/pg-cursor": "^2.7.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/ssh2": "^1.15.5",
"@vitejs/plugin-react": "^5",
"electron": "^39.8.10",
"electron-builder": "^26.15.3",
"electron-vite": "^5.0.0",
"eslint": "^9.39.4",
"prettier": "^3.9.4",
"tailwindcss": "^4.3.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.63.0",
"unplugin-icons": "^23.0.1",
"vite": "^7",
"vitest": "^3.2.7"
},
"dependencies": {
"@codemirror/autocomplete": "^6.20.3",
"@codemirror/commands": "^6.10.4",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-sql": "^6.10.0",
"@codemirror/language": "^6.12.4",
"@codemirror/state": "^6.7.1",
"@codemirror/view": "^6.43.6",
"@glideapps/glide-data-grid": "^6.0.3",
"@lezer/highlight": "^1.2.3",
"@libsql/client": "^0.17.4",
"@modelcontextprotocol/sdk": "^1.29.0",
"@tanstack/react-query": "^5.101.2",
"@uiw/codemirror-themes-all": "^4.25.11",
"@uiw/react-json-view": "2.0.0-alpha.43",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"codemirror": "^6.0.2",
"electron-updater": "^6.8.9",
"json5": "^2.2.3",
"mongodb": "^7.5.0",
"pg": "^8.22.0",
"pg-cursor": "^2.21.0",
"radix-ui": "^1.6.7",
"react": "^19.2.7",
"react-arborist": "^3.13.2",
"react-dom": "^19.2.7",
"react-resizable-panels": "^3.0.6",
"sql-formatter": "^15.8.2",
"ssh2": "^1.17.0",
"tailwind-merge": "^3.6.0",
"tunnel-ssh": "^5.2.0",
"uplot": "^1.6.32",
"zod": "^4.4.3",
"zustand": "^5.0.14"
},
"author": {
"name": "forinda",
"email": "forinda82@gmail.com"
},
"homepage": "https://github.com/forinda/fordb",
"repository": {
"type": "git",
"url": "https://github.com/forinda/fordb.git"
}
}