package.json 739 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "@uppy/tus",
  3. "description": "Resumable uploads for Uppy using Tus.io",
  4. "version": "4.1.5",
  5. "license": "MIT",
  6. "main": "lib/index.js",
  7. "type": "module",
  8. "keywords": [
  9. "file uploader",
  10. "uppy",
  11. "uppy-plugin",
  12. "upload",
  13. "resumable",
  14. "tus"
  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": "workspace:^",
  26. "@uppy/utils": "workspace:^",
  27. "tus-js-client": "^4.2.3"
  28. },
  29. "devDependencies": {
  30. "vitest": "^1.2.1"
  31. },
  32. "peerDependencies": {
  33. "@uppy/core": "workspace:^"
  34. }
  35. }