package.json 747 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "@uppy/tus",
  3. "description": "Resumable uploads for Uppy using Tus.io",
  4. "version": "1.5.6",
  5. "license": "MIT",
  6. "main": "lib/index.js",
  7. "types": "types/index.d.ts",
  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. "@types/tus-js-client": "^1.8.0",
  26. "@uppy/companion-client": "file:../companion-client",
  27. "@uppy/utils": "file:../utils",
  28. "tus-js-client": "^1.8.0"
  29. },
  30. "peerDependencies": {
  31. "@uppy/core": "^1.0.0"
  32. }
  33. }