r2-upload/package.json

25 lines
522 B
JSON
Raw Permalink Normal View History

2026-03-16 12:43:37 +00:00
{
"name": "@clawd/r2-upload",
"version": "1.0.0",
"description": "Upload files to Cloudflare R2 via S3-compatible API",
"type": "module",
"main": "src/index.ts",
"exports": {
".": {
"types": "./src/index.ts",
"import": "./src/index.ts"
}
},
"scripts": {
"upload": "bun run scripts/upload.ts",
"test": "bun run scripts/test.ts"
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.0.0"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.705.0"
}
}