package.json 1013 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "@uppy/react",
  3. "description": "React component wrappers around Uppy's official UI plugins.",
  4. "version": "2.2.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": "workspace:^",
  26. "@uppy/drag-drop": "workspace:^",
  27. "@uppy/file-input": "workspace:^",
  28. "@uppy/progress-bar": "workspace:^",
  29. "@uppy/status-bar": "workspace:^",
  30. "@uppy/utils": "workspace:^",
  31. "prop-types": "^15.6.1"
  32. },
  33. "devDependencies": {
  34. "@types/react": "^18.0.8",
  35. "react": "^18.1.0"
  36. },
  37. "peerDependencies": {
  38. "@uppy/core": "workspace:^",
  39. "react": "^16.0.0 || ^17.0.0 || ^18.0.0"
  40. }
  41. }