-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.17 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.17 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
{
"name": "@devcodes-sdk/mongo-clone",
"version": "0.0.1",
"description": "@devcodes-sdk/mongo-clone is a powerful CLI tool that simplifies cloning MongoDB databases. With a single command, you can easily replicate collections and documents across databases using npx.",
"main": "./src/index.ts",
"bin": {
"mongo-clone": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "ts-node src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DevCodes-SRL/mongo-clone.git"
},
"keywords": [
"mongo-clone",
"mongodb",
"clone"
],
"author": "https://github.com/Iulian-Dragomirescu",
"license": "MIT",
"bugs": {
"url": "https://github.com/DevCodes-SRL/mongo-clone/issues"
},
"homepage": "https://github.com/DevCodes-SRL/mongo-clone#readme",
"dependencies": {
"cli-progress": "^3.12.0",
"commander": "^13.1.0",
"consola": "^3.4.0",
"mongodb": "^6.12.0"
},
"devDependencies": {
"@types/cli-progress": "^3.11.6",
"@types/commander": "^2.12.0",
"@types/node": "^22.10.10",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"publishConfig": {
"access": "public"
}
}