package.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "@uppy/utils",
  3. "description": "Shared utility functions for Uppy Core and plugins maintained by the Uppy team.",
  4. "version": "5.0.0-beta",
  5. "license": "MIT",
  6. "types": "types/index.d.ts",
  7. "type": "module",
  8. "keywords": [
  9. "file uploader",
  10. "uppy"
  11. ],
  12. "homepage": "https://uppy.io",
  13. "bugs": {
  14. "url": "https://github.com/transloadit/uppy/issues"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "git+https://github.com/transloadit/uppy.git"
  19. },
  20. "exports": {
  21. "./lib/Translator":"./lib/Translator.js",
  22. "./lib/EventTracker":"./lib/EventTracker.js",
  23. "./lib/ProgressTimeout":"./lib/ProgressTimeout.js",
  24. "./lib/RateLimitedQueue":"./lib/RateLimitedQueue.js",
  25. "./lib/canvasToBlob":"./lib/canvasToBlob.js",
  26. "./lib/dataURItoBlob":"./lib/dataURItoBlob.js",
  27. "./lib/dataURItoFile":"./lib/dataURItoFile.js",
  28. "./lib/emitSocketProgress":"./lib/emitSocketProgress.js",
  29. "./lib/findAllDOMElements":"./lib/findAllDOMElements.js",
  30. "./lib/findDOMElement":"./lib/findDOMElement.js",
  31. "./lib/generateFileID":"./lib/generateFileID.js",
  32. "./lib/getBytesRemaining":"./lib/getBytesRemaining.js",
  33. "./lib/getETA":"./lib/getETA.js",
  34. "./lib/getFileNameAndExtension":"./lib/getFileNameAndExtension.js",
  35. "./lib/getFileType":"./lib/getFileType.js",
  36. "./lib/getFileTypeExtension":"./lib/getFileTypeExtension.js",
  37. "./lib/getSocketHost":"./lib/getSocketHost.js",
  38. "./lib/getSpeed":"./lib/getSpeed.js",
  39. "./lib/getTimeStamp":"./lib/getTimeStamp.js",
  40. "./lib/isDOMElement":"./lib/isDOMElement.js",
  41. "./lib/isObjectURL":"./lib/isObjectURL.js",
  42. "./lib/isDragDropSupported":"./lib/isDragDropSupported.js",
  43. "./lib/isPreviewSupported":"./lib/isPreviewSupported.js",
  44. "./lib/isTouchDevice":"./lib/isTouchDevice.js",
  45. "./lib/prettyETA":"./lib/prettyETA.js",
  46. "./lib/secondsToTime":"./lib/secondsToTime.js",
  47. "./lib/settle":"./lib/settle.js",
  48. "./lib/toArray":"./lib/toArray.js",
  49. "./lib/getDroppedFiles":"./lib/getDroppedFiles/index.js"
  50. },
  51. "dependencies": {
  52. "lodash.throttle": "^4.1.1"
  53. },
  54. "devDependencies": {
  55. "@jest/globals": "^27.4.2"
  56. }
  57. }