-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.37 KB
/
package.json
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
51
52
{
"name": "@vlovich/r2cli",
"version": "0.1.0",
"description": "A simple command-line utility to make it easy to work with Cloudflare R2, a 0-egress cloud storage system.",
"main": "main.ts",
"scripts": {
"main": "npx tsx main.ts",
"format": "npx dprint fmt",
"check-format": "npx dprint check",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vlovich/r2cli.git"
},
"keywords": [
"r2",
"s3",
"cli"
],
"author": "[email protected]",
"license": "MIT OR Apache-2.0",
"bugs": {
"url": "https://github.com/vlovich/r2cli/issues"
},
"homepage": "https://github.com/vlovich/r2cli#readme",
"dependencies": {
"@aws-sdk/client-s3": "^3.199.0",
"@aws-sdk/s3-request-presigner": "^3.199.0",
"@iarna/toml": "^2.2.5",
"@types/cli-progress": "^3.11.0",
"ansi-colors": "^4.1.3",
"cli-progress": "^3.11.2",
"getos": "^3.2.1",
"human-readable": "^0.2.1",
"ini": "^3.0.1",
"inquirer": "^9.1.4",
"keytar": "^7.9.0",
"ts-results": "^3.3.0",
"yargs": "^17.6.0"
},
"devDependencies": {
"@types/getos": "^3.0.1",
"@types/ini": "^1.3.31",
"@types/inquirer": "^9.0.2",
"@types/node": "^18.11.7",
"@types/yargs": "^17.0.13",
"dprint": "^0.32.2",
"esbuild": "^0.15.12",
"tsx": "^3.11.0"
}
}