-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.19 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
{
"name": "ufc-ripper",
"version": "3.1.0",
"description": "Video downloader tool for UFC Fight Pass",
"author": "Mahesh Bandara Wijerathna (m4heshd) <[email protected]>",
"homepage": "https://github.com/m4heshd/ufc-ripper",
"repository": {
"type": "git",
"url": "git://github.com/m4heshd/ufc-ripper.git"
},
"license": "MIT",
"private": true,
"scripts": {
"dev:backend": "cargo run --color=always --package ufc-ripper",
"dev": "vite",
"test": "npm run build && cargo test-backend",
"build:backend:win32": "npm run build && cargo build-win32",
"build:backend:linux": "npm run build && cargo build-linux",
"build": "vite build",
"docker:up": "docker compose up --detach --build",
"docker:down": "docker compose down --volumes",
"pack:win32": "cargo pack-win32",
"pack:linux": "cargo pack-linux"
},
"dependencies": {
"beercss": "2.2.11",
"hls.js": "1.5.8",
"material-dynamic-colors": "0.0.10",
"pinia": "2.1.7",
"plyr": "3.7.8",
"socket.io-client": "4.5.2",
"vue": "3.4.15",
"vue-toastification": "2.0.0-rc.5"
},
"devDependencies": {
"@vitejs/plugin-vue": "5.0.3",
"sass": "1.69.4",
"vite": "5.0.12"
}
}