package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  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": "0.25.5",
  5. "license": "MIT",
  6. "main": "lib/index.js",
  7. "jsnext:main": "src/index.js",
  8. "style": "dist/style.min.css",
  9. "types": "types/index.d.ts",
  10. "keywords": [
  11. "file uploader",
  12. "plugin name and other keywords",
  13. "uppy",
  14. "uppy-plugin"
  15. ],
  16. "homepage": "https://uppy.io",
  17. "bugs": {
  18. "url": "https://github.com/transloadit/uppy/issues"
  19. },
  20. "repository": {
  21. "type": "git",
  22. "url": "git+https://github.com/transloadit/uppy.git"
  23. },
  24. "dependencies": {
  25. "@uppy/store-default": "^0.25.5",
  26. "@uppy/utils": "^0.25.5",
  27. "cuid": "^2.1.1",
  28. "lodash.throttle": "^4.1.1",
  29. "mime-match": "^1.0.2",
  30. "namespace-emitter": "^2.0.1",
  31. "preact": "^8.2.9",
  32. "prettier-bytes": "^1.0.4"
  33. }
  34. }