-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.19 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
49
50
51
52
53
54
55
56
57
58
{
"name": "gitdigg",
"version": "1.0.6",
"description": "Download specific files from git repositories without cloning",
"type": "module",
"bin": {
"gitdigg": "./bin/gitdigg.js"
},
"main": "./lib/cli.js",
"exports": {
".": "./lib/cli.js",
"./providers": "./providers/index.js",
"./downloader": "./downloader/index.js"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"bin",
"lib",
"providers",
"downloader",
"interactive",
"utils"
],
"scripts": {
"start": "node bin/gitdigg.js",
"test": "echo \"No tests yet\" && exit 0"
},
"keywords": [
"git",
"download",
"cli",
"github",
"gitlab",
"bitbucket",
"repository",
"partial-clone",
"sparse-checkout"
],
"author": "rishabnotfound",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/rishabnotfound/GitDigg.git"
},
"bugs": {
"url": "https://github.com/rishabnotfound/GitDigg/issues"
},
"homepage": "https://github.com/rishabnotfound/GitDigg#readme",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.0.0",
"minimatch": "^9.0.0",
"ora": "^8.0.0",
"yaml": "^2.4.0"
}
}