package.json 770 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "@uppy/companion-client",
  3. "description": "Client library for communication with Companion. Intended for use in Uppy plugins.",
  4. "version": "4.3.0",
  5. "license": "MIT",
  6. "main": "lib/index.js",
  7. "type": "module",
  8. "keywords": [
  9. "file uploader",
  10. "uppy",
  11. "uppy-plugin",
  12. "companion",
  13. "provider"
  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. "namespace-emitter": "^2.0.1",
  26. "p-retry": "^6.1.0"
  27. },
  28. "devDependencies": {
  29. "vitest": "^1.2.1"
  30. },
  31. "peerDependencies": {
  32. "@uppy/core": "workspace:^"
  33. }
  34. }