package.json 800 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "@uppy/aws-s3",
  3. "description": "Upload to Amazon S3 with Uppy",
  4. "version": "2.1.0",
  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. ],
  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. "@uppy/xhr-upload": "workspace:^",
  29. "nanoid": "^3.1.25"
  30. },
  31. "devDependencies": {
  32. "whatwg-fetch": "3.6.2"
  33. },
  34. "peerDependencies": {
  35. "@uppy/core": "workspace:^"
  36. }
  37. }