package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "uppy",
  3. "description": "Extensible JavaScript file upload widget with support for drag&drop, resumable uploads, previews, restrictions, file processing/encoding, remote providers like Instagram, Dropbox, Google Drive, S3 and more :dog:",
  4. "version": "1.0.0",
  5. "license": "MIT",
  6. "main": "index.js",
  7. "module": "index.mjs",
  8. "unpkg": "dist/uppy.min.js",
  9. "style": "dist/style.min.css",
  10. "types": "types/index.d.ts",
  11. "keywords": [
  12. "file uploader",
  13. "drag-drop",
  14. "progress",
  15. "preview",
  16. "resumable uploads",
  17. "xhr",
  18. "tus",
  19. "s3",
  20. "google drive",
  21. "dropbox",
  22. "webcam"
  23. ],
  24. "homepage": "https://uppy.io",
  25. "bugs": {
  26. "url": "https://github.com/transloadit/uppy/issues"
  27. },
  28. "repository": {
  29. "type": "git",
  30. "url": "git+https://github.com/transloadit/uppy.git"
  31. },
  32. "dependencies": {
  33. "@uppy/aws-s3": "1.0.0",
  34. "@uppy/aws-s3-multipart": "1.0.0",
  35. "@uppy/companion-client": "1.0.0",
  36. "@uppy/core": "1.0.0",
  37. "@uppy/dashboard": "1.0.0",
  38. "@uppy/drag-drop": "1.0.0",
  39. "@uppy/dropbox": "1.0.0",
  40. "@uppy/file-input": "1.0.0",
  41. "@uppy/form": "1.0.0",
  42. "@uppy/golden-retriever": "1.0.0",
  43. "@uppy/google-drive": "1.0.0",
  44. "@uppy/informer": "1.0.0",
  45. "@uppy/instagram": "1.0.0",
  46. "@uppy/progress-bar": "1.0.0",
  47. "@uppy/provider-views": "1.0.0",
  48. "@uppy/redux-dev-tools": "1.0.0",
  49. "@uppy/status-bar": "1.0.0",
  50. "@uppy/store-default": "0.28.3",
  51. "@uppy/store-redux": "0.28.3",
  52. "@uppy/thumbnail-generator": "1.0.0",
  53. "@uppy/transloadit": "1.0.0",
  54. "@uppy/tus": "1.0.0",
  55. "@uppy/url": "1.0.0",
  56. "@uppy/webcam": "1.0.0",
  57. "@uppy/xhr-upload": "1.0.0"
  58. },
  59. "devDependencies": {
  60. "es6-promise": "4.2.5",
  61. "whatwg-fetch": "3.0.0"
  62. }
  63. }