-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.24 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.24 KB
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
41
42
43
44
45
46
47
48
{
"name": "google-drive-download",
"version": "1.0.0",
"description": "Download Google Drive files & folders",
"type": "module",
"main": "gdrive-dl.js",
"bin": {
"gdrive-dl": "./gdrive-dl.js"
},
"scripts": {
"start": "node gdrive-dl.js",
"test": "echo \"Error: no test specified\" && exit 1",
"example:file": "node gdrive-dl.js https://drive.google.com/file/d/1JlWOGLJonslq8-ECfPNtLFmJDF2JHjMF/view",
"example:folder": "node gdrive-dl.js https://drive.google.com/drive/folders/1Q38UWD0V0YuwT0rcmDSbxolCZVoXOqXM",
"help": "node gdrive-dl.js --help"
},
"repository": {
"type": "git",
"url": "git+https://github.com/costinEEST/google-drive-download.git"
},
"keywords": [
"google-drive",
"download",
"gdrive",
"google-drive-downloader",
"drive-api",
"file-download",
"folder-download",
"cli",
"command-line",
"bulk-download"
],
"author": "costinEEST",
"license": "MIT",
"bugs": {
"url": "https://github.com/costinEEST/google-drive-download/issues"
},
"homepage": "https://github.com/costinEEST/google-drive-download#readme",
"engines": {
"node": ">=18.3.0"
},
"preferGlobal": true,
"files": [
"gdrive-dl.js",
"lib/",
"README.md"
]
}