package.json 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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": "2.10.0",
  5. "license": "MIT",
  6. "main": "index.js",
  7. "module": "index.mjs",
  8. "unpkg": "dist/uppy.min.js",
  9. "style": "dist/uppy.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. "box",
  23. "webcam"
  24. ],
  25. "homepage": "https://uppy.io",
  26. "bugs": {
  27. "url": "https://github.com/transloadit/uppy/issues"
  28. },
  29. "repository": {
  30. "type": "git",
  31. "url": "git+https://github.com/transloadit/uppy.git"
  32. },
  33. "dependencies": {
  34. "@uppy/audio": "workspace:^",
  35. "@uppy/aws-s3": "workspace:^",
  36. "@uppy/aws-s3-multipart": "workspace:^",
  37. "@uppy/box": "workspace:^",
  38. "@uppy/companion-client": "workspace:^",
  39. "@uppy/compressor": "workspace:^",
  40. "@uppy/core": "workspace:^",
  41. "@uppy/dashboard": "workspace:^",
  42. "@uppy/drag-drop": "workspace:^",
  43. "@uppy/drop-target": "workspace:^",
  44. "@uppy/dropbox": "workspace:^",
  45. "@uppy/facebook": "workspace:^",
  46. "@uppy/file-input": "workspace:^",
  47. "@uppy/form": "workspace:^",
  48. "@uppy/golden-retriever": "workspace:^",
  49. "@uppy/google-drive": "workspace:^",
  50. "@uppy/image-editor": "workspace:^",
  51. "@uppy/informer": "workspace:^",
  52. "@uppy/instagram": "workspace:^",
  53. "@uppy/onedrive": "workspace:^",
  54. "@uppy/progress-bar": "workspace:^",
  55. "@uppy/provider-views": "workspace:^",
  56. "@uppy/redux-dev-tools": "workspace:^",
  57. "@uppy/screen-capture": "workspace:^",
  58. "@uppy/status-bar": "workspace:^",
  59. "@uppy/store-default": "workspace:^",
  60. "@uppy/store-redux": "workspace:^",
  61. "@uppy/thumbnail-generator": "workspace:^",
  62. "@uppy/transloadit": "workspace:^",
  63. "@uppy/tus": "workspace:^",
  64. "@uppy/unsplash": "workspace:^",
  65. "@uppy/url": "workspace:^",
  66. "@uppy/webcam": "workspace:^",
  67. "@uppy/xhr-upload": "workspace:^"
  68. },
  69. "devDependencies": {
  70. "abortcontroller-polyfill": "^1.7.3",
  71. "core-js": "~3.19.3",
  72. "md-gum-polyfill": "^1.0.0",
  73. "regenerator-runtime": "0.13.9",
  74. "resize-observer-polyfill": "^1.5.1",
  75. "whatwg-fetch": "^3.6.2"
  76. }
  77. }