package.json 872 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "@uppy/react",
  3. "description": "React component wrappers around Uppy's official UI plugins.",
  4. "version": "1.10.4",
  5. "license": "MIT",
  6. "main": "index.js",
  7. "module": "index.mjs",
  8. "types": "types/index.d.ts",
  9. "keywords": [
  10. "file uploader",
  11. "uppy",
  12. "uppy-plugin",
  13. "react",
  14. "react-components"
  15. ],
  16. "homepage": "https://uppy.io",
  17. "bugs": {
  18. "url": "https://github.com/transloadit/uppy/issues"
  19. },
  20. "repository": {
  21. "type": "git",
  22. "url": "git+https://github.com/transloadit/uppy.git"
  23. },
  24. "dependencies": {
  25. "@uppy/dashboard": "file:../dashboard",
  26. "@uppy/drag-drop": "file:../drag-drop",
  27. "@uppy/progress-bar": "file:../progress-bar",
  28. "@uppy/status-bar": "file:../status-bar",
  29. "@uppy/utils": "file:../utils",
  30. "prop-types": "^15.6.1"
  31. },
  32. "peerDependencies": {
  33. "@uppy/core": "^1.0.0"
  34. }
  35. }