package.json 932 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "@ffmpeg/core-mt",
  3. "version": "0.12.5",
  4. "description": "FFmpeg WebAssembly version (multi thread)",
  5. "main": "./dist/umd/ffmpeg-core.js",
  6. "exports": {
  7. ".": {
  8. "import": "./dist/esm/ffmpeg-core.js",
  9. "require": "./dist/umd/ffmpeg-core.js"
  10. },
  11. "./wasm": {
  12. "import": "./dist/esm/ffmpeg-core.wasm",
  13. "require": "./dist/umd/ffmpeg-core.wasm"
  14. }
  15. },
  16. "files": [
  17. "dist"
  18. ],
  19. "repository": {
  20. "type": "git",
  21. "url": "git+https://github.com/ffmpegwasm/ffmpeg.wasm.git"
  22. },
  23. "keywords": [
  24. "ffmpeg",
  25. "WebAssembly",
  26. "video",
  27. "audio",
  28. "transcode"
  29. ],
  30. "author": "Jerome Wu <[email protected]>",
  31. "license": "MIT",
  32. "bugs": {
  33. "url": "https://github.com/ffmpegwasm/ffmpeg.wasm/issues"
  34. },
  35. "engines": {
  36. "node": ">=16.x"
  37. },
  38. "homepage": "https://github.com/ffmpegwasm/ffmpeg.wasm#readme",
  39. "publishConfig": {
  40. "access": "public"
  41. }
  42. }