-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 892 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 892 Bytes
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
{
"name": "media-bridge-extension",
"version": "1.11.0",
"type": "module",
"description": "Download videos (HLS/DASH/direct) and upload to Google Drive",
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"type-check": "tsc --noEmit"
},
"keywords": [
"browser-extension",
"video-downloader",
"hls",
"dash",
"google-drive"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/chrome": "^0.0.268",
"@types/m3u8-parser": "^7.2.5",
"@types/node": "^20.19.24",
"@types/uuid": "^11.0.0",
"typescript": "^5.5.4",
"vite": "^7.2.2",
"vite-plugin-static-copy": "^3.1.4"
},
"dependencies": {
"@ffmpeg/ffmpeg": "^0.12.15",
"@ffmpeg/util": "^0.12.2",
"idb": "^8.0.3",
"m3u8-parser": "^7.2.0",
"mpd-parser": "^1.3.1",
"url-toolkit": "^2.2.5",
"uuid": "^13.0.0"
}
}