UNPKG

google-photos-migrate

Version:

A tool to fix EXIF data and recover filenames from a Google Photos takeout.

79 lines (78 loc) 2.26 kB
{ "name": "google-photos-migrate", "version": "2.12.3", "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": "^25.2.0", "@typescript-eslint/eslint-plugin": "^8.54.0", "@typescript-eslint/parser": "^8.54.0", "dotenv-cli": "^11.0.0", "eslint": "^9.39.2", "eslint-config-prettier": "^10.1.8", "eslint-plugin-only-warn": "^1.1.0", "eslint-plugin-prettier": "^5.5.5", "npm-check-updates": "^19.3.2", "prettier": "^3.8.1", "prettier-plugin-organize-imports": "^4.3.0", "tsc-alias": "^1.8.16", "tsx": "^4.21.0", "typescript": "^5.9.3" }, "dependencies": { "cmd-ts": "^0.14.3", "exiftool-vendored": "^35.6.0", "fs-extra": "^11.3.3", "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" }