package.json 797 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "@uppy/thumbnail-generator",
  3. "description": "Uppy plugin that generates small previews of images to show on your upload UI.",
  4. "version": "0.27.1",
  5. "license": "MIT",
  6. "main": "lib/index.js",
  7. "jsnext:main": "src/index.js",
  8. "types": "types/index.d.ts",
  9. "keywords": [
  10. "file uploader",
  11. "uppy",
  12. "uppy-plugin",
  13. "thumbnail",
  14. "preview",
  15. "resize"
  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. "@uppy/utils": "0.27.0"
  27. },
  28. "devDependencies": {
  29. "@uppy/core": "0.27.0",
  30. "namespace-emitter": "^2.0.1"
  31. },
  32. "peerDependencies": {
  33. "@uppy/core": "^0.27.0"
  34. }
  35. }