package.json 811 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "@uppy/screen-capture",
  3. "description": "Uppy plugin that captures video from display or application.",
  4. "version": "3.1.2",
  5. "license": "MIT",
  6. "main": "lib/index.js",
  7. "style": "dist/style.min.css",
  8. "types": "types/index.d.ts",
  9. "type": "module",
  10. "keywords": [
  11. "file uploader",
  12. "uppy",
  13. "uppy-plugin",
  14. "screen capture",
  15. "video",
  16. "record",
  17. "mediarecorder"
  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. "preact": "^10.5.13"
  30. },
  31. "peerDependencies": {
  32. "@uppy/core": "workspace:^"
  33. },
  34. "publishConfig": {
  35. "access": "public"
  36. }
  37. }