package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "@uppy/react",
  3. "description": "React component wrappers around Uppy's official UI plugins.",
  4. "version": "3.0.0",
  5. "license": "MIT",
  6. "main": "lib/index.js",
  7. "types": "types/index.d.ts",
  8. "type": "module",
  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/utils": "workspace:^",
  26. "prop-types": "^15.6.1"
  27. },
  28. "devDependencies": {
  29. "@types/react": "^18.0.8",
  30. "react": "^18.1.0"
  31. },
  32. "peerDependencies": {
  33. "@uppy/core": "workspace:^",
  34. "@uppy/dashboard": "workspace:^",
  35. "@uppy/drag-drop": "workspace:^",
  36. "@uppy/file-input": "workspace:^",
  37. "@uppy/progress-bar": "workspace:^",
  38. "@uppy/status-bar": "workspace:^",
  39. "react": "^16.0.0 || ^17.0.0 || ^18.0.0"
  40. },
  41. "peerDependenciesMeta": {
  42. "@uppy/dashboard": {
  43. "optional": true
  44. },
  45. "@uppy/drag-drop": {
  46. "optional": true
  47. },
  48. "@uppy/file-input": {
  49. "optional": true
  50. },
  51. "@uppy/progress-bar": {
  52. "optional": true
  53. },
  54. "@uppy/status-bar": {
  55. "optional": true
  56. }
  57. }
  58. }