package.json 742 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "@uppy/drop-target",
  3. "description": "Lets your users drag and drop files on a DOM element",
  4. "version": "2.1.0",
  5. "license": "MIT",
  6. "main": "lib/index.js",
  7. "type": "module",
  8. "types": "types/index.d.ts",
  9. "keywords": [
  10. "file uploader",
  11. "uppy",
  12. "uppy-plugin",
  13. "drag-drop",
  14. "drag",
  15. "drop",
  16. "dropzone",
  17. "upload"
  18. ],
  19. "homepage": "https://uppy.io",
  20. "bugs": {
  21. "url": "https://github.com/transloadit/uppy/issues"
  22. },
  23. "repository": {
  24. "type": "git",
  25. "url": "git+https://github.com/transloadit/uppy.git"
  26. },
  27. "dependencies": {
  28. "@uppy/utils": "workspace:^"
  29. },
  30. "peerDependencies": {
  31. "@uppy/core": "workspace:^"
  32. },
  33. "publishConfig": {
  34. "access": "public"
  35. }
  36. }