package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "@uppy/react",
  3. "description": "React component wrappers around Uppy's official UI plugins.",
  4. "version": "3.2.2",
  5. "license": "MIT",
  6. "main": "lib/index.js",
  7. "type": "module",
  8. "keywords": [
  9. "file uploader",
  10. "uppy",
  11. "uppy-plugin",
  12. "react",
  13. "react-components"
  14. ],
  15. "homepage": "https://uppy.io",
  16. "bugs": {
  17. "url": "https://github.com/transloadit/uppy/issues"
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "git+https://github.com/transloadit/uppy.git"
  22. },
  23. "dependencies": {
  24. "@uppy/utils": "workspace:^"
  25. },
  26. "devDependencies": {
  27. "@types/react": "^18.0.8",
  28. "react": "^18.1.0"
  29. },
  30. "peerDependencies": {
  31. "@uppy/core": "workspace:^",
  32. "@uppy/dashboard": "workspace:^",
  33. "@uppy/drag-drop": "workspace:^",
  34. "@uppy/file-input": "workspace:^",
  35. "@uppy/progress-bar": "workspace:^",
  36. "@uppy/status-bar": "workspace:^",
  37. "react": "^16.0.0 || ^17.0.0 || ^18.0.0"
  38. },
  39. "peerDependenciesMeta": {
  40. "@uppy/dashboard": {
  41. "optional": true
  42. },
  43. "@uppy/drag-drop": {
  44. "optional": true
  45. },
  46. "@uppy/file-input": {
  47. "optional": true
  48. },
  49. "@uppy/progress-bar": {
  50. "optional": true
  51. },
  52. "@uppy/status-bar": {
  53. "optional": true
  54. }
  55. }
  56. }