{
  "name": "heic-converter",
  "version": "1.0.0",
  "description": "Convert HEIC images to PNG/JPEG entirely in the browser using libheif-js",
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    }
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsup src/index.ts --format cjs,esm --dts",
    "build:demo": "vite build",
    "dev": "vite",
    "prepublishOnly": "npm run build",
    "test": "echo \"No tests yet\" && exit 0"
  },
  "keywords": [
    "heic",
    "heif",
    "converter",
    "image",
    "png",
    "jpeg",
    "browser",
    "webassembly",
    "heic-to-png",
    "heic-to-jpeg",
    "image-converter"
  ],
  "author": "Thomas van Strijland",
  "license": "MIT",
  "dependencies": {
    "libheif-js": "^1.18.2"
  },
  "devDependencies": {
    "@types/node": "^20.10.0",
    "tsup": "^8.0.1",
    "typescript": "^5.3.3",
    "vite": "^7.1.9"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/ThomasVStrijland/heic-converter"
  },
  "bugs": {
    "url": "https://github.com/ThomasVStrijland/heic-converter/issues"
  },
  "homepage": "https://github.com/ThomasVStrijland/heic-converter#readme"
}
