{
  "scripts": {
    "prepare": "husky"
  },
  "lint-staged": {
    "*.{cjs,cts,js,jsx,mjs,mts,ts,tsx,vue}": "eslint --fix",
    <% if (stylelint) { %>
    "*.{css,less,scss}": "stylelint --fix",
    <% } %>
    <% if (prettier) { %>
    "*.{cjs,css,cts,html,js,json,jsx,less,md,mjs,mts,scss,ts,tsx,vue,yaml,yml}": "prettier --write",
    <% } %>
  },
  "devDependencies": {
    "husky": "^9.1.3",
    "lint-staged": "^16.0.0"
  }
}
