package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "@uppy/remote-sources",
  3. "description": "Uppy plugin that includes all remote sources that Uppy+Companion offer, like Instagram, Google Drive, Dropox, Box, Unsplash, Url etc",
  4. "version": "2.2.1",
  5. "license": "MIT",
  6. "main": "lib/index.js",
  7. "type": "module",
  8. "keywords": [
  9. "file uploader",
  10. "instagram",
  11. "google-drive",
  12. "google-photos",
  13. "facebook",
  14. "dropbox",
  15. "onedrive",
  16. "zoom",
  17. "unsplash",
  18. "box",
  19. "url"
  20. ],
  21. "homepage": "https://uppy.io",
  22. "bugs": {
  23. "url": "https://github.com/transloadit/uppy/issues"
  24. },
  25. "repository": {
  26. "type": "git",
  27. "url": "git+https://github.com/transloadit/uppy.git"
  28. },
  29. "dependencies": {
  30. "@uppy/box": "workspace:^",
  31. "@uppy/dashboard": "workspace:^",
  32. "@uppy/dropbox": "workspace:^",
  33. "@uppy/facebook": "workspace:^",
  34. "@uppy/google-drive": "workspace:^",
  35. "@uppy/google-photos": "workspace:^",
  36. "@uppy/instagram": "workspace:^",
  37. "@uppy/onedrive": "workspace:^",
  38. "@uppy/unsplash": "workspace:^",
  39. "@uppy/url": "workspace:^",
  40. "@uppy/zoom": "workspace:^"
  41. },
  42. "peerDependencies": {
  43. "@uppy/core": "workspace:^"
  44. },
  45. "publishConfig": {
  46. "access": "public"
  47. },
  48. "devDependencies": {
  49. "resize-observer-polyfill": "^1.5.1",
  50. "vitest": "^1.2.1"
  51. }
  52. }