-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 886 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 886 Bytes
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
{
"name": "backup-tool",
"version": "2.0.0",
"description": "Automated backup tool for databases and files",
"license": "MIT",
"author": "Uplg. <leonard@uplg.xyz> (https://uplg.xyz)",
"main": "src/index.ts",
"scripts": {
"dev": "bun run ./src/index.ts",
"start": "bun run ./src/index.ts",
"lint": "bunx oxlint ./src",
"fmt": "bunx oxfmt --write .",
"fmt:check": "bunx oxfmt --check .",
"test": "bun test",
"check": "bunx oxfmt --check . && bunx oxlint ./src",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"basic-ftp": "^5.2.0",
"node-cron": "^4.2.1",
"pino": "^10.3.1",
"ssh2": "^1.16.0"
},
"devDependencies": {
"@types/bun": "^1.3.9",
"@types/node": "^25.3.3",
"@types/ssh2": "^1.15.5",
"oxfmt": "^0.35.0",
"oxlint": "^1.50.0",
"pino-pretty": "^13.1.3",
"typescript": "^5.8.3"
}
}