package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "@uppy/react",
  3. "description": "React component wrappers around Uppy's official UI plugins.",
  4. "version": "4.0.4",
  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. "use-sync-external-store": "^1.2.0"
  26. },
  27. "devDependencies": {
  28. "@testing-library/jest-dom": "^6.4.2",
  29. "@testing-library/react": "^14.2.2",
  30. "@types/react": "^18.0.8",
  31. "@types/use-sync-external-store": "^0.0.6",
  32. "react": "^18.2.0",
  33. "react-dom": "^18.2.0"
  34. },
  35. "peerDependencies": {
  36. "@uppy/core": "workspace:^",
  37. "@uppy/dashboard": "workspace:^",
  38. "@uppy/drag-drop": "workspace:^",
  39. "@uppy/file-input": "workspace:^",
  40. "@uppy/progress-bar": "workspace:^",
  41. "@uppy/status-bar": "workspace:^",
  42. "react": "^18.0.0 || ^19.0.0"
  43. },
  44. "peerDependenciesMeta": {
  45. "@uppy/dashboard": {
  46. "optional": true
  47. },
  48. "@uppy/drag-drop": {
  49. "optional": true
  50. },
  51. "@uppy/file-input": {
  52. "optional": true
  53. },
  54. "@uppy/progress-bar": {
  55. "optional": true
  56. },
  57. "@uppy/status-bar": {
  58. "optional": true
  59. }
  60. }
  61. }