-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 982 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": "vidzit-dl",
"version": "0.0.2",
"description": "A simple Reddit video downloader that allows you to download videos from Reddit using node js. Made using node-fetch and ffmpeg.wasm.",
"author": "Guuzzeji <gabe.business.code@outlook.com> (https://github.com/Guuzzeji)",
"license": "MIT",
"main": "index.js",
"engines": {
"node": ">=15"
},
"keywords": [
"reddit",
"download",
"video",
"ffmpeg"
],
"repository": {
"type": "git",
"url": "git://github.com/Guuzzeji/vidzit-dl.git"
},
"bugs": {
"url": "https://github.com/Guuzzeji/vidzit-dl/issues"
},
"homepage": "https://github.com/Guuzzeji/vidzit-dl#readme",
"scripts": {
"create-docs": "./node_modules/jsdoc-to-markdown/bin/cli.js ./src/index.js"
},
"dependencies": {
"@ffmpeg/core": "^0.11.0",
"@ffmpeg/ffmpeg": "^0.11.6",
"node-fetch": "^2.6.8",
"xml-js": "^1.6.11"
},
"devDependencies": {
"jsdoc-to-markdown": "^8.0.0"
}
}