package.json 791 B

123456789101112131415161718192021222324252627282930313233
  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.25.5",
  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. "plugin name and other keywords",
  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. "@uppy/utils": "^0.25.5"
  25. },
  26. "devDependencies": {
  27. "@uppy/core": "^0.25.5",
  28. "namespace-emitter": "^2.0.1"
  29. },
  30. "peerDependencies": {
  31. "@uppy/core": "^0.25.5"
  32. }
  33. }