package.json 842 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "@uppy/xhr-upload",
  3. "description": "Plain and simple classic HTML multipart form uploads with Uppy, as well as uploads using the HTTP PUT method.",
  4. "version": "4.2.3",
  5. "license": "MIT",
  6. "main": "lib/index.js",
  7. "type": "module",
  8. "keywords": [
  9. "file uploader",
  10. "xhr",
  11. "xhr upload",
  12. "XMLHttpRequest",
  13. "ajax",
  14. "fetch",
  15. "uppy",
  16. "uppy-plugin"
  17. ],
  18. "homepage": "https://uppy.io",
  19. "bugs": {
  20. "url": "https://github.com/transloadit/uppy/issues"
  21. },
  22. "repository": {
  23. "type": "git",
  24. "url": "git+https://github.com/transloadit/uppy.git"
  25. },
  26. "dependencies": {
  27. "@uppy/companion-client": "workspace:^",
  28. "@uppy/utils": "workspace:^"
  29. },
  30. "devDependencies": {
  31. "nock": "^13.1.0",
  32. "vitest": "^1.2.1"
  33. },
  34. "peerDependencies": {
  35. "@uppy/core": "workspace:^"
  36. }
  37. }