-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.62 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.62 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
{
"name": "dbx",
"private": true,
"version": "0.5.5",
"type": "module",
"scripts": {
"dev": "vite",
"dev:tauri": "tauri dev",
"dev:web": "vite --port 5173 --mode web",
"dev:backend": "RUST_LOG=${RUST_LOG:-info} DBX_PASSWORD=${DBX_PASSWORD:-test} cargo watch -x 'run -p dbx-web'",
"build": "vue-tsc --noEmit && vite build",
"check": "oxfmt --check \"src/**/*.{ts,vue}\" && pnpm lint && vue-tsc --noEmit && pnpm test",
"lint": "oxlint --vue-plugin src",
"fmt": "oxfmt \"src/**/*.{ts,vue}\"",
"test": "tsx --test tests/*.test.ts",
"preview": "vite preview",
"tauri": "tauri",
"prepare": "husky"
},
"dependencies": {
"@babel/runtime": "^7.29.2",
"@codemirror/autocomplete": "^6.20.1",
"@codemirror/commands": "^6.10.3",
"@codemirror/lang-sql": "^6.10.0",
"@codemirror/language": "^6.12.3",
"@codemirror/state": "^6.6.0",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.41.1",
"@tauri-apps/api": "^2.11.0",
"@tauri-apps/plugin-dialog": "^2.7.1",
"@tauri-apps/plugin-fs": "^2.5.1",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-shell": "^2.3.5",
"@tauri-apps/plugin-updater": "^2.10.1",
"@uiw/codemirror-theme-duotone": "^4.25.9",
"@uiw/codemirror-theme-material": "^4.25.9",
"@uiw/codemirror-theme-nord": "^4.25.9",
"@uiw/codemirror-theme-okaidia": "^4.25.9",
"@uiw/codemirror-theme-vscode": "^4.25.9",
"@uiw/codemirror-theme-xcode": "^4.25.9",
"@vueuse/core": "^14.2.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"codemirror": "^6.0.2",
"echarts": "^6.0.0",
"lucide-vue-next": "^1.0.0",
"marked": "^18.0.3",
"pinia": "^3.0.0",
"reka-ui": "^2.9.6",
"shadcn-vue": "^2.6.2",
"splitpanes": "^4.0.4",
"sql-formatter": "^15.7.3",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0",
"vue": "^3.5.0",
"vue-echarts": "^8.0.1",
"vue-i18n": "^11.4.0",
"vue-virtual-scroller": "^3.0.1"
},
"devDependencies": {
"@oxfmt/binding-darwin-arm64": "0.47.0",
"@oxlint/binding-darwin-arm64": "1.62.0",
"@tailwindcss/vite": "^4.2.4",
"@tauri-apps/cli": "^2.11.0",
"@types/node": "^25.6.0",
"@types/splitpanes": "^2.2.6",
"@vitejs/plugin-vue": "^5.2.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"oxfmt": "0.47.0",
"oxlint": "^1.62.0",
"tailwindcss": "^4.2.4",
"tsx": "^4.21.0",
"typescript": "~5.6.0",
"vite": "^6.0.0",
"vue-tsc": "^2.2.0"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"lint-staged": {
"src/**/*.{ts,vue}": "oxfmt"
}
}