{
  "name": "unplugin-ast",
  "version": "0.14.2",
  "description": "Manipulate the AST to transform your code.",
  "type": "module",
  "keywords": [
    "unplugin",
    "rollup",
    "vite",
    "esbuild",
    "webpack"
  ],
  "license": "MIT",
  "homepage": "https://github.com/unplugin/unplugin-ast#readme",
  "bugs": {
    "url": "https://github.com/unplugin/unplugin-ast/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/unplugin/unplugin-ast.git"
  },
  "author": "三咲智子 Kevin Deng <sxzz@sxzz.moe>",
  "funding": "https://github.com/sponsors/sxzz",
  "files": [
    "dist"
  ],
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": "./dist/index.js",
    "./vite": "./dist/vite.js",
    "./webpack": "./dist/webpack.js",
    "./rspack": "./dist/rspack.js",
    "./rollup": "./dist/rollup.js",
    "./rolldown": "./dist/rolldown.js",
    "./esbuild": "./dist/esbuild.js",
    "./transformers": "./dist/transformers.js",
    "./ast-kit": "./dist/ast-kit.js",
    "./*": "./*"
  },
  "typesVersions": {
    "*": {
      "*": [
        "./dist/*",
        "./*"
      ]
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@antfu/utils": "^9.1.0",
    "@babel/generator": "^7.26.9",
    "ast-kit": "^1.4.0",
    "magic-string-ast": "^0.7.0",
    "unplugin": "^2.2.0",
    "unplugin-utils": "^0.2.4"
  },
  "devDependencies": {
    "@babel/parser": "^7.26.9",
    "@babel/types": "^7.26.9",
    "@sxzz/eslint-config": "^5.2.0",
    "@sxzz/prettier-config": "^2.2.0",
    "@types/babel__generator": "^7.6.8",
    "@types/node": "^22.13.9",
    "bumpp": "^10.0.3",
    "eslint": "^9.21.0",
    "prettier": "^3.5.3",
    "rollup": "^4.34.9",
    "tsdown": "^0.6.3",
    "tsx": "^4.19.3",
    "typescript": "^5.8.2",
    "vite": "^6.2.0",
    "vitest": "^3.0.7"
  },
  "engines": {
    "node": ">=18.12.0"
  },
  "prettier": "@sxzz/prettier-config",
  "scripts": {
    "lint": "eslint .",
    "lint:fix": "pnpm run lint --fix",
    "build": "tsdown",
    "dev": "tsdown --watch",
    "test": "vitest",
    "typecheck": "tsc --noEmit",
    "release": "bumpp && pnpm publish"
  }
}