package.json 773 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "@uppy/webcam",
  3. "description": "Uppy plugin that takes photos or records videos using the device's camera.",
  4. "version": "2.0.0-alpha.0",
  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. "uppy",
  12. "uppy-plugin",
  13. "webcam",
  14. "picture",
  15. "photo",
  16. "video",
  17. "record",
  18. "mediarecorder"
  19. ],
  20. "homepage": "https://uppy.io",
  21. "bugs": {
  22. "url": "https://github.com/transloadit/uppy/issues"
  23. },
  24. "repository": {
  25. "type": "git",
  26. "url": "git+https://github.com/transloadit/uppy.git"
  27. },
  28. "dependencies": {
  29. "@uppy/utils": "file:../utils",
  30. "preact": "^10.5.13"
  31. },
  32. "peerDependencies": {
  33. "@uppy/core": "^1.0.0"
  34. }
  35. }