package.json 873 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "@uppy/audio",
  3. "description": "Uppy plugin that records audio using the device’s microphone.",
  4. "version": "1.1.2",
  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. "audio",
  14. "microphone",
  15. "sound",
  16. "record",
  17. "mediarecorder"
  18. ],
  19. "type": "module",
  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": "workspace:^",
  30. "preact": "^10.5.13"
  31. },
  32. "devDependencies": {
  33. "@jest/globals": "^29.0.0"
  34. },
  35. "peerDependencies": {
  36. "@uppy/core": "workspace:^"
  37. },
  38. "publishConfig": {
  39. "access": "public"
  40. }
  41. }