-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.21 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.21 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
{
"name": "@yinxulai/database-backup",
"version": "0.4.0",
"description": "Multi-mode database backup tool with CI-first architecture",
"type": "module",
"bin": {
"backup": "./output/run.js"
},
"scripts": {
"build": "rm -rf output && tsup source/cli/run.ts --format esm --platform node --target node22 --out-dir output --clean --splitting false",
"prepack": "pnpm build",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"dev": "tsx source/cli/run.ts",
"backup": "node output/run.js",
"lint": "eslint source --ext .ts"
},
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1032.0",
"@aws-sdk/lib-storage": "^3.1032.0",
"yaml": "^2.8.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.6.0",
"eslint": "^10.2.1",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.58.2",
"vitest": "^4.1.4"
},
"keywords": [
"database",
"backup",
"postgresql",
"mysql",
"s3",
"cli"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/yinxulai/database-backup.git"
}
}