package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  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": "3.4.0",
  5. "license": "MIT",
  6. "main": "lib/index.js",
  7. "style": "dist/style.min.css",
  8. "types": "types/index.d.ts",
  9. "type": "module",
  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. "@transloadit/prettier-bytes": "0.0.9",
  25. "@uppy/store-default": "workspace:^",
  26. "@uppy/utils": "workspace:^",
  27. "lodash": "^4.17.21",
  28. "mime-match": "^1.0.2",
  29. "namespace-emitter": "^2.0.1",
  30. "nanoid": "^4.0.0",
  31. "preact": "^10.5.13"
  32. },
  33. "devDependencies": {
  34. "@jest/globals": "^29.0.0"
  35. }
  36. }