{
  "name": "@invintusmedia/tomp4",
  "version": "1.7.4",
  "description": "Convert MPEG-TS, fMP4, and HLS streams to MP4 with clipping support - pure JavaScript, zero dependencies",
  "main": "src/index.js",
  "module": "src/index.js",
  "types": "src/index.d.ts",
  "type": "module",
  "exports": {
    ".": {
      "import": "./src/index.js",
      "require": "./dist/tomp4.js",
      "types": "./src/index.d.ts"
    }
  },
  "files": [
    "src",
    "dist"
  ],
  "scripts": {
    "build": "node build.js",
    "dev": "npx serve . -p 3000",
    "test": "npm run test:hls-map && npm run test:thumbnail && npm run test:thumbnail-pick && npm run test:clip && npm run test:mp4 && npm run test:av-sync && npm run test:mp4-clip",
    "test:hls-map": "node tests/hls-map.test.js",
    "test:thumbnail": "node tests/thumbnail.node.test.js",
    "test:thumbnail-pick": "node tests/thumbnail-frame-pick.test.js",
    "test:clip": "node tests/clip.test.js",
    "test:fmp4-clip": "node tests/fmp4-clip.test.js",
    "test:av-sync": "node tests/av-sync.test.js",
    "test:mp4-clip": "node tests/mp4-clip.test.js",
    "test:mp4": "node tests/mp4-parser.test.js",
    "test:all": "npm run test",
    "release": "npm test && npm run build && git add -A && git commit -m \"v$(node -p \"require('./package.json').version\")\" && git tag v$(node -p \"require('./package.json').version\") && git push && git push --tags",
    "release:patch": "npm version patch --no-git-tag-version && npm run release",
    "release:minor": "npm version minor --no-git-tag-version && npm run release",
    "release:major": "npm version major --no-git-tag-version && npm run release",
    "prepublishOnly": "npm run build"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/TVWIT/toMp4.js.git"
  },
  "keywords": [
    "mp4",
    "mpeg-ts",
    "mpegts",
    "fmp4",
    "video",
    "converter",
    "transmux",
    "hls",
    "streaming",
    "clip",
    "trim",
    "cut"
  ],
  "author": "Invintus Media",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/TVWIT/toMp4.js/issues"
  },
  "homepage": "https://tvwit.github.io/toMp4.js/"
}
