package.json 783 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "@uppy/url",
  3. "description": "The Url plugin lets users import files from the Internet. Paste any URL and it’ll be added!",
  4. "version": "2.0.1",
  5. "license": "MIT",
  6. "main": "lib/index.js",
  7. "style": "dist/style.min.css",
  8. "types": "types/index.d.ts",
  9. "keywords": [
  10. "file uploader",
  11. "url",
  12. "import from url",
  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. "@uppy/companion-client": "file:../companion-client",
  26. "@uppy/utils": "file:../utils",
  27. "preact": "^10.5.13"
  28. },
  29. "peerDependencies": {
  30. "@uppy/core": "^2.0.0"
  31. }
  32. }