package.json 986 B

123456789101112131415161718192021222324252627282930313233
  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.29.0",
  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. "uppy",
  13. "uppy-plugin"
  14. ],
  15. "homepage": "https://uppy.io",
  16. "bugs": {
  17. "url": "https://github.com/transloadit/uppy/issues"
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "git+https://github.com/transloadit/uppy.git"
  22. },
  23. "dependencies": {
  24. "@uppy/store-default": "0.27.0",
  25. "@uppy/utils": "0.29.0",
  26. "cuid": "^2.1.1",
  27. "lodash.throttle": "^4.1.1",
  28. "mime-match": "^1.0.2",
  29. "namespace-emitter": "^2.0.1",
  30. "preact": "^8.2.9",
  31. "prettier-bytes": "^1.0.4"
  32. }
  33. }