package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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": "4.3.1",
  5. "license": "MIT",
  6. "main": "lib/index.js",
  7. "style": "dist/style.min.css",
  8. "type": "module",
  9. "sideEffects": [
  10. "*.css"
  11. ],
  12. "keywords": [
  13. "file uploader",
  14. "uppy",
  15. "uppy-plugin"
  16. ],
  17. "homepage": "https://uppy.io",
  18. "bugs": {
  19. "url": "https://github.com/transloadit/uppy/issues"
  20. },
  21. "repository": {
  22. "type": "git",
  23. "url": "git+https://github.com/transloadit/uppy.git"
  24. },
  25. "dependencies": {
  26. "@transloadit/prettier-bytes": "^0.3.4",
  27. "@uppy/store-default": "workspace:^",
  28. "@uppy/utils": "workspace:^",
  29. "lodash": "^4.17.21",
  30. "mime-match": "^1.0.2",
  31. "namespace-emitter": "^2.0.1",
  32. "nanoid": "^5.0.0",
  33. "preact": "^10.5.13"
  34. },
  35. "devDependencies": {
  36. "vitest": "^1.2.1"
  37. }
  38. }