-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.61 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.61 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": "@climactic/backitup",
"version": "1.1.0",
"description": "Secure backup utility with glob patterns, tar.gz archives, local + S3 storage, and safe cleanup",
"author": {
"name": "Climactic",
"email": "oss@climactic.co",
"url": "https://climactic.co"
},
"funding": "https://github.com/sponsors/Climactic",
"bin": {
"backitup": "./src/index.ts"
},
"type": "module",
"module": "src/index.ts",
"scripts": {
"start": "bun run src/index.ts start",
"dev": "bun --watch src/index.ts",
"build": "bun build src/index.ts --compile --outfile backitup",
"build:linux-x64": "bun build src/index.ts --compile --target=bun-linux-x64 --outfile backitup-linux-x64",
"build:linux-arm64": "bun build src/index.ts --compile --target=bun-linux-arm64 --outfile backitup-linux-arm64",
"build:darwin-x64": "bun build src/index.ts --compile --target=bun-darwin-x64 --outfile backitup-darwin-x64",
"build:darwin-arm64": "bun build src/index.ts --compile --target=bun-darwin-arm64 --outfile backitup-darwin-arm64",
"build:windows-x64": "bun build src/index.ts --compile --target=bun-windows-x64 --outfile backitup-windows-x64",
"build:all": "bun run build:linux-x64 && bun run build:linux-arm64",
"test": "bun test",
"lint": "bunx oxlint --fix",
"format": "bunx oxfmt@latest"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"cron-parser": "^5.4.0",
"js-yaml": "^4.1.1"
},
"devDependencies": {
"@types/bun": "^1.3.5",
"@types/js-yaml": "^4.0.9",
"oxfmt": "^0.18.0",
"oxlint": "^1.33.0"
},
"peerDependencies": {
"typescript": "^5.9.3"
}
}