{
  "name": "icodec",
  "version": "0.6.0",
  "description": "Image encoders & decoders built with WebAssembly",
  "license": "MIT",
  "author": "Kaciras <Kaciras@outlook.com>",
  "repository": {
    "type": "git",
    "url": "https://github.com/Kaciras/icodec"
  },
  "type": "module",
  "keywords": [
    "WebAssembly",
    "wasm",
    "image",
    "jpg",
    "png",
    "qoi",
    "webp",
    "heic",
    "avif",
    "jxl",
    "wp2",
    "mozjpeg",
    "pngquant"
  ],
  "files": [
    "versions.json",
    "dist/*.{js,wasm}",
    "lib/*.{js,d.ts}"
  ],
  "exports": {
    "./version.json": "./version.json",
    ".": "./lib/index.js",
    "./node": {
      "types": "./lib/index.d.ts",
      "default": "./lib/node.js"
    },
    "./qoi-enc.wasm": "./dist/qoi.wasm",
    "./qoi-dec.wasm": "./dist/qoi.wasm",
    "./png-enc.wasm": "./dist/pngquant_bg.wasm",
    "./png-dec.wasm": "./dist/pngquant_bg.wasm",
    "./jpeg-enc.wasm": "./dist/mozjpeg.wasm",
    "./jpeg-dec.wasm": "./dist/mozjpeg.wasm",
    "./*.wasm": "./dist/*.wasm"
  },
  "devDependencies": {
    "@kaciras/eslint-config-core": "^3.2.0",
    "@kaciras/eslint-config-typescript": "^3.2.0",
    "@kaciras/utilities": "^1.0.4",
    "@types/emscripten": "^1.39.13",
    "@types/node": "^22.8.7",
    "esbench": "^0.7.0",
    "eslint": "^9.14.0",
    "pixelmatch": "^6.0.0",
    "sharp": "^0.33.5",
    "smol-toml": "^1.3.0",
    "typescript": "^5.6.3",
    "version-compare": "^3.11.0"
  }
}