{
  "name": "@wayofdev/commitlint-config",
  "version": "4.0.0",
  "private": false,
  "description": "A shareable commitlint configuration for projects.",
  "keywords": [
    "commitlint",
    "commitlint-config"
  ],
  "homepage": "https://github.com/wayofdev/npm-shareable-configs/tree/master/packages/commitlint-config#readme",
  "bugs": {
    "url": "https://github.com/wayofdev/npm-shareable-configs/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/wayofdev/npm-shareable-configs.git",
    "directory": "packages/commitlint-config"
  },
  "license": "MIT",
  "author": {
    "name": "Andrij Orlenko",
    "email": "lotyp7@gmail.com",
    "url": "https://github.com/lotyp"
  },
  "exports": {
    ".": {
      "require": "./src/index.js"
    }
  },
  "main": "src/index.js",
  "files": [
    "src/*",
    "scripts/*"
  ],
  "dependencies": {
    "@commitlint/config-conventional": "18.4.4"
  },
  "devDependencies": {
    "@types/node": "^20.10.7",
    "es-check": "^7.1.1",
    "rimraf": "^5.0.5"
  },
  "peerDependencies": {
    "@commitlint/cli": ">= 17",
    "@wayofdev/lint-staged-config": "^2.2.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "clean": "rimraf ./dist ./coverage ./tsconfig.tsbuildinfo",
    "lint": "eslint --ext .ts,.js,.cjs,.mjs --cache --cache-location ../../.cache/eslint/commitlint-config.eslintcache",
    "lint:dist": "es-check -v",
    "lint:fix": "eslint --ext .ts,.tsx,.js,.jsx,.mjs,.cjs,.mts,.cts --fix --cache --cache-location ../../.cache/eslint/commitlint-config.eslintcache",
    "lint:types": "tsc --project tsconfig.json --noEmit"
  }
}