-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 961 Bytes
/
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
{
"name": "yt-viewer",
"version": "1.1.0",
"description": "YTViewer",
"build": {
"productName": "YTViewer"
},
"main": "src/index.js",
"scripts": {
"build": "webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch"
},
"keywords": [
"Youtube",
"Viewer"
],
"author": "Thomas Tschurtschenthaler",
"dependencies": {
"@distube/ytdl-core": "4.13.7",
"ytdl-core": "4.11.5",
"hls.js": "^1.5.2-0.canary.9888",
"querystring-es3": "^0.2.1",
"stream-browserify": "^3.0.0",
"timers-browserify": "^2.0.12",
"util": "^0.12.5",
"vm-browserify": "^1.1.2"
},
"devDependencies": {
"@webpack-cli/generators": "^3.0.7",
"copy-webpack-plugin": "^11.0.0",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-concat-files-plugin": "^0.5.2"
}
}