{
  "name": "icloudy",
  "description": "A modern CLI tool for managing your iCloud Drive files and directories",
  "version": "0.1.7",
  "keywords": [
    "icloud",
    "icloud drive",
    "find",
    "path",
    "macos",
    "windows",
    "linux",
    "sync",
    "push",
    "pull"
  ],
  "bin": {
    "icloudy": "./bin/run"
  },
  "types": "./dist/index.d.ts",
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "engines": {
    "node": ">=16"
  },
  "author": "hexxspark <hexxspark@gmail.com>",
  "repository": {
    "type": "git",
    "url": "https://github.com/hexxspark/findicloud"
  },
  "bugs": {
    "url": "https://github.com/hexxspark/findicloud/issues",
    "email": "hexxspark@gmail.com"
  },
  "license": "Apache-2.0",
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsup",
    "build:full": "pnpm clean && pnpm build",
    "clean": "del-cli dist *.tsbuildinfo",
    "test": "pnpm run jest",
    "jest": "jest --runInBand --coverage",
    "dev": "pnpm build && node ./bin/run",
    "release": "release-it",
    "lint": "pnpm prettier:check && pnpm eslint",
    "lint:fix": "pnpm prettier:fix && pnpm eslint:fix",
    "eslint": "eslint",
    "eslint:fix": "pnpm eslint --fix",
    "prettier:cli": "prettier \"**/*.ts\" \"**/*.md\"",
    "prettier:check": "pnpm prettier:cli --check",
    "prettier:fix": "pnpm prettier:cli --write",
    "prepack": "pnpm build",
    "postpack": "del-cli oclif.manifest.json",
    "manifest": "oclif manifest"
  },
  "dependencies": {
    "@inquirer/prompts": "^7.3.3",
    "@oclif/core": "^4.2.9",
    "@oclif/plugin-help": "^6.2.26",
    "@oclif/plugin-plugins": "^5.4.34",
    "chalk": "4.1.2",
    "minimatch": "^10.0.1"
  },
  "devDependencies": {
    "@jest/console": "^29.7.0",
    "@oclif/test": "^4.1.12",
    "@types/chai": "^5.2.0",
    "@types/jest": "^29.5.14",
    "@types/node": "^22.13.10",
    "@typescript-eslint/eslint-plugin": "^8.26.1",
    "@typescript-eslint/parser": "^8.26.1",
    "chai": "^5.2.0",
    "del-cli": "^6.0.0",
    "eslint": "^9.22.0",
    "eslint-config-prettier": "^10.1.1",
    "eslint-plugin-eslint-plugin": "^6.4.0",
    "eslint-plugin-import": "^2.31.0",
    "eslint-plugin-jest": "^28.11.0",
    "eslint-plugin-prettier": "^5.2.3",
    "eslint-plugin-simple-import-sort": "^12.1.1",
    "eslint-plugin-unused-imports": "^4.1.4",
    "jest": "^29.7.0",
    "jest-junit": "^16.0.0",
    "memfs": "^4.17.0",
    "prettier": "^3.5.3",
    "release-it": "^18.1.2",
    "strip-ansi": "^7.1.0",
    "ts-jest": "^29.2.6",
    "tslib": "^2.8.1",
    "tsup": "^8.4.0",
    "typescript": "^5.8.2"
  },
  "oclif": {
    "bin": "icloudy",
    "dirname": "icloudy",
    "commands": "./dist/commands",
    "plugins": [
      "@oclif/plugin-help",
      "@oclif/plugin-plugins"
    ],
    "topicSeparator": " "
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "require": "./dist/index.js",
      "import": "./dist/index.mjs"
    }
  },
  "files": [
    "README.md",
    "dist",
    "src",
    "bin",
    "!*/__tests__"
  ],
  "packageManager": "pnpm@10.6.2",
  "pnpm": {
    "onlyBuiltDependencies": [
      "esbuild"
    ]
  }
}
