-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 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
{
"name": "mongo-backup-cli",
"version": "0.1.0",
"description": "A TypeScript-based CLI tool for backing up and restoring MongoDB databases using mongodump and mongorestore with archive support, gzip compression, and structured logging.",
"main": "src/app.ts",
"scripts": {
"start": "tsx src/app.ts"
},
"keywords": [
"mongodb",
"backup",
"restore",
"mongodump",
"mongorestore",
"cli",
"typescript",
"archive",
"database"
],
"homepage": "https://github.com/ayushvchauhan/mongo-backup-cli#readme",
"repository": {
"type": "git",
"url": "https://github.com/ayushvchauhan/mongo-backup-cli.git"
},
"author": "Ayush Chauhan",
"license": "MIT",
"dependencies": {
"@inquirer/prompts": "^8.2.1",
"dotenv": "^17.3.1",
"mongodb": "^7.1.0",
"winston": "^3.19.0"
},
"devDependencies": {
"@types/inquirer": "^9.0.9",
"@types/node": "^25.3.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=18"
}
}