{
  "name": "img-dl",
  "version": "0.10.1",
  "description": "Download image(s), by command or programmatically",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "imgdl": "dist/cli.js"
  },
  "files": [
    "dist"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/fityannugroho/img-dl.git"
  },
  "keywords": [
    "image-downloader",
    "nodejs",
    "cli"
  ],
  "author": "Fityan <fityannugroho@gmail.com> (https://github.com/fityannugroho)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/fityannugroho/img-dl/issues"
  },
  "homepage": "https://github.com/fityannugroho/img-dl#readme",
  "funding": "https://github.com/sponsors/fityannugroho",
  "engines": {
    "node": ">=20.9"
  },
  "devDependencies": {
    "@biomejs/biome": "2.4.3",
    "@types/cli-progress": "^3.11.6",
    "@types/node": "^25.3.0",
    "@vitest/coverage-v8": "^4.0.18",
    "execa": "^9.6.1",
    "file-type": "^21.3.0",
    "msw": "^2.12.10",
    "tsup": "^8.5.1",
    "typescript": "^5.9.3",
    "vitest": "^4.0.18"
  },
  "dependencies": {
    "chalk": "^5.6.2",
    "cli-progress": "^3.12.0",
    "got": "^14.6.6",
    "meow": "^14.0.0",
    "p-queue": "^9.1.0",
    "sanitize-filename": "^1.6.3",
    "sharp": "^0.34.5"
  },
  "scripts": {
    "lint": "biome check .",
    "lint:fix": "biome check --write .",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:cov": "vitest run --coverage",
    "build": "tsup src/index.ts src/cli.ts --format esm -d dist --clean --dts src/index.ts --sourcemap --minify",
    "prepublish": "pnpm run build"
  }
}