{
  "name": "@codemod-utils/ast-javascript",
  "version": "4.0.2",
  "description": "Utilities for handling *.{js,ts} files as abstract syntax tree",
  "keywords": [
    "codemod",
    "ember-codemod"
  ],
  "homepage": "https://codemod-utils.netlify.app/",
  "repository": {
    "type": "git",
    "url": "git@github.com:ijlee2/codemod-utils.git",
    "directory": "packages/ast/javascript"
  },
  "license": "MIT",
  "author": "Isaac J. Lee",
  "type": "module",
  "exports": {
    ".": "./dist/index.js",
    "./*": {
      "types": "./dist/*.d.ts",
      "default": "./dist/*.js"
    }
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "typesVersions": {
    "*": {
      "*": [
        "dist/*"
      ]
    }
  },
  "files": [
    "dist"
  ],
  "dependencies": {
    "@babel/parser": "^7.29.7",
    "recast": "^0.23.11"
  },
  "devDependencies": {
    "@sondr3/minitest": "^0.1.2",
    "@types/node": "^22.19.19",
    "concurrently": "^10.0.3",
    "eslint": "^9.39.4",
    "prettier": "^3.8.4",
    "typescript": "^5.9.3",
    "@codemod-utils/tests": "3.0.2",
    "@shared-configs/prettier": "0.0.0",
    "@shared-configs/eslint-config-node": "0.0.0",
    "@shared-configs/typescript": "0.0.0"
  },
  "engines": {
    "node": "22.* || >= 24"
  },
  "scripts": {
    "build": "sh build.sh --production",
    "format": "prettier . --cache --write",
    "lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\"",
    "lint:fix": "concurrently \"pnpm:lint:*:fix\" --names \"fix:\" && pnpm format",
    "lint:format": "prettier . --cache --check",
    "lint:js": "eslint . --cache",
    "lint:js:fix": "eslint . --fix",
    "lint:types": "tsc --noEmit",
    "test": "sh build.sh --test && mt dist-for-testing --quiet"
  }
}