-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1 KB
/
package.json
File metadata and controls
45 lines (45 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
43
44
45
{
"name": "database-dumper-cli",
"version": "0.1.0",
"description": "Interactive cross-platform database dump CLI (MySQL first)",
"main": "dist/cli.js",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "ts-node src/cli.ts",
"start": "node dist/cli.js",
"test": "npm run build && node --test test"
},
"keywords": [
"cli",
"database",
"mysqldump",
"backup"
],
"author": "",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^11.1.0",
"extract-zip": "^2.0.1",
"fs-extra": "^11.2.0",
"ink": "^4.4.1",
"ink-spinner": "^5.0.0",
"ink-text-input": "^5.0.1",
"ora": "^7.0.1",
"prompts": "^2.4.2",
"react": "^18.2.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.11.19",
"@types/ora": "^3.2.0",
"@types/prompts": "^2.4.9",
"@types/react": "^18.2.45",
"typescript": "^5.3.3"
},
"optionalDependencies": {
"keytar": "^7.9.0"
}
}