{
  "name": "mhtml-stream",
  "version": "3.0.1",
  "description": "Streaming MHTML parser",
  "keywords": [
    "mhtml",
    "stream"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/erikbrinkman/mhtml-stream.git"
  },
  "homepage": "https://erikbrinkman.github.io/mhtml-stream/",
  "author": "Erik Brinkman <erik.brinkman@gmail.com>",
  "license": "MIT",
  "type": "module",
  "engines": {
    "node": ">=20.19"
  },
  "sideEffects": false,
  "types": "dist/index.d.ts",
  "module": "dist/mhtml.esm.min.js",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/mhtml.esm.min.js"
    }
  },
  "files": [
    "/dist/**/*.js",
    "/dist/**/*.d.ts"
  ],
  "scripts": {
    "cli": "bun src/cli.ts",
    "fmt": "biome format --write",
    "lint": "tsc && biome check && typedoc --emit none",
    "doc": "typedoc",
    "export": "tsc -p tsconfig.build.json && bun build src/index.ts --minify --outfile dist/mhtml.esm.min.js",
    "prepack": "bun lint && bun test --coverage && bun export && publint --strict && npm_config_ignore_scripts=true attw --pack --profile esm-only"
  },
  "dependencies": {
    "base64-js": "^1.5.1"
  },
  "devDependencies": {
    "@arethetypeswrong/cli": "^0.18.4",
    "@biomejs/biome": "^2.4.15",
    "@types/base64-js": "^1.5.0",
    "@types/bun": "^1.3.14",
    "@types/yargs": "^17.0.35",
    "publint": "^0.3.21",
    "typedoc": "^0.28.19",
    "typescript": "~6.0.3",
    "yargs": "^18.0.0"
  }
}
