{
  "name": "squeaky-clean",
  "version": "0.6.2",
  "description": "✨ Easy, customizable and expandable development cache cleaner CLI with interactive configuration! Smart, safe, and configurable cache management for 25+ development tools.",
  "main": "dist/cli.js",
  "bin": {
    "squeaky": "dist/cli.js",
    "squeaky-clean": "dist/cli.js"
  },
  "scripts": {
    "build": "tsc --build",
    "build:watch": "tsc --watch",
    "build:patch": "npm run version:patch && npm run build",
    "build:minor": "npm run version:minor && npm run build",
    "build:major": "npm run version:major && npm run build",
    "dev": "tsx src/cli.ts",
    "start": "node dist/cli.js",
    "test": "vitest",
    "test:watch": "vitest --watch",
    "test:coverage": "vitest run --coverage",
    "test:os": "vitest run --config vitest.os.config.ts",
    "lint": "eslint src",
    "lint:fix": "eslint src --fix",
    "format": "prettier --write \"src/**/*.{ts,tsx,json}\"",
    "clean": "rimraf dist .tsbuildinfo",
    "prepublishOnly": "npm run clean && tsc --build --force",
    "postpublish": "bash scripts/update-homebrew.sh",
    "release": "npm run test && npm run build && npm pack && npm publish && npm run release:github",
    "release:patch": "npm run version:patch && npm run test && npm run build && npm publish && npm run release:github",
    "release:minor": "npm run version:minor && npm run test && npm run build && npm publish && npm run release:github",
    "release:major": "npm run version:major && npm run test && npm run build && npm publish && npm run release:github",
    "remove-self-dependency": "node scripts/remove-self-dependency.js",
    "version:patch": "npm version patch && npm run remove-self-dependency && node scripts/update-version.js",
    "version:minor": "npm version minor && npm run remove-self-dependency && node scripts/update-version.js",
    "version:major": "npm version major && npm run remove-self-dependency && node scripts/update-version.js",
    "version:sync": "npm run remove-self-dependency && node scripts/update-version.js",
    "release:github": "node scripts/update-github-release.js",
    "generate:cleaner": "tsx scripts/generate-cleaner.ts"
  },
  "keywords": [
    "cache",
    "clear",
    "developer",
    "tools",
    "interactive",
    "configuration",
    "wizard",
    "npm",
    "yarn",
    "pnpm",
    "bun",
    "webpack",
    "vite",
    "nx",
    "turbo",
    "flutter",
    "gradle",
    "docker",
    "vscode",
    "xcode",
    "android-studio",
    "jetbrains",
    "chrome",
    "firefox",
    "node",
    "build",
    "cli",
    "development",
    "clean",
    "system",
    "performance",
    "disk-space",
    "cleanup",
    "maintenance"
  ],
  "author": {
    "name": "Justin Chen",
    "email": "justin.sc.chen@gmail.com"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/chendrizzy/squeaky-clean.git"
  },
  "bugs": {
    "url": "https://github.com/chendrizzy/squeaky-clean/issues"
  },
  "homepage": "https://github.com/chendrizzy/squeaky-clean#readme",
  "engines": {
    "node": ">=18.0.0"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "dependencies": {
    "commander": "^11.1.0",
    "execa": "^5.1.1",
    "filesize": "^10.1.6",
    "fs-extra": "^11.3.2",
    "globby": "^11.1.0",
    "inquirer": "^8.2.7",
    "minimatch": "^10.1.1",
    "ora": "^5.4.1",
    "picocolors": "^1.1.1",
    "play-sound": "^1.1.6",
    "rimraf": "^6.1.2",
    "zod": "^4.1.13"
  },
  "devDependencies": {
    "@eslint/js": "^9.39.1",
    "@types/fs-extra": "^11.0.4",
    "@types/inquirer": "^9.0.9",
    "@types/node": "^20.19.25",
    "@typescript-eslint/eslint-plugin": "^6.21.0",
    "@typescript-eslint/parser": "^6.21.0",
    "@vitest/coverage-v8": "^3.2.4",
    "eslint": "^8.57.1",
    "eslint-config-prettier": "^9.1.2",
    "eslint-plugin-prettier": "^5.5.4",
    "globals": "^16.5.0",
    "memfs": "^4.51.1",
    "prettier": "^3.7.4",
    "tsx": "^4.21.0",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.48.1",
    "vite": "^6.4.1",
    "vitest": "^3.2.4"
  }
}
