-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.25 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
{
"name": "qdm",
"version": "1.0.3",
"description": "Quantum Download Manager - A modern, cross-platform download manager. Inspired by XDM and IDM.",
"author": {
"name": "Parveen Bhadoo",
"email": "parveenbhadoo@gmail.com"
},
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"tauri:build:win": "node scripts/fetch-yt-dlp.js && tauri build --target x86_64-pc-windows-msvc",
"tauri:build:linux": "node scripts/fetch-yt-dlp.js && tauri build --target x86_64-unknown-linux-gnu",
"tauri:build:mac": "node scripts/fetch-yt-dlp.js && tauri build --target aarch64-apple-darwin",
"fetch-yt-dlp": "node scripts/fetch-yt-dlp.js"
},
"dependencies": {
"@tauri-apps/api": "^2.10.1"
},
"devDependencies": {
"@tauri-apps/cli": "^2.10.1",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.16",
"lucide-react": "^0.303.0",
"postcss": "^8.4.32",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.4.0",
"typescript": "^5.3.3",
"vite": "^5.0.10",
"zustand": "^4.4.7"
}
}