{
  "name": "ast-kit",
  "version": "0.12.2",
  "description": "A toolkit for easy Babel AST generation and manipulation.",
  "type": "module",
  "license": "MIT",
  "homepage": "https://github.com/sxzz/ast-kit#readme",
  "bugs": {
    "url": "https://github.com/sxzz/ast-kit/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sxzz/ast-kit.git"
  },
  "files": [
    "dist"
  ],
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "require": "./dist/index.cjs",
      "import": "./dist/index.js"
    },
    "./package.json": "./package.json"
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@babel/parser": "^7.24.6",
    "pathe": "^1.1.2"
  },
  "devDependencies": {
    "@babel/types": "^7.24.6",
    "@sxzz/eslint-config": "^3.11.0",
    "@sxzz/prettier-config": "^2.0.2",
    "@types/node": "^20.13.0",
    "@vitest/coverage-v8": "^1.6.0",
    "@vitest/ui": "^1.6.0",
    "bumpp": "^9.4.1",
    "eslint": "^9.3.0",
    "estree-walker": "^3.0.3",
    "fast-glob": "^3.3.2",
    "prettier": "^3.2.5",
    "tsup": "^8.0.2",
    "tsx": "^4.11.0",
    "typescript": "5.5.0-beta",
    "vitest": "^1.6.0"
  },
  "engines": {
    "node": ">=16.14.0"
  },
  "prettier": "@sxzz/prettier-config",
  "scripts": {
    "lint": "eslint .",
    "lint:fix": "pnpm run lint --fix",
    "build": "tsup",
    "test": "vitest",
    "release": "bumpp && pnpm publish",
    "typecheck": "tsc --noEmit"
  }
}