{
  "name": "google-photos-migrate",
  "version": "2.12.0",
  "description": "A tool to fix EXIF data and recover filenames from a Google Photos takeout.",
  "bin": {
    "google-photos-migrate": "./esm/cli.js"
  },
  "type": "module",
  "exports": {
    ".": {
      "import": "./esm/index.js",
      "require": "./cjs/index.js",
      "default": "./esm/index.js"
    },
    "./*": "./*.js"
  },
  "main": "./cjs/index.js",
  "scripts": {
    "typecheck": "tsc --noEmit",
    "build": "yarn build:esm && yarn build:cjs",
    "build:esm": "tsc --module es2022 && tsc-alias",
    "build:cjs": "tsc --module commonjs --outDir cjs && echo '{\"type\": \"commonjs\"}' > cjs/package.json",
    "start": "node ./esm/cli.js",
    "deploy": "npm run build:esm && npm start --",
    "dev": "dotenv -v NODE_ENV=development tsx watch --clear-screen=false ./src/cli.ts",
    "lint": "prettier --check . && eslint",
    "format": "prettier -w . && eslint --fix",
    "ncu": "ncu -u"
  },
  "author": "Johannes Garz <johannes@garz.dev> (https://garz.dev/)",
  "license": "MIT",
  "devDependencies": {
    "@types/fs-extra": "^11.0.4",
    "@types/node": "^22.14.1",
    "@typescript-eslint/eslint-plugin": "^8.30.1",
    "@typescript-eslint/parser": "^8.30.1",
    "dotenv-cli": "^8.0.0",
    "eslint": "^9.25.0",
    "eslint-config-prettier": "^10.1.2",
    "eslint-plugin-only-warn": "^1.1.0",
    "eslint-plugin-prettier": "^5.2.6",
    "npm-check-updates": "^17.1.18",
    "prettier": "^3.5.3",
    "prettier-plugin-organize-imports": "^4.1.0",
    "tsc-alias": "^1.8.15",
    "tsx": "^4.19.3",
    "typescript": "^5.8.3"
  },
  "dependencies": {
    "cmd-ts": "^0.13.0",
    "exiftool-vendored": "^29.3.0",
    "fs-extra": "^11.3.0",
    "sanitize-filename": "^1.6.3"
  },
  "resolutions": {
    "micromatch": "4.0.8",
    "braces": "3.0.3"
  },
  "keywords": [
    "google",
    "photos",
    "immich",
    "migrate"
  ],
  "files": [
    "/{esm,cjs}/**/*.{js,d.ts,json}",
    "/LICENSE",
    "/README.md"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/garzj/google-photos-migrate.git"
  },
  "bugs": {
    "url": "https://github.com/garzj/google-photos-migrate/issues"
  },
  "homepage": "https://github.com/garzj/google-photos-migrate#readme"
}
