{
  "name": "@optimize-lodash/transform",
  "version": "4.0.0",
  "description": "Rewrites lodash imports in a given source file to be specific.",
  "keywords": [
    "lodash",
    "optimize"
  ],
  "homepage": "https://github.com/kyle-johnson/rollup-plugin-optimize-lodash-imports/tree/main/packages/transform",
  "repository": {
    "type": "git",
    "url": "https://github.com/kyle-johnson/rollup-plugin-optimize-lodash-imports.git"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "author": "Kyle Johnson",
  "license": "MIT",
  "engines": {
    "node": ">= 12"
  },
  "publishConfig": {
    "access": "public"
  },
  "jest": {
    "coverageDirectory": "coverage",
    "testEnvironment": "node",
    "preset": "ts-jest"
  },
  "devDependencies": {
    "@tsconfig/node12": "1.0.11",
    "@types/estree": "1.0.1",
    "@types/jest": "29.5.14",
    "@types/lodash": "4.17.20",
    "@types/node": "12.20.55",
    "@typescript-eslint/eslint-plugin": "8.47.0",
    "@typescript-eslint/parser": "8.47.0",
    "acorn": "8.14.0",
    "depcheck": "1.4.7",
    "eslint": "8.57.1",
    "eslint-config-prettier": "10.1.8",
    "eslint-plugin-jest": "29.0.1",
    "eslint-plugin-unicorn": "44.0.2",
    "jest": "29.7.0",
    "prettier": "3.6.2",
    "ts-jest": "29.4.5",
    "typescript": "5.9.3",
    "tsx": "4.20.6"
  },
  "dependencies": {
    "estree-walker": "^2.0.2",
    "magic-string": "~0.30.11"
  },
  "scripts": {
    "type-check": "tsc --noEmit",
    "lint": "eslint .",
    "test": "jest",
    "test:ci": "jest --coverage --ci",
    "generate:lodash-methods": "tsx scripts/generate-lodash-methods.ts",
    "build": "rm -rf dist && tsc -p tsconfig.dist.json",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "depcheck": "depcheck"
  }
}