package.json 918 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "@uppy/react",
  3. "description": "React component wrappers around Uppy's official UI plugins.",
  4. "version": "1.11.3",
  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/file-input": "file:../file-input",
  28. "@uppy/progress-bar": "file:../progress-bar",
  29. "@uppy/status-bar": "file:../status-bar",
  30. "@uppy/utils": "file:../utils",
  31. "prop-types": "^15.6.1"
  32. },
  33. "peerDependencies": {
  34. "@uppy/core": "^1.0.0"
  35. }
  36. }