{
  "name": "eslint-plugin-check-file",
  "version": "3.3.2",
  "description": "ESLint rules for consistent filename and folder. Allows you to enforce a consistent naming pattern for the filename and folder",
  "keywords": [
    "eslint",
    "eslintplugin",
    "eslint-plugin",
    "folder",
    "path",
    "file",
    "filename",
    "glob-matching",
    "naming-conventions"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/dukeluo/eslint-plugin-check-file.git"
  },
  "author": "Huan Luo <dukeluo@outlook.com> (https://shaiwang.life)",
  "funding": [
    {
      "type": "ko_fi",
      "url": "https://ko-fi.com/huanluo"
    },
    {
      "type": "github",
      "url": "https://github.com/sponsors/dukeluo"
    }
  ],
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/dukeluo/eslint-plugin-check-file/issues"
  },
  "homepage": "https://github.com/dukeluo/eslint-plugin-check-file",
  "type": "module",
  "main": "dist/index.cjs",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      },
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
      }
    }
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "prepare": "husky",
    "build": "rollup -c",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix && prettier --write **/*.md",
    "test": "c8 mocha tests --recursive",
    "test:report": "c8 report -r=lcov",
    "test:cli": "mocha",
    "example:lint:eslint": "npm run lint --workspace=eslint-example",
    "example:lint:oxlint": "npm run lint --workspace=oxlint-example",
    "example:lint": "npm run example:lint:eslint && npm run example:lint:oxlint"
  },
  "dependencies": {
    "is-glob": "^4.0.3",
    "micromatch": "^4.0.8"
  },
  "devDependencies": {
    "@commitlint/cli": "^19.6.0",
    "@commitlint/config-conventional": "^19.6.0",
    "@eslint/js": "^9.39.4",
    "@rollup/plugin-terser": "^1.0.0",
    "c8": "^11.0.0",
    "eslint": "^9.39.4",
    "eslint-plugin-eslint-plugin": "^6.3.2",
    "eslint-plugin-jsdoc": "^50.5.0",
    "eslint-plugin-n": "^17.24.0",
    "eslint-config-prettier": "^10.1.5",
    "eslint-plugin-prettier": "^5.2.1",
    "esmock": "^2.6.9",
    "husky": "^9.1.7",
    "mocha": "^11.7.5",
    "prettier": "^3.3.3",
    "rollup": "^4.60.2",
    "rollup-plugin-dts": "^6.4.1",
    "typescript": "^5.8.3"
  },
  "engines": {
    "node": ">=18"
  },
  "peerDependencies": {
    "eslint": ">=9.0.0"
  },
  "workspaces": [
    "examples/eslint",
    "examples/oxlint"
  ],
  "overrides": {
    "mocha": {
      "diff": "^8.0.3",
      "serialize-javascript": "^7.0.5"
    }
  }
}