package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  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.6.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. "sideEffects": false,
  11. "keywords": [
  12. "file uploader",
  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. "@transloadit/prettier-bytes": "0.0.9",
  26. "@uppy/store-default": "workspace:^",
  27. "@uppy/utils": "workspace:^",
  28. "lodash": "^4.17.21",
  29. "mime-match": "^1.0.2",
  30. "namespace-emitter": "^2.0.1",
  31. "nanoid": "^4.0.0",
  32. "preact": "^10.5.13"
  33. },
  34. "devDependencies": {
  35. "vitest": "^0.34.5"
  36. }
  37. }