-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.1 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.1 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
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
{
"name": "github-archiver",
"description": "A CLI tool for archiving GitHub repositories as local mirror clones",
"version": "0.0.0",
"author": "fa0311",
"license": "MIT",
"type": "module",
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"build:readme": "oclif readme --readme-path COMMANDS.md",
"start": "node ./bin/run.js",
"dev": "node ./bin/dev.js",
"check": "biome check .",
"format": "biome check --write .",
"test": "vitest",
"test:run": "vitest run",
"test:unit": "vitest run --config vitest.config.ts",
"test:integration": "vitest run --config vitest.integration.config.ts"
},
"bin": {
"github-archiver": "./bin/run.js"
},
"bugs": {
"url": "https://github.com/fa0311/github-archiver/issues"
},
"dependencies": {
"@oclif/core": "^4.10.6",
"@oclif/plugin-help": "^6.2.45",
"async-mutex": "^0.5.0",
"boxen": "^8.0.1",
"chalk": "^5.6.2",
"cli-progress": "^3.12.0",
"cli-truncate": "^6.0.0",
"cron": "^4.4.0",
"dotenv": "^17.4.2",
"error-stack-parser": "^2.1.4",
"jsonc-parser": "^3.3.1",
"log-symbols": "^7.0.1",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"source-map-support": "^0.5.21",
"string-width": "^8.2.1",
"zod": "^4.4.1"
},
"devDependencies": {
"@biomejs/biome": "2.4.13",
"@oclif/test": "^4.1.15",
"@types/cli-progress": "^3.11.6",
"@types/node": "^24.12.2",
"oclif": "^4.23.0",
"shx": "^0.4.0",
"ts-node": "^10.9.2",
"typescript": "^6.0.3",
"vitest": "4.1.5"
},
"packageManager": "pnpm@10.33.2",
"engines": {
"node": ">=22.0.0"
},
"files": [
"./bin",
"./dist",
"./oclif.manifest.json"
],
"homepage": "https://github.com/fa0311/github-archiver",
"keywords": [
"github",
"archive",
"mirror",
"backup"
],
"main": "dist/index.js",
"oclif": {
"bin": "github-archiver",
"dirname": "github-archiver",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help"
],
"topicSeparator": " ",
"topics": {},
"repositoryPrefix": "<%- repo %>/blob/main/<%- commandPath %>"
},
"repository": {
"type": "git",
"url": "https://github.com/fa0311/github-archiver.git"
},
"types": "dist/index.d.ts"
}