{
  "name": "mediainfo.js",
  "version": "0.3.6",
  "description": "Emscripten port of MediaInfoLib displays information about video and audio files.",
  "author": "buzz",
  "repository": {
    "type": "git",
    "url": "https://github.com/buzz/mediainfo.js"
  },
  "bugs": "https://github.com/buzz/mediainfo.js/issues",
  "homepage": "https://mediainfo.js.org/",
  "license": "BSD-2-Clause",
  "sideEffects": false,
  "keywords": [
    "mediainfo",
    "emscripten",
    "video",
    "audio",
    "media"
  ],
  "files": [
    "LICENSE.txt",
    "README.md",
    "dist/",
    "src/"
  ],
  "engines": {
    "node": ">=18.0.0"
  },
  "bin": {
    "mediainfo.js": "./dist/esm/cli.js"
  },
  "type": "module",
  "main": "./dist/cjs/index.cjs",
  "module": "./dist/esm/index.js",
  "browser": "./dist/esm-bundle/index.min.js",
  "types": "./dist/index.d.ts",
  "unpkg": "./dist/umd/index.min.js",
  "jsdelivr": "./dist/umd/index.min.js",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "module": "./dist/esm-bundle/index.js",
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.cjs",
      "default": "./dist/esm/index.js"
    },
    "./MediaInfoModule.wasm": "./dist/MediaInfoModule.wasm",
    "./package.json": "./package.json"
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "commit-and-tag-version": {
    "types": [
      {
        "type": "feat",
        "section": "Features"
      },
      {
        "type": "fix",
        "section": "Bug Fixes"
      },
      {
        "type": "build",
        "scope": "deps",
        "section": "Upgrades"
      },
      {
        "type": "chore",
        "hidden": true
      },
      {
        "type": "docs",
        "hidden": true
      },
      {
        "type": "style",
        "hidden": true
      },
      {
        "type": "refactor",
        "hidden": true
      },
      {
        "type": "perf",
        "hidden": true
      },
      {
        "type": "test",
        "hidden": true
      }
    ]
  },
  "dependencies": {
    "yargs": "^18.0.0"
  },
  "devDependencies": {
    "@babel/cli": "^7.28.3",
    "@babel/core": "^7.28.3",
    "@babel/preset-env": "^7.28.3",
    "@babel/preset-typescript": "^7.27.1",
    "@babel/register": "^7.28.3",
    "@commitlint/cli": "^19.8.1",
    "@commitlint/config-conventional": "^19.8.1",
    "@eslint/js": "^9.34.0",
    "@jest/globals": "^30.1.1",
    "@rollup/plugin-babel": "^6.0.4",
    "@rollup/plugin-node-resolve": "^16.0.1",
    "@rollup/plugin-terser": "^0.4.4",
    "@rollup/plugin-virtual": "^3.0.2",
    "@types/decompress": "^4.2.7",
    "@types/emscripten": "^1.40.1",
    "@types/gulp": "^4.0.17",
    "@types/gulp-rename": "^2.0.6",
    "@types/gulp-sourcemaps": "^0.0.38",
    "@types/jest": "^30.0.0",
    "@types/node": "^24.3.0",
    "@types/vinyl-buffer": "^1.0.3",
    "@types/vinyl-source-stream": "^0.0.34",
    "@types/yargs": "^17.0.33",
    "@xmldom/is-dom-node": "^1.0.1",
    "@xmldom/xmldom": "^0.9.8",
    "babel-jest": "^30.1.1",
    "babel-plugin-add-import-extension": "^1.6.0",
    "commit-and-tag-version": "^12.6.0",
    "csv-parse": "^6.1.0",
    "decompress": "^4.2.1",
    "eslint": "^9.34.0",
    "eslint-plugin-import": "^2.32.0",
    "eslint-plugin-jest": "^29.0.1",
    "eslint-plugin-prettier": "^5.5.4",
    "eslint-plugin-simple-import-sort": "^12.1.1",
    "eslint-plugin-unicorn": "^60.0.0",
    "globals": "^16.3.0",
    "gulp": "^5.0.1",
    "gulp-babel": "^8.0.0",
    "gulp-cli": "^3.1.0",
    "gulp-rename": "^2.1.0",
    "gulp-sourcemaps": "^3.0.0",
    "husky": "^9.1.7",
    "jest": "^30.1.1",
    "jest-environment-node": "^30.1.1",
    "jest-matcher-utils": "^30.1.1",
    "prettier": "^3.6.2",
    "rimraf": "^6.0.1",
    "rollup": "^4.49.0",
    "typescript": "^5.9.2",
    "typescript-eslint": "^8.41.0",
    "xpath": "^0.0.34"
  },
  "scripts": {
    "build": "BABEL_ENV=GULP gulp",
    "clean": "rimraf dist build",
    "lint": "eslint .",
    "release": "commit-and-tag-version",
    "test": "BABEL_ENV=JEST jest --detectOpenHandles --forceExit",
    "typecheck": "tsc --project ."
  }
}