-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.5 KB
/
package.json
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
{
"name": "m3u8downloader",
"description": "Yet Another M3U8 Downloader",
"author": "gonwan <gonwan@gmail.com>",
"license": "Apache-2.0",
"homepage": "https://github.com/gonwan/m3u8-downloader",
"private": true,
"version": "0.6.5",
"type": "module",
"main": "dist-electron/main.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"build0": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"testm3u8": "npx tsx src/lib/m3u8downloader.ts",
"start": "electron .",
"pack-win": "electron-builder --win",
"pack-mac": "electron-builder --mac",
"pack-linux": "electron-builder --linux",
"postinstall": "patch-package && electron-builder install-app-deps"
},
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@types/fluent-ffmpeg": "^2.1.24",
"electron-log": "^5.1.6",
"element-plus": "^2.7.6",
"fluent-ffmpeg": "^2.1.3",
"got": "^13.0.0",
"http-proxy-agent": "^7.0.2",
"https-proxy-agent": "^7.0.4",
"m3u8-parser": "^7.1.0",
"vue": "^3.4.32",
"vue-router": "^4.3.2"
},
"devDependencies": {
"@iconify-json/ri": "^1.1.20",
"@vitejs/plugin-vue": "^5.0.4",
"electron": "^28.3.2",
"electron-builder": "^24.13.3",
"patch-package": "^8.0.0",
"tsx": "^4.16.2",
"typescript": "^5.4.4",
"unocss": "^0.61.4",
"unplugin-auto-import": "^0.17.8",
"unplugin-vue-components": "^0.27.2",
"vite": "^5.2.12",
"vite-plugin-electron": "^0.28.6",
"vue-tsc": "^2.0.28"
}
}