package.json 905 B

123456789101112131415161718192021222324252627282930313233343536373839
  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": "3.3.2",
  5. "license": "MIT",
  6. "main": "lib/index.js",
  7. "types": "types/index.d.ts",
  8. "type": "module",
  9. "keywords": [
  10. "file uploader",
  11. "xhr",
  12. "xhr upload",
  13. "XMLHttpRequest",
  14. "ajax",
  15. "fetch",
  16. "uppy",
  17. "uppy-plugin"
  18. ],
  19. "homepage": "https://uppy.io",
  20. "bugs": {
  21. "url": "https://github.com/transloadit/uppy/issues"
  22. },
  23. "repository": {
  24. "type": "git",
  25. "url": "git+https://github.com/transloadit/uppy.git"
  26. },
  27. "dependencies": {
  28. "@uppy/companion-client": "workspace:^",
  29. "@uppy/utils": "workspace:^",
  30. "nanoid": "^4.0.0"
  31. },
  32. "devDependencies": {
  33. "@jest/globals": "^29.0.0",
  34. "nock": "^13.1.0"
  35. },
  36. "peerDependencies": {
  37. "@uppy/core": "workspace:^"
  38. }
  39. }