-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 2.65 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "ghex",
"longName": "GithubExtractorCLI",
"version": "0.0.27",
"description": "Github Extractor cli: List or download a whole repo or specific files and folders very quickly",
"summary": "List and download repositories or individual files quickly",
"tagline": "Better than clone depth=1",
"docsUrl": "https://bn-l.github.io/GithubExtractor/cli/",
"main": "./dist/source/index.mjs",
"bin": {
"ghex": "dist/source/index.mjs"
},
"author": "bn-l",
"repository": {
"type": "git",
"url": "git+https://github.com/bn-l/GithubExtractorCLI.git"
},
"files": [
"dist/**/*"
],
"type": "module",
"scripts": {
"start:dev": "ts-node",
"test": "vitest --run --coverage --exclude \"**/*online*\"",
"test:single": "vitest --bail=1",
"test:online": "vitest online --run --bail=1",
"test:all": "vitest --run --coverage",
"lint": "npx eslint --ext .mts",
"build": "tsc --build --incremental",
"coverageBadge": "tsx scripts/coverage-badge.ts",
"build:clean": "rimraf ./dist && tsc --build",
"publish-ci": "tsx scripts/publish-ci.ts",
"buildReadme": "tsx scripts/readme-helper.mts",
"pub": "npx bumpp"
},
"keywords": [
"cli",
"Github",
"templates",
"tar",
"tarball",
"gzip",
"fzf",
"download",
"extract",
"extractor",
"github-extractor",
"github_extractor",
"repo",
"repository",
"files",
"folders",
"list",
"quick",
"fast",
"fastest",
"quickly",
"specific",
"whole",
"git",
"clone",
"depth",
"shallow"
],
"license": "MIT",
"devDependencies": {
"@stylistic/eslint-plugin": "^1.6.3",
"@swc/core": "^1.3.101",
"@types/core-js": "^2.5.8",
"@types/node": "^20.10.0",
"@types/picomatch": "^2.3.3",
"@types/sinon": "^17.0.3",
"@types/tar": "^6.1.12",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "^1.4.0",
"badgen": "^3.2.3",
"c8": "^9.1.0",
"esbuild": "^0.20.2",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-sort-class-members": "^1.20.0",
"eslint-plugin-typescript-sort-keys": "^3.2.0",
"eslint-plugin-unicorn": "^51.0.1",
"rimraf": "^5.0.5",
"sinon": "^17.0.1",
"strip-ansi": "^7.1.0",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"tsx": "^4.7.1",
"typescript": "^5.3.3",
"typescript-eslint": "^7.1.0",
"vitest": "^1.4.0",
"zx": "^7.2.3"
},
"dependencies": {
"chalk": "^5.3.0",
"github-extractor": "^0.0.37",
"meow": "^13.2.0",
"ora": "^8.0.1",
"pathe": "^2.0.2",
"picomatch": "^4.0.2"
}
}