package.json 801 B

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