{
  "name": "@bupkis/codemod-core",
  "version": "1.0.0",
  "type": "module",
  "description": "Shared utilities for bupkis codemods",
  "repository": {
    "directory": "packages/codemod-core",
    "type": "git",
    "url": "git+https://github.com/boneskull/bupkis.git"
  },
  "homepage": "https://bupkis.zip",
  "author": {
    "email": "boneskull@boneskull.com",
    "name": "Christopher Hiller"
  },
  "license": "BlueOak-1.0.0",
  "engines": {
    "node": "^22.13.0 || >=24.0.0"
  },
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "CHANGELOG.md",
    "dist",
    "src"
  ],
  "keywords": [
    "bupkis",
    "codemod",
    "migration",
    "assertions"
  ],
  "scripts": {
    "build": "tsc",
    "test": "npm run test:base -- \"test/*.test.ts\"",
    "test:base": "node --test --test-reporter=spec --import tsx",
    "test:ci": "npm run test -- --test-reporter=node-test-github-reporter",
    "test:coverage": "c8 --reporter=lcov --reporter=text npm test",
    "test:dev": "npm run test -- --watch"
  },
  "dependencies": {
    "@boneskull/bargs": "4.1.0",
    "ts-morph": "^28.0.0"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "prettier": {
    "jsdocCommentLineStrategy": "keep",
    "jsdocPreferCodeFences": true,
    "plugins": [
      "prettier-plugin-jsdoc",
      "prettier-plugin-pkg"
    ],
    "singleQuote": true,
    "tsdoc": true
  },
  "zshy": {
    "exports": {
      ".": "./src/index.ts",
      "./package.json": "./package.json"
    }
  }
}
