-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1021 Bytes
/
package.json
File metadata and controls
49 lines (49 loc) · 1021 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "s3-storage-cli",
"version": "0.1.5",
"description": "Minimal tracked S3 CLI for Bun with list, upload, delete, share, and status commands.",
"module": "index.ts",
"type": "module",
"license": "MIT",
"bin": {
"s3-storage": "bin/s3-storage.js"
},
"files": [
"bin",
"index.ts",
"src/catalog.ts",
"src/cli.ts",
"src/config.ts",
"src/files.ts",
"src/output.ts",
"src/storage.ts",
"README.md",
"SKILL.md",
"LICENSE"
],
"scripts": {
"start": "bun run index.ts",
"test": "bun test"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/muneebhashone/s3-storage-cli.git"
},
"homepage": "https://github.com/muneebhashone/s3-storage-cli#readme",
"bugs": {
"url": "https://github.com/muneebhashone/s3-storage-cli/issues"
},
"keywords": [
"s3",
"cli",
"bun",
"sqlite",
"upload"
],
"devDependencies": {
"@types/bun": "latest"
}
}