package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "@uppy/react",
  3. "description": "React component wrappers around Uppy's official UI plugins.",
  4. "version": "2.0.2",
  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. "devDependencies": {
  34. "@types/react": "^17.0.13",
  35. "enzyme": "3.11.0",
  36. "enzyme-adapter-react-16": "1.15.2",
  37. "react": "^16.8.6",
  38. "react-dom": "^16.8.6"
  39. },
  40. "peerDependencies": {
  41. "@uppy/core": "^2.0.0",
  42. "react": "^16.0.0 || ^17.0.0"
  43. }
  44. }