package.json 1.1 KB

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