{
  "name": "unplugin-ast",
  "type": "module",
  "version": "0.17.0",
  "description": "Manipulate the AST to transform your code.",
  "author": "Kevin Deng <sxzz@sxzz.moe>",
  "license": "MIT",
  "funding": "https://github.com/sponsors/sxzz",
  "homepage": "https://github.com/unplugin/unplugin-ast#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/unplugin/unplugin-ast.git"
  },
  "bugs": {
    "url": "https://github.com/unplugin/unplugin-ast/issues"
  },
  "keywords": [
    "unplugin",
    "rollup",
    "vite",
    "esbuild",
    "webpack"
  ],
  "exports": {
    ".": "./dist/index.js",
    "./ast-kit": "./dist/ast-kit.js",
    "./esbuild": "./dist/esbuild.js",
    "./rolldown": "./dist/rolldown.js",
    "./rollup": "./dist/rollup.js",
    "./rspack": "./dist/rspack.js",
    "./transformers": "./dist/transformers.js",
    "./vite": "./dist/vite.js",
    "./webpack": "./dist/webpack.js",
    "./package.json": "./package.json"
  },
  "files": [
    "dist"
  ],
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": "^22.18.0 || >=24.0.0"
  },
  "dependencies": {
    "@babel/generator": "^8.0.0-rc.4",
    "@babel/parser": "^8.0.0-rc.4",
    "@babel/types": "^8.0.0-rc.4",
    "ast-kit": "^3.0.0-beta.1",
    "magic-string-ast": "^1.0.3",
    "unplugin": "^3.0.0"
  },
  "inlinedDependencies": {
    "@antfu/utils": "9.3.0"
  },
  "devDependencies": {
    "@antfu/utils": "^9.3.0",
    "@sxzz/eslint-config": "^8.0.0",
    "@sxzz/prettier-config": "^2.3.1",
    "@types/node": "^25.6.0",
    "@typescript/native-preview": "7.0.0-dev.20260505.1",
    "bumpp": "^11.0.1",
    "eslint": "^10.3.0",
    "prettier": "^3.8.3",
    "rollup": "^4.60.3",
    "tsdown": "^0.21.10",
    "tsdown-preset-sxzz": "^0.5.0",
    "typescript": "^6.0.3",
    "vite": "^8.0.10",
    "vitest": "^4.1.5"
  },
  "prettier": "@sxzz/prettier-config",
  "scripts": {
    "lint": "eslint .",
    "lint:fix": "pnpm run lint --fix",
    "build": "tsdown",
    "dev": "tsdown --watch",
    "test": "vitest",
    "typecheck": "tsgo --noEmit",
    "release": "bumpp"
  }
}