package.json 772 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "@uppy/webdav",
  3. "description": "Import files from WebDAV into Uppy.",
  4. "version": "0.1.0",
  5. "license": "MIT",
  6. "main": "lib/index.js",
  7. "types": "types/index.d.ts",
  8. "type": "module",
  9. "keywords": [
  10. "file uploader",
  11. "uppy",
  12. "uppy-plugin",
  13. "webdav",
  14. "provider",
  15. "photos",
  16. "videos"
  17. ],
  18. "homepage": "https://uppy.io",
  19. "bugs": {
  20. "url": "https://github.com/transloadit/uppy/issues"
  21. },
  22. "repository": {
  23. "type": "git",
  24. "url": "git+https://github.com/transloadit/uppy.git"
  25. },
  26. "dependencies": {
  27. "@uppy/companion-client": "workspace:^",
  28. "@uppy/provider-views": "workspace:^",
  29. "@uppy/utils": "workspace:^",
  30. "preact": "^10.5.13"
  31. },
  32. "peerDependencies": {
  33. "@uppy/core": "workspace:^"
  34. }
  35. }