package.json 991 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "@uppy/core",
  3. "description": "Core module for the extensible JavaScript file upload widget with support for drag&drop, resumable uploads, previews, restrictions, file processing/encoding, remote providers like Instagram, Dropbox, Google Drive, S3 and more :dog:",
  4. "version": "2.0.3",
  5. "license": "MIT",
  6. "main": "lib/index.js",
  7. "style": "dist/style.min.css",
  8. "types": "types/index.d.ts",
  9. "keywords": [
  10. "file uploader",
  11. "uppy",
  12. "uppy-plugin"
  13. ],
  14. "homepage": "https://uppy.io",
  15. "bugs": {
  16. "url": "https://github.com/transloadit/uppy/issues"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "git+https://github.com/transloadit/uppy.git"
  21. },
  22. "dependencies": {
  23. "@transloadit/prettier-bytes": "0.0.7",
  24. "@uppy/store-default": "file:../store-default",
  25. "@uppy/utils": "file:../utils",
  26. "lodash.throttle": "^4.1.1",
  27. "mime-match": "^1.0.2",
  28. "namespace-emitter": "^2.0.1",
  29. "nanoid": "^3.1.25",
  30. "preact": "^10.5.13"
  31. }
  32. }