{
  "name": "@uswriting/exiftool",
  "version": "1.0.9",
  "description": "ExifTool powered by WebAssembly to extract and write metadata from files in browsers and Node.js environments using zeroperl",
  "scripts": {
    "build": "npm run build:esm && npm run build:cjs && bun build.ts",
    "build:esm": "tsc --emitDeclarationOnly -p tsconfig.esm.json",
    "build:cjs": "tsc --emitDeclarationOnly -p tsconfig.cjs.json",
    "test": "vitest run"
  },
  "main": "./dist/cjs/index.cjs",
  "module": "./dist/esm/index.js",
  "typesVersions": {
    "*": {
      "cjs": [
        "./dist/cjs/types/index.d.ts"
      ],
      "esm": [
        "./dist/esm/types/index.d.ts"
      ]
    }
  },
  "exports": {
    ".": {
      "import": {
        "types": "./dist/esm/types/index.d.ts",
        "default": "./dist/esm/index.js"
      },
      "require": {
        "types": "./dist/cjs/types/index.d.ts",
        "default": "./dist/cjs/index.cjs"
      }
    },
    "./esm": {
      "import": {
        "types": "./dist/esm/types/index.d.ts",
        "default": "./dist/esm/index.js"
      }
    },
    "./cjs": {
      "require": {
        "types": "./dist/cjs/types/index.d.ts",
        "default": "./dist/cjs/index.cjs"
      }
    }
  },
  "keywords": [
    "exiftool",
    "metadata",
    "exif",
    "iptc",
    "xmp",
    "wasm",
    "webassembly",
    "browser",
    "node",
    "universal",
    "files",
    "images",
    "documents",
    "media",
    "zeroperl"
  ],
  "author": "6over3",
  "license": "Apache-2.0",
  "type": "module",
  "types": "dist/esm/types/index.d.ts",
  "files": [
    "dist"
  ],
  "homepage": "https://github.com/6over3/exiftool#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/6over3/exiftool.git"
  },
  "bugs": {
    "url": "https://github.com/6over3/exiftool/issues"
  },
  "devDependencies": {
    "@types/bun": "^1.3.2",
    "typescript": "^5.7.3",
    "vitest": "^4.0.15"
  },
  "dependencies": {
    "@6over3/zeroperl-ts": "1.0.10"
  }
}
