-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.44 KB
/
package.json
File metadata and controls
74 lines (74 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
{
"name": "duckbake",
"private": true,
"version": "0.0.42",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"dev:website": "cd website && bun dev",
"deploy:website": "cd website && fly deploy",
"release": "bun scripts/release.ts",
"release:appstore": "bun scripts/release.ts --appstore",
"release:major": "bun scripts/release.ts major",
"release:minor": "bun scripts/release.ts minor",
"build:release": "tauri build",
"release:mac": "tauri build --target universal-apple-darwin",
"release:mac-arm": "tauri build --target aarch64-apple-darwin",
"release:mac-intel": "tauri build --target x86_64-apple-darwin",
"build:appstore": "./scripts/build-appstore.sh",
"screenshots": "bun scripts/screenshots.ts",
"screenshots:manual": "./scripts/screenshots-manual.sh"
},
"dependencies": {
"@catppuccin/codemirror": "^1.0.1",
"@codemirror/lang-sql": "^6",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-dialog": "^1",
"@radix-ui/react-dropdown-menu": "^2",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-scroll-area": "^1",
"@radix-ui/react-select": "^2",
"@radix-ui/react-separator": "^1",
"@radix-ui/react-slot": "^1",
"@radix-ui/react-tabs": "^1",
"@radix-ui/react-toast": "^1",
"@radix-ui/react-tooltip": "^1",
"@tailwindcss/typography": "^0.5.19",
"@tanstack/react-query": "^5",
"@tanstack/react-table": "^8",
"@tanstack/react-virtual": "^3",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2",
"@tauri-apps/plugin-fs": "^2",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-updater": "^2.9.0",
"@uiw/codemirror-theme-vscode": "^4.25.4",
"@uiw/react-codemirror": "^4",
"class-variance-authority": "^0.7",
"clsx": "^2",
"lucide-react": "^0.468",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^7",
"recharts": "^3.6.0",
"remark-gfm": "^4.0.1",
"shiki": "^3.21.0",
"tailwind-merge": "^2",
"zustand": "^5"
},
"devDependencies": {
"@tailwindcss/vite": "^4",
"@tauri-apps/cli": "^2",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"tailwindcss": "^4",
"typescript": "~5.8.3",
"vite": "^7.0.4"
}
}