package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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": "0.1.1",
  5. "license": "MIT",
  6. "main": "lib/index.js",
  7. "types": "types/index.d.ts",
  8. "type": "module",
  9. "keywords": [
  10. "file uploader",
  11. "instagram",
  12. "google-drive",
  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/instagram": "workspace:^",
  36. "@uppy/onedrive": "workspace:^",
  37. "@uppy/unsplash": "workspace:^",
  38. "@uppy/url": "workspace:^",
  39. "@uppy/zoom": "workspace:^"
  40. },
  41. "peerDependencies": {
  42. "@uppy/core": "workspace:^"
  43. },
  44. "publishConfig": {
  45. "access": "public"
  46. },
  47. "devDependencies": {
  48. "@jest/globals": "^28.1.0",
  49. "resize-observer-polyfill": "^1.5.1"
  50. }
  51. }