package.json 847 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "fmode-ffmpeg",
  3. "version": "0.1.1",
  4. "description": "Claude Code skill: run ffmpeg/ffprobe for audio & video processing via a bundled static binary (ffmpeg-static). No system ffmpeg install required. Provides `npx fmode-ffmpeg exec`/`probe`/`which` passthrough plus a Claude Code skill.",
  5. "type": "commonjs",
  6. "bin": {
  7. "fmode-ffmpeg": "bin/fmode-ffmpeg.js"
  8. },
  9. "scripts": {
  10. "smoke": "node scripts/smoke.js"
  11. },
  12. "files": [
  13. ".claude-plugin/",
  14. "bin/",
  15. "README.md",
  16. "scripts/",
  17. "skill-package-manifest.json",
  18. "skills/"
  19. ],
  20. "keywords": [
  21. "claude-code",
  22. "claude-skill",
  23. "fmode",
  24. "ffmpeg",
  25. "ffprobe",
  26. "ffmpeg-static",
  27. "audio",
  28. "video",
  29. "transcode"
  30. ],
  31. "license": "MIT",
  32. "dependencies": {
  33. "ffmpeg-static": "5.3.0",
  34. "ffprobe-static": "3.1.0"
  35. }
  36. }