{
  "name": "eslint-plugin-comment-length",
  "version": "2.3.1",
  "description": "An ESLint plugin that provides rules that limit the line length of your comments",
  "types": "./lib/index.d.ts",
  "main": "./lib/cjs/index.cjs",
  "module": "./lib/mjs/index.js",
  "type": "module",
  "exports": {
    ".": {
      "types": "./lib/index.d.ts",
      "import": "./lib/mjs/index.js",
      "require": "./lib/cjs/index.cjs",
      "default": "./lib/cjs/index.cjs"
    }
  },
  "files": [
    "lib/**",
    "src/**"
  ],
  "keywords": [
    "eslint",
    "eslintplugin",
    "max-len",
    "comments",
    "reflow"
  ],
  "scripts": {
    "build": "rm -rf ./lib && ROLLUP__FORMAT=cjs rollup -c rollup.config.js && ROLLUP__FORMAT=esm rollup -c rollup.config.js && tsc",
    "watch": "ROLLUP__FORMAT=esm rollup -c rollup.config.js --watch",
    "prepublishOnly": "cp ../README.md ./README.md; npm run build",
    "postpublish": "rm README.md",
    "type-check": "tsc --noEmit",
    "test": "jest --config=.jestrc.json"
  },
  "author": "Lasse Felskov Agersten <lfa@appear.dk>",
  "repository": {
    "type": "git",
    "url": "https://github.com/lasselupe33/eslint-plugin-comment-length.git"
  },
  "license": "MIT",
  "dependencies": {
    "@typescript-eslint/utils": "^8.59.0"
  },
  "devDependencies": {
    "@types/eslint": "^9.6.1",
    "@types/estree": "^1.0.8",
    "@types/node": "^24.12.2",
    "@typescript-eslint/rule-tester": "^8.59.0",
    "enhanced-resolve": "^5.20.1",
    "esbuild": "^0.28.0",
    "rollup": "^4.60.2",
    "rollup-plugin-esbuild": "^6.2.1",
    "typescript": "^6.0.3"
  },
  "peerDependencies": {
    "eslint": ">=8.0.0"
  }
}
