package.json 940 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "@uppy/aws-s3-multipart",
  3. "description": "Upload to Amazon S3 with Uppy and S3's Multipart upload strategy",
  4. "version": "3.5.3",
  5. "license": "MIT",
  6. "main": "lib/index.js",
  7. "type": "module",
  8. "types": "types/index.d.ts",
  9. "keywords": [
  10. "file uploader",
  11. "aws s3",
  12. "amazon s3",
  13. "s3",
  14. "uppy",
  15. "uppy-plugin",
  16. "multipart"
  17. ],
  18. "homepage": "https://uppy.io",
  19. "bugs": {
  20. "url": "https://github.com/transloadit/uppy/issues"
  21. },
  22. "repository": {
  23. "type": "git",
  24. "url": "git+https://github.com/transloadit/uppy.git"
  25. },
  26. "dependencies": {
  27. "@uppy/companion-client": "workspace:^",
  28. "@uppy/utils": "workspace:^"
  29. },
  30. "devDependencies": {
  31. "@aws-sdk/client-s3": "^3.362.0",
  32. "@aws-sdk/s3-request-presigner": "^3.362.0",
  33. "@jest/globals": "^29.0.0",
  34. "nock": "^13.1.0",
  35. "whatwg-fetch": "3.6.2"
  36. },
  37. "peerDependencies": {
  38. "@uppy/core": "workspace:^"
  39. }
  40. }