-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (46 loc) · 1.01 KB
/
package.json
File metadata and controls
47 lines (46 loc) · 1.01 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
{
"name": "r2sync",
"version": "1.0.22",
"description": "Backup and upload files from/to Cloudflare R2 with concurrency, streaming, and low memory usage.",
"type": "module",
"bin": {
"r2sync": "src/cli.js"
},
"scripts": {
"setup": "node ./src/setup.js",
"postinstall": "node ./src/setup.js",
"upload": "node ./src/upload-r2.js",
"download": "node ./src/download-r2.js"
},
"keywords": [
"cloudflare",
"r2",
"backup",
"upload",
"download",
"sync",
"aws-s3"
],
"author": {
"name": "Oli Miah",
"url": "https://github.com/oliwebd"
},
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.600.0",
"fs-extra": "^11.2.0",
"mime": "^3.0.0",
"p-limit": "^4.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oliwebd/r2sync.git"
},
"bugs": {
"url": "https://github.com/oliwebd/r2sync/issues"
},
"homepage": "https://github.com/oliwebd/r2sync#readme",
"engines": {
"node": ">=18"
}
}