-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.68 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.68 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
102
{
"name": "flucto",
"productName": "Flucto",
"private": true,
"version": "1.6.0",
"description": "Flucto - Creator-first media downloader for YouTube, Instagram, X, Reddit, and Bilibili.",
"keywords": [
"electron",
"downloader",
"youtube-downloader",
"instagram-downloader",
"batch-downloader",
"yt-dlp",
"media",
"flucto"
],
"type": "module",
"main": "./dist-electron/main/index.js",
"author": "Flucto Team",
"scripts": {
"dev": "npm run build:electron && concurrently \"npm run dev:vite\" \"npm run dev:electron\"",
"dev:vite": "vite",
"dev:electron": "wait-on http://localhost:5173 && cross-env NODE_ENV=development electron . --no-sandbox --disable-vulkan",
"dev:electron:x11": "wait-on http://localhost:5173 && cross-env NODE_ENV=development ELECTRON_OZONE_PLATFORM_HINT=x11 electron . --no-sandbox --ozone-platform=x11 --disable-vulkan",
"build": "npm run build:renderer && npm run build:electron",
"build:renderer": "vite build",
"build:electron": "tsc -p tsconfig.electron.json",
"dist": "npm run build && electron-builder",
"dist:linux": "npm run build && electron-builder --linux",
"dist:linux:appimage": "npm run build && electron-builder --linux AppImage",
"dist:linux:deb": "npm run build && electron-builder --linux deb",
"dist:linux:rpm": "npm run build && electron-builder --linux rpm",
"dist:mac": "npm run build && electron-builder --mac",
"dist:mac:dmg": "npm run build && electron-builder --mac dmg",
"dist:mac:zip": "npm run build && electron-builder --mac zip",
"dist:win": "npm run build && electron-builder --win",
"dist:win:nsis": "npm run build && electron-builder --win nsis",
"dist:win:portable": "npm run build && electron-builder --win portable",
"dist:all": "npm run build && electron-builder -mwl",
"pack": "npm run dist",
"pack:linux": "npm run dist:linux",
"pack:mac": "npm run dist:mac",
"pack:win": "npm run dist:win",
"clean": "rimraf dist dist-electron release",
"rebuild": "npm run clean && npm run build",
"supabase:smoke": "node scripts/supabase-smoke-check.mjs",
"postinstall": "node scripts/setup-binaries.mjs",
"lint": "eslint .",
"preview": "vite preview"
},
"dependencies": {
"@supabase/supabase-js": "^2.98.0",
"@tailwindcss/postcss": "^4.1.17",
"adm-zip": "^0.5.16",
"axios": "^1.13.2",
"clsx": "^2.1.1",
"dotenv": "^17.2.3",
"electron-store": "^11.0.2",
"electron-updater": "^6.8.3",
"execa": "^9.6.1",
"fix-path": "^5.0.0",
"framer-motion": "^12.23.25",
"lucide-react": "^0.555.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-hook-form": "^7.67.0",
"react-router-dom": "^7.13.1",
"tailwind-merge": "^3.4.0",
"winston": "^3.18.3",
"yt-dlp-exec": "^1.0.2",
"zod": "^4.1.13"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^24.10.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@types/winston": "^2.4.4",
"@vitejs/plugin-react": "^5.1.1",
"autoprefixer": "^10.4.22",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"electron": "^40.6.1",
"electron-builder": "^26.0.12",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"postcss": "^8.5.6",
"semantic-release": "^24.2.1",
"tailwindcss": "^4.2.4",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.4",
"vite": "npm:rolldown-vite@7.2.5",
"wait-on": "^9.0.3"
},
"overrides": {
"vite": "npm:rolldown-vite@7.2.5"
}
}