{
  "name": "ast-kit",
  "version": "0.6.5",
  "packageManager": "pnpm@8.6.0",
  "description": "AST Toolkit.",
  "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": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./package.json": "./package.json"
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@babel/parser": "^7.22.4",
    "@rollup/pluginutils": "^5.0.2",
    "pathe": "^1.1.0"
  },
  "devDependencies": {
    "@babel/types": "^7.22.4",
    "@sxzz/eslint-config": "^3.0.0-beta.12",
    "@types/node": "^18.16.16",
    "@vitest/coverage-c8": "^0.31.4",
    "@vitest/ui": "^0.32.0",
    "bumpp": "^9.1.0",
    "eslint": "^8.41.0",
    "eslint-define-config": "^1.20.0",
    "estree-walker": "^3.0.3",
    "fast-glob": "^3.2.12",
    "prettier": "^2.8.8",
    "tsup": "^6.7.0",
    "tsx": "^3.12.7",
    "typescript": "^5.0.4",
    "vitest": "^0.31.1"
  },
  "engines": {
    "node": ">=16.14.0"
  },
  "scripts": {
    "lint": "eslint .",
    "lint:fix": "pnpm run lint --fix",
    "build": "tsup",
    "test": "vitest",
    "release": "bumpp && pnpm publish"
  }
}