{
  "name": "@macalinao/codama-rename-visitor",
  "version": "0.2.1",
  "description": "Codama visitor for renaming instructions and events within a program",
  "type": "module",
  "sideEffects": false,
  "author": "Ian Macalinao <me@ianm.com>",
  "homepage": "https://github.com/macalinao/coda",
  "license": "Apache-2.0",
  "keywords": [
    "codama",
    "coda",
    "solana",
    "anchor",
    "idl",
    "rename",
    "visitor",
    "typescript",
    "ian-macalinao"
  ],
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "files": [
    "dist/",
    "src/"
  ],
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/macalinao/coda.git",
    "directory": "packages/codama-rename-visitor"
  },
  "scripts": {
    "build": "tsc",
    "clean": "rm -fr dist/",
    "lint": "eslint . --cache",
    "test": "bun test src/"
  },
  "dependencies": {
    "codama": "^1.3.3"
  },
  "devDependencies": {
    "@macalinao/eslint-config": "^5",
    "@macalinao/tsconfig": "^3.2.3",
    "eslint": "^9.33.0",
    "typescript": "^5.9.2"
  },
  "lint-staged": {
    "*.{js,jsx,ts,tsx,cjs,mjs,cts,mts}": [
      "biome check --write --no-errors-on-unmatched",
      "eslint --fix --cache"
    ],
    "*.{json,jsonc,html}": "biome format --write --no-errors-on-unmatched"
  }
}
