{
  "name": "ast-walker-scope",
  "version": "0.8.3",
  "description": "Traverse Babel AST with scope information.",
  "type": "module",
  "license": "MIT",
  "homepage": "https://github.com/sxzz/ast-walker-scope#readme",
  "bugs": {
    "url": "https://github.com/sxzz/ast-walker-scope/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sxzz/ast-walker-scope.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",
    "./package.json": "./package.json"
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@babel/parser": "^7.28.4",
    "ast-kit": "^2.1.3"
  },
  "devDependencies": {
    "@babel/types": "^7.28.4",
    "@sxzz/eslint-config": "^7.2.7",
    "@sxzz/prettier-config": "^2.2.4",
    "@types/node": "^24.7.0",
    "bumpp": "^10.3.1",
    "eslint": "^9.37.0",
    "magic-string": "^0.30.19",
    "prettier": "^3.6.2",
    "tsdown": "^0.15.6",
    "tsx": "^4.20.6",
    "typescript": "^5.9.3",
    "vite": "^7.1.9",
    "vitest": "^3.2.4"
  },
  "engines": {
    "node": ">=20.19.0"
  },
  "prettier": "@sxzz/prettier-config",
  "tsdown": {
    "exports": true
  },
  "scripts": {
    "lint": "eslint .",
    "lint:fix": "pnpm run lint --fix",
    "build": "tsdown",
    "test": "vitest",
    "typecheck": "tsc --noEmit",
    "release": "bumpp"
  }
}