package.json 834 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "@uppy/audio",
  3. "description": "Uppy plugin that records audio using the device’s microphone.",
  4. "version": "2.0.2",
  5. "license": "MIT",
  6. "main": "lib/index.js",
  7. "style": "dist/style.min.css",
  8. "keywords": [
  9. "file uploader",
  10. "uppy",
  11. "uppy-plugin",
  12. "audio",
  13. "microphone",
  14. "sound",
  15. "record",
  16. "mediarecorder"
  17. ],
  18. "type": "module",
  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. "devDependencies": {
  32. "vitest": "^1.2.1"
  33. },
  34. "peerDependencies": {
  35. "@uppy/core": "workspace:^"
  36. },
  37. "publishConfig": {
  38. "access": "public"
  39. }
  40. }