Files
yt-dlp-webui/package.json
2022-01-27 18:11:13 +01:00

36 lines
962 B
JSON

{
"name": "youtube-dlp-web",
"version": "1.0.0",
"description": "A terrible webUI for yt-dlp, all-in-one solution.",
"scripts": {
"start": "node server.js",
"dev": "nodemon app.js",
"build": "parcel build ./frontend/index.html",
"fe": "parcel ./frontend/index.html --open",
"fetch": "./lib/fetch-yt-dlp.sh && mv yt-dlp ./lib"
},
"author": "marcobaobao",
"license": "ISC",
"dependencies": {
"@koa/cors": "^3.1.0",
"better-sqlite3": "^7.4.5",
"chart.js": "^3.6.0",
"koa": "^2.13.4",
"koa-static": "^5.0.0",
"ordered-binary": "^1.2.1",
"react": "^17.0.2",
"react-bootstrap": "2.0.2",
"react-bootstrap-icons": "^1.7.2",
"react-chartjs-2": "^4.0.0",
"react-dom": "^17.0.2",
"rxjs": "^7.4.0",
"socket.io": "^4.3.2",
"socket.io-client": "^4.3.2",
"sqlite": "^4.0.23",
"uuid": "^8.3.2"
},
"devDependencies": {
"parcel": "^2.0.1",
"typescript": "^4.5.2"
}
}